2002-11-21 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2002-11-21 Andrew Cagney <cagney@redhat.com>
2
3 * mips-tdep.c (mips_dump_tdep): Delete references to
4 GDB_TARGET_UNMASK_DISAS_PC and GDB_TARGET_MASK_DISAS_PC.
5 * config/mips/tm-mips.h (GDB_TARGET_MASK_DISAS_PC): Delete macro.
6 (GDB_TARGET_UNMASK_DISAS_PC): Delete macro.
7 * printcmd.c (build_address_symbolic): Delete calls to
8 GDB_TARGET_UNMASK_DISAS_PC and GDB_TARGET_MASK_DISAS_PC.
9 (address_info): Ditto.
10 Fix PR gdb/773.
11
12 2002-11-19 Klee Dienes <kdienes@apple.com>
13 Adam Fedor <fedor@gnu.org>
14
15 * completer.c (skip_quoted_chars): Renamed from skip_chars. Add
16 the ability to explicitly specify the quote characters and word
17 break characters; if NULL is specified for either, use the old
18 behavior of using the characters used by the completer.
19 (skip_chars): New function. Convenience wrapper around
20 skip_quoted_chars to provide the original skip_chars behavior.
21 * completer.h (skip_quoted_chars): Add prototype.
22
23 2002-11-19 Andrew Cagney <ac131313@redhat.com>
24
25 Problems reported by Paul Eggert.
26 * gdbarch.sh: Use `sort -k 3`. Fix PR gdb/527.
27
28 2002-11-19 Andreas Schwab <schwab@suse.de>
29
30 * m68klinux-nat.c (IS_SIGTRAMP, IS_RT_SIGTRAMP)
31 (m68k_linux_in_sigtramp, SIGCONTEXT_PC_OFFSET)
32 (UCONTEXT_PC_OFFSET, m68k_linux_sigtramp_saved_pc)
33 (m68k_linux_frame_saved_pc): Move to ...
34 * m68klinux-tdep.c: ... here. New file.
35 * Makefile.in (m68klinux-tdep.o): Add dependencies.
36 * config/m68k/linux.mt (TDEPFILES): Add m68klinux-tdep.o.
37
38 2002-11-19 Adam Fedor <fedor@gnu.org>
39
40 * objc-exp.y: Revert to old skip_quoted usage.
41
42 2002-11-19 Adam Fedor <fedor@gnu.org>
43
44 * Makefile.in (SFILES): Add objc-exp.y objc-lang.c.
45 (objc_lang_h): Define.
46 (YYFILES): Add objc-exp.tab.c.
47 (local-maintainer-clean): Remove objc-exp.tab.c.
48 (objc-exp.tab.c, objc-exp.tab.o, objc-lang.o): New target.
49
50 2002-11-19 Pierre Muller <muller@ics.u-strasbg.fr>
51
52 * p-exp.y (typecast rule): Add automatic dereference of
53 pascal classes if needed.
54 (THIS): Set current_type.
55 Automatically dereference pascal classes.
56 (typebase rule): Add ^typebase recognition.
57
58 2002-11-18 Adam Fedor <fedor@gnu.org>
59
60 * expprint.c (print_subexp): Handle OP_OBJC_NSSTRING,
61 OP_OBJC_MSGCALL, and OP_OBJC_SELF.
62 (op_name): Handle OP_OBJC_SELF.
63 * Makefile.in (expprint.o): Add additional depends.
64
65 2002-11-18 Adam Fedor <fedor@gnu.org>
66
67 * expression.h: Rename ObjC ops to OP_OBJC_MSGCALL,
68 OP_OBJC_SELECTOR, OP_OBJC_NSSTRING, and OP_OBJC_SELF.
69 * parse.c (length_of_subexp, prefixify_subexp): Likewise.
70 * objc-exp.y: Likewise.
71
72 2002-11-18 Adam Fedor <fedor@gnu.org>
73
74 * gdb/parser-defs.h: (struct objc_class_str): New structure
75 for parsing ObjC classes.
76
77 2002-11-18 Andrew Cagney <ac131313@redhat.com>
78
79 * stack.c (frame_relative_level): Copy function from here ...
80 * frame.c (frame_relative_level): ...to here.
81
82 2002-11-18 Andrew Cagney <ac131313@redhat.com>
83
84 * frame.h (enum frame_type): Define.
85 (get_frame_type): Declare.
86 (struct frame_info): Add field `type'. Delete field
87 signal_handler_caller.
88 (deprecated_set_frame_signal_handler_caller): Declare.
89 * frame.c (get_frame_type): New function.
90 (deprecated_set_frame_type): New function.
91 (create_new_frame): Set the frame's type.
92 (get_prev_frame): Similar.
93 * sparc-tdep.c: Use get_frame_type instead of signal_handler_caller.
94 * s390-tdep.c: Ditto.
95 * m68klinux-nat.c: Ditto.
96 * ns32k-tdep.c: Ditto.
97 * x86-64-linux-tdep.c: Ditto.
98 * vax-tdep.c: Ditto.
99 * rs6000-tdep.c: Ditto.
100 * ppc-linux-tdep.c: Ditto.
101 * i386-interix-tdep.c: Ditto.
102 * mips-tdep.c: Ditto.
103 * m68k-tdep.c: Ditto.
104 * hppa-tdep.c: Ditto.
105 * ia64-tdep.c: Ditto.
106 * cris-tdep.c: Ditto.
107 * arm-tdep.c: Ditto.
108 * alpha-tdep.c: Ditto.
109 * i386-tdep.c: Ditto.
110 * stack.c: Ditto.
111 * ada-lang.c: Ditto.
112 * blockframe.c: Update.
113 * i386-interix-tdep.c (i386_interix_back_one_frame): Use
114 deprecated_set_frame_type instead of signal_handler_caller.
115 * ppc-linux-tdep.c (ppc_linux_init_extra_frame_info): Ditto.
116 * rs6000-tdep.c (rs6000_init_extra_frame_info): Ditto.
117 * breakpoint.h: Delete FIXME suggesting get_frame_type.
118
119 2002-11-18 Klee Dienes <kdienes@apple.com>
120
121 * Makefile.in (buildsym.o): Add dependency for gdb_assert.h.
122
123 2002-11-18 Klee Dienes <kdienes@apple.com>
124
125 * buildsym.c (pop_context): Add comment.
126
127 2002-11-18 Klee Dienes <kdienes@apple.com>
128
129 * buildsym.h (pop_context): Convert to function, defined in
130 buildsym.c.
131 * buildsym.c: Include gdb_assert.h.
132 (pop_context): Implement as C function. Add check for stack
133 underflow.
134 * dbxread.c (process_one_symbol): Complain and stop processing
135 that symbol if we are already at the top of the context stack for
136 a function-end N_FUN (this would imply an umatched RBRAC). Ditto
137 when processing N_RBRAC.
138
139 2002-11-16 Daniel Jacobowitz <drow@mvista.com>
140
141 * config/pa/nm-hppah.h (CHILD_POST_FOLLOW_INFERIOR_BY_CLONE): Don't
142 define.
143 (struct target_waitstatus): Add opaque definition.
144 * corelow.c (init_core_ops): Don't set to_clone_and_follow_inferior.
145 * exec.c (init_exec_ops): Likewise.
146 * fork-child.c (clone_and_follow_inferior): Remove.
147 * hppah-nat.c (child_post_follow_inferior_by_clone): Remove.
148 * inferior.h (clone_and_follow_inferior): Remove prototype.
149 * infrun.c (follow_fork_mode_both): Remove.
150 (follow_fork_mode_kind_names): Remove commented out "both".
151 (follow_inferior_fork): Remove follow_fork_mode_both support.
152 * inftarg.c (child_clone_and_follow_inferior): Remove.
153 (child_post_follow_inferior_by_clone): Remove.
154 (init_child_ops): Don't set to_clone_and_follow_inferior
155 or to_post_follow_inferior_by_clone.
156 * target.c (default_clone_and_follow_inferior): Remove.
157 (cleanup_target): Don't set to_clone_and_follow_inferior
158 or to_post_follow_inferior_by_clone.
159 (find_default_clone_and_follow_inferior): Remove.
160 (init_dummy_target): Don't set to_clone_and_follow_inferior.
161 (debug_to_clone_and_follow_inferior): Remove.
162 (debug_to_post_follow_inferior_by_clone): Remove.
163 (setup_target_debug): Don't set to_clone_and_follow_inferior
164 or to_post_follow_inferior_by_clone.
165 * target.h (struct target_ops): Remove to_clone_and_follow_inferior
166 and to_post_follow_inferior_by_clone.
167 (child_clone_and_follow_inferior): Remove prototype.
168 (child_post_follow_inferior_by_clone): Remove prototype.
169 (target_clone_and_follow_inferior): Remove macro.
170 (target_post_follow_inferior_by_clone): Remove macro.
171 (find_default_clone_and_follow_inferior): Remove prototype.
172
173 2002-11-16 Daniel Jacobowitz <drow@mvista.com>
174
175 * breakpoint.c (bpstat_stop_status): Call inferior_has_forked,
176 inferior_has_vforked, and inferior_has_execd instead of
177 target_has_forked, target_has_vforked, and target_has_execd.
178 * config/pa/nm-hppah.h (CHILD_HAS_FORKED, CHILD_HAS_VFORKED)
179 (CHILD_HAS_EXECD, CHILD_HAS_SYSCALL_EVENT): Don't define.
180 (CHILD_WAIT): Define.
181 (child_wait): Add prototype.
182 * hppah-nat.c (hpux_has_forked): Rename from child_has_forked.
183 Add prototype.
184 (hpux_has_vforked): Likewise, from child_has_vforked.
185 (hpux_has_execd): Likewise, from child_has_execd.
186 (hpux_has_syscall_event): Likewise, from child_has_syscall_event.
187 (not_same_real_pid, child_wait): New, copied from inftarg.c.
188 Call hpux_has_forked, hpux_has_vforked, hpux_has_execd,
189 and hpux_has_syscall_event instead of the target hooks.
190 * infrun.c (inferior_has_forked, inferior_has_vforked)
191 (inferior_has_execd): New functions.
192 * inftarg.c (not_same_real_pid): Remove.
193 (child_wait): Remove references to not_same_real_pid,
194 target_has_forked, target_has_vforked, target_has_execd,
195 and target_has_syscall_event.
196 (child_has_forked, child_has_vforked, child_has_execd)
197 (child_has_syscall_event): Remove.
198 (init_child_ops): Remove references to child_has_forked,
199 child_has_vforked, child_has_execd, and child_has_syscall_event.
200 * infttrace.c (hpux_has_forked): Rename from child_has_forked.
201 (hpux_has_vforked): Likewise, from child_has_vforked.
202 (hpux_has_execd): Likewise, from child_has_execd.
203 (hpux_has_syscall_event): Likewise, from child_has_syscall_event.
204 * target.c (cleanup_target): Remove references to
205 to_has_forked, to_has_vforked, to_has_execd, and
206 to_has_syscall_event.
207 (update_current_target): Likewise.
208 (setup_target_debug): Likewise.
209 (debug_to_has_forked): Remove.
210 (debug_to_has_vforked): Remove.
211 (debug_to_has_execd): Remove.
212 (debug_to_has_syscall_event): Remove.
213 * target.h (struct target_ops): Remove to_has_forked.
214 to_has_vforked, to_has_execd, and to_has_syscall_event.
215 (child_has_forked, child_has_vforked, child_has_execd)
216 (child_has_syscall_event): Remove prototypes.
217 (inferior_has_forked, inferior_has_vforked, inferior_has_execd): Add
218 prototypes.
219 (target_has_forked, target_has_vforked, target_has_execd)
220 (target_has_syscall_event): Remove macros.
221
222 2002-11-16 Daniel Jacobowitz <drow@mvista.com>
223
224 * hppah-nat.c (child_can_follow_vfork_prior_to_exec): Remove.
225 * inftarg.c (child_can_follow_vfork_prior_to_exec): Remove.
226 (init_child_ops): Don't initialize to_can_follow_vfork_prior_to_exec.
227 * infttrace.c (child_can_follow_vfork_prior_to_exec): Remove.
228 * target.c (cleanup_target): Remove reference to
229 to_can_follow_vfork_prior_to_exec.
230 (update_current_target): Likewise.
231 (debug_to_can_follow_vfork_prior_to_exec): Remove.
232 (setup_target_debug): Remove reference to
233 to_can_follow_vfork_prior_to_exec.
234 * target.h (struct target_ops): Remove
235 to_can_follow_vfork_prior_to_exec.
236 (child_can_follow_vfork_prior_to_exec): Remove prototype.
237 (target_can_follow_vfork_prior_to_exec): Remove definition.
238 * config/pa/nm-hppah.h (CHILD_CAN_FOLLOW_VFORK_PRIOR_TO_EXEC): Don't
239 define.
240 * infrun.c (follow_vfork_when_exec): Remove.
241 (follow_inferior_fork): Remove references to follow_vfork_when_exec.
242 (follow_exec): Likewise.
243 (handle_inferior_event): Likewise.
244 (keep_going): Likewise.
245
246 2002-11-15 Andrew Cagney <cagney@redhat.com>
247
248 * frame.c (generic_unwind_get_saved_register): Make static.
249 * frame.h (generic_unwind_get_saved_register): Delete declaration.
250 * avr-tdep.c (avr_gdbarch_init): Do not set get_saved_register,
251 defaults to generic_unwind_get_saved_register.
252 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
253 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
254 * frv-tdep.c (frv_gdbarch_init): Ditto.
255 * i386-tdep.c (i386_gdbarch_init): Ditto.
256 * s390-tdep.c (s390_gdbarch_init): Ditto.
257 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
258 * v850-tdep.c (v850_gdbarch_init): Ditto.
259 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
260 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
261 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Delete macro.
262
263 2002-11-15 Andrew Cagney <cagney@redhat.com>
264
265 * x86-64-linux-nat.c (i386_sse_regnum_p): New function. Copy from
266 i386-tdep.c.
267
268 2002-11-15 Andrew Cagney <cagney@redhat.com>
269
270 * frame.h (sigtramp_saved_pc): Delete declaration.
271 * blockframe.c (sigtramp_saved_pc): Delete function.
272 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): New function.
273 (ns32k_frame_saved_pc): Call ns32k_sigtramp_saved_pc.
274 * vax-tdep.c (vax_sigtramp_saved_pc): New function.
275 (vax_frame_saved_pc): Call vax_sigtramp_saved_pc.
276
277 2002-11-15 Andrew Cagney <ac131313@redhat.com>
278
279 * frame.c (frame_pc_unwind): New function.
280 (frame_saved_regs_pc_unwind): New function.
281 (frame_register_unwind): Pass unwind_cache instead of
282 register_unwind_cache.
283 (set_unwind_by_pc): Add unwind_pc parameter, set.
284 (create_new_frame): Pass frame->pc_unwind to set_unwind_by_pc.
285 (get_prev_frame): Ditto.
286 * frame.h (frame_pc_unwind_ftype): Declare.
287 (struct frame_info): Add pc_unwind, pc_unwind_cache_p and
288 pc_unwind_cache. Rename register_unwind_cache to unwind_cache.
289 (frame_pc_unwind): Declare.
290 * dummy-frame.c (dummy_frame_pc_unwind): New function.
291 (struct dummy_frame): Add comment mentioning that values are for
292 previous frame.
293 * dummy-frame.h (dummy_frame_pc_unwind): Declare.
294 * blockframe.c (file_frame_chain_valid): Use frame_pc_unwind.
295 (generic_file_frame_chain_valid): Ditto.
296 * stack.c (frame_info): Ditto.
297
298 2002-11-15 David Carlton <carlton@math.stanford.edu>
299
300 * linespec.c (locate_first_half): New function.
301 (decode_line_1): Move code into locate_first_half.
302
303 2002-11-15 Andrew Cagney <ac131313@redhat.com>
304
305 * complaints.h: Add comment explaining how to eliminate a
306 deprecated_complain call.
307 * complaints.h: Fix spelling errors.
308
309 2002-11-15 David Carlton <carlton@math.stanford.edu>
310
311 * printcmd.c: Remove #include "disasm.h".
312
313 2002-11-14 Andrew Cagney <ac131313@redhat.com>
314
315 * frame.h: Move the most relevant interface functions to the start
316 of the file.
317
318 2002-11-14 Andrew Cagney <ac131313@redhat.com>
319
320 * regcache.h (deprecated_registers): Rename registers.
321 * a68v-nat.c, alpha-nat.c, arch-utils.c, core-sol2.c: Update.
322 * hp300ux-nat.c, hppab-nat.c, hppah-nat.c: Update.
323 * hppam3-nat.c, hpux-thread.c, i386gnu-nat.c: Update.
324 * ia64-aix-nat.c, ia64-linux-nat.c, ia64-tdep.c: Update.
325 * irix4-nat.c, irix5-nat.c, lynx-nat.c, m68k-tdep.c: Update.
326 * m68knbsd-nat.c, mips-linux-tdep.c, mipsm3-nat.c: Update.
327 * mipsv4-nat.c, ns32knbsd-nat.c, ppc-bdm.c: Update.
328 * ppc-sysv-tdep.c, ptx4-nat.c, regcache.c, remote-es.c: Update.
329 * remote-sds.c, remote-vx68.c, remote-vxmips.c: Update.
330 * remote-vxsparc.c, rs6000-tdep.c, sol-thread.c: Update.
331 * sparc-nat.c, sparc-tdep.c, sun3-nat.c, symm-nat.c: Update.
332 * v850ice.c: Update.
333
334 Wed Nov 13 19:51:05 2002 Andrew Cagney <cagney@redhat.com>
335
336 * utils.c (gdb_realpath): Add comment mentioning realpath with a
337 NULL buffer.
338
339 2002-11-13 Andrew Cagney <cagney@redhat.com>
340
341 * regcache.h (deprecated_read_register_bytes): Rename
342 read_register_bytes.
343 (deprecated_write_register_bytes): Rename write_register_bytes.
344 * alpha-tdep.c, arm-tdep.c, cris-tdep.c, d10v-tdep.c: Update.
345 * dwarf2cfi.c, frv-tdep.c, hppa-tdep.c, ia64-tdep.c: Update.
346 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10300-tdep.c: Update.
347 * ns32k-tdep.c, regcache.c, remote-sds.c, remote-vx.c: Update.
348 * remote.c, rs6000-tdep.c, s390-tdep.c, sh-tdep.c: Update.
349 * sparc-tdep.c, v850-tdep.c, vax-tdep.c, x86-64-tdep.c: Update.
350 * xstormy16-tdep.c, z8k-tdep.c, config/nm-gnu.h: Update.
351 * config/nm-m3.h, config/h8500/tm-h8500.h: Update.
352 * config/i386/nm-ptx4.h, config/i386/nm-symmetry.h: Update.
353 * config/m32r/tm-m32r.h, config/m68k/nm-sun3.h: Update.
354 * config/m68k/tm-delta68.h, config/m68k/tm-linux.h: Update.
355 * config/mn10200/tm-mn10200.h, config/pa/tm-hppa64.h: Update.
356 * config/sparc/nm-nbsd.h, config/sparc/nm-sun4os4.h: Update.
357 * config/sparc/nm-sun4sol2.h, config/sparc/tm-sparclet.h: Update.
358
359 2002-11-13 Jim Blandy <jimb@redhat.com>
360
361 * findvar.c (read_var_value): Doc fix.
362
363 2002-11-13 Andrew Cagney <cagney@redhat.com>
364
365 * regcache.c (struct regcache): Replace passthough_p with
366 readonly_p.
367 (regcache_xmalloc): Initialize readonly_p.
368 (build_regcache): Initialize readonly_p.
369 (regcache_save): New function.
370 (regcache_restore): New function.
371 (regcache_cpy): Re-implement using regcache_save and
372 regcache_restore.
373 (regcache_raw_read): Update.
374 (regcache_cooked_read): When a read-only cache, checked for cached
375 pseudo register values.
376 (regcache_raw_write): Assert that the cache is not read-only.
377 Remove code handling a non-passthrough cache.
378 * regcache.h (regcache_save): Declare.
379 (regcache_restore): Declare.
380
381 2002-11-13 Andrew Cagney <cagney@redhat.com>
382
383 * regcache.c (struct regcache_descr): Add fields
384 sizeof_cooked_registers and sizeof_cooked_register_valid_p.
385 (init_legacy_regcache_descr): Compute the size of a cooked
386 register cache and then assign that to sizeof_raw_registers. Set
387 sizeof_raw_register_valid_p to sizeof_cooked_register_valid_p
388 (init_legacy_regcache_descr): Ditto.
389
390 2002-11-13 Andrew Cagney <cagney@redhat.com>
391
392 * regcache.c (register_buffer): Move to near start of file, update
393 description.
394 (regcache_raw_read): Use.
395 (regcache_raw_write): Use.
396 (struct regcache): Rename raw_registers to registers and
397 raw_register_valid_p to register_valid_p.
398 (regcache_xmalloc): Update.
399 (regcache_xfree): Update.
400 (register_buffer): Update.
401 (regcache_cpy): Update.
402 (regcache_cpy_no_passthrough): Update.
403 (regcache_valid_p): Update.
404 (deprecated_grub_regcache_for_registers): Update.
405 (deprecated_grub_regcache_for_register_valid): Update.
406 (set_register_cached): Update.
407 (regcache_raw_write): Update.
408
409 2002-11-13 Pierre Muller <muller@ics.u-strasbg.fr>
410
411 * p-exp.y (name_not_typename): Use copy_name to
412 set current_type variable for fields of THIS.
413
414 2002-11-12 Daniel Jacobowitz <drow@mvista.com>
415
416 * gnu-nat.c (init_gnu_ops): Remove NULL initializations.
417 * monitor.c (init_base_monitor_ops): Likewise.
418 * ppc-bdm.c (init_bdm_ppc_ops): Likewise.
419 * remote-array.c (init_array_ops): Likewise.
420 * remote-e7000.c (init_e7000_ops): Likewise.
421 * remote-es.c (init_es1800_ops): Likewise.
422 (init_es1800_child_ops): Likewise.
423 * remote-rdp.c (init_remote_rdp_ops): Likewise.
424 * remote-sim.c (init_gdbsim_ops): Likewise.
425 * remote-st.c (init_st2000_ops): Likewise.
426 * sol-thread.c (init_sol_core_ops): Likewise.
427 (init_sol_thread_ops): Likewise.
428 * v850ice.c (init_850ice_ops): Likewise.
429 * win32-nat.c (init_child_ops): Likewise.
430 * wince.c (init_child_ops): Likewise.
431
432 2002-11-12 Andrew Cagney <ac131313@redhat.com>
433
434 * utils.c (gdb_realpath): Make rp a constant pointer.
435
436 2002-11-12 Andrew Cagney <ac131313@redhat.com>
437
438 * utils.c (gdb_realpath): Rewrite. Try, in order: realpath() with
439 a constant buffer; cannonicalize_file_name(); realpath() with a
440 pathconf() defined buffer, xstrdup().
441
442 2002-11-12 Andrew Cagney <ac131313@redhat.com>
443
444 * config/djgpp/fnchange.lst: Fix typo, hang1.c to hang1.C; hang2.c
445 to hang2.C; hang3.c to hang3.C.
446
447 2002-11-11 Elena Zannoni <ezannoni@redhat.com>
448
449 * findvar.c (read_var_value): Reenable TLS code.
450
451 2002-11-11 Elena Zannoni <ezannoni@redhat.com>
452 Jim Blandy <jimb@redhat.com>
453
454 * gdb_thread_db.h (enum): Add TD_NOTALLOC.
455 * target.c (update_current_target): Add
456 to_get_thread_local_address.
457 * target.h (to_get_thread_local_address): Export.
458 (target_get_thread_local_address): Define.
459 (target_get_thread_local_address_p): Define.
460 * thread-db.c: Include solib-svr4.h.
461 (td_thr_tls_get_addr_p): Define.
462 (thread_db_load): Get a pointer to td_thr_tls_get_addr.
463 (thread_db_get_thread_local_address): New function.
464 (init_thread_db_ops): Initialize to_get_thread_local_address.
465 * configure.in: Add test for TD_NOTALLOC in thread_db.h.
466 * configure: Regenerate.
467 * config.in: Regenerate.
468
469 2002-11-11 David Carlton <carlton@math.stanford.edu>
470
471 * linespec.c (set_flags): New function.
472 (decode_line_1): Move code into set_flags.
473
474 2002-11-11 David Carlton <carlton@math.stanford.edu>
475
476 * linespec.c (decode_line_1): Move chunks of code to separate
477 functions.
478 (initialize_defaults): New function.
479 (decode_indirect): New function.
480
481 2002-11-11 Andrew Cagney <ac131313@redhat.com>
482
483 * blockframe.c (sigtramp_saved_pc): Fix tipo. void_func_ptr
484 instead of void_code_ptr.
485 (sigtramp_saved_pc): Ditto.
486
487 * x86-64-tdep.c (i386_fp_regnum_p): Copy i386-tdep.c's
488 i386_fp_regnum_p.
489
490 2002-11-10 Daniel Jacobowitz <drow@mvista.com>
491
492 * gdbtypes.h (struct main_type): Move artificial flag out of
493 loc. New member of ``struct field'' named static_kind. Reduce
494 overloaded meaning of bitsize.
495 (FIELD_ARTIFICIAL, SET_FIELD_PHYSNAME, SET_FIELD_PHYSADDR)
496 (TYPE_FIELD_STATIC, TYPE_FIELD_STATIC_HAS_ADDR): Likewise.
497 (FIELD_STATIC_KIND, TYPE_FIELD_STATIC_KIND): New macros.
498
499 * ada-lang.c (fill_in_ada_prototype): Initialize static_kind for
500 new fields.
501 (template_to_fixed_record_type, template_to_static_fixed_type)
502 (to_record_with_fixed_variant_part): Likewise.
503 * coffread.c (coff_read_struct_type, coff_read_enum_type): Likewise.
504 * dwarf2read.c (dwarf2_add_field, read_enumeration): Likewise.
505 * dwarfread.c (struct_type, enum_type): Likewise.
506 * hpread.c (hpread_read_enum_type)
507 (hpread_read_function_type, hpread_read_doc_function_type)
508 (hpread_read_struct_type): Likewise.
509 * mdebugread.c (parse_symbol): Likewise.
510
511 2002-11-10 Andrew Cagney <ac131313@redhat.com>
512
513 * breakpoint.h (deprecated_frame_in_dummy): Rename frame_in_dummy.
514 * stack.c (print_frame_info_base): Update.
515 (print_frame_info_base, frame_info): Update.
516 * sparc-tdep.c (sparc_init_extra_frame_info): Update.
517 (sparc_frame_saved_pc): Update.
518 * ada-lang.c (find_printable_frame): Update.
519 * breakpoint.c (deprecated_frame_in_dummy): Update.
520
521 2002-11-09 Mark Kettenis <kettenis@gnu.org>
522
523 * i386-linux-nat.c (ORIG_EAX): Define to -1 if not already
524 defined.
525 (regmap): Extend to cover all registers.
526 (PT_READ_U, PT_WRITE_U, PTRACE_XFER_TYPE,
527 OLD_CANNOT_FETCH_REGISTERS, OLD_CANNOT_STORE_REGISTERS): Remove
528 definitions.
529 (fetch_register, sore_register): Simplify.
530 (old_fetch_inferior_registers, old_store_inferior_registers):
531 Remove functions.
532 (cannot_fetch_register, cannot_store_register): Change
533 implementation to use regmap array to decide which registers
534 cannot be fetched/stored. This removes $orig_eax from the
535 registers that cannot be fetched/stored.
536 (fetch_inferior_registers): Call fetch_register directly instead
537 of calling old_fetch_inferior_registers.
538 (store_inferior_registers): Call store_register directly instead
539 of calling old_store_inferior_registers.
540 (i386_linux_dr_get): Replace PT_READ_U with PTRACE_PEEKUSER.
541 (i386_linux_dr_set): Replace PT_WRITE_U with PTRACE_POKEUSER.
542 * config/i386/nm-linux.h (U_REGS_OFFSET): Remove definition.
543
544 2002-11-09 Klee Dienes <kdienes@apple.com>
545
546 * i387-tdep.c (i387_supply_register): When called with NULL as a
547 buffer, mark the register as not provided (to mirror the behavior
548 of supply_register).
549 (i387_supply_fxsave): Ditto.
550 (i387_supply_fsave): Ditto (inherits the behavior from
551 i387_supply_register).
552
553 2002-11-09 Klee Dienes <kdienes@apple.com>
554
555 * blockframe.c (sigtramp_saved_pc): Use
556 builtin_type_void_code_ptr, not builtin_type_void_data_ptr (we are
557 extracting the PC). Use TYPE_LENGTH (builtin_type_void_code_ptr)
558 instead of (TARGET_PTR_BIT / TARGET_CHAR_BIT).
559
560 2002-11-09 Andrew Cagney <ac131313@redhat.com>
561
562 * frame.c (get_prev_frame): Test prev_p to identify a previously
563 unwound frame. Initialize prev_p.
564 * frame.h (struct frame_info): Add field prev_p. Expand prev/next
565 comment.
566
567 2002-11-09 Andrew Cagney <ac131313@redhat.com>
568
569 * frame.c (get_prev_frame): Cleanups. Eliminate redundant tests
570 for a NULL NEXT_FRAME. Simplify fromleaf initialization. Add
571 more comments. Zap dead code.
572
573 2002-11-09 Mark Kettenis <kettenis@gnu.org>
574
575 * infcmd.c (print_vector_info, print_float_info): Move code that
576 checks whether the target has any registers and whether there is a
577 selected frame up, such that it is also used if a target provides
578 multi-arch definitions of these functions.
579
580 2002-11-08 Andrew Cagney <ac131313@redhat.com>
581
582 * Makefile.in (DESTDIR): Define.
583 (install-only, install-gdbtk, uninstall-gdbtk): Add $(DESTDIR)
584 prefix.
585
586 * config/djgpp/fnchange.lst: 8.3 proof i386obsd-nat.c and
587 i386obsd-tdep.c. Rename to "gdb.cxx", paths containing "gdb.c++".
588
589 2002-11-08 Andrew Cagney <ac131313@redhat.com>
590
591 * i386-linux-tdep.c: Include "reggroups.h".
592 (i386_linux_register_reggroup_p): New function.
593 (i386_linux_init_abi): Set register_reggroup_p to
594 i386_linux_register_reggroup_p.
595 * i386-tdep.h (i386_register_reggroup_p): Declare.
596 * i386-tdep.c: Include "reggroups.h".
597 (i386_init_reggroups): New function.
598 (i386_add_reggroups): New function.
599 (i386_register_reggroup_p): New function.
600 (i386_sse_reggroup, i386_mmx_reggroup): New variables.
601 (_initialize_i386_tdep): Call i386_init_reggroups.
602 (i386_gdbarch_init): Set register_reggroup_p and add in the i386
603 specific reggroups.
604
605 2002-11-09 Mark Kettenis <kettenis@gnu.org>
606
607 * infptrace.c (child_xfer_memory): Make use of the new PT_IO
608 request that's available in *BSD.
609
610 * i386-tdep.h (IS_FPU_CTRL_REGNUM): Remove.
611
612 * i387-tdep.c (i387_fill_fxsave): Use FOOFF_REGNUM instead of
613 FDOFF_REGNUM.
614
615 2002-11-08 Andrew Cagney <ac131313@redhat.com>
616
617 * frame.c (set_unwind_by_pc): Use dummy_frame_register_unwind.
618 * dummy-frame.c (find_dummy_frame): Rename
619 generic_find_dummy_frame, make static. Return the dummy frame
620 instead of the regcache.
621 (generic_find_dummy_frame): Re-implement using find_dummy_frame,
622 (cached_find_dummy_frame): New function. Use find_dummy_frame.
623 (dummy_frame_register_unwind): Rename
624 generic_call_dummy_register_unwind. Use cached_find_dummy_frame.
625 * dummy-frame.h (dummy_frame_register_unwind): Rename
626 generic_call_dummy_register_unwind.
627
628 2002-11-08 Mark Kettenis <kettenis@gnu.org>
629
630 * config/i386/tm-i386v42mp.h: Remove file. Move its contents,
631 except the inclusion of "i386/tm-i386.h", to...
632 * config/i386/nm-i386v42mp.h: ...here.
633 * config/i386/i386v42mp.mt (TM_FILE): Set to tm-i386.h.
634
635 2002-11-08 Andrew Cagney <ac131313@redhat.com>
636
637 * Makefile.in (frame.o): Update dependencies.
638 * blockframe.c (current_frame, frame_obstack_alloc)
639 (frame_saved_regs_zalloc, get_current_frame)
640 (set_current_frame, create_new_frame)
641 (set_unwind_by_pc, get_next_frame)
642 (flush_cached_frames, reinit_frame_cache)
643 (frame_saved_regs_register_unwind)
644 (deprecated_generic_get_saved_register)
645 (get_prev_frame, get_frame_pc, get_frame_saved_regs)
646 (_initialize_blockframe): Move frame code from here...
647 * frame.c: ...to here. Include "gdb_obstack.h", "gdbcore.h",
648 "annotate.h" and "dummy-frame.h".
649 (_initialize_frame): New function.
650
651 2002-11-08 Jim Blandy <jimb@redhat.com>
652
653 * dwarf2read.c (read_func_scope): Restore list_in_scope properly
654 when we finish a function a context.
655 * buildsym.h (outermost_context_p): New macro.
656 (Bug analyzed by David Edelsohn.)
657
658 2002-11-08 Andrew Cagney <ac131313@redhat.com>
659
660 * blockframe.c: Include "dummy-frame.h".
661 (struct dummy_frame, dummy_frame_stack)
662 (generic_find_dummy_frame, deprecated_generic_find_dummy_frame)
663 (generic_pc_in_call_dummy, deprecated_read_register_dummy)
664 (generic_push_dummy_frame, generic_save_dummy_frame_tos)
665 (generic_save_call_dummy_addr, generic_pop_current_frame)
666 (generic_pop_dummy_frame, generic_fix_call_dummy)
667 (generic_fix_call_dummy, generic_call_dummy_register_unwind): Move
668 dummy frame code from here...
669 * dummy-frame.c: ...to here. New file.
670 * dummy-frame.h: New file.
671 (generic_call_dummy_register_unwind): Declare.
672 (generic_find_dummy_frame): Declare.
673 * Makefile.in (SFILES): Add dummy-frame.c.
674 (dummy-frame.o): Specify dependencies.
675 (dummy_frame_h): Define.
676 (COMMON_OBS): Add dummy-frame.o.
677 (blockframe.o): Update dependencies.
678
679 2002-11-08 Jim Blandy <jimb@redhat.com>
680
681 * dwarf2read.c (read_func_scope): Restore local_symbols and
682 param_symbols after we finish the function context. (Based on a
683 patch from David Edelsohn.)
684
685 2002-11-08 David Carlton <carlton@math.stanford.edu>
686
687 * linespec.c (symbol_found): New function.
688 (minsym_found): New function.
689 (decode_line_1): Separate out some code into separate functions.
690
691 2002-11-08 Joel Brobecker <brobecker@gnat.com>
692
693 * i386-tdep.c (i386_frameless_signal_p): Make non static for
694 the benefit of the interix target.
695 * i386-tdep.h (i386_frameless_signal_p): Declare.
696
697 2002-11-08 Andrew Cagney <ac131313@redhat.com>
698
699 * i386-tdep.h (i386_linux_orig_eax_regnum_p): Delete stray
700 declaration that snuck in from change below.
701
702 2002-11-06 Andrew Cagney <cagney@redhat.com>
703
704 * i386-tdep.c (i386_mmx_regnum_p): Rename mmx_regnum_p. Update
705 all callers.
706 (i386_fp_regnum_p): New function. Use instead of FP_REGNUM_P.
707 (i386_fpc_regnum_p): New function. Use instead of FPC_REGNUM_P.
708 (i386_sse_regnum_p): New function. Use instead of SSE_REGNUM_P.
709 (i386_mxcsr_regnum_p): new function. Use instead of
710 MXCSR_REGNUM_P.
711 * i386-tdep.h (SSE_REGNUM_P): Delete macro.
712 (i386_sse_regnum_p): Declare.
713 (i386_mxcsr_regnum_p): Declare.
714 (FP_REGNUM_P, FPC_REGNUM_P): Delete macros.
715 (i386_fp_regnum_p, i386_fpc_regnum_p): Declare.
716 (IS_FP_REGNUM): Update definition.
717 (IS_FPU_CTRL_REGNUM): Update definition..
718 (IS_SSE_REGNUM): Update definition..
719 * i386v-nat.c (register_u_addr): Update.
720 * go32-nat.c (fetch_register): Update.
721 (store_register): Update.
722
723 2002-11-07 Joel Brobecker <brobecker@gnat.com>
724
725 Preparation work to convert the hppa targets to multiarch partial.
726
727 * hppa-tdep.c: Add new functions replacing macro bodies from
728 config/pa/tm-hppa.h. These function will be used to initialize
729 the gdbarch structure. Import some comments from tm-hppa.h,
730 and place them where appropriate, to avoid loosing them when
731 we cleanup this file.
732 (hppa_reg_struct_has_addr): New function.
733 (hppa_inner_than): New function.
734 (hppa_stack_align): New function.
735 (hppa_pc_requires_run_before_use): New function.
736 (hppa_instruction_nullified): New function.
737 (hppa_register_byte): New function.
738 (hppa_register_virtual_type): New function.
739 (hppa_store_struct_return): New function.
740 (hppa_cannot_store_register): New function.
741 (hppa_frame_args_address): New function.
742 (hppa_frame_locals_address): New function.
743 (hppa_smash_text_address): New function.
744 (hppa_coerce_float_to_double): New function. Requires the inclusion
745 of "language.h".
746
747 * Makefile.in (hppa-tdep.o): Add dependency on language.h.
748
749 * tm-hppa.h (REG_STRUCT_HAS_ADDR): Change the definition of this
750 gdbarch-eligible macro to a call to the new associated function
751 created in hppa-tdep.c.
752 (INNER_THAN): Likewise.
753 (STACK_ALIGN): Likewise.
754 (PC_REQUIRES_RUN_BEFORE_USE): Likewise.
755 (INSTRUCTION_NULLIFIED): Likewise.
756 (REGISTER_BYTE): Likewise.
757 (REGISTER_VIRTUAL_TYPE): Likewise.
758 (STORE_STRUCT_RETURN): Likewise.
759 (CANNOT_STORE_REGISTER): Likewise.
760 (FRAME_ARGS_ADDRESS): Likewise.
761 (FRAME_LOCALS_ADDRESS): Likewise.
762 (SMASH_TEXT_ADDRESS): Likewise.
763 (COERCE_FLOAT_TO_DOUBLE): Likewise.
764 (ABOUT_TO_RETURN): Delete, as no longer used.
765
766 2002-11-07 Fernando Nasser <fnasser@redhat.com>
767
768 * printcmd.c (disassemble_command): Remove obsolete function.
769 (_initialize_printcmd): Do not create disassemble command here.
770 * cli/cli-cmds.c (disassemble_command): New function. Implements
771 disassemble command.
772 (init_cli_cmds): Create disassemble command here instead.
773
774 2002-11-07 Andrew Cagney <ac131313@redhat.com>
775
776 * MAINTAINERS: Add Daniel Jacobowitz to global maintainers list.
777
778 2002-11-07 Andrew Cagney <ac131313@redhat.com>
779
780 * regcache.h (regcache_cooked_read_using_offset_hack)
781 (regcache_cooked_write_using_offset_hack): Delete declarations.
782 (register_changed): Delete declaration.
783 * regcache.c (regcache_cooked_read_using_offset_hack)
784 (regcache_cooked_write_using_offset_hack): Delete functions.
785 (cooked_xfer_using_offset_hack): Delete function.
786 (register_changed): Delete function.
787
788 2002-11-07 Jim Blandy <jimb@redhat.com>
789
790 * macroscope.c: #include "complaints.h".
791 (sal_macro_scope): Cope with filenames that appear in the symtabs,
792 but not in the macro table.
793 * Makefile.in (macroscope.o): Record dependency.
794
795 2002-11-07 Joel Brobecker <brobecker@gnat.com>
796
797 * PROBLEMS: Document gdb/816 (unable to read core file on alpha-osf).
798
799 2002-11-07 Andrew Cagney <ac131313@redhat.com>
800
801 * regcache.c (deprecated_registers_fetched): Update.
802 * regcache.h (deprecated_registers_fetched): Rename
803 registers_fetched.
804 * remote-vxsparc.c (vx_read_register): Update.
805 * remote-vxmips.c (vx_read_register): Update.
806 * remote-vx68.c (vx_read_register): Update.
807 * irix5-nat.c (fetch_core_registers): Update.
808 * mipsm3-nat.c (fetch_inferior_registers): Update.
809 * sun3-nat.c (fetch_inferior_registers): Update.
810 * symm-nat.c (fetch_inferior_registers): Update.
811 * ns32knbsd-nat.c (fetch_inferior_registers): Update.
812 (fetch_core_registers): Update.
813 (fetch_kcore_registers): Update.
814 * mips-nat.c (fetch_inferior_registers): Update.
815 * corelow.c (get_core_registers): Update.
816 * a68v-nat.c (fetch_inferior_registers): Update.
817
818 2002-11-06 Joel Brobecker <brobecker@gnat.com>
819
820 Put in place the framework necessary for multiarching the hppa targets.
821 * hppa-tdep.c (hppa_gdbarch_init): New function.
822 (hppa_dump_tdep): New function.
823 (_initialize_hppa_tdep): Register the hppa gdbarch init function and
824 tdep structure dumper.
825 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): New macro, defined to 0
826 until the multi-arching conversion has partially been completed.
827
828 2002-11-06 Andrew Cagney <ac131313@redhat.com>
829
830 * valops.c (value_assign): Merge lval_register case into
831 lval_reg_frame_relative. Use frame_register and
832 regcache_cooked_write instead of get_saved_register and
833 write_register_bytes. After flushing the register cache, try to
834 re-select the selected frame.
835
836 2002-11-06 Andrew Cagney <ac131313@redhat.com>
837
838 * regcache.h (deprecated_register_valid): Rename register_valid.
839 * regcache.c: Update.
840 * ia64-aix-nat.c: Update.
841 * i386gnu-nat.c: Update.
842 * alpha-nat.c: Update.
843 * sparc-nat.c: Update.
844 * lynx-nat.c: Update.
845 * remote-mips.c: Update.
846
847 2002-11-06 Joel Brobecker <brobecker@gnat.com>
848
849 * hppa-tdep.c (_initialize_hppa_tdep): Move function body
850 to end of file, to be more consistent with the pratice followed
851 by other targets.
852
853 2002-11-06 Andrew Cagney <ac131313@redhat.com>
854
855 * infcmd.c: Include "reggroups.h" and <ctype.h>.
856 (print_float_info): Print registers in float_reggroup.
857 (print_vector_info): Print registers in vector_reggroup.
858 (default_print_registers_info): When all, print registers in
859 all_reggroup. Otherwize, print registers in general_reggroup.
860 (registers_info): Rewrite. Add support for register groups.
861 Eliminate a goto.
862
863 2002-11-06 Elena Zannoni <ezannoni@redhat.com>
864
865 * symtab.c (methods_info): Delete. It has been ifdeffed out for
866 ages.
867 (symtab_symbol_info): Remove eons old ifdeffed out code.
868 (_initialize_symtab): Remove prehistoric disabled 'info methods'
869 command.
870
871 2002-11-06 Theodore A. Roth <troth@openavr.org>
872
873 * c-exp.y: Add missing semi-colons.
874 * f-exp.y: Add missing semi-colons.
875 * m2-exp.y: Add missing semi-colons.
876 * p-exp.y: Add missing semi-colons.
877 Add empty action to start rule to avoid a type clash error when
878 building with bison >= 1.50.
879
880 2002-11-06 Jim Blandy <jimb@redhat.com>
881
882 * macrotab.h (struct macro_source_file): Doc fix.
883
884 2002-11-05 Jeff Johnston <jjohnstn@redhat.com>
885
886 * varobj.c (child_exists, cplus_number_of_children): Change
887 STREQ macro references to strcmp.
888 (cplus_name_of_child): Change code to handle the fact that
889 fields are not necessarily contiguous with regards to their
890 access control. This is a fix for PR gdb/792.
891
892 2002-11-05 Andrew Cagney <ac131313@redhat.com>
893
894 * gdbarch.sh (GET_SAVED_REGISTER): Change to a predicate function.
895 * gdbarch.h, gdbarch.c: Regnerate.
896 * frame.h (frame_register): Declare.
897 * frame.c (frame_register): New function.
898 (get_saved_register): Test GET_SAVED_REGISTER_P before calling
899 GET_SAVED_REGISTER, otherwize call
900 generic_unwind_get_saved_register.
901 (frame_register_read): Use frame_register instead of
902 get_saved_register.
903
904 2002-11-05 Elena Zannoni <ezannoni@redhat.com>
905
906 From Jim Ingham <jingham@apple.com>:
907 * event-top.c (gdb_disable_readline): New function.
908 (_initialize_event_loop): Move comment.
909
910 2002-11-05 Elena Zannoni <ezannoni@redhat.com>
911
912 * event-loop.c (start_event_loop): Add comment.
913 Update copyright.
914
915 2002-11-05 Andrew Cagney <ac131313@redhat.com>
916
917 * infcmd.c (default_print_registers_info): Do not call
918 PRINT_REGISTER_HOOK.
919
920 2002-11-05 Andrew Cagney <ac131313@redhat.com>
921
922 * sparc-tdep.c (sparc_print_register_hook): Make static.
923 (sparc_print_registers_info): New function.
924 (sparc_do_registers_info): New function.
925 (sparclet_print_registers_info): New function.
926 (sparclet_do_registers_info): New function.
927 (do_sparc_print_registers_info): New function.
928 (sparc_print_registers): New static function, clone of infcmd.c's
929 default_print_registers_info.
930 * config/sparc/tm-sparclet.h (PRINT_REGISTER_HOOK): Delete macro.
931 (sparclet_do_registers_info): Declare.
932 (DEPRECATED_DO_REGISTERS_INFO): Re-define.
933 * config/sparc/tm-sparc.h (DEPRECATED_DO_REGISTERS_INFO):
934 Re-define.
935 (sparc_do_registers_info): Declare.
936 (PRINT_REGISTER_HOOK): Delete macro.
937 (sparc_print_register_hook): Delete declaration.
938
939 2002-11-05 David Carlton <carlton@math.stanford.edu>
940
941 * symtab.c (lookup_symbol_aux): Move chunks of code into separate
942 functions.
943 (lookup_symbol_aux_local): New function.
944 (lookup_symbol_aux_symtabs): New function.
945 (lookup_symbol_aux_psymtabs): New function.
946
947 2002-11-05 David Carlton <carlton@math.stanford.edu>
948
949 * symtab.c (lookup_symbol_aux): In minsym sections, don't use the
950 previous values of 'objfile' and 'block'.
951
952 2002-11-05 Pierre Muller <muller@ics.u-strasbg.fr>
953
954 * values.c (value_change_enclosing_type): Set
955 enclosing_type field correctly also for the case where
956 more memory needs to be allocated.
957
958 2002-11-03 Mark Kettenis <kettenis@gnu.org>
959
960 * i387-tdep.c (i387_print_float_info): Call fputs_filtered instead
961 of puts_filtered.
962
963 * i387-tdep.c (i387_print_float_info): Replace calls to
964 register_read and deprecated_read_register_gen with calls to
965 frame_register_read, and make the necessary adjustments to the
966 surrounding code.
967
968 2002-11-02 Andrew Cagney <ac131313@redhat.com>
969
970 * gdbarch.sh (register_reggroup_p): Allow default value.
971 * gdbarch.h, gdbarch.c: Regenerate.
972
973 2002-11-02 Andrew Cagney <ac131313@redhat.com>
974
975 * regcache.h: Add coment indicating replacements for deprecated
976 functions.
977
978 2002-11-02 Andrew Cagney <cagney@redhat.com>
979
980 * reggroups.h, reggroups.c: New files.
981 * regcache.c: Include "reggroups.h".
982 (enum regcache_dump_what): Add `regcache_dump_groups'.
983 (regcache_dump): Contract size of the "Type" column. When
984 specified, dump the register's groups.
985 (maintenance_print_register_groups): New function.
986 (_initialize_regcache): Add command `maint print register-groups'.
987 * Makefile.in (COMMON_OBS): Add reggroups.o
988 (SFILES): Add reggroups.c.
989 (reggroups_h): Define.
990 (regcache.o, gdbarch.o): Update dependencies.
991 (reggroups.o): Specify dependencies.
992 * gdbarch.sh (register_reggroup_p): Add pure multi-arch method.
993 Add opaque declaration for `struct reggroup' in generated .h file.
994 Include "reggroups.h" in generated .c file.
995 gdbarch.h, gdbarch.c: Re-generate.
996
997 2002-11-02 Andrew Cagney <cagney@redhat.com>
998
999 * regcache.h (deprecated_read_register_gen): Rename
1000 read_register_gen.
1001 (deprecated_write_register_gen): Rename write_register_gen.
1002 * i387-tdep.c: Update.
1003 * x86-64-linux-nat.c: Update
1004 * wince.c: Update.
1005 * thread-db.c: Update.
1006 * win32-nat.c: Update.
1007 * mips-tdep.c: Update.
1008 * d10v-tdep.c: Update.
1009 * cris-tdep.c: Update.
1010 * remote-sim.c: Update.
1011 * remote-rdi.c: Update.
1012 * remote-rdp.c: Update.
1013 * frame.c: Update.
1014 * target.c: Update.
1015 * blockframe.c: Update.
1016 * x86-64-tdep.c: Update.
1017 * xstormy16-tdep.c: Update.
1018 * sh-tdep.c: Update.
1019 * s390-tdep.c: Update.
1020 * rs6000-tdep.c: Update.
1021 * sparc-tdep.c: Update.
1022 * i386-tdep.c: Update.
1023 * dwarf2cfi.c: Update.
1024 * regcache.c: Update.
1025
1026 2002-11-01 Joel Brobecker <brobecker@gnat.com>
1027
1028 New interix-specific files:
1029 * config/i386/nm-interix.h: New file.
1030 * config/i386/interix.mh: New file.
1031 * config/i386/interix.mt: New file.
1032 * i386-interix-nat.c: New file.
1033 * i386-interix-tdep.c: New file.
1034
1035 2002-11-01 Andrew Cagney <cagney@redhat.com>
1036
1037 * frame.h (deprecated_generic_get_saved_register): Rename
1038 generic_get_saved_register.
1039 * blockframe.c (deprecated_generic_get_saved_register): Update.
1040 * xstormy16-tdep.c (xstormy16_get_saved_register): Update.
1041 (xstormy16_frame_saved_register): Update.
1042 * sh-tdep.c (sh_gdbarch_init): Update.
1043 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1044 * ia64-tdep.c (ia64_get_saved_register): Update.
1045 * cris-tdep.c (cris_gdbarch_init): Update.
1046 * config/m32r/tm-m32r.h (GET_SAVED_REGISTER): Update.
1047 * arm-tdep.c (arm_gdbarch_init): Update.
1048
1049 2002-10-31 Daniel Jacobowitz <drow@mvista.com>
1050
1051 * lin-lwp.c (lin_lwp_resume): Remove resume_all test for !step.
1052
1053 2002-10-31 Daniel Jacobowitz <drow@mvista.com>
1054
1055 * i386-linux-tdep.c (i386_linux_pc_in_sigtramp): Check for
1056 trampolines in sigaction.
1057
1058 2002-10-31 Andrew Cagney <cagney@redhat.com>
1059
1060 * h8300-tdep.c: Include "gdb_assert.h".
1061 (h8300_print_register): Add gdbarch, file and frame parameters.
1062 Use frame_read_unsigned_register to read the register's value.
1063 Use fprintf_filtered to display output.
1064 (h8300_print_registers_info): Replace h8300_do_registers_info.
1065 (h8300_gdbarch_init): Set print_registers_info.
1066
1067 2002-10-31 Andrew Cagney <cagney@redhat.com>
1068
1069 * frame.c (frame_read_unsigned_register): New function.
1070 (frame_read_signed_register): New function.
1071 * frame.h (frame_read_unsigned_register): Declare.
1072 (frame_read_signed_register): Declare.
1073
1074 2002-10-31 Andrew Cagney <cagney@redhat.com>
1075
1076 * h8500-tdep.c (h8500_print_registers_info): New static function,
1077 clone of infcmd.c's default_print_registers_info.
1078 (h8500_do_registers_info): New funtion.
1079 (h8500_print_register_hook): Rename print_register_hook, make
1080 static.
1081
1082 * config/h8500/tm-h8500.h: Update copyright.
1083 (DEPRECATED_DO_REGISTERS_INFO): Define.
1084 (h8500_do_registers_info: Declare.
1085 (PRINT_REGISTER_HOOK): Delete macro.
1086 (print_register_hook): Delete function.
1087
1088 2002-10-31 Andrew Cagney <cagney@redhat.com>
1089
1090 * z8k-tdep.c (z8k_print_register_hook): Make static.
1091 (z8k_print_registers_info): New static function, clone of
1092 infcmd.c's default_print_registers_info.
1093 (z8k_do_registers_info): New function. Wrap
1094 z8k_print_registers_info.
1095 * config/z8k/tm-z8k.h: Update copyright.
1096 (PRINT_REGISTER_HOOK): Delete macro.
1097 (z8k_print_register_hook): Delete declaration.
1098 (DEPRECATED_DO_REGISTERS_INFO): Define.
1099 (z8k_do_registers_info): Declare.
1100
1101 2002-10-30 Joel Brobecker <brobecker@gnat.com>
1102
1103 * hppa-tdep.c (find_function_in_inferior): Remove this extern,
1104 as this is already provided by value.h, and was actually causing
1105 a compilation error because of a conflict in parameter type
1106 declaration due to a missing const keyword.
1107 (low_text_segment_addres): Fix a compilation warning.
1108
1109 2002-10-29 Daniel Jacobowitz <drow@mvista.com>
1110
1111 * mips-linux-nat.c (mips_linux_cannot_fetch_register): Don't fetch
1112 registers without a name.
1113 (mips_linux_cannot_store_register): Don't store registers without
1114 a name.
1115
1116 2002-10-28 David Carlton <carlton@math.stanford.edu>
1117
1118 * symtab.c (find_addr_symbol): Delete. (It was already commented
1119 out.)
1120 * symtab.h: Delete prototype for find_addr_symbol.
1121
1122 2002-10-26 Andrew Cagney <cagney@redhat.com>
1123
1124 * gdbarch.sh (DEPRECATED_DO_REGISTERS_INFO): Rename
1125 DO_REGISTERS_INFO.
1126 gdbarch.h, gdbarch.c: Re-generate.
1127 * infcmd.c (default_print_registers_info): Update reference.
1128 * mips-tdep.c (mips_gdbarch_init): Set deprecated_do_registers_info.
1129 (mips_dump_tdep): Do not print DO_REGISTERS_INFO.
1130 * sh-tdep.c (sh_gdbarch_init): Ditto.
1131 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1132 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1133
1134 2002-10-26 Mark Kettenis <kettenis@gnu.org>
1135
1136 * x86-64-tdep.c (x86_64_init_abi): Set init_extra_frame_info to
1137 cfi_init_extra_frame_info.
1138 * x86-64-tdep.h (x86_64_init_extra_frame_info): Remove prototype.
1139 * x86-64-linux-tdep.c (x86_64_init_extra_frame_info): Remove function.
1140
1141 * x86-64-tdep.c (x86_64_init_abi): Add calls to override the i386
1142 target where necessary. Add more comments and remove the ones
1143 that don't provide any useful information.
1144
1145 * i386-tdep.c (i386_frame_saved_pc): Replace call to
1146 deprecated_read_register_dummy with
1147 frame_unwind_unsigned_register.
1148
1149 * i386-tdep.c (i386_extract_struct_value_address): Use
1150 regcache_raw_read_unsigned instead of
1151 regcache_cooked_read_unsigned since we know that the register
1152 we're reading isn't a pseudo register. Rename variable 'val' into
1153 the more descriptive 'addr'.
1154
1155 * x86-64-tdep.c: Fix some formatting problems, mostly in comments.
1156 (x86_64_push_return_address): Add comment.
1157 (x86_64_pop_frame): Make static.
1158 (examine_argument): Clarify comment.
1159 (x86_64_skip_prologue): Make prolog_expact variable static.
1160
1161 * dwarf2cfi.c: Fix some formatting problems.
1162 (context_cpy, read_encoded_pointer): Clarify comments.
1163
1164 * x86-64-tdep.c (x86_64_breakpoint_from_pc): Constify.
1165 (x86_64_init_abi): Move set_gdbarch_* calls that overlap with the
1166 i386 target back into x86_64_gdbarch_init. Add some comments and
1167 remove meaningless ones.
1168
1169 2002-10-25 Andrew Cagney <cagney@redhat.com>
1170
1171 * complaints.h (struct deprecated_complaint): Rename `struct
1172 complaint'.
1173 * complaints.c (complain): Update.
1174 * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete
1175 incorrect comment indicating that "symfile.h" was being included
1176 for the `struct complaint' definition.
1177 * remote-vx.c: Update.
1178 * objc-lang.c: Update.
1179 * xcoffread.c: Update.
1180 * hpread.c: Update.
1181 * mdebugread.c: Update.
1182 * stabsread.c: Update.
1183 * dwarf2read.c: Update.
1184 * dwarfread.c: Update.
1185 * elfread.c: Update.
1186 * coffread.c: Update.
1187 * stabsread.h: Update.
1188 * dbxread.c: Update.
1189 * buildsym.c: Update.
1190 * gdbtypes.c: Update.
1191 * macrotab.c: Update.
1192
1193 2002-10-25 Mark Kettenis <kettenis@gnu.org>
1194
1195 * x86-64-tdep.c (x86_64_gdbarch_init): Make a bit more similar to
1196 the version in i386-tdep.c. Move set_gdbarch_* calls out into...
1197 (x86_64_init_abi): ...new function.
1198
1199 * Makefile.in (i386v-nat.o): Add $(i386_tdep_h).
1200 * i386v-nat.c: Include "i386-tdep.h".
1201
1202 2002-10-25 Andrew Cagney <cagney@redhat.com>
1203
1204 * gdbtypes.c (address_space_name_to_int): Update.
1205 (address_space_int_to_name): Update.
1206 * gdbarch.sh (address_class_type_flags_to_name): Change to a pure
1207 multi-arch predicate.
1208 (address_class_name_to_type_flags): Ditto.
1209 * gdbarch.h, gdbarch.c: Re-generate.
1210
1211 * MAINTAINERS: Check all warnings when h8300hms and alpha-elf.
1212
1213 2002-10-24 Martin M. Hunt <hunt@redhat.com>
1214
1215 * utils.c (string_to_core_addr): Revert patch from 11 Oct.
1216
1217 2002-10-24 Elena Zannoni <ezannoni@redhat.com>
1218
1219 * symtab.h (INIT_SAL): Delete macro.
1220 (init_sal): Export.
1221 * symtab.c (init_sal): New function.
1222
1223 * ada-lang.c (ada_finish_decode_line_1): Change INIT_SAL macro
1224 to init_sal function call.
1225 (find_sal_from_funcs_and_line): Ditto.
1226 (all_sals_for_line): Ditto.
1227 * breakpoint.c (create_internal_breakpoint): Ditto.
1228 (create_fork_vfork_event_catchpoint): Ditto.
1229 (create_exec_event_catchpoint): Ditto.
1230 (parse_breakpoint_sals): Ditto.
1231 (watch_command_1): Ditto.
1232 (handle_gnu_4_16_catch_command): Ditto.
1233 (clear_command): Ditto.
1234 * hppa-tdep.c (child_enable_exception_callback): Ditto.
1235 * infcmd.c (run_stack_dummy): Ditto.
1236 * infrun.c (process_event_stop_test): Ditto.
1237 (check_sigtramp2): Ditto.
1238 (step_over_function): Ditto.
1239 * linespec.c (decode_line_2): Ditto.
1240 (decode_line_1): Ditto.
1241 * source.c (line_info): Ditto.
1242 * symtab.c (find_pc_sect_line): Ditto.
1243
1244 2002-10-24 Michal Ludvig <mludvig@suse.cz>
1245
1246 * dwarf2cfi.c (struct context)
1247 (struct context_reg): Moved to dwarf2cfi.h
1248 (context_alloc, frame_state_alloc, context_cpy):
1249 Made extern instead of static, removed prototypes.
1250 * dwarf2cfi.h (struct context)
1251 (struct context_reg): New, moved from dwarf2cfi.c
1252 (context_alloc, frame_state_alloc, context_cpy):
1253 New prototypes.
1254 * x86-64-linux-tdep.c (x86_64_linux_sigtramp_saved_pc):
1255 Changed from static to extern.
1256 (LINUX_SIGINFO_SIZE, LINUX_SIGCONTEXT_PC_OFFSET)
1257 (LINUX_SIGCONTEXT_FP_OFFSET)
1258 (LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Adjusted.
1259 (x86_64_linux_in_sigtramp, x86_64_linux_frame_chain)
1260 (x86_64_init_frame_pc, x86_64_init_extra_frame_info): New.
1261 * x86-64-tdep.c (x86_64_gdbarch_init): Several
1262 set_gdbarch_*() calls now use x86-64 specific functions
1263 instead of DWARF2 CFI ones.
1264 * x86-64-tdep.h (x86_64_linux_in_sigtramp)
1265 (x86_64_linux_frame_chain, x86_64_init_frame_pc)
1266 (x86_64_init_extra_frame_info): New prototypes.
1267
1268 2002-10-23 David Carlton <carlton@math.stanford.edu>
1269
1270 * linespec.c: #include "parser-defs.h".
1271 Delete prototype for find_template_name_end.
1272 * Makefile.in (linespec.o): Depend on $(parser_defs_h).
1273
1274 2002-10-23 Jeff Johnston <jjohnstn@redhat.com>
1275
1276 * NEWS: add recent mi fixes.
1277 * varobj.c (struct varobj): Add new "updated" flag.
1278 (new_variable): Default "updated" flag to 0.
1279 (varobj_set_value): Set "updated" flag to 1 if value
1280 changes.
1281 (varobj_update): Check varobj "updated" flag before
1282 comparing old and refreshed values. Fix for
1283 PR gdb/702.
1284
1285 2002-10-23 David Carlton <carlton@math.stanford.edu>
1286
1287 * parse.c (parse_exp_1): Use BLOCK_START.
1288 * x86-64-tdep.c (x86_64_skip_prologue): Use BLOCK_END,
1289 SYMBOL_BLOCK_VALUE.
1290 * objc-lang.c (find_methods): Use BLOCK_START, BLOCK_END.
1291
1292 2002-10-23 David Carlton <carlton@math.stanford.edu>
1293
1294 * symtab.c: Delete cplusplus_hint.
1295 Delete prototype for find_template_name_end.
1296
1297 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
1298
1299 * symtab.h: Update comment.
1300
1301 2002-10-23 Michael Snyder <msnyder@redhat.com>
1302
1303 * printcmd.c (address_info): Restore quotes in output.
1304 * valops.c (value_of_local): Restore quotes in error message.
1305
1306 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
1307
1308 * symtab.c (symbol_demangled_name): New function.
1309 * symtab.h (SYMBOL_DEMANGLED_NAME): Simplify macro, by
1310 turning most of it into a function.
1311 (symbol_demangled_name): Export.
1312
1313 2002-10-23 Michael Snyder <msnyder@redhat.com>
1314
1315 * valops.c (value_of_local): Restore quotes in error message.
1316
1317 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
1318
1319 * symtab.c (symbol_init_language_specific): New function.
1320 * symtab.h (SYMBOL_INIT_LANGUAGE_SPECIFIC): Simplify macro, by
1321 turning most of it into a function.
1322 (symbol_init_language_specific): Export.
1323
1324 2002-10-23 David Carlton <carlton@math.stanford.edu>
1325
1326 * dwarf2read.c (dwarf_tag_name): Add DWARF 3 names.
1327 (dwarf_attr_name): Ditto.
1328 (dwarf_type_encoding_name): Ditto.
1329 (scan_partial_symbols): Descend into DW_TAG_namespace entries.
1330 (process_die): Handle DW_TAG_namespace,
1331 DW_TAG_imported_declaration, DW_TAG_imported_module.
1332 (read_namespace): New function.
1333
1334 2002-10-22 Joel Brobecker <brobecker@gnat.com>
1335
1336 * configure.in: Define NEW_PROC_API on Interix too.
1337 * configure: Regenerate.
1338
1339 2002-10-21 Joel Brobecker <brobecker@gnat.com>
1340
1341 * configure: Regenerate using the proper version of autoconf.
1342
1343 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
1344
1345 * findvar.c (read_var_value): Temporarily disable TLS code, until
1346 complete TLS support is added.
1347
1348 2002-10-21 Jim Blandy <jimb@redhat.com>
1349 Elena Zannoni <ezannoni@redhat.com>
1350
1351 * symtab.h (address_class): Re-add LOC_THREAD_LOCAL_STATIC
1352 for thread local storage locations.
1353 (struct symbol): Add objfile field.
1354 (SYMBOL_OBJFILE): Define.
1355 * dwarf2read.c (is_thread_local): New static variable.
1356 (new_symbol): If variable is in thread local fill in address class
1357 and objfile appropriately.
1358 (decode_locdesc): Recognize and handle DW_OP_GNU_push_tls_address
1359 stack operation.
1360 * printcmd.c (address_info): Print the information for thread
1361 local storage variable.
1362 * findvar.c (read_var_value): In case of thread local variable,
1363 defer to the target vector code to compute address.
1364
1365 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
1366
1367 * solib-svr4.c (svr4_fetch_objfile_link_map): New function.
1368 * solib-svr4.h (svr4_fetch_objfile_link_map): Export.
1369
1370 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
1371
1372 * symtab.h (address_class): Rename
1373 LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC.
1374 * hpread.c (hpread_process_one_debug_symbol): Ditto.
1375 * printcmd.c (address_info): Ditto.
1376 * findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
1377
1378 2002-10-20 Mark Kettenis <kettenis@gnu.org>
1379
1380 * i386bsd-nat.c (i386bsd_dr_set, i386bsd_dr_get_status): Use
1381 DBREG_DRX macro to acces debug registers.
1382
1383 * Makefile.in (i386obsd-tdep.o): New target.
1384
1385 * solib-sunos.c: Include "bcache.h" and "regcache.h".
1386 * Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h).
1387
1388 * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds.
1389 * config/i386/obsd.mt: New file.
1390 * i386bsd-nat.c (_initialize_i386bsd_nat): Introduce
1391 i386obsd_sc_pc_offset and i386obsd_sc_sp_offset;
1392 * i386obsd-nat.c (_initialize_i386obsd_nat): Set
1393 i386obsd_sigtramp_start and i386obsd_sigtramp_end instead of
1394 i386nbsd_sigtramp_start and i386nbsd_sigtramp_end.
1395 * i386obsd-tdep.c: New file.
1396
1397 2002-10-19 Adam Fedor <fedor@gnu.org>
1398
1399 * objc-exp.y (name_not_typename): Fix invalid comment.
1400
1401 2002-10-20 Mark Kettenis <kettenis@gnu.org>
1402
1403 * solib-sunos.c (allocate_rt_common_objfile): Use bcache_xmalloc
1404 to allocate partial syms and macro byte caches.
1405
1406 2002-10-18 David Carlton <carlton@math.stanford.edu>
1407
1408 * symtab.h: Delete 'struct source' and 'struct sourcevector'.
1409
1410 2002-10-18 Adam Fedor <fedor@gnu.org>
1411
1412 * stabsread.c (find_name_end): New function.
1413 (define_symbol): Use it.
1414
1415 2002-10-18 Daniel Jacobowitz <drow@mvista.com>
1416
1417 * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1418 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1419 * config/alpha/nm-nbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1420 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1421
1422 2002-10-17 David Carlton <carlton@math.stanford.edu>
1423
1424 * symfile.h: Add opaque declaration for struct obstack.
1425 Declare obsavestring to take a const char *.
1426 * symfile.c (obsavestring): Make first argument a const char *.
1427
1428 2002-10-16 Adam Fedor <fedor@gnu.org>
1429
1430 * breakpoint.c (parse_breakpoint_sals): Ignore ObjC method
1431 names when matching breakpoints in current file.
1432
1433 2002-10-16 Kevin Buettner <kevinb@redhat.com>
1434
1435 * dwarf2read.c (dwarf2_invalid_pointer_size): New complaint.
1436 (read_tag_pointer_type): Add address class support.
1437 * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS)
1438 (ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_NAME_TO_TYPE_FLAGS):
1439 New methods.
1440 * gdbarch.h, gdbarch.c: Regenerate.
1441 * gdbtypes.c (address_space_name_to_int, address_space_int_to_name)
1442 (make_type_with_address_space, recursive_type_dump): Add address
1443 class support.
1444 * gdbtypes.h (TYPE_FLAG_ADDRESS_CLASS_1, TYPE_FLAG_ADDRESS_CLASS_2)
1445 (TYPE_FLAG_ADDRESS_CLASS_ALL, TYPE_ADDRESS_CLASS_1)
1446 (TYPE_ADDRESS_CLASS_2, TYPE_ADDRESS_CLASS_ALL): New defines
1447
1448 2002-10-16 Klee Dienes <kdienes@apple.com>
1449
1450 * stabsread.c (read_tilde_fields): Use name[sizeof(vptr_name)-2]
1451 to get the last character of a char[] buffer, not
1452 name[sizeof(vptr_name)-1].
1453
1454 2002-10-14 Adam Fedor <fedor@gnu.org>
1455
1456 * symtab.h: New objc_specific struct.
1457 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Handle ObjC.
1458 (SYMBOL_DEMANGLED_NAME): Likewise.
1459
1460 2002-10-14 Adam Fedor <fedor@gnu.org>
1461
1462 * symfile.c (init_filename_language_table): Add ObjC file extension.
1463
1464 2002-10-14 Adam Fedor <fedor@gnu.org>
1465
1466 * utils.c (puts_filtered_tabular): New function.
1467 (fprintf_symbol_filtered): Get ObjC demangled name.
1468 * defs.h (puts_filtered_tabular): Declared.
1469
1470 2002-10-14 Kevin Buettner <kevinb@redhat.com>
1471
1472 * c-lang.h (c_type_print_varspec_prefix): Delete.
1473 * c-typeprint.c (c_type_print_varspec_prefix): Make static. Add
1474 ``need_post_space'' parameter. Adjust all callers.
1475
1476 2002-10-14 Daniel Jacobowitz <drow@mvista.com>
1477
1478 * config/mips/nm-irix4.h (HAVE_NONSTEPPABLE_WATCHPOINT): Define to 1.
1479 * config/mips/nm-irix5.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1480 * config/mips/tm-embed.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1481 * config/pa/nm-hppah.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1482
1483 2002-10-13 Adam Fedor <fedor@gnu.org>
1484
1485 * source.c (print_source_lines): Update comments.
1486
1487 2002-10-13 Adam Fedor <fedor@gnu.org>
1488
1489 * valops.c (value_of_local): New function.
1490 (value_of_this): Use it.
1491 * value.h (value_of_local): Declared.
1492
1493 2002-10-13 Adam Fedor <fedor@gnu.org>
1494
1495 * parse.c: (length_of_subexp, prefixify_subexp): Handle
1496 OP_MSGCALL, OP_SELECTOR, OP_NSSTRING, and OP_SELF.
1497
1498 2002-10-12 Adam Fedor <fedor@gnu.org>
1499
1500 * language.c (binop_result_type): Add language_objc to case.
1501 (integral_type): Likewise.
1502 (character_type): Likewise.
1503 (string_type): Likewise.
1504 (boolean_type): Likewise.
1505 (structured_type): Likewise.
1506 (binop_type_check): Likewise.
1507
1508 2002-10-11 Adam Fedor <fedor@gnu.org>
1509
1510 * printcmd.c (address_info): Print 'self' for ObjC.
1511
1512 2002-10-11 Adam Fedor <fedor@gnu.org>
1513
1514 * expression.h: New ops OP_NSSTRING, OP_SELECTOR, OP_MSGCALL, and
1515 OP_SELF.
1516
1517 2002-10-11 Adam Fedor <fedor@gnu.org>
1518
1519 * language.h (CAST_IS_CONVERSION): Add language_objc.
1520
1521 2002-10-11 Adam Fedor <fedor@gnu.org>
1522
1523 * defs.h (enum language): Add language_objc.
1524
1525 2002-10-11 Klee Dienes <kdienes@apple.com>
1526
1527 * corefile.c (read_memory_typed_address): New function.
1528 * gdbcore.h (read_memory_typed_address): Add prototype.
1529 * blockframe.c (sigtramp_saved_pc): Use read_memory_typed_address
1530 to read a value destined for a CORE_ADDR, not read_memory_integer.
1531 * f-valprint.c (f77_get_dynamic_upperbound): Ditto.
1532 (f77_get_dynamic_lowerbound): Ditto.
1533
1534 2002-10-11 Martin M. Hunt <hunt@redhat.com>
1535
1536 * utils.c (string_to_core_addr): After turning string into
1537 a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS
1538 which will do necessary sign-extension, etc.
1539
1540 2002-10-11 Daniel Jacobowitz <drow@mvista.com>
1541
1542 * c-exp.y (THIS): Delete token and grammar rule.
1543 (yylex): Don't return THIS.
1544 * cp-valprint.c (vtbl_ptr_name_old): Delete.
1545 (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
1546 * demangle.c (cplus_markers): Update comment. Put '$'
1547 first. Remove CPLUS_MARKER.
1548 (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
1549 * jv-exp.y (THIS): Delete token and grammar rule.
1550 (yylex): Don't return THIS.
1551 * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
1552 * objc-exp.y (THIS): Delete token and grammar rule.
1553 (yylex): Don't return THIS.
1554 * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
1555 * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
1556 (read_member_functions): Likewise for opname.
1557 (read_tilde_fields): Use is_cplus_marker.
1558
1559 * defs.h (CPLUS_MARKER): Don't define.
1560 * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
1561 * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
1562 * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
1563 * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
1564 * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
1565
1566 * config/i386/tm-i386v4.h: Delete file.
1567 * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
1568 * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
1569 * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
1570 * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
1571 * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
1572 * config/i386/i386sco5.mt (TM_FILE): Likewise.
1573 * config/i386/i386v4.mt (TM_FILE): Likewise.
1574 * config/i386/ncr3000.mt (TM_FILE): Likewise.
1575
1576 2002-10-10 Marko Mlinar <markom@opencores.org>
1577
1578 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
1579 accidentially not commited 2002-10-09
1580 * gdbarch.h, gdbarch.c: Re-generate.
1581
1582 2002-10-09 Marko Mlinar <markom@opencores.org>
1583
1584 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
1585 * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
1586 * gdbarch.h, gdbarch.c: Re-generate.
1587
1588 2002-10-08 Petr Sorfa <petrs@caldera.com>
1589
1590 Revised and re-submitted by John Wolfe <jlw@caldera.com>
1591
1592 Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
1593 so we can work on more than one compilation unit at a time. This
1594 helps prepare GDB to handle inter-CU die references.
1595 * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
1596 the code to be defined before struct comp_unit_head.
1597 (comp_unit_head): Added new members - offset, cu_head,
1598 begin_die, next and dwarf2_abbrevs.
1599 (dwarf2_abbrevs): Removed single static var; now member of
1600 struct comp_unit_head.
1601 dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
1602 members.
1603 (psymtab_to_symtab_1): Changed to work with the new
1604 struct comp_unit_head.
1605 (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
1606 constructs the dwarf2_abbrevs[] inside the cu_header.
1607 (dwarf2_empty_abbrev_table): Now expects a ptr to a
1608 dwarf2_abbrev table to clean up.
1609 (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
1610 handling of dwarf2_abbrevs inside the cu_header.
1611 (read_partial_die): Now supports the call to the new
1612 dwarf2_lookup_abbrev.
1613 (read_full_die): Now supports the call to the new
1614 dwarf2_lookup_abbrev.
1615
1616 2002-10-06 Christopher Faylor <cgf@redhat.com>
1617
1618 * Makefile.in (install-gdbtk): Add missing continuation backslash to
1619 insure that shell variables, such as "transformed_name" are propagated
1620 to later shell statements in rule.
1621
1622 2002-10-06 Mark Kettenis <kettenis@gnu.org>
1623
1624 * config/i386/nm-i386sco.h: Add protection against
1625 multiple-inclusion. Include "i386/nm-i386v.h".
1626 (REGISTER_U_ADDR): Remove define.
1627 (i386_register_u_addr): Remove prototype.
1628
1629 2002-10-04 Michael Snyder <msnyder@redhat.com>
1630
1631 * m32r-stub.c (handle_exception): Make sure exception is "trap"
1632 before treating it as a single-step event.
1633
1634 2002-10-03 Adam Fedor <fedor@gnu.org>
1635
1636 * objc-lang.c: ARI fixes. Change string.h to gdb_string.h.
1637 (objc_demangle): Remove assignment in if statements, Replace
1638 free with xfree.
1639 (add_msglist): Likewise.
1640 (end_msglist): Likewise.
1641 (complare_selectors): Likewise.
1642 (selectors_info): Likewise.
1643 (compare_classes): Likewise.
1644 (classes_info): Likewise.
1645 (print_object_command): Likewise.
1646 (find_objc_msgcall_submethod): Replace PTR with void *.
1647 * objc-lang.h: Remove check for __STDC__.
1648
1649 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1650
1651 * ui-out.h (ui_out_field_fmt_int): New prototype.
1652 * ui-out.c (ui_out_field_fmt_int): New function allowing specification
1653 of field width and alignment.
1654 * stack.c (print_frame_info_base): When printing frame level, use
1655 ui_out_field_fmt_int with a width of 2 and left alignment. Fix for
1656 PR gdb/192
1657
1658 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1659
1660 * MAINTAINERS: Add self to Write After Approval list.
1661
1662 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1663
1664 * infcmd.c (interrupt_target_command_wrapper): Delete.
1665 (interrupt_target_command): Make non static.
1666 (nofp_registers_info): Make static.
1667 * stack.c (return_command_wrapper): Delete.
1668 (return_command): Make non static.
1669
1670 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1671
1672 * event-top.c (gdb_setup_readline): New function. Code moved from
1673 _initialize_event_loop().
1674 (_initialize_event_loop): Call gdb_setup_readline().
1675
1676 2002-10-02 Andrew Cagney <ac131313@redhat.com>
1677
1678 * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
1679 * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
1680 * gdbarch.h, gdbarch.c: Re-generate.
1681
1682 2002-10-02 Daniel Jacobowitz <drow@mvista.com>
1683
1684 Fix PR gdb/778
1685 * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
1686 before recursing.
1687 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
1688 of fill_in_vptr_fieldno.
1689
1690 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1691
1692 * inferior.h (registers_info, stepi_command, nexti_command,
1693 continue_command, interrupt_target_command): Export from infcmd.c.
1694 * frame.h (args_info, selected_frame_level_changed_hook,
1695 return_command): Export from stack.c.
1696 * v850ice.c (stepi_command, nexti_command, continue_command): use
1697 prototypes from inferior.h.
1698 * tracepoint.c (registers_info, args_info, locals_info): Use
1699 prototypes from frame.h and inferior.h.
1700 * Makefile.in (mi-main.o): Add dependency on frame.h.
1701
1702 2002-10-02 Andrew Cagney <ac131313@redhat.com>
1703
1704 * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
1705 value in register 3 adjusted by ppc_gp0_regnum.
1706
1707 * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
1708
1709 2002-10-02 Marko Mlinar <markom@opencores.org>
1710
1711 * MAINTAINERS: Add myself to the Write After Approval list.
1712
1713 2002-10-01 Alexandre Oliva <aoliva@redhat.com>
1714
1715 * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
1716 of the section for the N64 ABI, fixed.
1717
1718 * config/mips/tm-irix6.h: Include solib.h.
1719
1720 2002-10-01 Elena Zannoni <ezannoni@redhat.com>
1721
1722 * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
1723 GNU operators.
1724
1725 2002-10-01 Andrew Cagney <ac131313@redhat.com>
1726
1727 * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
1728 and that "mi0" syntax has been removed.
1729
1730 2002-09-30 David Carlton <carlton@math.stanford.edu>
1731
1732 * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
1733 * ppc-sysv-tdep.c: #include "gdb_string.h".
1734 * remote-sds.c (getmessage): Add semicolon after 'retry' label to
1735 pacify GCC.
1736
1737 2002-10-01 Andrew Cagney <ac131313@redhat.com>
1738
1739 * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
1740 "vrsave"'s register number.
1741
1742 2002-09-30 Andrew Cagney <ac131313@redhat.com>
1743
1744 * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
1745 use frame_unwind_signed_register to obtain the PC.
1746 (mips_frame_chain): Handle a generic dummy frame.
1747 (mips_init_extra_frame_info): When a generic dummy frame, don't
1748 re-compute the frame base.
1749 (mips_pop_frame): Handle generic dummy frames.
1750 (mips_gdbarch_init): When generic dummy frames, set
1751 use_generic_dummy_frames, push_dummy_frame to
1752 generic_push_dummy_frame, pc_in_call_dummy to
1753 generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
1754 generic_save_dummy_frame_tos.
1755
1756 2002-09-30 Andrew Cagney <ac131313@redhat.com>
1757
1758 * blockframe.c (generic_find_dummy_frame): Rewrite. Only test
1759 against TOP when TOP was explictly set.
1760 (generic_push_dummy_frame): Set TOP to zero.
1761
1762 2002-09-30 Elena Zannoni <ezannoni@redhat.com>
1763
1764 * event-loop.c (start_event_loop): Rename variable 'result' to
1765 'gdb_result', to avoid conflicts with upcoming intepreters changes.
1766
1767 2002-09-30 Keith Seitz <keiths@redhat.com>
1768
1769 * gdb-events.sh (selected_thread_changed): New event.
1770 * gdb-events.c: Regenerated.
1771 * gdb-events.h: Regenerated.
1772
1773 2002-09-30 Hans-Peter Nilsson <hp@bitrange.com>
1774
1775 * MAINTAINERS: Add self to Write After Approval list.
1776
1777 2002-09-30 Fernando Nasser <fnasser@redhat.com>
1778
1779 * disasm.c: New file.
1780 * disasm.h: New file.
1781 * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
1782 (compare_lines): Ditto.
1783 (dump_insns): Ditto.
1784 (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
1785 argument.
1786 (do_assembly_only): Ditto.
1787 (do_disassembly): Renamed to gdb_disassembly and moved to
1788 disasm.c. Sdded uiout argument.
1789 * Makefile.in: Add new files. Reorder SFILES list. Update
1790 dependencies. Include libgdb.a later in the insight executable.
1791
1792 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1793
1794 * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
1795 bfd/elf64-alpha-fbsd.c.
1796
1797 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1798
1799 * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
1800 i386gnu-tdep.c.
1801
1802 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1803
1804 * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
1805 __FUNCTION__.
1806 * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
1807 function name.
1808 (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
1809 (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
1810 (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
1811 (S_msg_sig_post_reply): Ditto.
1812
1813 2002-09-28 Corinna Vinschen <vinschen@redhat.com>
1814
1815 * sh-tdep.c (sh_use_struct_convention): Use definition according
1816 to ABI.
1817 (sh_push_arguments): Store in register with correct endianess.
1818 (sh_default_store_return_value): Ditto.
1819 (sh_gdbarch_init): Set sizeof long double to 8.
1820
1821 2002-09-27 Mark Kettenis <kettenis@gnu.org>
1822
1823 * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
1824 Fix some whitespace problems.
1825
1826 2002-09-27 David Carlton <carlton@math.stanford.edu>
1827
1828 * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
1829 (mcore-tdep.o): Ditto.
1830 (ns32k-tdep.o): Ditto.
1831 (ns32knbsd-tdep.o): Ditto.
1832 (sh3-rom.o): Ditto.
1833 (vax-tdep.o): Ditto.
1834 * cris-tdep.c: #include "gdb_string.h"
1835 * mcore-tdep.c: Ditto.
1836 * ns32k-tdep.c: Ditto.
1837 * ns32knbsd-tdep.c: Ditto.
1838 * sh3-rom.c: Ditto.
1839 * vax-tdep.c: Ditto.
1840
1841 2002-09-27 David Carlton <carlton@math.stanford.edu>
1842
1843 * config/djgpp/fnchange.lst: Add entries for
1844 gdb/testsuite/gdb.c++/m-static files.
1845
1846 2002-09-27 Jim Wilson <wilson@redhat.com>
1847
1848 * MAINTAINERS: Add myself to the Write After Approval list.
1849
1850 2002-09-26 Martin M. Hunt <hunt@redhat.com>
1851
1852 * mips-tdep.c (find_proc_desc): Initialize startaddr.
1853
1854
1855 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1856
1857 * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
1858 frame.
1859
1860 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1861
1862 * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
1863 (rs6000_struct_return_address): Delete variable.
1864 (rs6000_store_struct_return): Update.
1865 (rs6000_gdbarch_init): Set extract_struct_value_address instead of
1866 deprecated_extract_struct_value_address.
1867 (rs6000_frame_align): New function.
1868 (rs6000_gdbarch_init): Set frame_align.
1869
1870 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1871
1872 From Grace Sainsbury <graces@redhat.com>:
1873 * Makefile.in (gdbtk-main.o): New target.
1874 (gdb.o): New target.
1875 (main_h): Define.
1876 (main.o): Update dependencies.
1877 (gdb$(EXEEXT)): Add gdb.o.
1878 (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
1879 (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
1880 (SUBDIR_GDBTK_CLEAN): Set.
1881 (install-gdbtk): Install the insight binary.
1882 (uninstall-gdbtk): New target.
1883 (all-gdbtk, clean-gdbtk): New rule.
1884 * top.c (use_windows): Default to zero.
1885 * main.c: Include "main.h".
1886 (main): Delete.
1887 (struct captured_main_args): Delete.
1888 (gdb_main): New function.
1889 * main.h: New file.
1890 * gdb.c: New File.
1891
1892 2002-09-25 Andrew Cagney <cagney@redhat.com>
1893
1894 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
1895 (frame_map_regnum_to_name): New function.
1896 (frame_map_name_to_regnum): New function.
1897 * frame.h (frame_map_name_to_regnum): Declare.
1898 (frame_map_regnum_to_name): Declare.
1899 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
1900 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
1901 * parse.c: Do not include "builtin-regs.h".
1902 (target_map_name_to_register): Delete function.
1903 (write_dollar_variable): Use frame_map_name_to_regnum.
1904 * parser-defs.h (target_map_name_to_register): Delete declaration.
1905 * expprint.c: Include "frame.h".
1906 (print_subexp): Use frame_map_regnum_to_name.
1907 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
1908 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
1909
1910 2002-09-25 Andrew Cagney <ac131313@redhat.com>
1911
1912 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
1913 wasn't saved, and the next innermost frame is a dummy, return the
1914 dummy frame's link register.
1915
1916 2002-09-24 Jim Blandy <jimb@redhat.com>
1917
1918 Fix from Paul Breed:
1919 * main.c (captured_main): Add a `break' after the case for 'b'.
1920
1921 2002-09-24 Keith Seitz <keiths@redhat.com>
1922
1923 * varobj.c (c_type_of_child): Use get_target_type instead
1924 of TYPE_TARGET_TYPE.
1925
1926 2002-09-22 Fernando Nasser <fnasser@redhat.com>
1927
1928 * source.c (get_current_or_default_source_symtab_and_line): Remove
1929 function.
1930 (set_default_source_symtab_and_line): New function. Attempts to
1931 determine a source file to list lines from if one is not currently
1932 defined.
1933 (get_current_source_symtab_and_line): Initialize sal.pc and
1934 sal.end fields.
1935 (set_current_source_symtab_and_line): Mark argument as const.
1936 * source.h: Update declarations and comments.
1937 * linespec.c (decode_line_1): Replace call to removed routine above.
1938 * stack.c (print_frame_info_base): Ditto.
1939 * cli/cli-cmds.c (edit_command): Ditto.
1940 (list_command): Ditto.
1941
1942 2002-09-22 Fernando Nasser <fnasser@redhat.com>
1943
1944 * source.c (get_current_or_default_source_symtab_and_line): Initialize
1945 sal.pc and sal.end fields.
1946 (get_current_or_default_source_symtab_and_line): Ditto.
1947 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
1948 so we do not cause a new source symtab to be searched for (reverting an
1949 unintentional change from the 2002-09-20 patch).
1950 * scm-lang.c (scm_unpac): Ditto.
1951
1952 2002-09-21 Andrew Cagney <cagney@redhat.com>
1953
1954 * complaints.c (symfile_explanations): Remove new-line from
1955 ``isolated_message''.
1956 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
1957 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
1958
1959 2002-09-20 Nick Clifton <nickc@redhat.com>
1960
1961 * NEWS: Announce that V850EA ISA is no longer supported.
1962 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
1963
1964 2002-09-20 David Carlton <carlton@math.stanford.edu>
1965
1966 * Makefile.in (c-lang.o): Correct dependencies.
1967 (utils.o): Gather dependencies.
1968 (charset.o): Move.
1969 * c-lang.c: #include "gdb_string.h"
1970
1971 2002-09-20 Fernando Nasser <fnasser@redhat.com>
1972
1973 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
1974 * cli/cli-cmds.c (list_command): New function. Implements the new
1975 cli edit command.
1976 (_init_cli_cmds): Add new command definition.
1977 * gdb.1: Document edit command.
1978 * doc/gdb.texinfo: Document edit command.
1979
1980 2002-09-20 Fernando Nasser <fnasser@redhat.com>
1981
1982 * source.c: Make global variables current_source_symtab and
1983 current_source_line static.
1984 (list_command): Moved to cli/cli-cmds.c.
1985 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
1986 (get_first_line_listed): New accessor function.
1987 (get_lines_to_list): New accessor function.
1988 (get_current_source_symtab_and_line): New function. Retrieves the
1989 position in the source code that we consider current.
1990 (get_current_or_default_source_symtab_and_line): New function.
1991 Like the above but attempts to determine a default position if one
1992 is not currently defined.
1993 (set_current_source_symtab_and_line): New function. Sets the source
1994 code position considered current and returns the previously set one.
1995 (clear_current_source_symtab_and_line): Reset stored information about
1996 a current source line.
1997 (_initialize_source): Remove registration for the "list" command and
1998 its alias.
1999 * source.h: Add declarations for the new functions above.
2000 * symtab.h: Remove declarations for the global variables mentioned
2001 above.
2002 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
2003 obtain current source line.
2004 * linespec.c (decode_line_1): Ditto.
2005 * macroscope.c (default_macro_scope): Ditto.
2006 * scm-lang.c (scm_unpac): Ditto.
2007 * stack.c (print_frame_info_base): Ditto.
2008 * symfile.c (clear_symtab_users): Ditto.
2009 * symtab.c (decode_line_spec): Ditto.
2010 * cli/cli-cmds.c (list_command): Moved here from source.c.
2011 (ambiguous_line_spec): Moved here from source.c.
2012 (_init_cli_cmds): Add definition for "list" and its alias.
2013 * Makefile.in: Update dependencies.
2014
2015 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
2016
2017 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
2018 with what gcc thinks is correct.
2019
2020 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
2021
2022 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
2023 multiple register push instruction.
2024
2025 2002-09-19 Jim Blandy <jimb@redhat.com>
2026
2027 Add support for distinct host and target character sets.
2028 * charset.c, charset.h: New files.
2029 * c-exp.y: #include "charset.h".
2030 (yylex): Convert character and string literals to the target
2031 character set, before returning them as the semantic value of the
2032 token.
2033 * c-lang.c: #include "charset.h".
2034 (c_emit_char): Use charset-specific methods to recognize
2035 characters with backslash escape forms, to decide which characters
2036 to print literally and which to print using numeric escape
2037 sequences, and to convert target characters to host characters
2038 before printing.
2039 * utils.c: #include "charset.h".
2040 (no_control_char_error): New function.
2041 (parse_escape): Use charset-specific methods to recognize
2042 backslash escapes, parse `control character' notation, and convert
2043 characters from the host character set to the target character set.
2044 * configure.in: Set the default host character set.
2045 Check where to find iconv, and what its argument types might be.
2046 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
2047 * Makefile.in (SFILES): List charset.c.
2048 (COMMON_OBS): List charset.o.
2049 (charset.o): New rule.
2050 (charset_h): New header dependency variable.
2051 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
2052 (LIBICONV): New variable, set by configure.
2053 (CLIBS): Include $(LIBICONV) here.
2054 * aclocal.m4, config.in, configure: Regenerated.
2055
2056 2002-09-19 Joel Brobecker <brobecker@gnat.com>
2057
2058 * ada-exp.y: Add missing semicolons to end rules. Fixes a
2059 bison 1.35 warning.
2060
2061 2002-09-19 Richard Earnshaw <rearnsha@arm.com>
2062
2063 * gdb_mbuild.sh: New file.
2064
2065 2002-09-19 Andrew Cagney <ac131313@redhat.com>
2066
2067 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
2068
2069 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2070
2071 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
2072 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
2073 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
2074 valops.c, value.h: Revert previous change.
2075
2076 2002-09-18 Michael Snyder <msnyder@redhat.com>
2077
2078 Preliminary support for Objective-C:
2079 * defs.h (language_objc): New enum value.
2080 (puts_filtered_tabular): Declaration only, exported from utils.c.
2081 (skip_quoted): Delete, declared in completer.h.
2082 * c-exp.y: Include completer.h.
2083 * p-exp.y: Ditto.
2084 * jv-exp.y: Ditto.
2085 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
2086 New operator enum values.
2087 * language.h (CAST_IS_CONVERSION): Test for language_objc.
2088 * language.c (binop_result_type): Handle language_objc case.
2089 (integral_type, character_type, string_type, boolean_type,
2090 structured_type, binop_type_check): Ditto.
2091 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
2092 (struct objc_specific): Add to general_symbol_info.
2093 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
2094 (SYMBOL_DEMANGLED_NAME): Handle objc case.
2095 * parser-defs.h (struct objc_class_str): New struct type.
2096 (start_msglist, end_msglist, add_msglist): Declaration only,
2097 exported from objc-lang.c.
2098 * value.h (value_of_local, value_nsstring,
2099 call_function_by_hand_expecting_type): Exported from valops.c.
2100 * valops.c (find_function_addr): Export.
2101 (call_function_by_hand_expecting_type): New function.
2102 (value_of_local): New function.
2103 * symfile.c (init_filename_language_table): Add ".m" extension
2104 for Objective-C.
2105 * utils.c (puts_filtered_tabular): New function.
2106 (fprintf_symbol_filtered): Add objc demangling support (disabled).
2107 (set/show demangle): Extend help-string to refer to ObjC.
2108 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
2109 * stabsread.c (symbol_reference_defined): Objective-C symbols
2110 may contain colons: make allowances when scanning stabs strings
2111 for colons.
2112 (objc_find_colon): New function.
2113 * printcmd.c (address_info): If language == objc then print
2114 "self" instead of "this".
2115 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
2116 OP_NSSTRING, and OP_SELF.
2117 (prefixify_subexp): Ditto.
2118 * source.c (print_source_lines): Mention objc in comment.
2119 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
2120 method names.
2121
2122 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2123
2124 * complaints.h: Update copyright.
2125 (struct complaints): Declare.
2126 (struct complaint): Make `message' constant.
2127 (internal_complaint): Declare.
2128 (complaint): Declare.
2129 (complaint_root): Delete declaration.
2130 (symfile_complaints): Delete declaration.
2131 (struct complaints): Add opaque declaration.
2132 (clear_complaints): Add a complaints parameter.
2133 * complaints.c: Update copyright.
2134 (enum complaint_series): Define.
2135 (complaint_root): Delete.
2136 (struct complaints): Define.
2137 (complaint_sentinel, symfile_complaint_book): New variables.
2138 (symfile_explanations, symfile_complaints): New variables.
2139 New variables.
2140 (get_complaints): New function.
2141 (vcomplaint): New function.
2142 (complaint): New function.
2143 (internal_complaint): New function.
2144 (complain): Call vcomplain with symfile_complaint.
2145 (clear_complaints): Rewrite.
2146 (_initialize_complaints): Use add_setshow_command.
2147 * Makefile.in (complaints.o): Update dependencies.
2148 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
2149 to call to clear_complaints.
2150 (new_symfile_objfile, reread_symbols): Ditto.
2151 (oldsyms_complaint): Delete.
2152 (empty_symtab_complaint, unknown_option_complaint): Delete.
2153 (free_named_symtabs): Use complaint instead of complain.
2154
2155 2002-09-18 Michael Snyder <msnyder@redhat.com>
2156
2157 Contributed by Apple Computer, Inc. Merged with current sources
2158 by Adam Fedor <fedor@doc.com> [cagney].
2159
2160 * objc-lang.c: First clean-up round: comments, indentation.
2161 * objc-lang.h: Ditto.
2162 * objc-lang.y: Ditto.
2163
2164 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2165
2166 * maint.c (maintenance_internal_error): Print the parameter as the
2167 error message.
2168 (maintenance_internal_warning): New function.
2169 (_initialize_maint_cmds): Add command `maint internal-warning'.
2170
2171 * defs.h (internal_warning, internal_vwarning): Declare.
2172 * utils.c (struct internal_problem): Define.
2173 (internal_vproblem): New function.
2174 (internal_warning): New function.
2175 (internal_vwarning): New function.
2176 (internal_warning_problem, internal_error_problem): New variables.
2177 (internal_verror): Just call internal_vproblem.
2178
2179 2002-09-18 Michael Snyder <msnyder@redhat.com>
2180
2181 * objc-lang.c: New file, support for Objective-C.
2182 Preliminary check-in, not yet integrated into gdb.
2183 * objc-lang.h: New file.
2184 * objc-exp.y: New file.
2185
2186 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2187
2188 * infrun.c (signal_stop_update): Convert definition to ISO C.
2189 (signal_print_update): Ditto.
2190 (signal_pass_update): Ditto.
2191 * inflow.c (terminal_save_ours): Ditto.
2192
2193 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
2194 comments.
2195
2196 * config/djgpp/fnchange.lst: Handle name clashes between
2197 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
2198 bfd/coff-tic80.c.
2199
2200 * i386-linux-tdep.h: Fix tipo.
2201
2202 2002-09-18 Adam Fedor <fedor@gnu.org>
2203
2204 * MAINTAINERS: Add myself to the Write After Approval list.
2205
2206 2002-09-18 Jim Blandy <jimb@redhat.com>
2207
2208 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
2209 texthigh and textlow to reader-specific structs caused
2210 objfile_relocate to miss them. This is fixable, but the work that
2211 the change was supposed to prepare GDB for never got done anyway.
2212
2213 2002-09-18 David Carlton <carlton@math.stanford.edu>
2214
2215 * MAINTAINERS: Alphabetize Write After Approval list.
2216
2217 2002-09-18 Daniel Jacobowitz <drow@mvista.com>
2218
2219 Fix PR gdb/709
2220 * values.c (value_static_field): Call read_var_value.
2221
2222 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2223
2224 * valops.c (hand_function_call): Align the initial stack pointer
2225 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
2226 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
2227 return value.
2228 * mips-tdep.c (mips_frame_align): New function.
2229 (mips_gdbarch_init): Set frame_align.
2230 * gdbarch.sh (FRAME_ALIGN): New method.
2231 * gdbarch.h, gdbarch.c: Re-generate.
2232
2233 2002-09-18 Michal Ludvig <mludvig@suse.cz>
2234
2235 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
2236 registers.
2237
2238 2002-09-17 Andrew Cagney <ac131313@redhat.com>
2239
2240 * NEWS: Mention that MIPS $fp behavior changed.
2241 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
2242 reference to FP_REGNUM.
2243 (mipsnbsd_cannot_store_register): Ditto.
2244 * mips-linux-nat.c: Update copyright.
2245 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
2246 (mips_linux_cannot_store_register): Ditto.
2247 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
2248 * config/mips/tm-mips.h: Update copyright.
2249 (FP_REGNUM): Delete macro.
2250 (MIPS_REGISTER_NAMES): Replace "fp" with "".
2251 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
2252 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
2253 (mips_r3041_reg_names, mips_r3051_reg_names)
2254 (mips_r3081_reg_names): Replace "fp" with "".
2255 Fix PR gdb/480.
2256
2257 2002-09-17 Theodore A. Roth <troth@verinet.com>
2258
2259 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
2260 generic_read_register_dummy() (PR gdb/703).
2261 (avr_push_return_address): #if 0 out unused vars.
2262 (avr_gdbarch_init): Enable use of avr_push_return_address().
2263
2264 2002-09-17 Michael Snyder <msnyder@redhat.com>
2265
2266 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
2267 RTE will take care of it.
2268
2269 2002-09-17 Andrew Cagney <ac131313@redhat.com>
2270
2271 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
2272 invalid, return SP_REGNUM.
2273
2274 2002-09-17 Michael Snyder <msnyder@redhat.com>
2275
2276 * mips-tdep.c (mips_pop_frame): Read saved values of floating
2277 point registers without sign extension.
2278
2279 2002-09-17 Andrew Cagney <cagney@redhat.com>
2280
2281 * blockframe.c (deprecated_read_register_dummy): Rename
2282 generic_read_register_dummy.
2283 * frame.c (frame_unwind_signed_register): New function.
2284 (frame_unwind_unsigned_register): New function.
2285 * frame.h (frame_unwind_signed_register): Declare.
2286 (frame_unwind_unsigned_register): Declare.
2287 (deprecated_read_register_dummy): Rename
2288 generic_read_register_dummy.
2289
2290 * h8300-tdep.c (h8300_frame_chain): Update.
2291 (h8300_frame_saved_pc): Update.
2292 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
2293 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
2294 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
2295 (s390_frame_chain): Update.
2296 * v850-tdep.c (v850_find_callers_reg): Update.
2297 (v850_frame_saved_pc): Update.
2298 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
2299 (m32r_find_callers_reg): Update.
2300 (m32r_frame_saved_pc): Update.
2301 * sh-tdep.c (sh_find_callers_reg): Update.
2302 (sh64_get_saved_pr): Update.
2303 (sh_init_extra_frame_info): Update.
2304 (sh_init_extra_frame_info): Update.
2305 (sh64_init_extra_frame_info): Update.
2306 (sh64_init_extra_frame_info): Update.
2307 * mcore-tdep.c (mcore_find_callers_reg): Update.
2308 (mcore_frame_saved_pc): Update.
2309 (mcore_init_extra_frame_info): Update.
2310 * i386-tdep.c (i386_frame_saved_pc): Update.
2311 * ia64-tdep.c (ia64_frame_saved_pc): Update.
2312 (ia64_init_extra_frame_info): Update.
2313 (ia64_init_extra_frame_info): Update.
2314 * d10v-tdep.c (d10v_frame_saved_pc): Update.
2315 * cris-tdep.c (cris_init_extra_frame_info): Update.
2316 * avr-tdep.c (avr_frame_chain): Update.
2317 (avr_init_extra_frame_info): Update.
2318 (avr_frame_saved_pc): Update.
2319 * arm-tdep.c (arm_find_callers_reg): Update.
2320 (arm_init_extra_frame_info): Update.
2321 (arm_frame_saved_pc): Update.
2322
2323 2002-09-17 Tom Tromey <tromey@redhat.com>
2324
2325 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
2326 is "'".
2327
2328 2002-09-17 Corinna Vinschen <vinschen@redhat.com>
2329
2330 * MAINTAINERS: Remove "non multi-arched" text from h8300.
2331 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
2332 NEXT_PROLOGUE_INSN.
2333 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
2334 NEXT_PROLOGUE_INSN.
2335
2336 2002-09-16 Joel Brobecker <brobecker@gnat.com>
2337
2338 * osfsolib.c: Remove file, replaced by solib-osf.c.
2339 * Makefile.in: Remove compilation rules for osfsolib.c.
2340
2341 2002-09-16 David Carlton <carlton@math.stanford.edu>
2342
2343 * cp-valprint.c (cp_print_class_method): Correct args to
2344 check_stub_method_group.
2345
2346 2002-09-16 Corinna Vinschen <vinschen@redhat.com>
2347
2348 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
2349 `set architecture'. Unify naming convention of functions.
2350 (h8300_skip_prologue): Improve prologue analysis.
2351 (h8300_push_arguments): Rewritten to more closely match GCC's
2352 bizarre argument-passing behavior, along with the comment describing
2353 said behavior.
2354 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
2355 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
2356 sim, remote-e7000.c, remote-hms.c and remote.c
2357
2358 2002-09-15 Mark Kettenis <kettenis@gnu.org>
2359
2360 * i386-tdep.c (gdb_print_insn_i386): Removed.
2361 (i386_print_insn): New function.
2362 (i386_gdbarch_init): Set print_insn to i386_print_insns.
2363 (_initialize_i386_tdep): Don't initialize tm_print_insn and
2364 tm_print_insn_info.
2365
2366 2002-09-14 Mark Kettenis <kettenis@gnu.org>
2367
2368 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
2369 zero.
2370
2371 2002-09-14 Corinna Vinschen <vinschen@redhat.com>
2372
2373 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
2374 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
2375 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
2376
2377 2002-09-13 Christopher Faylor <cgf@redhat.com>
2378
2379 * win32-nat.c (child_create_inferior): Honor 'tty' command.
2380
2381 2002-09-13 Daniel Jacobowitz <drow@mvista.com>
2382
2383 * gdbtypes.c (check_stub_method): Make static.
2384 (check_stub_method_group): New function.
2385 * gdbtypes.h: Update prototypes.
2386 * cp-support.c: New file.
2387 * cp-support.h: New file.
2388
2389 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
2390 (update_method_name_from_physname): New function.
2391 (read_member_functions): Correct method names for operators
2392 and v3 constructors/destructors. Separate v2 constructors and
2393 destructors.
2394 * Makefile.in (stabsread.o): Update dependencies.
2395 (SFILES): Add cp-support.c.
2396 (COMMON_OBS): Add cp-support.o.
2397 (cp_support_h, cp-support.o): Add.
2398
2399 * cp-valprint.c (cp_print_class_method): Call
2400 check_stub_method_group instead of check_stub_method. Remove
2401 extraneous QUITs.
2402 * p-valprint.c (pascal_object_print_class_method): Likewise.
2403 * valops.c (search_struct_method): Likewise.
2404 (find_method_list, value_struct_elt_for_reference): Likewise.
2405
2406 2002-09-13 Andrew Cagney <cagney@redhat.com>
2407
2408 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
2409 * gdbarch.h, gdbarch.c: Regenerate.
2410
2411 2002-09-13 Andrew Cagney <ac131313@redhat.com>
2412
2413 * frame.c (find_saved_register): Delete function.
2414 * frame.h (find_saved_register): Delete declaration.
2415 Fix PR gdb/631.
2416
2417 Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
2418
2419 * mips-tdep.c (read_next_frame_reg): Re-hack using
2420 frame_register_unwind.
2421
2422 Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
2423
2424 * mips-tdep.c (mips_get_saved_register): Re-hack using
2425 frame_register_unwind.
2426
2427 2002-09-12 Joel Brobecker <brobecker@gnat.com>
2428
2429 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
2430 vector. Will be useful for Interix.
2431 * gdbarch.h, gdbarch.c: Regenerate.
2432
2433 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
2434 name of the malloc function by NAME_OF_MALLOC.
2435
2436 2002-09-12 Joel Brobecker <brobecker@gnat.com>
2437
2438 * value.h (find_function_in_inferior): Add const keyword to
2439 one of the parameters. Allows us to invoke this function with
2440 a const char *.
2441 * valops.c (find_function_in_inferior): Likewise.
2442
2443 2002-09-12 Joel Brobecker <brobecker@gnat.com>
2444
2445 * exec.c (xfer_memory): Fix compilation warning with old versions
2446 of GCC.
2447 * tracepoint.c (trace_find_tracepoint_command): Likewise.
2448
2449 2002-09-12 David Carlton <carlton@math.stanford.edu>
2450
2451 * symtab.h: Run through gdb_indent.h.
2452 Add 2002 to Copyright year list.
2453
2454 2002-09-12 Alan Modra <amodra@bigpond.net.au>
2455
2456 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
2457 mach constants.
2458 * MAINTAINERS: Add myself to write after approval list.
2459
2460 2002-09-11 J. Brobecker <brobecker@gnat.com>
2461
2462 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
2463
2464 2002-09-11 J. Brobecker <brobecker@gnat.com>
2465
2466 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
2467 Interix.
2468
2469 2002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
2470
2471 * procfs.c (do_detach): Clear current signal, not just fault.
2472 Corrects problem with breakpoint trap signal leaking to detached
2473 process on Tru64.
2474
2475 2002-09-10 Michael Snyder <msnyder@redhat.com>
2476
2477 * buildsym.c (finish_block): Protect against null pointer.
2478
2479 2002-09-10 Andrew Cagney <cagney@redhat.com>
2480
2481 * infcmd.c (default_print_registers_info): Send all output to
2482 ``file'' instead of ``gdb_stdout''.
2483
2484 2002-09-10 Michael Snyder <msnyder@redhat.com>
2485
2486 * mips-tdep.c (mips_extract_struct_value_address): Make val a
2487 LONGEST, and use signed register read (addresses are sign-
2488 extended for mips).
2489
2490 2002-09-10 Stephane Carrez <stcarrez@nerim.fr>
2491
2492 * event-loop.c (gdb_do_one_event): Make public.
2493 * event-loop.h (gdb_do_one_event): Declare.
2494
2495 2002-09-10 Jeff Law <law@redhat.com>
2496
2497 * infttrace.c (child_resume): Simplify and rework to avoid
2498 TT_PROC_CONTINUE.
2499
2500 2002-09-09 Fred Fish <fnf@intrinsity.com>
2501
2502 * printcmd.c (print_scalar_formatted): "len" is the number of
2503 target bytes, NOT the number of target bits.
2504
2505 2002-09-09 Elena Zannoni <ezannoni@redhat.com>
2506
2507 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
2508 * top.c (init_main): Set rl_terminal_name.
2509
2510 2002-09-08 Aidan Skinner <aidan@velvet.net>
2511
2512 * ada-lang.c (ada_array_bound, ada_type_match,
2513 _initialize_ada_language): Fix K&R definitions.
2514 * ada-tasks.c (get_current_task): Fix K&R definitions.
2515 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
2516
2517 2002-09-07 Christopher Faylor <cgf@redhat.com>
2518
2519 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
2520 Add XP.
2521
2522 2002-09-06 Mark Kettenis <kettenis@gnu.org>
2523
2524 * i386-tdep.c (i386_register_virtual_type,
2525 i386_register_convertible, i386_register_convert_to_virtual,
2526 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
2527 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
2528 (i386_gdbarch_init): Fix comment. Add comments on calls that set
2529 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
2530 Don't set push_arguments twice.
2531
2532 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
2533 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
2534 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
2535 sigtramp_end to NULL.
2536 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
2537 defines.
2538 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
2539
2540 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
2541 whitespace.
2542
2543 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
2544 * gdbarch.h, gdbarch.c: Re-generate.
2545 * blockframe.c (find_pc_sect_partial_function): Convert to use
2546 SIGTRAMP_START_P predicate.
2547
2548 2002-09-05 Michael Snyder <msnyder@redhat.com>
2549
2550 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
2551 generic_dummy_frame method and old method. Also distinguish
2552 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
2553 (arm_extract_return_value): Use new regcache method.
2554
2555 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
2556 adjustment that doesn't conform to the ABI.
2557 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
2558 saved regcache, not from current regcache.
2559
2560 2002-09-05 Andrew Cagney <ac131313@redhat.com>
2561
2562 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
2563 * README: Update.
2564
2565 2002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
2566
2567 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
2568 if arm_apcs_32 is false.
2569
2570 2002-09-04 Andrew Cagney <ac131313@redhat.com>
2571
2572 GDB 5.3 branch created.
2573
2574 2002-09-03 Theodore A. Roth <troth@verinet.com>
2575
2576 * gdb/avr-tdep.c (avr_gdbarch_init): Use
2577 generic_unwind_get_saved_register.
2578
2579 2002-09-03 David Carlton <carlton@math.stanford.edu>
2580
2581 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
2582 argument (PR gdb/653). Update call to smash_to_method_type.
2583 (read_structure_scope): Update call to dwarf2_add_member_fn.
2584
2585 2002-09-03 Michal Ludvig <mludvig@suse.cz>
2586
2587 * x86-64-linux-tdep.c: Include gdb_string.h
2588 * x86-64-linux-nat.c: Ditto.
2589
2590 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2591
2592 * ada-exp.y (yyname, yyrule): Remap global variables that appear
2593 when YYDEBUG is set to 1.
2594 * c-exp.y: Likewise.
2595 * f-exp.y: Likewise.
2596 * jv-exp.y: Likewise.
2597 * m2-exp.y: Likewise.
2598 * p-exp.y: Likewise.
2599
2600 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2601
2602 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
2603 dependency list.
2604 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
2605 solib_svr4_fetch_link_map_offsets to
2606 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
2607 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
2608 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
2609 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
2610 solib-svr4.o, and solib-legacy.o.
2611 * config/i386/tm-nbsd.h: Include solib.h.
2612
2613 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2614
2615 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
2616 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
2617 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
2618 comment noting that this needs its own target configuration.
2619 * config/i386/nbsd.mt: New file.
2620 * config/i386/nbsdaout.mt: Remove.
2621 * config/i386/nbsdelf.mt: Ditto.
2622 * config/i386/tm-nbsdaout.h: Ditto.
2623
2624 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2625
2626 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
2627 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
2628 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
2629 tdep->sigtramp_end.
2630 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
2631 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
2632 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
2633
2634 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2635
2636 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
2637 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
2638 * i386-tdep.h (i386bsd_init_abi): New prototype.
2639 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
2640 function declaration.
2641 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
2642 for NetBSD-a.out or NetBSD-ELF.
2643 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
2644 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
2645 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
2646 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
2647 and nbsd-tdep.h.
2648 (i386nbsd_pc_in_sigtramp): New function.
2649 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2650 i386nbsd_pc_in_sigtramp.
2651 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
2652 and i386nbsdelf_init_abi OS ABI handlers.
2653 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
2654 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
2655
2656 2002-09-02 Mark Kettenis <kettenis@gnu.org>
2657
2658 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
2659 registers if the target really has them.
2660
2661 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2662
2663 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
2664 than nbsd-tdep.h.
2665
2666 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2667
2668 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
2669 list.
2670 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
2671 (alphanbsd_skip_sigtramp_frame): New functions.
2672 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
2673 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
2674 to alphanbsd_sigcontext_addr.
2675
2676 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2677
2678 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
2679 list.
2680 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
2681 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
2682 nbsd_pc_in_sigtramp.
2683 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
2684 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
2685 * nbsd-tdep.c: Include gdb_string.h.
2686 (nbsd_pc_in_sigtramp): New function.
2687 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
2688 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
2689 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2690 ppcnbsd_pc_in_sigtramp.
2691 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
2692 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2693 shnbsd_pc_in_sigtramp.
2694 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
2695 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
2696 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
2697
2698 2002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
2699
2700 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
2701 watchpoints to NULL.
2702 (insert_breakpoints): set val field of watchpoints if NULL.
2703
2704
2705 2002-08-29 Jim Blandy <jimb@redhat.com>
2706
2707 * symtab.c (lookup_symbol_aux): In the cases where we find a
2708 minimal symbol of an appropriate name and use its address to
2709 select a symtab to read and search, use `name' (as passed to us)
2710 as the demangled name when searching the symtab's global and
2711 static blocks, not the minsym's name.
2712
2713 2002-08-29 Keith Seitz <keiths@redhat.com>
2714
2715 * stack.c (print_frame_info_base): Always set current_source_symtab
2716 and current_source_line.
2717
2718 2002-08-29 Donn Terry <donnte@microsoft.com>
2719
2720 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
2721
2722 2002-08-28 Keith Seitz <keiths@redhat.com>
2723
2724 * stack.c (select_frame): Add FIXME concerning selected-frame
2725 events.
2726 (select_frame_command): Send selected-frame-level-changed
2727 event notification, but only if the level actually changed.
2728 (up_silently_base): Add selected-frame-level-changed event
2729 notification.
2730 (down_silently_base): Likewise.
2731
2732 2002-08-28 Andrew Cagney <ac131313@redhat.com>
2733
2734 * Makefile.in: Update dependencies for all gdb/*.c files.
2735
2736 2002-08-27 Tom Tromey <tromey@redhat.com>
2737
2738 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
2739 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
2740 Update dependencies.
2741 * i387-tdep.c: Include gdb_string.h.
2742 * osabi.c: Likewise.
2743 * i386-linux-nat.c: Likewise.
2744 * lin-lwp.c: Likewise.
2745 * ax-gdb.c: Likewise.
2746 * signals/signals.c: Likewise.
2747 * jv-valprint.c: Likewise.
2748 * p-lang.c: Likewise.
2749 * c-valprint.c: Likewise.
2750 * cp-abi.c: Likewise.
2751
2752 2002-08-27 Elena Zannoni <ezannoni@redhat.com>
2753
2754 * cli/cli-script.h (copy_command_lines): Export.
2755 * breakpoint.c: Include cli/cli-script.h.
2756 * Makefile.in (breakpoint.o): Update dependencies.
2757
2758 2002-08-26 Michael Snyder <msnyder@redhat.com>
2759
2760 * breakpoint.c (insert_breakpoints): Protect all references
2761 to 'process_warning'. Shorten long lines.
2762
2763 2002-08-26 Joel Brobecker <brobecker@gnat.com>
2764
2765 * cli/cli-script.c (copy_command_lines): New function.
2766 * defs.h (copy_command_lines): Export.
2767 * testsuite/gdb.base/commands.exp: New tests for commands
2768 attached to a temporary breakpoint, and for commands that
2769 delete the breakpoint they are attached to.
2770
2771 2002-08-26 Michael Snyder <msnyder@redhat.com>
2772
2773 * breakpoint.c (bpstat_stop_status): Instead of copying the
2774 pointer to the breakpoint commands struct, make a new copy
2775 of the struct and point to that.
2776 (bpstat_clear): Free the commands struct.
2777 (bpstat_clear_actions): Free the commands struct.
2778 (bpstat_do_actions): Free the command actions. Also execute
2779 the local cleanups, instead of deleting them.
2780 (delete_breakpoint): Leave the commands field of the bpstat
2781 chain alone -- it will be freed later.
2782
2783 2002-08-26 Kevin Buettner <kevinb@redhat.com>
2784
2785 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
2786 deleted in 2002-08-20 commit. This function is still used by
2787 ppc-linux-nat.c.
2788
2789 2002-08-26 Keith Seitz <keiths@redhat.com>
2790
2791 * gdb-events.sh: Add selected-frame-level-changed event.
2792 * gdb-events.c: Regenerated.
2793 * gdb-events.h: Regenerated.
2794
2795 2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
2796
2797 Fix PR gdb/393:
2798 * inflow.c (terminal_save_ours): New function to save terminal
2799 settings.
2800 * inferior.h (terminal_save_ours): Declare.
2801 * target.c (debug_to_terminal_save_ours): New function.
2802 (cleanup_target): Defaults to_terminal_save_ours.
2803 (update_current_target): Inherit to_terminal_save_ours.
2804 (setup_target_debug): Set to_terminal_save_ours.
2805 * target.h (target_terminal_save_ours): New to save terminal settings.
2806 (target_ops): New member to_terminal_save_ours.
2807 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
2808 * hpux-thread.c (init_hpux_thread_ops): Likewise.
2809 * inftarg.c (init_child_ops): Likewise.
2810 * m3-nat.c (init_m3_ops): Likewise.
2811 * procfs.c (init_procfs_ops): Likewise.
2812 * wince.c (init_child_ops): Likewise.
2813 * win32-nat.c (init_child_ops): Likewise.
2814 * sol-thread.c (init_sol_thread_ops): Likewise.
2815
2816 2002-08-26 Mark Kettenis <kettenis@gnu.org>
2817
2818 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
2819 use regcache_* functions.
2820 (i386_gdbarch_init): Set store_return_value instead of
2821 deprecated_store_return_value.
2822
2823 * regcache.c (regcache_raw_write_signed,
2824 regcache_raw_write_unsigned): New functions.
2825 * regcache.h (regcache_raw_write_signed,
2826 regcache_raw_write_unsigned): New prototypes.
2827
2828 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2829
2830 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
2831 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
2832 source file dependencies. Cleanup corresponding generator rules.
2833
2834 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2835
2836 * regcache.h (register_offset_hack): Declare.
2837 (regcache_cooked_read_using_offset_hack): Declare.
2838 (regcache_cooked_write_using_offset_hack): Declare.
2839
2840 * regcache.c (register_offset_hack): New function.
2841 (regcache_cooked_read_using_offset_hack): New function.
2842 (regcache_cooked_write_using_offset_hack): New function.
2843 (regcache_dump): Check that the registers, according to their
2844 offset, are packed hard against each other.
2845 (cooked_xfer_using_offset_hack): New function.
2846
2847 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2848
2849 * regcache.c (struct regcache_descr): Add field register_type.
2850 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
2851 in as a parameter
2852 (init_regcache_descr): Initialize register_type. Pass the descr
2853 to init_legacy_regcache_descr. Use register_type instead of
2854 REGISTER_VIRTUAL_TYPE.
2855 (register_type): New function.
2856 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
2857 * regcache.h (register_type): Declare.
2858
2859 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2860
2861 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
2862 instead of deprecated_store_return_value. Fix fallout from
2863 2002-08-23 Andrew Cagney <cagney@redhat.com>.
2864
2865 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2866
2867 * regcache.c (max_register_size): New function.
2868 (init_legacy_regcache_descr): Ensure that max_register_size is
2869 large enough for REGISTER_VIRTUAL_SIZE.
2870 * regcache.h (max_register_size): Declare.
2871
2872 2002-08-24 Andrew Cagney <ac131313@redhat.com>
2873
2874 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
2875 store_return_value.
2876 (e500_extract_return_value): Change type of valbuf pointer to
2877 void.
2878
2879 2002-08-24 Mark Kettenis <kettenis@gnu.org>
2880
2881 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
2882 workaround.
2883
2884 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
2885 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
2886 long long) to prevent compiler warning on 64-bit systems.
2887
2888 2002-08-23 Andrew Cagney <cagney@redhat.com>
2889
2890 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
2891 (DEPRECATED_STORE_RETURN_VALUE): New method.
2892 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
2893 * gdbarch.h, gdbarch.c: Re-generate.
2894
2895 * values.c (set_return_value): Pass current_regcache to
2896 STORE_RETURN_VALUE.
2897 * arch-utils.h (legacy_store_return_value): Declare.
2898 * arch-utils.c (legacy_store_return_value): New function.
2899 (legacy_extract_return_value): Update parameters.
2900
2901 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
2902 STORE_RETURN_VALUE.
2903 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2904 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2905 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2906 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2907 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2908 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2909 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2910 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2911 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2912 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2913
2914 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2915 * i386-tdep.c (i386_extract_return_value): Update.
2916 * arch-utils.c (legacy_extract_return_value): Update.
2917 * frv-tdep.c (frv_gdbarch_init): Update.
2918 * cris-tdep.c (cris_gdbarch_init): Update.
2919 * d10v-tdep.c (d10v_gdbarch_init): Update.
2920 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2921 * m68k-tdep.c (m68k_gdbarch_init): Update.
2922 * mcore-tdep.c (mcore_gdbarch_init): Update.
2923 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2924 * s390-tdep.c (s390_gdbarch_init): Update.
2925 * sparc-tdep.c (sparc_gdbarch_init): Update.
2926 * sh-tdep.c (sh_gdbarch_init): Update.
2927 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
2928 * v850-tdep.c (v850_gdbarch_init): Update.
2929 * avr-tdep.c (avr_gdbarch_init): Update.
2930 * ia64-tdep.c (ia64_gdbarch_init): Update.
2931 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2932 * vax-tdep.c (vax_gdbarch_init): Update.
2933 * alpha-tdep.c (alpha_gdbarch_init): Update.
2934 * arm-tdep.c (arm_gdbarch_init): Update.
2935 * mips-tdep.c (mips_gdbarch_init): Update.
2936 * i386-tdep.c (i386_gdbarch_init): Update.
2937
2938 2002-08-23 Andrew Cagney <ac131313@redhat.com>
2939
2940 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
2941 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
2942
2943 2002-08-24 Mark Kettenis <kettenis@gnu.org>
2944
2945 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
2946 problems.
2947
2948 2002-08-23 Joel Brobecker <brobecker@gnat.com>
2949
2950 * infrun.c (handle_inferior_event): Move a comment outside of a
2951 function call, in order to avoid indent reformatting this part
2952 of the code in an unreadable way.
2953
2954 2002-08-23 Grace Sainsbury <graces@redhat.com>
2955
2956 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
2957 when breakpoints fail. Move general breakpoint error messages to
2958 insert_breakpoints.
2959 * breakpoint.c (insert_breakpoints): Change warnings when
2960 breakpoints are nto inserted to specify the type. Remove call to
2961 memory_error when hardware breakpoints can't be inserted. Remove
2962 multiple calls to warning so all messages are sent to the user at
2963 once.
2964 (delete_breakpoints): Make insert error messsages more explicit.
2965
2966 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
2967
2968 * ChangeLog: Move gdbserver entries after GDB 5.2 to
2969 gdbserver/ChangeLog.
2970
2971 2002-08-23 Mark Kettenis <kettenis@gnu.org>
2972
2973 * i386-tdep.c: Include "objfiles.h".
2974 (i386_svr4_init_abi): Set in_solib_call_trampoline and
2975 skip_trampoline_code.
2976 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
2977 (CPLUS_MARKER): Define to '.'.
2978
2979 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
2980 member.
2981 (linux_corefile_thread_callback): Increase args->num_notes.
2982 (linux_make_note_section): Initialize thread_args.num_notes, and
2983 use it to determine whether notes for any threads were created.
2984
2985 2002-08-23 Donn Terry <donnte@microsoft.com>
2986
2987 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
2988 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
2989 and PCUNKILL.
2990 (write_with_trace): Conditionalize out the switch branch handling
2991 PCSHOLD if the corresponding macro is not defined. Likewise for
2992 PRSABORT and PRSTOP.
2993 This change will be needed by the Interix port.
2994
2995 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
2996
2997 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
2998 write_register wherever possible instead of manipulating the
2999 register bytes directly.
3000 Assign VALUE_CONTENTS to a variable and use that.
3001 The GPR numbers are now dependent on the architecture.
3002
3003 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
3004
3005 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
3006 ev_offset fields.
3007 (skip_prologue): Add support for BookE/e500 instructions.
3008 (e500_extract_return_value): New function.
3009 (frame_get_saved_regs): Add support for saving ev registers and
3010 pseudo gpr's.
3011 (e500_store_return_value): New function.
3012 (rs6000_gdbarch_init): Move up default intializations of
3013 deprecated_extract_return_value and store_return_value. Overwrite
3014 init of store_return_value with e500 specific version.
3015 Set extract_return_value for e500.
3016
3017 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
3018
3019 * blockframe.c (generic_call_dummy_register_unwind): Use
3020 regcache_cooked_read to catch cases in which the variable is
3021 stored in a pseudo register.
3022
3023 2002-08-22 Andrew Cagney <cagney@redhat.com>
3024
3025 * NEWS: Mention that the i960 has been made obsolete.
3026 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
3027 i960-tdep.c
3028 (remote-nrom.o): Obsolete target.
3029 (remote-nindy.o, i960-tdep.o): Ditto.
3030 * remote-nrom.c: Make file obsolete.
3031 * remote-nindy.c, remote-vx960.c: Ditto.
3032 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
3033 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
3034 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
3035 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
3036 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
3037 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
3038 i960-*-vxworks* obsolete.
3039 * MAINTAINERS: Note that the i960 is obsolete.
3040
3041 2002-08-21 Corinna Vinschen <vinschen@redhat.com
3042
3043 * aix-thread.c (aix_thread_detach): Disable thread debugging on
3044 detach to allow reinitialization.
3045
3046 2002-08-22 Andrew Cagney <ac131313@redhat.com>
3047
3048 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
3049 attempt).
3050
3051 2002-08-22 Jim Blandy <jimb@redhat.com>
3052
3053 * coffread.c (coff_symfile_read): Don't try to read the line
3054 number table from disk if the image file doesn't have a symbol
3055 table; we'll never actually look at the info anyway, and Windows
3056 ships DLL's with bogus file offsets for the line number data.
3057
3058 2002-08-21 Elena Zannoni <ezannoni@redhat.com>
3059
3060 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
3061 an e500 executable.
3062
3063 2002-08-21 Michael Snyder <msnyder@redhat.com>
3064
3065 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
3066 (MSYMBOL_SIZE): Replace macro with function.
3067 (DEFAULT_MIPS_TYPE): Delete unused macro.
3068 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
3069 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
3070
3071 2002-08-21 Jim Blandy <jimb@redhat.com>
3072
3073 * valops.c (value_cast): Simplify and correct logic for doing a
3074 static cast from a pointer to a base class to a pointer to a
3075 derived class.
3076
3077 2002-08-21 Andrew Cagney <ac131313@redhat.com>
3078
3079 * infcmd.c (default_print_registers_info): Replace
3080 do_registers_info.
3081 (registers_info): Use gdbarch_print_registers_info instead of
3082 DO_REGISTERS_INFO.
3083 * inferior.h (default_print_registers_info): Replace
3084 do_registers_info.
3085 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
3086 (DO_REGISTERS_INFO): Change to a predicate function.
3087 * gdbarch.h, gdbarch.c: Regenerate.
3088
3089 2002-08-21 Keith Seitz <keiths@redhat.com>
3090
3091 * gdb-events.sh: Add target-changed event.
3092 * gdb-events.c: Regenerated.
3093 * gdb-events.c: Regenerated.
3094 * valops.c (value_assign): Add target-changed event notification
3095 to inlval_register, lval_memory, and lval_reg_frame_relative.
3096
3097 2002-08-21 Joel Brobecker <brobecker@gnat.com>
3098
3099 * NEWS: Add an entry regarding the improvement of the next/step
3100 operation on Alpha Tru64 multi-processor machines.
3101
3102 2002-08-21 Andrew Cagney <ac131313@redhat.com>
3103
3104 * Makefile.in: Update dependencies for mi/ cli/ and tui/
3105 directores.
3106 * Makefile.in: Update all _h macro definitions.
3107 * Makefile.in (install-gdbtk): Move to install section.
3108 (rdi-share/libangsd.a): Move to end of file.
3109
3110 2002-08-19 Andrew Cagney <ac131313@redhat.com>
3111
3112 * frame.c (frame_register_unwind): When a register, set addrp to
3113 the register's byte.
3114
3115 2002-08-20 Michael Snyder <msnyder@redhat.com>
3116
3117 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
3118 used locally, so move them from the target machine header to here.
3119 (mips_set_processor_type, mips_register_name, mips32_next_pc,
3120 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
3121 Make static.
3122 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
3123
3124 2002-08-20 Andrew Cagney <cagney@redhat.com>
3125
3126 * NEWS: Mention that the Apollo line was made obsolete.
3127 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
3128 m68*-hp-hpux* obsolete.
3129 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
3130 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
3131 * buildsym.c (make_blockvector): Make static.
3132 * buildsym.h (make_blockvector): Make extern declaration obsolete.
3133 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
3134 (ALLDEPFILES): Remove dstread.c.
3135 (dstread.o): Obsolete make rule.
3136 * dstread.c: Makefile obsolete.
3137 * dst.h: Ditto.
3138 * config/m68k/hp300hpux.mt: Ditto.
3139 * config/m68k/hp300hpux.mh: Ditto.
3140 * config/m68k/hp300bsd.mt: Ditto.
3141 * config/m68k/hp300bsd.mh: Ditto.
3142 * config/m68k/apollo68b.mt: Ditto.
3143 * config/m68k/apollo68v.mh: Ditto.
3144 * config/m68k/apollo68b.mh: Ditto.
3145
3146 2002-08-20 Michael Snyder <msnyder@redhat.com>
3147
3148 * mips-tdep.c (mips_in_return_stub): Make static.
3149 (mips_gdbarch_init): Set in_solib_return_trampoline.
3150 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
3151
3152 2002-08-20 Michael Snyder <msnyder@redhat.com>
3153
3154 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
3155 * gdbarch.c, gdbarch.h: Regenerate.
3156 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
3157 Add.
3158 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
3159
3160 2002-08-20 Michael Snyder <msnyder@redhat.com>
3161
3162 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
3163 (mips_gdbarch_init): Set skip_trampoline_code,
3164 in_solib_call_trampoline.
3165 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
3166 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
3167
3168 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3169
3170 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
3171
3172 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
3173 vector type for ev registers.
3174 (e500_pseudo_register_read): New function.
3175 (e500_pseudo_register_write): New function.
3176 (e500_dwarf2_reg_to_regnum): New function.
3177 (PPC_UISA_NOFP_SPRS): New macro.
3178 (PPC_EV_REGS): New macro.
3179 (PPC_GPRS_PSEUDO_REGS): New macro.
3180 (registers_e500): New register set for e500.
3181 (variants): Add e500 variant.
3182 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
3183 before setting architectural dependent variations. Initialize ev
3184 registers numbers. Add case for e500 architecture. Set the
3185 number of pseudo registers.
3186
3187 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3188
3189 * rs6000-tdep.c: Clean up comments.
3190
3191 2002-08-20 Andrew Cagney <cagney@redhat.com>
3192
3193 * h8300-tdep.c: Re-indent file.
3194
3195 2002-08-20 Jim Blandy <jimb@redhat.com>
3196
3197 * Makefile.in (LDFLAGS): Allow the configure script to establish a
3198 default for this.
3199
3200 2002-08-20 Keith Seitz <keiths@redhat.com>
3201
3202 * breakpoints.c (watch_command_1): Use internal breakpoint
3203 when setting a watchpoint_scope breakpoint.
3204
3205 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3206
3207 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
3208 (build_builtin_type_vec64i): Ditto.
3209 (build_builtin_type_vec128): Ditto.
3210 (build_builtin_type_vec128i): Ditto.
3211
3212 2002-08-19 Michael Snyder <msnyder@redhat.com>
3213
3214 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
3215 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
3216 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
3217 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
3218 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
3219 CALL_DUMMY_ADDRESS): Delete.
3220 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
3221 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
3222 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
3223 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
3224 push_return_address.
3225 (mips_register_raw_size, mips_eabi_use_struct_convention,
3226 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
3227 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
3228 mips_init_extra_frame_info, mips_eabi_push_arguments,
3229 mips_n32n64_push_arguments, mips_push_return_address,
3230 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
3231 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
3232
3233 2002-08-19 Michael Snyder <msnyder@redhat.com>
3234
3235 * mips-tdep.c (mips_frame_num_args): New function.
3236 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
3237 frame_saved_pc, frame_args_address, frame_locals_address,
3238 frame_num_args, and frame_args_skip.
3239 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
3240 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
3241 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
3242 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
3243
3244 2002-08-20 Michael Snyder <msnyder@redhat.com>
3245
3246 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
3247 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
3248 * mips-tdep.c (mips_store_struct_return): New function.
3249 (mips_extract_struct_value_address): New function.
3250 (mips_gdbarch_init): Set store_struct_return and
3251 extract_struct_value_address.
3252
3253 2002-08-20 David Carlton <carlton@math.stanford.edu>
3254
3255 * dwarf2read.c (dwarf2_build_psymtabs): Check that
3256 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
3257 (read_file_scope): Check that line_header is nonzero before
3258 decoding macro information.
3259
3260 2002-08-20 Mark Kettenis <kettenis@gnu.org>
3261
3262 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
3263 flag the general-purpose registers as floating-point on targets
3264 that don't support the floating-point registers.
3265
3266 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3267
3268 * rs6000-tdep.c (altivec_register_p): Delete.
3269 (rs6000_do_altivec_registers): Delete.
3270 (rs6000_altivec_registers_info): Delete.
3271 (rs6000_do_registers_info): Delete.
3272 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
3273 (rs6000_gdbarch_init): Remove setting of do_registers_info.
3274
3275 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3276
3277 * infcmd.c (do_registers_info): Print vector registers in hex
3278 format only.
3279 (print_vector_info): Check that printing registers
3280 makes sense.
3281 (print_float_info): Ditto.
3282
3283 2002-08-20 Andrew Cagney <ac131313@redhat.com>
3284
3285 * mips-tdep.c (mips_gdbarch_init): Update.
3286 (mips_o32_extract_return_value): Rewrite.
3287 (mips_o32_store_return_value): Rewrite.
3288 (mips_o32_xfer_return_value): New function.
3289 (mips_xfer_register): Tweak debug print message. Allow for
3290 buf_offset when dumping the value transfered.
3291
3292 2002-08-20 Andrew Cagney <ac131313@redhat.com>
3293
3294 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
3295 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
3296 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
3297 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
3298 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
3299
3300 2002-08-14 Michael Snyder <msnyder@redhat.com>
3301
3302 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
3303
3304 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
3305
3306 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
3307 register.
3308 (P): New macro to define a register as a pseudo register.
3309 (R, R4, R8, R16, FR32, R64, R0): Updated.
3310 (struct variant): Add new fields for number of pseudo registers
3311 and number of total registers.
3312 (tot_num_registers): New macro replacing....
3313 (num_registers): ...deleted macro.
3314 (num_registers): New function.
3315 (num_pseudo_registers): New function.
3316 (variants): Update all variants to intialize new fields correctly.
3317 Postpone initialization of number of pseudo regs and real regs.
3318 (init_variants): New function.
3319 (rs6000_gdbarch_init): Initialize variants. Update calculation of
3320 registers offsets.
3321
3322 2002-08-19 David Carlton <carlton@math.stanford.edu>
3323
3324 * valops.c (search_struct_field): Change error message to treat
3325 return value of 0 from value_static_field as meaning that field is
3326 optimized out.
3327 (value_struct_elt_for_reference): Ditto.
3328 * values.c (value_static_field): Treat an unresolved location the
3329 same as a nonexistent symbol. Fix PR gdb/635.
3330 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
3331 enclosed. Fix PR gdb/574.
3332 * MAINTAINERS: Add self to Write After Approval list.
3333
3334 2002-08-19 Andrew Cagney <ac131313@redhat.com>
3335
3336 * mips-tdep.c (mips_xfer_register): New function.
3337 (mips_n32n64_extract_return_value): Rewrite.
3338 (mips_gdbarch_init): For N32 and N64, set extract_return_value
3339 instead of deprecated_extract_return_value.
3340
3341 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
3342
3343 * rs6000-tdep.c (TDEP): Delete macro.
3344 (branch_dest): Replace use of TDEP macro with its body.
3345 (rs6000_pop_frame): Ditto.
3346 (rs6000_push_arguments): Ditto.
3347 (rs6000_skip_trampoline_code): Ditto.
3348 (rs6000_frame_saved_pc): Ditto.
3349 (rs6000_frame_chain): Ditto.
3350 (rs6000_register_name): Ditto.
3351 (rs6000_register_byte): Ditto.
3352 (rs6000_register_raw_size): Ditto.
3353 (rs6000_register_virtual_type): Ditto.
3354 (rs6000_register_convertible): Ditto.
3355 (rs6000_convert_from_func_ptr_addr): Ditto.
3356
3357 2002-08-19 Daniel Jacobowitz <drow@mvista.com>
3358
3359 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
3360 conditionally.
3361 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
3362 MIPS_LINUX_JB_ELEMENT_SIZE.
3363 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
3364 for MAX_REGISTER_RAW_SIZE arrays.
3365 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
3366 MIPS_LINUX_JB_ELEMENT_SIZE.
3367
3368 2002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
3369
3370 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
3371
3372 2002-08-19 Aidan Skinner <aidan@velvet.net>
3373
3374 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
3375 ada-valprint.c ada-tasks.c.
3376 (YYFILES): Add ada-exp.y.
3377 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
3378 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
3379 (ada-exp.tab.o): New target.
3380
3381 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3382
3383 * regcache.c (regcache_xfer_part): New function.
3384 (regcache_raw_read_part): New function.
3385 (regcache_raw_write_part): New function.
3386 (regcache_cooked_read_part): New function.
3387 (regcache_cooked_write_part): New function.
3388 * regcache.h (regcache_raw_read_part): Declare.
3389 (regcache_raw_write_part): Declare.
3390 (regcache_cooked_read_part): Declare.
3391 (regcache_cooked_write_part): Declare.
3392
3393 2002-08-18 Daniel Jacobowitz <drow@mvista.com>
3394
3395 * remote.c (remote_open_1): Add async_p.
3396 (remote_async_open_1): Delete.
3397 (open_remote_target): Delete.
3398 (remote_open, extended_remote_open): Update calls to remote_open_1.
3399 (remote_async_open, extended_remote_async_open): Call
3400 remote_open_1 instead of remote_async_open_1.
3401
3402 2002-08-19 Mark Kettenis <kettenis@gnu.org>
3403
3404 * blockframe.c: Fix a few coding standard violations.
3405
3406 2002-08-19 Mark Kettenis <kettenis@gnu.org>
3407
3408 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
3409 here from ...
3410 * config/i386/tm-i386sco5.h: ... here. File removed.
3411 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
3412
3413 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
3414 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
3415 (TM_FILE): Set to tm-i386.h.
3416 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
3417 * config/i386/tm-i386v.h: Remove file.
3418 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
3419 instead of "i386/tm-i386v.h".
3420 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
3421 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
3422 "i386/tm-i386v.h".
3423 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
3424 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
3425 "i386/tm-i386.h".
3426
3427 2002-08-18 Mark Kettenis <kettenis@gnu.org>
3428
3429 * config/i386/nm-i386v.h: Add protection against
3430 multiple-inclusion.
3431 (i386_register_u_addr): Remove prototype.
3432 (register_u_addr): New prototype.
3433 (REGISTER_U_ADDR): Redefine accordingly.
3434 * i386v-nat.c: Improve several comments.
3435 (i386_register_u_addr): Change signature and rename to
3436 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
3437 ubase variable.
3438
3439 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3440
3441 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
3442 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
3443 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
3444 deprecated_extract_return_value.
3445 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
3446 rename mips_o32o64_push_arguments.
3447 (mips_gdbarch_init): Update.
3448 (mips_extract_return_value): Delete.
3449 (mips_o32_extract_return_value): Clone mips_extract_return_value.
3450 (mips_o64_extract_return_value): Clone mips_extract_return_value.
3451 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
3452 (mips_n32n64_extract_return_value): Clone
3453 mips_extract_return_value.
3454 (mips_store_return_value): Delete.
3455 (mips_o32_store_return_value): Clone mips_store_return_value.
3456 (mips_o64_store_return_value): Clone mips_store_return_value.
3457 (mips_eabi_store_return_value): Clone mips_store_return_value.
3458 (mips_n32n64_store_return_value): Clone mips_store_return_value.
3459
3460 2002-08-18 Aidan Skinner <aidan@velvet.net>
3461
3462 * ada-lang.c: Use gdb_string.h instead of <string.h>.
3463 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
3464
3465 2002-08-18 Aidan Skinner <aidan@velvet.net>
3466
3467 * ada-lang.c: Run through gdb_indent.sh.
3468 * ada-lang.h: Run through gdb_indent.sh.
3469 * ada-tasks.c: Run through gdb_indent.sh.
3470 * ada-typeprint.c: Run through gdb_indent.sh.
3471 * ada-valprint.c: Run through gdb_indent.sh.
3472
3473 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3474
3475 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
3476 ABI.
3477
3478 2002-08-18 Mark Kettenis <kettenis@gnu.org>
3479
3480 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
3481
3482 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
3483 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
3484
3485 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
3486 write_register_gen instead of write_register_bytes.
3487
3488 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
3489 i[3456]-*-osf1mk* configurations have been made obsolete.
3490 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
3491 i[3456]86-*-osf1mk* hosts obsolete.
3492 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
3493 targets obsolete.
3494 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
3495 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
3496 config/i386/i386m3.mt, config/i386/nm-m3.h,
3497 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
3498 config/i386/i386mk.mh, config/i386/i386mk.mt,
3499 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
3500 obsolete.
3501 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
3502 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
3503 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
3504
3505 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3506
3507 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
3508 (hppa_value_returned_from_stack): Declare.
3509 (hppa_extract_return_value): Declare.
3510 * config/pa/hppa.mt: New file.
3511 * configure.tgt: Recognize hppa*-*-*.
3512 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
3513
3514 2002-08-18 Mark Kettenis <kettenis@gnu.org>
3515
3516 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
3517 comment.
3518
3519 2002-08-17 Mark Kettenis <kettenis@gnu.org>
3520
3521 * top.c (gdb_rl_operate_and_get_next): Make sure
3522 operate-and-get-next functions correctly even when the history
3523 list is completely filled.
3524
3525 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3526
3527 * MAINTAINERS (Target Instruction Set Architectures): Rename
3528 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
3529 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
3530 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
3531 already listed under Host/Native.
3532
3533 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
3534 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
3535 mips*-*-*.
3536
3537 2002-08-17 Andrew Cagney <ac131313@redhat.com>
3538
3539 * config/ia64/ia64.mt: New file.
3540 * config/alpha/alpha.mt: New file.
3541 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
3542 ia64-linux-gnu. Mention that ia64-elf is broken.
3543 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
3544
3545 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
3546
3547 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
3548 generic_func_frame_valid instead of func_frame_valid.
3549
3550 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3551
3552 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
3553 procfs appears to be broken when debugging on multi-processor
3554 machines. So enable software single stepping in order to avoid
3555 using the procfs interface to do next/step operations, using
3556 internal breakpoints instead.
3557
3558 * infrun.c (handle_inferior_event): Readjust the stop_pc by
3559 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
3560 make this pc address equal to the value it would have if the
3561 system stepping capability was used. Also set a new flag used
3562 to ensure that we don't readjust the PC one more time later.
3563
3564 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
3565 address by DECR_PC_AFTER_BREAK when software single step is
3566 in use for this architecture, as this has already been taken
3567 care of in handle_inferior_event().
3568
3569 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3570
3571 * infrun.c (handle_inferior_event): Minor reformatting, to make
3572 a rather long condition expression easier to read.
3573
3574 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3575
3576 * Makefile.in (gdbtk.o): Move to end of file.
3577 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
3578 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
3579 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
3580 (gdbtk-wrapper.o, gdbres.o): Ditto.
3581
3582 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3583
3584 * Makefile.in (copying.o): Separate out compile rule.
3585 (hpux-thread.o, procfs.o, signals.o): Ditto.
3586 (v850ice.o, z8k-tdep.o): Ditto.
3587 (tui-file.o): Move to TUI section.
3588 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
3589 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
3590
3591 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3592
3593 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
3594 skip_trampoline_code, for better namespace-proofing.
3595
3596 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
3597
3598 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3599
3600 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
3601
3602 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3603
3604 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
3605 signal, check whether we hit a breakpoint before checking for a
3606 single step breakpoint. Otherwise, GDB fails to notice that a
3607 breakpoint has been hit when stepping onto a breakpoint.
3608
3609 2002-08-16 Keith Seitz <keiths@redhat.com>
3610
3611 * gdb-events.sh (clear_gdb_event_hooks): New function.
3612 * gdb-events.c: Regenerate.
3613 * gdb-events.h: Regenerate.
3614
3615 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3616
3617 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
3618 not_a_sw_breakpoint.
3619 * breakpoint.h (bpstat_stop_status): Add parameter names.
3620
3621 2002-08-16 Grace Sainsbury <graces@redhat.com>
3622
3623 * remote.c (remote_insert_hw_breakpoint)
3624 (remote_remove_hw_breakpoint): Fix calculation of length field
3625 for Z-packet.
3626
3627 2002-08-15 Michael Snyder <msnyder@redhat.com>
3628
3629 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
3630 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
3631 (supply_fpregset): Ditto.
3632
3633 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
3634 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
3635 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
3636 (TARGET_READ_SP): Delete.
3637 (DO_REGISTERS_INFO): Delete.
3638 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
3639 Delete.
3640 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
3641 from macros to functions.
3642
3643 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
3644 (mips_register_convertible, mips_register_convert_to_virtual,
3645 mips_register_convert_to_raw): Make static.
3646 (mips_read_sp): New function.
3647 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
3648 (mips_do_registers_info): Make static.
3649 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
3650 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
3651 (mips_register_convert_from_type, mips_register_convert_to_type):
3652 New functions.
3653 (mips_gdbarch_init): Set up function_start_offset,
3654 register_virtual_size, pc_in_sigtramp.
3655
3656 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3657
3658 * infcmd.c (vector_info): New function.
3659 (_initialize_infcmd): Add command "info vector".
3660 (print_vector_info): New function.
3661
3662 * gdbarch.sh (PRINT_VECTOR_INFO): New method
3663 * gdbarch.h, gdbarch.c: Regenerate.
3664
3665 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3666
3667 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
3668 ``print_all''. Only print vector registers when ``print_all''.
3669
3670 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3671
3672 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
3673 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
3674
3675 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
3676 Add `args' parameter.
3677 * gdbarch.h, gdbarch.c: Regenerate.
3678
3679 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
3680
3681 * infcmd.c (float_info): Call print_float_info.
3682 (print_float_info): New function. By default, print the
3683 floating-point registers.
3684
3685 * arch-utils.h (default_print_float_info): Delete declaration.
3686 * arch-utils.c (default_print_float_info): Delete function.
3687
3688 2002-08-16 Mark Kettenis <kettenis@gnu.org>
3689
3690 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
3691 out define.
3692
3693 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
3694 FRAME.
3695
3696 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
3697 * configure.host: Make i[3456]86-*-aix host obsolete.
3698 * configure.tgt: Make i[3456]86-*-aix target obsolete.
3699 * config/i386/i386aix.mh, config/i386/i386aix.mt,
3700 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
3701 config/i386/xm-i386aix.h: Make files obsolete.
3702 * i386aix-nat.c: Make file obsolete.
3703 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
3704 (i386aix-nat.o): Make target obsolete.
3705
3706 * config/i386/nm-gnu.h: Removed.
3707 * config/i386/nm-i386gnu.h: New file.
3708 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
3709 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
3710 Moved here from ...
3711 * config/i386/tm-i386gnu.h: ... here. Removed.
3712 * config/i386/xm-i386gnu.h: Removed.
3713 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
3714 (NAT_FILE): Set to nm-i386gnu.h.
3715 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
3716 * i386-tdep.c: New file.
3717 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
3718 (i386gnu-tdep.o): Specify dependencies.
3719
3720 2002-08-15 Mark Kettenis <kettenis@gnu.org>
3721
3722 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
3723 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
3724 Adjust a few comments to reflect reality a bit closer.
3725 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
3726 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
3727 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
3728 target_insert_watchpoint, target_remove_watchpoint):
3729 Move defines to ...
3730 * config/i386/nm-i386sco5.h: ... here.
3731 (kernel_u_size): Add prototype. Improve a few comments and add
3732 protection against multiple inclusion.
3733
3734 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
3735 out define.
3736
3737 * uw-thread.c (SP_ARG0): Define if not already defined.
3738 * config/i386/tm-i386.h (SO_ARG0): Remove define.
3739
3740 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
3741
3742 * config/i386/tm-i386.h: Don't include "regcache.h".
3743
3744 * i387-tdep.h (i387_print_float_info): New prototype.
3745 * i387-tdep.c (print_i387_value, print_i387_ext,
3746 print_i387_status_word, print_i387_control_word): Add `struct
3747 ui_file *' argument and use it for output.
3748 (i387_print_float_info): Renamed from i387_float_info. Add
3749 `struct gdbarch *' and `struct ui_file *' arguments and use the
3750 latter for output.
3751 * i386-tdep.c: Include "i387-tdep.h".
3752 (i386_gdbarch_init): Set print_float_info.
3753 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
3754 (FLOAT_INFO): Remove define.
3755
3756 2002-08-13 Michael Snyder <msnyder@redhat.com>
3757
3758 * mips-tdep.c (mips_push_arguments): Rename to
3759 mips_eabi_push_arguments, and tune for EABI.
3760 (MIPS_REGS_HAVE_HOME_P): Delete.
3761 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
3762 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
3763 Delete references to mips_regs_have_home_p.
3764
3765 2002-08-14 Keith Seitz <keiths@redhat.com>
3766
3767 * Makefile.in (install-gdbtk): Create insight plugin directory.
3768 Install plugins.tcl file.
3769
3770 2002-08-14 Keith Seitz <keiths@redhat.com>
3771
3772 * configure.in: Move SUBDIRS to near top of the file so that
3773 --enable options may add things to it.
3774 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
3775 * configure: Regenerate.
3776
3777 2002-08-13 Michael Snyder <msnyder@redhat.com>
3778
3779 * mips-tdep.c (mips_o32o64_push_arguments): New function,
3780 cloned from mips_push_arguments, tuned for o32/o64 ABI.
3781 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
3782
3783 2002-08-13 Andrew Cagney <ac131313@redhat.com>
3784
3785 * vax-tdep.c (vax_get_saved_register): Delete function.
3786 (vax_gdbarch_init): Update.
3787 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
3788 (ns32k_gdbarch_init): Update.
3789 * alpha-tdep.c (alpha_get_saved_register): Delete function.
3790 (alpha_gdbarch_init): Update.
3791
3792 2002-08-13 Andrew Cagney <cagney@redhat.com>
3793
3794 * regcache.c (init_regcache_descr): Overallocate the
3795 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
3796 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
3797 nr_raw_registers.
3798 (set_register_cached): Add range checking assertions. Use
3799 current_regcache.
3800
3801 2002-08-13 Mark Kettenis <kettenis@gnu.org>
3802
3803 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
3804 numbers for MMX registers.
3805
3806 2002-08-13 Andrew Cagney <cagney@redhat.com>
3807
3808 * i386-tdep.c (i386_gdbarch_init): Use
3809 generic_unwind_get_saved_register.
3810
3811 2002-08-13 Kevin Buettner <kevinb@redhat.com>
3812
3813 * procfs.c (procfs_can_use_hw_breakpoint): New function.
3814 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
3815 target vector.
3816 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
3817 Delete. Add comment regarding this now-deleted target method.
3818
3819 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3820
3821 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
3822 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
3823 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
3824 real PC and the page number (if it's within the memory bank window).
3825 (m68hc11_pseudo_register_write): Likewise when saving.
3826 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
3827 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
3828 (m68hc11_register_raw_size): And use 32-bit for it.
3829 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
3830 16K memory bank is used by the prog; also use the virtual pc.
3831
3832 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3833
3834 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
3835 (m68hc11_gdbarch_init): Install it in gdbarch.
3836 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
3837 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
3838 (MSYMBOL_SIZE): New for documentation.
3839 (insn_return_kind): Enum to specify how a function returns.
3840 (frame_extra_info): Cleanup and record the return mode.
3841 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
3842 register in address computation.
3843 (m68hc11_get_return_insn): New to obtain the return instruction used
3844 by the function.
3845 (m68hc11_frame_init_saved_regs): Take into account the return
3846 instruction used by the function for far and interrupt functions.
3847 (m68hc11_init_extra_frame_info): Take into account page register.
3848 (m68hc11_frame_args_address): Adjust according to the return mode.
3849 (show_regs): Print page register only when it's used.
3850
3851 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3852
3853 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
3854 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
3855 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
3856 registers.
3857 (m68hc11_register_raw_size): Likewise.
3858
3859 2002-08-13 Andrew Cagney <cagney@redhat.com>
3860
3861 * i386-tdep.c (i386_register_name): Handle mmx registers.
3862 (mmx_regnum_p): New function.
3863 (i386_mmx_names): New array.
3864 (mmx_num_regs): New variable.
3865 (i386_pseudo_register_read): New function.
3866 (i386_pseudo_register_write): New function.
3867 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
3868
3869 * regcache.c (regcache_raw_read_unsigned): New function.
3870 (regcache_raw_read_signed): New function.
3871 * regcache.h (regcache_raw_read_unsigned): Declare.
3872 (regcache_raw_read_signed): Declare.
3873
3874 2002-08-13 Andrew Cagney <cagney@redhat.com>
3875
3876 * regcache.c (regcache_raw_read_as_address): Delete function.
3877 (regcache_cooked_read_signed): New function.
3878 (regcache_cooked_read_unsigned): New function.
3879 * regcache.h (regcache_cooked_read_signed): Declare.
3880 (regcache_cooked_read_unsigned): Declare.
3881 (regcache_raw_read_as_address): Delete declaration.
3882
3883 * blockframe.c (generic_read_register_dummy): Use
3884 regcache_cooked_read_unsigned.
3885 * i386-tdep.c (i386_extract_struct_value_address): Use
3886 regcache_cooked_read_unsigned.
3887
3888 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3889
3890 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
3891 double sizes according to ELF ABI flags.
3892 (gdbarch_tdep): Record elf_flags.
3893
3894 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3895
3896 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
3897 (m6812_prolog): They can appear in 68HC12 function prologue.
3898 (m68hc11_frame_chain): Cleanup.
3899
3900 2002-08-12 Andrew Cagney <cagney@redhat.com>
3901
3902 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
3903 declarations.
3904 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
3905 (i386_linux_register_raw_size): Delete function.
3906 (i386_linux_init_abi): Update.
3907 * i386-tdep.c (i386_register_raw_size): Delete function.
3908 (i386_register_byte): Delete function.
3909 (i386_gdbarch_init): Update.
3910 (i386_register_size): Delete array.
3911 (i386_register_offset): Delete array.
3912
3913 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
3914 (REGISTER_RAW_SIZE): Delete macro.
3915 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
3916 (REGISTER_BYTE): Delete macro.
3917
3918 2002-08-11 Aidan Skinner <aidan@velvet.net>
3919
3920 * ada-lang.c (ada_lookup_partial_symbol)
3921 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
3922 prototype names so that grep ^func works properly.
3923
3924 * ada-lang.c (ada_array_element_type)
3925 (ada_lookup_partial_symbol): Fix typos in parameter list.
3926
3927 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
3928 Fix prototype names so that grep ^func works properly.
3929
3930 2002-08-10 Andrew Cagney <cagney@redhat.com>
3931 Elena Zannoni <ezannoni@redhat.com>
3932 Martin M. Hunt <hunt@redhat.com>
3933
3934 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
3935 (build_builtin_type_vec128i): Set the vector bit.
3936 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
3937 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
3938 (build_builtin_type_vec64): New function.
3939 (build_builtin_type_vec64i): New function.
3940 (build_gdbtypes): Initialize builtin_type_vec64 and
3941 builtin_type_vec64i.
3942
3943 2002-08-09 Andrew Cagney <cagney@redhat.com>
3944
3945 * regcache.c (regcache_dump): Compare the register offset
3946 with REGISTER_BYTE.
3947 * arch-utils.c (generic_register_byte): New function.
3948 * arch-utils.h (generic_register_byte): Declare.
3949 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
3950 * gdbarch.h, gdbarch.c: Regenerate.
3951
3952 2002-08-09 Andrew Cagney <cagney@redhat.com>
3953
3954 * regcache.c: Include "gdbcmd.h"
3955 (_initialize_regcache): Add commands "maintenance print
3956 registers", "maintenance print raw-registers" and "maintenance
3957 print cooked-registers".
3958 (enum regcache_dump_what): Define.
3959 (dump_endian_bytes): New function.
3960 (regcache_dump): New function.
3961 (regcache_print): New function.
3962 (maintenance_print_registers): New function.
3963 (maintenance_print_raw_registers): New function.
3964 (maintenance_print_cooked_registers): New function.
3965 * Makefile.in (regcache.o): Update dependencies.
3966
3967 2002-08-09 Michael Snyder <msnyder@redhat.com>
3968
3969 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
3970 (mips_push_arguments): Correct some comments. Use paddr_nz
3971 for printing addresses in debug output. Replace static
3972 allocation using MAX_REGISTER_RAW_SIZE with alloca.
3973 (mips_n32n64_push_arguments): New function, cloned from
3974 mips_push_arguments and tuned for the n32/n64 ABI.
3975 (mips_push_register): Buffer needs dynamic allocation.
3976 (mips_print_register): Ditto.
3977 (do_gp_register_row): Ditto.
3978 (mips_store_return_value): Ditto.
3979 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
3980
3981 2002-08-09 Don Howard <dhoward@redhat.com>
3982
3983 * memattr.c (mem_info_command): Print special case of upper bound
3984 as max CORE_ADDR + 1.
3985
3986 2002-08-08 Michael Snyder <msnyder@redhat.com>
3987
3988 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
3989 returns structs by ref if they're too big to fit in two registers.
3990
3991 2002-08-09 Kevin Buettner <kevinb@redhat.com>
3992
3993 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
3994 saved regs value.
3995 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
3996 mips_find_saved_regs().
3997 (mips_pop_frame): Likewise.
3998
3999 2002-08-09 Kevin Buettner <kevinb@redhat.com>
4000
4001 * blockframe.c (frame_saved_regs_register_unwind): Revise
4002 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
4003 frames are in use.
4004
4005 2002-08-09 Grace Sainsbury <graces@redhat.com>
4006
4007 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
4008 T-packets; the 'a' is not taken as a register number.
4009 (remote_check_watch_resources, remote_stopped_by_watchpoint)
4010 (remote_stopped_data_address): New functions; add to target
4011 vector.
4012 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
4013 prototypes to match other implementations of this
4014 function. replace integer argument with pointer -- the length
4015 field in the Z-packet is the length of what is pointed to or 1 if
4016 pointer is null. Add to target vector.
4017 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
4018 target vector.
4019
4020 From Mark Salter:
4021 * remote.c (remote_wait): Add support to extract optional
4022 watchpoint information from T-packet. Ignore unrecognized
4023 optional info in T-packet.
4024 (remote_async_wait): Ditto.
4025
4026 2002-08-09 Corinna Vinschen <vinschen@redhat.com>
4027
4028 * cli/cli-dump.c: Change fopen modes to use binary open modes
4029 as defined in include/fopen-bin.h throughout.
4030
4031 2002-08-08 Michael Snyder <msnyder@redhat.com>
4032
4033 * mips-tdep.c: Minor whitespace and indentation clean-ups.
4034
4035 2002-08-08 Kevin Buettner <kevinb@redhat.com>
4036
4037 * doublest.c (store_floating): Avoid floatformat_from_doublest()
4038 assertion failure by returning early after a warning.
4039
4040 2002-08-08 Kevin Buettner <kevinb@redhat.com>
4041
4042 * mips-tdep.c (mips_find_saved_regs): Make static.
4043 (mips_frame_init_saved_regs): New function.
4044 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
4045 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
4046 (mips_find_saved_regs): Delete declaration.
4047
4048 2002-08-08 Grace Sainsbury <graces@redhat.com>
4049
4050 * remote.c (remote_wait, remote_async_wait): Change
4051 thread_num from int to ULONGEST.
4052 (unpack_varlen_hex): Change result parameter from
4053 int * to ULONGEST *.
4054
4055 2002-08-08 Andrew Cagney <ac131313@redhat.com>
4056
4057 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
4058 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
4059 powerpc*-*-*.
4060 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
4061
4062 2002-08-08 Andrew Cagney <cagney@redhat.com>
4063
4064 * gcore.c (override_derive_stack_segment): Delete variable.
4065 (preempt_derive_stack_segment): Delete function.
4066 (derive_stack_segment): Delete function.
4067 (default_derive_stack_segment): Renamed to derive_stack_segment.
4068 (override_derive_heap_segment): Delete variable.
4069 (preempt_derive_heap_segment): Delete function.
4070 (derive_heap_segment): Delete function.
4071 (default_derive_heap_segment): Rename to derive_heap_segment.
4072
4073 2002-08-06 Michael Snyder <msnyder@redhat.com>
4074
4075 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
4076 * mips-tdep.c (mips_EABI_use_struct_convention,
4077 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
4078 New functions. (mips_use_struct_convention): Delete.
4079 (mips_gdbarch_init): set use_gdbarch_convention.
4080
4081 2002-08-06 Michael Snyder <msnyder@redhat.com>
4082
4083 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
4084 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
4085 mips_o32_reg_struct_has_addr): New functions.
4086 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
4087
4088 2002-08-07 Andrew Cagney <ac131313@redhat.com>
4089
4090 * regcache.c (pseudo_register): Delete function.
4091 (fetch_register): Delete function.
4092 (store_register): Delete function.
4093 (regcache_raw_read, legacy_read_register_gen): Use
4094 target_fetch_registers instead of fetch_register.
4095 (legacy_write_register_gen, regcache_raw_write): Use
4096 target_store_register instead of store_register.
4097 (write_register_bytes): Ditto.
4098
4099 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
4100 (STORE_PSEUDO_REGISTER): Delete.
4101 * gdbarch.h, gdbarch.c: Regenerate.
4102
4103 2002-08-06 Corinna Vinschen <vinschen@redhat.com>
4104
4105 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
4106 write dump file binary.
4107
4108 2002-08-05 Michael Snyder <msnyder@redhat.com>
4109
4110 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
4111 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
4112 (mips_gdbarch_init): Set N32 target to be mips64.
4113
4114 2002-08-06 Kevin Buettner <kevinb@redhat.com>
4115
4116 * frame.c (find_saved_register): Break out of loop once saved
4117 register address is found. Don't mention sparc in loop comment
4118 anymore.
4119
4120 2002-08-06 Kevin Buettner <kevinb@redhat.com>
4121
4122 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
4123 mips_default_saved_regsize to 8.
4124
4125 2002-08-06 Andrew Cagney <ac131313@redhat.com>
4126
4127 * gcore.c: Do not include <sys/procfs.h>.
4128 * Makefile.in (gcore.o): Update dependencies.
4129
4130 2002-08-06 Andrew Cagney <cagney@redhat.com>
4131
4132 * configure.tgt: Make arc-*-* obsolete.
4133 * NEWS: Mention that arc-*-* has been identifed as obsolete.
4134 * MAINTAINERS: Make arc-elf obsolete.
4135 * arc-tdep.c: Make file obsolete.
4136 * config/arc/arc.mt: Ditto.
4137 * config/arc/tm-arc.h: Ditto.
4138
4139 2002-08-05 Theodore A. Roth <troth@verinet.com>
4140
4141 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
4142
4143 2002-08-05 Andrew Cagney <ac131313@redhat.com>
4144
4145 * mcore-tdep.c (mcore_gdbarch_init): Use
4146 generic_unwind_get_saved_register instead of
4147 generic_get_saved_register.
4148 * v850-tdep.c (v850_gdbarch_init): Ditto.
4149 * frv-tdep.c (frv_gdbarch_init): Ditto.
4150 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4151 * s390-tdep.c (s390_gdbarch_init): Ditto.
4152 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4153 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
4154 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
4155
4156 2002-08-05 Joel Brobecker <brobecker@gnat.com>
4157
4158 * objfiles.h: Add missing #include "symfile.h"
4159
4160 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
4161
4162 2002-08-04 Andrew Cagney <ac131313@redhat.com>
4163
4164 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
4165 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
4166 of FIELD_BITSIZE.
4167
4168 2002-08-04 Daniel Jacobowitz <drow@mvista.com>
4169
4170 * NEWS: Cleanup and nitpick.
4171
4172 2002-08-03 Andrew Cagney <ac131313@redhat.com>
4173
4174 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
4175
4176 2002-08-03 Andrew Cagney <ac131313@redhat.com>
4177
4178 * Makefile.in (gdbtk-bp.o): Update dependencies.
4179 (gdbtk-register.o): Ditto.
4180 (gdbtk-varobj.o): Ditto.
4181
4182 2002-08-03 Andrew Cagney <cagney@redhat.com>
4183
4184 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
4185 m68hc11_fetch_pseudo_register.
4186 (m68hc11_pseudo_register_write): Replace
4187 m68hc11_store_pseudo_register.
4188 (m68hc11_gdbarch_init): Update.
4189
4190 Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
4191
4192 * gdbarch.sh: Include "gdb_string.h".
4193 * gdbarch.c: Regenerate.
4194
4195 * regcache.c: Include "gdb_string.h".
4196 * ax-general.c: Ditto.
4197 * varobj.c: Ditto.
4198 * std-regs.c: Ditto.
4199 * fbsd-proc.c: Ditto.
4200 * thread.c: Ditto.
4201
4202 * Makefile.in (regcache.o): Update dependencies.
4203 (thread.o, gdbarch.o): Ditto.
4204 (ax-general.o, gdbarch.o): Ditto.
4205 (varobj.o, std-regs.o): Ditto.
4206 (fbsd-proc.o): Specify dependencies.
4207
4208 2002-08-02 Andrew Cagney <cagney@redhat.com>
4209
4210 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
4211 regnum.
4212 (regcache_cooked_write): Ditto.
4213
4214 2002-08-02 Andrew Cagney <ac131313@redhat.com>
4215
4216 * regcache.c (regcache_cooked_read): New function.
4217 (regcache_cooked_write): New function.
4218 (read_register_gen): Rewrite using regcache_cooked_read.
4219 (write_register_gen): Rewrite using regcache_cooked_write.
4220
4221 * regcache.h (regcache_cooked_read, regcache_cooked_write):
4222 Declare.
4223
4224 2002-08-02 Andrew Cagney <cagney@redhat.com>
4225
4226 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
4227 Replace the architecture methods register_read and register_write.
4228 * gdbarch.h, gdbarch.c: Regenerate.
4229 * regcache.c (init_regcache_descr): Update.
4230 (read_register_gen): Update.
4231 (write_register_gen): Update.
4232 (supply_register): Update comment.
4233
4234 * sh-tdep.c (sh_gdbarch_init): Update.
4235 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
4236 `regcache' and `gdbarch' parameters. Make `buffer' a void
4237 pointer. Update code.
4238 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
4239 `regcache' and `gdbarch' parameters. Make `buffer' a constant
4240 void pointer. Update code.
4241 (sh64_register_write): Delete.
4242 (sh4_register_read): Delete.
4243 (sh64_register_read): Delete.
4244 (sh4_register_write): Delete.
4245 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
4246 void pointer, `to' parameter a void pointer.
4247 (sh_sh64_register_convert_to_raw): Ditto.
4248
4249 2002-08-01 Kevin Buettner <kevinb@redhat.com>
4250
4251 * mips-tdep.c (mips_register_virtual_type): Use architecture
4252 invariant return values.
4253
4254 2002-08-01 Andrew Cagney <cagney@redhat.com>
4255
4256 * linux-proc.c: Include "gdb_string.h".
4257 * Makefile.in (linux-proc.o): Update dependency list.
4258
4259 2002-08-01 Kevin Buettner <kevinb@redhat.com>
4260
4261 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
4262 comment.
4263
4264 2002-08-01 Grace Sainsbury <graces@redhat.com>
4265
4266 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
4267 to_insert_watchpoint, to_remove_watchpoint,
4268 to_stopped_by_watchpoint, to_stopped_data_address,
4269 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
4270 target vecctor. Define their corresponding macros so they call
4271 them.
4272
4273 * target.c: Add default and debug versions of for
4274 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
4275 to_insert_watchpoint, to_remove_watchpoint,
4276 to_stopped_by_watchpoint, to_stopped_data_address,
4277 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
4278
4279 2002-08-01 Kevin Buettner <kevinb@redhat.com>
4280
4281 * mips-tdep.c (mips_register_virtual_type): New function.
4282 (mips_gdbarch_init): Register mips_register_virtual_type()
4283 with gdbarch machinery.
4284 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
4285 this file instead of tm-bigmips.h.
4286 (MIPS_REGSIZE): Delete this macro.
4287 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
4288 multiarch version in mips-tdep.c will be found.
4289
4290 2002-08-01 Andrew Cagney <cagney@redhat.com>
4291
4292 * NEWS: Menion that CHILL has been made obsolete.
4293
4294 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
4295 * stabsread.c (read_range_type): Ditto.
4296 * gdbtypes.h: Ditto.
4297 * language.c (binop_type_check): Ditto.
4298 (binop_result_type): Ditto.
4299 (integral_type): Ditto.
4300 (character_type): Ditto.
4301 (string_type): Ditto.
4302 (boolean_type): Ditto.
4303 (structured_type): Ditto.
4304 (lang_bool_type): Ditto.
4305 (binop_type_check): Ditto.
4306 * language.h (_LANG_chill): Ditto.
4307 * dwarfread.c (set_cu_language): Ditto.
4308 * dwarfread.c (CHILL_PRODUCER): Ditto.
4309 * dwarfread.c (handle_producer): Ditto.
4310 * expression.h (enum exp_opcode): Ditto.
4311 * eval.c: Ditto for comments.
4312 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
4313 * expprint.c (print_subexp): Ditto.
4314 (print_subexp): Ditto.
4315 * valops.c (value_cast): Ditto.
4316 (search_struct_field): Ditto.
4317 * value.h (COERCE_VARYING_ARRAY): Ditto.
4318 * symfile.c (init_filename_language_table): Ditto.
4319 (add_psymbol_with_dem_name_to_list): Ditto.
4320 * valarith.c (value_binop): Ditto.
4321 (value_neg): Ditto.
4322 * valops.c (value_slice): Ditto.
4323 * symtab.h (union language_specific): Ditto.
4324 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
4325 (SYMBOL_DEMANGLED_NAME): Ditto.
4326 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
4327 * defs.h (enum language): Ditto.
4328 * symtab.c (got_symtab): Ditto.
4329 * utils.c (fprintf_symbol_filtered): Ditto.
4330
4331 * ch-typeprint.c: Make file obsolete.
4332 * ch-valprint.c: Make file obsolete.
4333 * ch-lang.h: Make file obsolete.
4334 * ch-exp.c: Make file obsolete.
4335 * ch-lang.c: Make file obsolete.
4336
4337 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
4338 CHILL_LIB.
4339 (TARGET_FLAGS_TO_PASS): Ditto.
4340 (CHILLFLAGS): Obsolete.
4341 (CHILL): Obsolete.
4342 (CHILL_FOR_TARGET): Obsolete.
4343 (CHILL_LIB): Obsolete.
4344 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
4345 ch-valprint.c.
4346 (HFILES_NO_SRCDIR): Remove ch-lang.h.
4347 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
4348 ch-lang.o.
4349 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
4350 targets.
4351
4352 2002-07-31 Joel Brobecker <brobecker@gnat.com>
4353
4354 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
4355 This does not change anything at the moment, but will be helpful
4356 later when full Ada support is integrated.
4357
4358 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4359
4360 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
4361 help message.
4362
4363 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4364
4365 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
4366 and save it in a local variable. Use variable in later test.
4367
4368 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4369
4370 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
4371 test. (Thanks to Daniel Jacobowitz.)
4372
4373 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4374
4375 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
4376 (mips_abi_strings): Add "n64".
4377 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
4378
4379 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4380
4381 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
4382 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
4383
4384 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4385
4386 * utils.c (host_pointer_to_address, address_to_host_pointer):
4387 Use gdb_assert() instead of explicit call to internal_error().
4388
4389 2002-07-30 Kevin Buettner <kevinb@redhat.com>
4390
4391 * Makefile.in (rs6000-nat.o): Update dependencies.
4392
4393 From Nicholas Duffek:
4394 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
4395 (aix-thread.o): New rule.
4396 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
4397 * config/powerpc/aix432.mh: New file.
4398
4399 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
4400
4401 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
4402 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
4403 (fetch_core_registers, ppc_linux_supply_gregset)
4404 (ppc_linux_supply_fpregset): New functions.
4405 (ppc_linux_regset_core_fns): New.
4406 (_initialize_ppc_linux_tdep): Call add_core_fns.
4407 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
4408 and ppc_linux_supply_gregset.
4409 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
4410 (supply_fpregset): Call ppc_linux_supply_fpregset.
4411 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
4412 corelow.o.
4413 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
4414
4415 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
4416
4417 * symtab.c (lookup_symbol): Demangle before lowercasing.
4418
4419 2002-07-30 Andrew Cagney <ac131313@redhat.com>
4420
4421 * symtab.h: Replace #include "gdb_obstack.h" with opaque
4422 declaration.
4423 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
4424 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
4425 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
4426 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
4427 "gdb_string.h".
4428 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
4429 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
4430 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
4431 (avr-tdep.o, mon960-rom.o): Ditto.
4432 (aout_stabs_gnu_h): Define.
4433 (symtab_h): Remove $(gdb_obstack_h).
4434
4435 2002-07-30 Jim Blandy <jimb@redhat.com>
4436
4437 Patch from David Carlton <carlton@math.stanford.edu>:
4438 * gdbinit.in: Move the `dir' commands that add GDB's own source
4439 directory to the search path to the end, so that the `gdb' source
4440 directory will be searched first.
4441
4442 2002-07-29 Andrew Cagney <ac131313@redhat.com>
4443
4444 * gdb_obstack.h: New file.
4445 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
4446 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
4447 * objfiles.h: Include "gdb_obstack.h".
4448 * Makefile.in (gdb_obstack_h): Define.
4449 (symtab_h): Add $(gdb_obstack_h).
4450 (objfiles_h): Add $(gdb_obstack_h).
4451
4452 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
4453 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
4454 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
4455 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
4456 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
4457 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
4458 * symfile.c, coffread.c, c-typeprint.c: Ditto.
4459 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
4460
4461 * Makefile.in (bcache.o): Update dependencies.
4462 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
4463 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
4464 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
4465 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
4466 (stabsread.o, symfile.o, symmisc.o): Ditto.
4467 (symtab.o, typeprint.o, macroexp.o): Ditto.
4468 (macrotab.o, mdebugread.o): Ditto.
4469 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
4470 (coff_ecoff_h, aout_aout64_h): Define.
4471 (aout_stabs_gnu_h, libaout_h): Define.
4472
4473 2002-07-29 Andrew Cagney <cagney@redhat.com>
4474
4475 * regcache.c (struct regcache_descr): Rename nr_registers to
4476 nr_cooked_registers. Revise comments describing the structure
4477 member fields.
4478 (init_regcache_descr): Update.
4479 (init_legacy_regcache_descr): Update.
4480 (read_register_gen, write_register_gen): When a cooked register in
4481 the raw register range, directly access the value from the raw
4482 register cache.
4483
4484 2002-07-29 Andrew Cagney <ac131313@redhat.com>
4485
4486 * z8k-tdep.c: Do not include "obstack.h".
4487 * h8300-tdep.c, h8500-tdep.c: Ditto.
4488 * m68hc11-tdep.c, sh-tdep.c: Ditto.
4489 * valprint.c, v850-tdep.c: Ditto.
4490 * d10v-tdep.c, mn10300-tdep.c: Ditto.
4491 * mn10200-tdep.c: Ditto.
4492
4493 * Makefile.in (z8k-tdep.o): Update dependencies.
4494 (m68hc11-tdep.o, valprint.o): Ditto.
4495 (v850-tdep.o, d10v-tdep.o): Ditto.
4496 (mn10300-tdep.o, sparc-tdep.o): Ditto.
4497 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
4498 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
4499 (sh_opc_h, gdb_sim_sh_h): Define.
4500 (elf_sh_h, elf_bfd_h): Define.
4501 (opcode_m68hc11_h): Define.
4502 (OPCODES_SRC, OPCODES_DIR): define.
4503 (OPCODES): Use $(OPCODES_DIR).
4504 (gdb_sim_d10v_h): Rename sim_d10v_h.
4505 (gdb_sim_arm_h): Rename sim_arm_h.
4506
4507 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4508
4509 * utils.c (host_pointer_to_address, address_to_host_pointer):
4510 Change internal_error() message to indicate function responsible
4511 for the error.
4512
4513 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4514
4515 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
4516 calls to local_hex_string_custom().
4517
4518 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4519
4520 * irix5-nat.c: Move IRIX shared library support from here...
4521 * solib-irix.c: ...to here. Revised substantially to work with
4522 generic solib framework.
4523
4524 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
4525 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
4526 * mips-irix-tdep.c: New file.
4527
4528 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
4529 (mips-irix-tdep.o, solib-irix.o): New rules.
4530 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
4531 solib-irix.o.
4532 * config/mips/irix6.mt (TDEPFILES): Likewise.
4533 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
4534
4535 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4536
4537 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
4538 disabled (via ``#if 0'') includes.
4539
4540 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4541
4542 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
4543 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
4544 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
4545 Add support for the fpscr register.
4546 * rs6000-nat.c (regmap, fetch_inferior_registers)
4547 (store_inferior_registers, fetch_core_registers): Likewise.
4548
4549 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4550
4551 * rs6000-nat.c (language.h): Include.
4552 (special_regs): Delete this array.
4553 (regmap): New function.
4554 (fetch_register, store_register): Use regmap() to map gdb
4555 register numbers to ptrace register numbers. Also, use
4556 outputs from regmap() to make decisions regarding type of
4557 ptrace() call to make. In particular, don't compare against
4558 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
4559 (fetch_inferior_registers, store_inferior_registers): Where
4560 possible, obtain register numbers from tdep struct. Don't
4561 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
4562 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
4563 (LAST_UISA_SP_REGNUM): Delete.
4564
4565 2002-07-25 Kevin Buettner <kevinb@redhat.com>
4566
4567 * rs6000-nat.c (ppc-tdep.h): Include.
4568 (fetch_registers, store_register, fetch_core_registers): Don't
4569 access registers[] directly. Instead, use supply_register() or
4570 regcache_collect() as appropriate.
4571 (find_toc_address): Format hex address with local_hex_string().
4572
4573 2002-07-25 Andrew Cagney <ac131313@redhat.com>
4574
4575 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
4576 bfd/elf32-frv.c.
4577
4578 2002-07-24 Tom Tromey <tromey@redhat.com>
4579
4580 * jv-exp.y: Marked all strings with _().
4581 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
4582 internal_error.
4583 (MethodInvocation, CastExpression, parse_number, yyerror,
4584 java_type_from_name, push_expression_name, yylex): Typo fixes.
4585
4586 2002-07-24 Daniel Jacobowitz <drow@mvista.com>
4587
4588 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
4589 (tee_file_flush, tee_file_write, tee_file_fputs)
4590 (tee_file_isatty): New.
4591 * ui-file.h (tee_file_new): Add prototype.
4592
4593 2002-07-24 Aidan Skinner <aidan@velvet.net>
4594
4595 * ada-lang.c: Change k&r style function definitions to prototyped
4596 form.
4597 * ada-typeprint.c: Change k&r style function definitions to prototyped
4598 form.
4599 * ada-valprint.c: Change k&r style function definitions to prototyped
4600 form.
4601
4602 2002-07-24 Andrew Cagney <cagney@redhat.com>
4603
4604 * README: Remove reference to remote-bug.
4605 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
4606 remote-bug.c.
4607 (m88k-nat.o): Delete rule.
4608 (m88k-tdep.o): Delete rule.
4609 (remote-bug.o): Delete rule.
4610 * MAINTAINERS: Mark as obsolete.
4611 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
4612 * m88k-tdep.c: Make file obsolete.
4613 * config/m88k/m88k.mh: Ditto.
4614 * config/m88k/delta88v4.mh: Ditto.
4615 * config/m88k/delta88v4.mt: Ditto.
4616 * config/m88k/delta88.mt: Ditto.
4617 * config/m88k/delta88.mh: Ditto.
4618 * remote-bug.c: Ditto.
4619 * config/m88k/tm-delta88.h: Ditto.
4620 * config/m88k/nm-delta88v4.h: Ditto.
4621 * config/m88k/xm-delta88.h: Ditto.
4622 * config/m88k/xm-dgux.h: Ditto.
4623 * config/m88k/tm-m88k.h: Ditto.
4624 * config/m88k/nm-m88k.h: Ditto.
4625 * config/m88k/tm-delta88v4.h: Ditto.
4626 * m88k-nat.c: Ditto.
4627 * cxux-nat.c: Ditto.
4628 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
4629 and m88*-*-* obsolete.
4630 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
4631 m88*-*-* obsolete.
4632
4633 2002-07-24 Andrew Cagney <cagney@redhat.com>
4634
4635 * findvar.c (extract_unsigned_integer): Make `addr' parameter
4636 constant. Same for local pointer variables.
4637 (extract_signed_integer): Ditto.
4638 * defs.h (extract_unsigned_integer): Update.
4639 (extract_signed_integer): Update.
4640
4641 2002-07-24 Andrew Cagney <cagney@redhat.com>
4642
4643 * regcache.c (regcache_raw_write): Change buf parameter to a
4644 constant void pointer.
4645 (regcache_raw_read): Change buf parameter to a void pointer.
4646 (legacy_write_register_gen): Change myaddr parameter a constant
4647 void pointer.
4648 (supply_register): Change val parameter to a const void pointer.
4649 * regcache.h (regcache_raw_write): Update declaration.
4650 (regcache_raw_read): Update declaration.
4651 (supply_register): Update declaration.
4652
4653 2002-07-24 Tom Tromey <tromey@redhat.com>
4654
4655 * defs.h (gdb_readline_wrapper): Declare.
4656 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
4657 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
4658 * top.c (gdb_readline_wrapper): New function.
4659 (command_line_input): Use it.
4660
4661 2002-07-24 Andrew Cagney <cagney@redhat.com>
4662
4663 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
4664 regcache_read and regcache_write.
4665 (regcache_raw_read_as_address): Replace regcache_read_as_address.
4666 * regcache.c: Update.
4667 * sh-tdep.c (sh64_push_arguments): Update comment.
4668 (sh_pseudo_register_read): Update.
4669 (sh_pseudo_register_write): Update.
4670 (sh4_register_read): Update.
4671 (sh4_register_write): Update.
4672 (sh64_pseudo_register_read): Update.
4673 (sh64_pseudo_register_write): Update.
4674 (sh64_register_read): Update.
4675 (sh64_register_write): Update.
4676 * i386-tdep.c (i386_extract_return_value): Update.
4677 (i386_extract_struct_value_address): Update.
4678 (i386_extract_return_value): Update.
4679 * blockframe.c (generic_read_register_dummy): Update.
4680 (generic_call_dummy_register_unwind): Update
4681 * infrun.c (write_inferior_status_register): Update.
4682
4683 2002-07-23 Jim Blandy <jimb@redhat.com>
4684
4685 * parser-defs.h (expression_context_pc): Make this extern.
4686 (Thanks to Michael Snyder.)
4687
4688 2002-07-23 Andrew Cagney <ac131313@redhat.com>
4689
4690 GDB 5.2.1 released from 5.2 branch.
4691 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
4692 * README: Update to mention 5.2.1.
4693
4694 2002-07-23 Mark Salter <msalter@redhat.com>
4695
4696 * remote.c (remote_read_bytes): Fix check for error.
4697
4698 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4699
4700 * aix-thread.c (language.h): Include.
4701 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4702 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
4703 Print newlines at end of debug messages.
4704 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
4705 (pdc_write_data): Use local_hex_string() instead of %llx formats.
4706
4707 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4708
4709 * aix-thread.c (ppc-tdep.h): Include.
4710 (special_register_p): New function.
4711 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
4712 (store_regs_user_thread): Use register number information from
4713 gdbarch_tdep struct instead of hardcoded offsets relative to
4714 FIRST_UISA_SP_REGNUM.
4715 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
4716 special_register_p() instead of using FPLAST_REGNUM and
4717 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
4718 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
4719 will be MQ's register number.
4720
4721 2002-07-22 Michael Snyder <msnyder@redhat.com>
4722
4723 * aix-thread.c (ops): Rename to aix_thread_ops.
4724 (base_ops): Rename to base_target.
4725 (ops_attach): Rename to aix_thread_attach.
4726 (ops_detach): Rename to aix_thread_detach.
4727 (ops_resume): Rename to aix_thread_detach.
4728 (ops_wait): Rename to aix_thread_wait.
4729 (ops_kill): Rename to aix_thread_kill.
4730 (init_ops): Rename to init_aix_thread_ops.
4731 (ops_fetch_register): Rename to aix_thread_fetch_register.
4732 (ops_store_register): Rename to aix_thread_store_register.
4733 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
4734 (ops_thread_alive): Rename to aix_thread_thread_alive.
4735 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
4736 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
4737 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
4738 (fetch_regs_lib): Rename to fetch_regs_user_thread.
4739 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
4740 (store_regs_lib): Rename to store_regs_user_thread.
4741 (store_regs_kern): Rename to store_regs_kernel_thread.
4742
4743 2002-07-22 Michael Snyder <msnyder@redhat.com>
4744
4745 * aix-thread.c (ops_prepare_to_store): Eliminate.
4746 (init_ops): Don't initialize ops.prepare_to_store.
4747 (store_regs_kern): Pre-fetch register buffers from child,
4748 because some registers may not be in the cache. Copy
4749 regs from register cache only if they are cached.
4750 (store_regs_lib): Copy regs from register cache only
4751 if they are cached.
4752 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
4753 fill_gprs64): Ditto.
4754
4755 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4756
4757 * aix-thread.c (gdb_assert.h): Include.
4758 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
4759 register sizes (from register cache) match size of buffer holding
4760 register data.
4761 (fill_sprs32): Change parameter types to match those in the ptrace()
4762 buffer.
4763 (store_regs_lib): Likewise, but for 32-bit temporary variables.
4764 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
4765
4766 2002-07-22 Michael Snyder <msnyder@redhat.com>
4767
4768 * aix-thread.c (supply_sprs64): Cosmetic change.
4769 (supply_sprs32): Cosmetic change.
4770 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
4771 (fill_sprs64): Use regcache_collect instead of read_register.
4772 (store_regs_lib): Use regcache_collect instead of
4773 read_register. Use fill_sprs32 instead of fill_sprs64,
4774 if debugging a 32-bit architecture.
4775 (store_regs_kern): Use fill_gprs64 etc. to pull the values
4776 out of the register cache, instead of passing a pointer into
4777 the register cache directly to ptrace. Use regcache_collect
4778 insteaad of read_register.
4779 (ops_prepare_to_store): Use target_read_registers instead
4780 of read_register_bytes.
4781
4782 2002-07-20 Aidan Skinner <aidan@velvet.net>
4783
4784 * MAINTAINERS: Add self under write after approval.
4785
4786 2002-07-20 Aidan Skinner <aidan@velvet.net>
4787
4788 * ada-tasks.c: Change k&r style function definitions to prototyped
4789 form.
4790
4791 2002-07-19 Andrew Cagney <ac131313@redhat.com>
4792
4793 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
4794 * x86-64-tdep.c: Include "objfiles.h".
4795 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
4796 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
4797
4798 2002-07-17 Michal Ludvig <michal@suse.cz>
4799
4800 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
4801 (update_context): Initialise cfa variable.
4802
4803 2002-07-17 Michael Snyder <msnyder@redhat.com>
4804
4805 * aix-thread.c: Shorten some long lines.
4806 Bring comments into line with code spec.
4807
4808 2002-07-18 Joel Brobecker <brobecker@gnat.com>
4809
4810 * infrun.c: Re-indent using gdb_indent.sh.
4811
4812 2002-07-18 Joel Brobecker <brobecker@gnat.com>
4813
4814 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
4815 Leave the indentation temporarily untouched, to minimize the diffs.
4816
4817 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
4818
4819 * stabsread.c: Make os9k sections of the code obsolete,
4820 for real this time.
4821 * stabsread.h: Make os9k sections of the code obsolete.
4822
4823 2002-07-18 Michal Ludvig <mludvig@suse.cz>
4824
4825 * linux-low.c (regsets_store_inferior_registers): Add free()
4826 at the end of a loop to prevent memory leak.
4827 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
4828 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
4829 * config/sparc/tm-sp64linux.h: Make the rest of #endif
4830 line a comment.
4831 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
4832
4833 2002-07-17 Jim Blandy <jimb@redhat.com>
4834
4835 * macrocmd.c (info_macro_command): Remove newline from error
4836 message.
4837
4838 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
4839
4840 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
4841 (sh_gdbarch_init): Use it for sh-dsp.
4842
4843 2002-07-16 Kevin Buettner <kevinb@redhat.com>
4844
4845 * dwarf2read.c (read_initial_length): Handle older, non-standard,
4846 64-bit DWARF2 format.
4847
4848 2002-07-16 Joel Brobecker <brobecker@gnat.com>
4849
4850 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
4851 <sys/proc.h> when not available.
4852
4853 2002-07-16 Andrew Cagney <ac131313@redhat.com>
4854
4855 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
4856 * stabsread.c: Make os9k sections of the code obsolete.
4857 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
4858 * config/i386/i386os9k.mt: Make file obsolete.
4859 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
4860 (COMMON_OBS): Remove os9kread.o
4861 (SFILES): Remove os9kread.c.
4862 (os9kread.o, remote-os9k.o): Make target obsolete.
4863 * remote-os9k.c: Make file obsolete.
4864 * os9kread.c: Make file obsolete.
4865 * Makefile.in
4866
4867 2002-07-16 Andrew Cagney <ac131313@redhat.com>
4868
4869 * NEWS: Mention that the FR30 has been made obsolete.
4870 * fr30-tdep.c: Make file obsolete.
4871 * config/fr30/tm-fr30.h: Ditto.
4872 * config/fr30/fr30.mt: Ditto.
4873 * configure.tgt: Make fr30-*-elf obsolete.
4874 * MAINTAINERS: Make fr30-elf obsolete.
4875
4876 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
4877
4878 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
4879 found is not inside a section.
4880
4881 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4882
4883 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
4884 strerror().
4885 (pdc_realloc): Use xrealloc() instead of realloc().
4886
4887 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4888
4889 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
4890 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
4891 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
4892 macros.
4893
4894 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4895
4896 * aix-thread.c (ptrace_check): Eliminate goto.
4897 (sync_threadlists): Eliminate gotos. Also, fix array overrun
4898 problem.
4899
4900 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4901
4902 * aix-thread.c (gdbcmd.h): Include.
4903 (DEBUG, DBG, DBG2, dbg): Eliminate.
4904 (debug_aix_thread): New static global.
4905 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4906 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
4907 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
4908 invocations to DBG and DBG2 macros to test against
4909 ``debug_aix_thread'' and call fprintf_unfiltered().
4910 (_initialize_aix_thread): Add new command "set debug aix-thread".
4911
4912 2002-07-15 Andrew Cagney <ac131313@redhat.com>
4913
4914 From Gerhard Tonn <TON@de.ibm.com>:
4915 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
4916 instead of supply_register.
4917
4918 2002-07-15 Andrew Cagney <ac131313@redhat.com>
4919
4920 * dwarf2cfi.c: Include "gdb_assert.h".
4921 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
4922 non-NULL.
4923 (update_context): Do not use __func__. Add missing ``break''.
4924 (update_context): Do not use __func__.
4925
4926 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
4927
4928 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
4929 and its setting. Set gdbarch instruction printing functions
4930 directly. For non-rs6000 case use new function
4931 gdb_print_insn_powerpc.
4932 (gdb_print_insn_powerpc): New function.
4933
4934 2002-07-13 Andrew Cagney <ac131313@redhat.com>
4935
4936 * NEWS: Mention that the d30v has been marked obsolete.
4937 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
4938 * configure.tgt: Mark d30v-*-* as obsolete.
4939 * d30v-tdep.c: Mark file as obsolete.
4940 * config/d30v/d30v.mt: Ditto.
4941 * config/d30v/tm-d30v.h: Ditto.
4942
4943 2002-07-13 Aidan Skinner <aidan@velvet.net>
4944
4945 * ada-tasks.c (add_task_entry): replace calls to
4946 malloc() with xmalloc
4947 * ada-tasks.c (init_task_list): replace calls to free with xfree()
4948
4949 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
4950 ada_finish_decode_line_1, all_sals_for_line
4951 ada_breakpoint_rewrite): replace calls to free() with xfree()
4952
4953 2002-07-12 Kevin Buettner <kevinb@redhat.com>
4954
4955 From Nicholas Duffek (with minor changes by Martin Hunt,
4956 Louis Hamilton, and Kevin Buettner):
4957 * aix-thread.c: New file.
4958
4959 2002-07-12 Petr Sorfa <petrs@caldera.com>
4960
4961 * dwarf2read.c (dwarf2_invalid_attrib_class): New
4962 complaint for invalid attribute class or form.
4963 (read_func_scope): DW_AT_frame_base
4964 better handling of DW_AT_block*.
4965 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
4966 better handling of DW_AT_block*.
4967 (read_common_block): DW_AT_location
4968 better handling of DW_AT_block*.
4969 (read_partial_die): DW_AT_location better handling
4970 of DW_AT_block*.
4971 (new_symbol): DW_AT_external better handling of
4972 DW_AT_block*. Proper initialization of variable
4973 "addr".
4974 (attr_form_is_block): New function that returns true
4975 if the attribute's form is of DW_FORM_block*.
4976
4977 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
4978
4979 * valops.c (find_method_list): Remove comment about
4980 removed STATIC_MEMFUNCP argument.
4981 (value_find_oload_method_list): Likewise.
4982
4983 2002-07-12 Kevin Buettner <kevinb@redhat.com>
4984
4985 From Nicholas Duffek:
4986 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
4987 target_new_objfile_hook.
4988
4989 2002-07-12 Kevin Buettner <kevinb@redhat.com>
4990
4991 From Nicholas Duffek:
4992 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
4993 csect.
4994
4995 2002-07-12 Andrew Cagney <cagney@redhat.com>
4996
4997 * MAINTAINERS: Mention --enable-sim-build-warnings.
4998 (m68hc11-elf): Disable sim build warnings.
4999 (m32r-elf): Mark as broken obsolete candidate.
5000 (x86_64-linux-gnu): Mark as buildable with -Werror.
5001 (arm-elf): Change -w to ``,'' which enables warnings but not
5002 -Werror.
5003
5004 2002-07-12 Andrew Cagney <ac131313@redhat.com>
5005
5006 * bcache.h: Update copyright.
5007 (struct bstring, struct bcache): Move definition to "bcache.c".
5008 Replaced by opaque declaration.
5009 (bcache_xfree): Replace free_bcache.
5010 (bcache_xmalloc, bcache_memory_used): Declare.
5011
5012 * bcache.c: Update copyright.
5013 (struct bstring, struct bcache): Moved to here from "bcache.h".
5014 Update comments.
5015 (bcache_xmalloc, bcache_memory_used): New functions.
5016 (bcache_xfree): Replace function free_bcache.
5017
5018 * Makefile.in (objfiles.o): Add $(bcache_h).
5019 (objfiles_h): Remove $(bcache_h).
5020 (symfile.o): Add $(bcache_h).
5021
5022 * symmisc.c: Update copyright.
5023 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
5024 (print_objfile_statistics): Use bcache_memory_used.
5025
5026 * symfile.c: Include "bcache.h".
5027 (reread_symbols): Use bcache_xfree.
5028 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
5029 (add_psymbol_to_list): Pass psymbol_cache by value.
5030 (add_psymbol_with_dem_name_to_list): Ditto.
5031
5032 * objfiles.h: Update copyright.
5033 (struct bcache): Declare opaque. Do not include "bcache.h".
5034 (struct objfile): Change psymbol_cache and macro_cache to ``struct
5035 bcache'' pointers.
5036 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
5037
5038 * objfiles.c: Include "bcache.h". Update copyright.
5039 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
5040 macro_cache.
5041 (free_objfile): Use bcache_xfree.
5042
5043 2002-07-11 Grace Sainsbury <graces@redhat.com>
5044
5045 * monitor.c (monitor_fetch_register): Make name a constant.
5046 (monitor_store_register): Same.
5047
5048 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
5049
5050 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
5051 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
5052 (finish_block) For non-function blocks, hash the symbol table. For
5053 function blocks, mark the symbol table as unhashed.
5054 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
5055 (msymbol_hash_iw): Likewise.
5056 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
5057 value.
5058 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
5059 (lookup_minimal_symbol): Likewise for both.
5060 * symtab.h (struct block): Add `hashtable' flag. Comment the
5061 hashtable.
5062 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
5063 (ALL_BLOCK_SYMBOLS): Update.
5064 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
5065 (struct symbol): Add `hash_next' pointer.
5066 * symtab.c (lookup_block_symbol): Search using the hash table when
5067 possible.
5068 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
5069 (search_symbols, find_addr_symbol): Likewise.
5070
5071 * dstread.c (process_dst_block): Clear hashtable bit for new block.
5072 (read_dst_symtab): Likewise.
5073 * jv-lang.c (get_java_class_symtab): Likewise.
5074 * mdebugread.c: Include "gdb_assert.h".
5075 (shrink_block): Assert that the block being modified is not hashed.
5076 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
5077 * symmisc.c (free_symtab_block): Walk the hash table when freeing
5078 symbols.
5079 (dump_symtab): Recognize hashed blocks.
5080 * printcmd.c (print_frame_args): Assert that function blocks do not
5081 have hashed symbol tables.
5082 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
5083 (fill_in_ada_prototype, debug_print_block): Likewise.
5084 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
5085
5086 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
5087
5088 * stack.c (print_frame): Use result of frame_address_in_block()
5089 instead of fi->pc when evaluating symbols.
5090 (backtrace_command_1): Ditto.
5091
5092 2002-07-11 Andrew Cagney <cagney@redhat.com>
5093
5094 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
5095 Make static.
5096
5097 * arm-tdep.c (arm_register_name): Make return type constant.
5098
5099 2002-07-10 Andrew Cagney <ac131313@redhat.com>
5100
5101 * win32-nat.c (has_detach_ability): Convert to strict ISO C
5102 prototype.
5103 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
5104 * s390-tdep.c (s390_fp_regnum): Ditto.
5105 (s390_read_fp): Ditto.
5106 (s390_pop_frame): Ditto.
5107 (_initialize_s390_tdep): Ditto.
5108 * remote.c (get_remote_state): Ditto.
5109 * procfs.c (mappingflags): Ditto.
5110 * memattr.c (_initialize_mem): Ditto.
5111 * mcore-tdep.c (mcore_pop_frame): Ditto.
5112 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
5113 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
5114 * language.c (set_case_str): Ditto.
5115 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
5116 * frv-tdep.c (new_variant): Ditto.
5117 (frv_stopped_data_address): Ditto.
5118 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
5119 (context_alloc): Ditto.
5120 (frame_state_alloc): Ditto.
5121 (unwind_tmp_obstack_init): Ditto.
5122 (unwind_tmp_obstack_free): Ditto.
5123 (cfi_read_fp): Ditto.
5124 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
5125 (cris_pop_frame): Ditto.
5126 * c-lang.c (scanning_macro_expansion): Ditto.
5127 (finished_macro_expansion): Ditto.
5128 (c_preprocess_and_parse): Ditto.
5129 * gdbarch.sh: Ditto.
5130 * gdbarch.h, gdbarch.c: Regenerate.
5131 * config/mn10200/tm-mn10200.h: Adjust indentation.
5132 * target.c: Adjust indentation.
5133 * symtab.h: Adjust indentation.
5134 * stabsread.h: Adjust indentation.
5135 * remote-es.c: Adjust indentation.
5136 * os9kread.c: Adjust indentation.
5137
5138 2002-07-10 Andrew Cagney <ac131313@redhat.com>
5139
5140 * wince.c (_initialize_wince): Rename _initialize_inftarg.
5141 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
5142
5143 2002-07-10 Grace Sainsbury <graces@redhat.com>
5144
5145 * NEWS: Mention m68k, mcore multi-arching.
5146 * MAINTAINERS: Change status of m68k, mcore to reflect
5147 multi-arching.
5148
5149 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
5150
5151 * valops.c (find_overload_match): Free oload_syms.
5152
5153 2002-07-09 Joel Brobecker <brobecker@gnat.com>
5154
5155 Define HAVE_SYS_PROC_H if sys/proc.h exists
5156 * configure.in: Add check for sys/proc.h
5157 * config.in: Regenerate.
5158 * configure: Regenerate.
5159
5160 2002-07-09 Grace Sainsbury <graces@redhat.com>
5161
5162 * config/m68k/tm-m68k.h: Remove macros wrapped in
5163 #if !GDB_MULTI_ARCH.
5164
5165 2002-07-08 Andrew Cagney <ac131313@redhat.com>
5166
5167 * config.in, configure: Regenerate.
5168
5169 2002-07-08 Mark Kettenis <kettenis@gnu.org>
5170
5171 * dwarf2cfi.c: Include "gcore.h".
5172 (execute_stack_op): Fix implementation of the
5173 DW_OP_deref and DW_OP_deref_size operators by letting do their
5174 lookup in the target.
5175
5176 2002-07-07 Mark Kettenis <kettenis@gnu.org>
5177
5178 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
5179 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
5180 tdep->sc_sp_offset.
5181
5182 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
5183
5184 Fix PR gdb/595, gdb/602
5185 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
5186 Don't call value_cast, just read the vtable pointer; update comments
5187 to match.
5188
5189 2002-07-05 Grace Sainsbury <graces@redhat.com>
5190
5191 * config/mcore/tm-mcore.h: Remove file.
5192 * config/mcore/mcore.mt: Remove definition of TM_FILE
5193 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
5194
5195 2002-07-05 Mark Kettenis <kettenis@gnu.org>
5196
5197 * i386bsd-tdep.c: Include "gdb_string.h".
5198
5199 2002-07-04 Grace Sainsbury <graces@redhat.com>
5200
5201 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
5202 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
5203 mcore-tdep.
5204 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
5205 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
5206 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
5207 (RETVAL_REGNUM): Move macros from tm-mcore.h
5208 (mcore_reg_struct_has_addr): New function.
5209 (mcore_gdbarch_init): Added initializations for the macros removed
5210 from tm-mcore.h.
5211
5212 2002-07-04 Mark Kettenis <kettenis@gnu.org>
5213
5214 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
5215 traditonal string branding within the ELF header.
5216
5217 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
5218
5219 * symtab.c (remove_params): New function.
5220 (make_symbol_overload_list): Use it instead of cplus_demangle.
5221 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
5222
5223 2002-07-04 Mark Kettenis <kettenis@gnu.org>
5224
5225 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
5226
5227 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
5228 New variables.
5229 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
5230 and tdep->sigtramp_end.
5231 * i386obsd-nat.c: New file.
5232 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
5233
5234 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
5235 Don't call get_current_frame().
5236
5237 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
5238
5239 * i386-nat.c (child_post_startup_inferior): New function
5240 calling i386_cleanup_dregs if
5241 I386_USE_GENERIC_WATCHPOINTS is defined.
5242 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
5243 conditional to acknowledge that i386-nat.c has its
5244 own child_post_startup_inferior function.
5245
5246 2002-07-04 Mark Kettenis <kettenis@gnu.org>
5247
5248 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
5249 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
5250 instead of MAX_REGISTER_RAW_SIZE.
5251 (i386_extract_return_value, i386_extract_struct_value_address):
5252 Convert to use regcache.
5253 (i386_gdbarch_init): Set max_register_raw_size and
5254 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
5255 Set extract_return_value and extract_struct_value_address instead
5256 of their deprecated variants.
5257
5258 Convert i386 target to generic dummy frames.
5259 * i386-tdep.c: Include "symfile.h".
5260 (i386_frameless_signal_p): Consider a function to be frameless if
5261 the pc points at the first instruction of the function.
5262 (i386_frame_chain): Handle (generic) call dummies.
5263 (i386_frame_saved_pc): Likewise.
5264 (i386_frame_init_saved_regs): Remove code dealing with call
5265 dummies on the stack.
5266 (i386_push_dummy_frame): Removed.
5267 (i386_call_dummy_words): Removed.
5268 (i386_fix_call_dummy): Removed.
5269 (i386_push_return_address): New function.
5270 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
5271 parameter, and don't call get_current_frame.
5272 (i386_pop_frame): New function.
5273 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
5274 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
5275 entry_point_address, set call_dummy_breakpoint_offset to 0, set
5276 call_dummy_length to 0, set call_dummy_words to NULL, set
5277 sizeof_call_dummy_words to 0, set fix_call_dummy to
5278 generic_fix_call_dummy, set pc_in_call_dummy to
5279 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
5280 generic_push_dummy_frame, set push_return_address to
5281 i386_push_return_address and set frame_chain_valid to
5282 generic_file_frame_chain_valid.
5283
5284 2002-07-03 Andrew Cagney <ac131313@redhat.com>
5285
5286 * gdbarch.sh (struct regcache): Add opaque declaration.
5287 (EXTRACT_RETURN_VALUE): New architecture method.
5288 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
5289 * gdbarch.h, gdbarch.c: Regenerate.
5290 * arch-utils.c (legacy_extract_return_value): New function.
5291 * arch-utils.h (legacy_extract_return_value): Declare.
5292 * values.c (value_being_returned): Re-enable code handling
5293 EXTRACT_STRUCT_VALUE_ADDRESS. Move
5294 deprecated_grub_regcache_for_registers call to block handling
5295 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
5296 (EXTRACT_RETURN_VALUE): Do not define.
5297
5298 2002-07-03 Grace Sainsbury <graces@redhat.com>
5299
5300 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
5301 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
5302 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
5303 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
5304 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
5305 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
5306 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
5307 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
5308 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
5309 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
5310 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
5311 argument so the function fits the prototype in the architecture
5312 vector.
5313 (mcore_pop_frame): Remove argument so the function fits the
5314 prototype. Use get_current_frame instead of the argument.
5315 (mcore_push_arguments): Change type of struct_return so the
5316 function can be used in the architecture vector.
5317 (mcore_store_struct_return): Add.
5318 (mcore_frame_init_saved_regs): Add.
5319 (mcore_gdbarch_init): Add function calls to replace the macros
5320 removed from tm-mcore.h
5321
5322 2002-07-03 Andrew Cagney <ac131313@redhat.com>
5323
5324 * infcmd.c (print_return_value): Remove compatibility code calling
5325 deprecated_grub_regcache_for_registers.
5326
5327 * values.c: Include "regcache.h".
5328 (value_being_returned): Update. Use
5329 deprecated_grub_regcache_for_registers to extract the register
5330 buffer address.
5331 * value.h (value_being_returned): Change ``retbuf'' parameter to a
5332 ``struct regcache''.
5333 * Makefile.in (values.o): Add dependency on $(regcache_h).
5334
5335 * inferior.h (run_stack_dummy): Change type of second parameter to
5336 a ``struct regcache''.
5337 * valops.c (hand_function_call): Change type of retbuf to ``struct
5338 regcache''. Allocate using regcache_xmalloc, clean using
5339 make_cleanup_regcache_xfree.
5340 * infcmd.c (run_stack_dummy): Update. Use
5341 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
5342
5343 * regcache.c (do_regcache_xfree): New function.
5344 (make_cleanup_regcache_xfree): New function.
5345 * regcache.h (make_cleanup_regcache_xfree): Declare.
5346
5347 2002-07-03 Martin M. Hunt <hunt@redhat.com>
5348
5349 * event-top.c (command_line_handler): Don't read past
5350 beginning of buffer.
5351
5352 2002-07-03 Martin M. Hunt <hunt@redhat.com>
5353
5354 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
5355 struct frame_id.
5356 (varobj_create): Store frame_id for root.
5357 (varobj_gen_name): Use xasprintf.
5358 (varobj_update): Save and restore frame using get_frame_id() and
5359 frame_find_by_id().
5360 (create_child): Use xasprintf.
5361 (new_root_variable): Initialize frame_id.
5362 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
5363 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
5364 to prevent memory leak.
5365
5366 2002-07-03 Andrew Cagney <ac131313@redhat.com>
5367
5368 * valops.c (hand_function_call): Move declaration of retbuf to
5369 start of function, allocate using malloc, add a cleanup but before
5370 the inf_status cleanup, cleanup the buffer. Rename local variable
5371 old_chain to inf_status_cleanup.
5372
5373 2002-07-03 Martin M. Hunt <hunt@redhat.com>
5374
5375 * top.c (execute_command): Use cmd_func() and cmd_func_p().
5376
5377 * cli/cli-decode.c (cmd_func_p): New function.
5378 (cmd_func): New function.
5379
5380 * command.h: Add cmd_func() and cmd_func_p().
5381
5382 2002-07-03 Grace Sainsbury <graces@redhat.com>
5383
5384 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
5385 (REGISTER_SIZE): Remove.
5386 (MAX_REGISTER_RAW_SIZE): Remove.
5387 (REGISTER_VIRTUAL_TYPE): Remove.
5388 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
5389 (REGISTER_NAME): Remove.
5390 (USE_GENERIC_DUMMY_FRAMES): Remove.
5391 (CALL_DUMMY): Remove.
5392 (CALL_DUMMY_START_OFFSET): Remove.
5393 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
5394 (CALL_DUMMY_LOCATION): Remove.
5395 (FIX_CALL_DUMMY): Remove.
5396 (CALL_DUMMY_ADDRESS): Remove.
5397 (SIZEOF_CALL_DUMMY_WORDS): Remove.
5398 (SAVE_DUMMY_FRAME_TOS): Remove.
5399 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
5400 (mcore_register_virtual_type): New function.
5401 (mcore_register_byte): New function.
5402 (mcore_register_size): New function.
5403 (mcore_register_name): New function.
5404 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
5405 macros removed from tm-mcore.h.
5406 (mcore_dump_tdep): Add.
5407 (_initialize_mcore_tdep): Add gdbarch_register call.
5408
5409 2002-07-03 Mark Kettenis <kettenis@gnu.org>
5410
5411 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
5412 frameless_look_for_prologue, such that we actually call this
5413 function.
5414
5415 2002-07-02 Joel Brobecker <brobecker@gnat.com>
5416
5417 * frame.h (frame_address_in_block): New function.
5418
5419 * blockframe.c (frame_address_in_block): New function extracted
5420 from get_frame_block().
5421 (get_frame_block): Use frame_address_in_block().
5422 (block_innermost_frame): Use frame_address_in_block() to match
5423 the frame pc address against the block boundaries rather than
5424 the frame pc directly. This prevents a failure when a frame pc
5425 is actually a return-address pointing immediately after the end
5426 of the given block.
5427
5428 2002-07-02 Grace Sainsbury <graces@redhat.com>
5429
5430 * MAINTAINERS: Add self under write after approval.
5431
5432 2002-07-02 Grace Sainsbury <graces@redhat.com>
5433
5434 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
5435 used in architecture vector. The default is
5436 m68k_local_breakpoint_from_pc.
5437 (m68k_local_breakpoint_from_pc): Add.
5438 (enum): Add register numbers from tm-m68k.h.
5439 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
5440 vector.
5441 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
5442 GDB_MULTI_ARCH_PARTIAL.
5443 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
5444 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
5445 m68k-tdep.c.
5446 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
5447 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
5448 to enum in m68k-tdep.c
5449
5450 2002-07-02 Joel Brobecker <brobecker@gnat.com>
5451
5452 * solib-osf.c (open_map): Compute the list of shared libraries
5453 loaded by the inferior, rather than the list of libraries loaded
5454 by GDB itself. Otherwise, GDB ends up reading the symbols from
5455 the wrong shared libraries...
5456
5457 2002-07-02 Mark Kettenis <kettenis@gnu.org>
5458
5459 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
5460 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
5461 macros.
5462 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
5463 Remove functions.
5464 (FRAMELESS_SIGNAL): Remove function.
5465 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
5466 i386_linux_saved_pc_after_call): Removed.
5467 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
5468 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
5469 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
5470
5471 * i386-tdep.c (i386_frameless_signal_p): New function.
5472 (i386_frame_chain): Deal with frameless signals.
5473 (i386_sigtramp_saved_sp): New function.
5474 (i386_frame_saved_pc): Deal with frameless signals.
5475 (i386_saved_pc_after_call): Make sure the correct value is
5476 returned just after entry into a sigtramp.
5477 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
5478 i386fbsd4_sc_sp_offset): New variables.
5479 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
5480 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
5481 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
5482 similiar to what we already did for sc_pc_offset.
5483 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
5484 tdep->sc_sp_offset.
5485
5486 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
5487
5488 2002-07-02 Michal Ludvig <mludvig@suse.cz>
5489
5490 * config/i386/tm-x86-64linux.h: New.
5491 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
5492 definitions.
5493 * config/i386/nm-x86-64.h: Rename to ...
5494 * config/i386/nm-x86-64linux.h: ... this one.
5495 * config/i386/x86-64linux.mh: Reflect the above change.
5496
5497 2002-07-01 Mark Kettenis <kettenis@gnu.org>
5498
5499 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
5500 with sigcontext_addr. Add sc_sp_offset.
5501 (i386bsd_sigtramp_saved_pc): Remove prototype.
5502 (i386bsd_sicontext_addr): Add prototype.
5503 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
5504 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
5505 (i386_svr4_sigtramp_saved_pc): Removed.
5506 (i386_svr4_sigcontext_addr): New function.
5507 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
5508 Initialize tdep->sigcontext_addr instead. Initialize
5509 tdep->sc_pc_offset and tdep->sc_sp_offset.
5510 (i386_gdbarch_init): Likewise.
5511 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
5512 any more.
5513 (i386bsd_sigtramp_saved_pc): Remove function.
5514 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
5515 Initialize tdep->sigcontext_addr instead. Initialize
5516 tdep->sc_pc_offset.
5517 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
5518 of tdep->sigtramp_saved_pc.
5519 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
5520 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
5521 instead.
5522
5523 * i386-tdep.c (i386_frameless_function_invocation,
5524 i386_frame_num_args, i386_frame_init_saved_regs,
5525 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
5526 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
5527 i386_extract_return_value, i386_store_return_value,
5528 i386_extract_struct_value_address, i386_register_virtual_type,
5529 i386_register_convertible, i386_register_convert_to_virtual,
5530 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
5531 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
5532 static.
5533
5534 2002-07-01 Mark Kettenis <kettenis@gnu.org>
5535
5536 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
5537
5538 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
5539 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
5540 this macro. Include "value.h".
5541
5542 2002-06-30 Aidan Skinner <aidan@velvet.net>
5543
5544 * ada-exp.tab.c: remove as it's a generated file
5545 * ada-lex.c: remove as it's a generated file
5546
5547 2002-06-30 Mark Kettenis <kettenis@gnu.org>
5548
5549 * config/i386/tm-i386.h (struct frame_info, struct
5550 frame_saved_regs, struct value, struct type): Remove forward
5551 declarations.
5552
5553 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
5554 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
5555 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
5556 (FILL_FPXREGSET): Define.
5557
5558 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
5559
5560 * configure.tgt (i[3456]86-*-openbsd*): Fold into
5561 i[3456]86-*-netbsd* case.
5562 * config/i386/tm-obsd.h: Removed.
5563 * config/i386/obsd.mt: Removed.
5564 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
5565 core-aout.o.
5566 (MH_CFLAGS): Add -DYYDEBUG=0.
5567
5568 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
5569 i386nbsd_sc_pc_offset on OpenBSD too.
5570
5571 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
5572 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
5573 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
5574 define.
5575 * i386bsd-tdep.c: Include "arch-utils.h".
5576 (i386bsd_aout_in_solib_call_trampoline): New function.
5577 (i386bsd_init_abi): Set in_solib_call_trampoline to
5578 i386bsd_aout_in_solib_call_trampoline.
5579 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
5580 in_solib_call_trampoline to generic_in_solib_call_trampoline.
5581
5582 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5583
5584 * macrotab.h: Do not include "obstack.h" or "bcache.h".
5585 (struct obstack, struct bcache): Add opaque declarations.
5586 * Makefile.in (macrotab_h): Update
5587
5588 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5589
5590 * blockframe.c (generic_find_dummy_frame): Change return type to
5591 ``struct regcache''.
5592 (struct dummy_frame): Replace field ``registers'' with regcache, a
5593 struct regcache object.
5594 (generic_find_dummy_frame): Update.
5595 (generic_push_dummy_frame): Update. Use regcache_xfree,
5596 regcache_xmalloc and regcache_cpy.
5597 (generic_pop_dummy_frame): Update. Use regcache_cpy and
5598 regcache_xfree.
5599 (deprecated_generic_find_dummy_frame): Update.
5600 (generic_read_register_dummy): Update. Use
5601 regcache_read_as_address.
5602 (generic_call_dummy_register_unwind): Update. Use regcache_read.
5603 (generic_get_saved_register): Update. Use regcache_read.
5604
5605 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5606
5607 * Makefile.in (objfiles_h): Add $(bcache_h).
5608 * objfiles.h: Include "bcache.h".
5609
5610 * Makefile.in (symtab_h): Remove $(bcache_h).
5611 * symtab.h: Do not include "bcache.h".
5612
5613 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5614
5615 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
5616 generic_func_frame_chain_valid.
5617
5618 2002-06-28 David O'Brien <obrien@FreeBSD.org>
5619
5620 * config/i386/nm-fbsd.h: Include <sys/param.h>.
5621 * config/i386/tm-fbsd.h: Likewise.
5622
5623 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5624
5625 * rs6000-tdep.c (rs6000_gdbarch_init): Use
5626 generic_unwind_get_saved_register.
5627
5628 2002-06-27 Andrew Cagney <ac131313@redhat.com>
5629
5630 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
5631 * regcache.c (supply_register): Add missing argument to
5632 register_buffer call.
5633
5634 2002-06-27 Andrew Cagney <ac131313@redhat.com>
5635
5636 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
5637 Solaris /bin/grep does not not like it. From Peter Schauer.
5638
5639 2002-06-26 Tom Tromey <tromey@redhat.com>
5640
5641 * command.h (add_setshow_cmd): Declare.
5642 (add_setshow_cmd_full): Declare.
5643 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
5644 returns void. Use add_setshow_cmd_full.
5645 (add_setshow_cmd_full): New function.
5646 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
5647 (add_setshow_boolean_cmd): Likewise.
5648
5649 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5650
5651 * config/vax/tm-vax.h: Protect from multiple inclusion.
5652 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
5653 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
5654 * config/vax/tm-vaxbsd.h: ...here. New file.
5655 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
5656
5657 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5658
5659 * config/vax/tm-vax.h (BREAKPOINT): Remove.
5660 (BELIEVE_PCC_PROMOTION): Remove.
5661 (AP_REGNUM): Move to...
5662 * config/vax/nm-vax.h: ...here.
5663 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
5664 (vax_breakpoint_from_pc): New function.
5665 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
5666 and gdbarch_believe_pcc_promotion.
5667
5668 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5669
5670 * Makefile.in (vax_tdep_h): Define.
5671 (vax-tdep.o): Use $(vax_tdep_h).
5672 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
5673 (vax_dump_tdep): New function.
5674 (_initialize_vax_tdep): Register vax_dump_tdep.
5675 * vax-tdep.h: Include osabi.h.
5676 (struct gdbarch_tdep): New.
5677
5678 2002-06-26 Andrew Cagney <cagney@redhat.com>
5679
5680 * frame.h (deprecated_generic_find_dummy_frame): Rename
5681 generic_find_dummy_frame.
5682 * blockframe.c (generic_find_dummy_frame): Make static.
5683 (deprecated_generic_find_dummy_frame): New function.
5684 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
5685 generic_find_dummy_frame with deprecated_find_dummy_frame.
5686 (sh64_nofp_frame_init_saved_regs): Ditto.
5687 (sh_fp_frame_init_saved_regs): Ditto.
5688 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
5689 (s390_frame_chain): Ditto.
5690 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
5691
5692 2002-06-26 Grace Sainsbury <graces@redhat.com>
5693
5694 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
5695 gdbarch vector are at the top.
5696 (NUM_REGS): Remove.
5697 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
5698 (FRAME_ARGS_ADDRESS): Remove.
5699 (FRAME_LOCALS_ADDRESS): Remove.
5700 (FRAME_NUM_ARGS): Remove.
5701 (FRAME_ARGS_SKIP): Remove.
5702 * m68k-tdep.c (enum): Add eumeration of special register numbers.
5703 (m68k_gdbarch_init): Add gdbarch initializations for macros
5704 undefined in tm-m68k.h
5705
5706 2002-06-26 Grace Sainsbury <graces@redhat.com>
5707
5708 * monitor.h: Add the function regname to monitor_ops
5709 structure. This way NUM_REGS does not have to be a constant.
5710 * monitor.c (monitor_fetch_register): Added support for regname
5711 function. The function is called if the array regnames is NULL.
5712 (monitor_store_register): Same.
5713 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
5714 regnames array.
5715 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
5716 cpu32bug_cmds.regname to point to new function.
5717 * abug-rom.c (abug_regname): Same as above.
5718 (init_abug_cmds): Same.
5719 * dbug-rom.c (dbug_regname): Same as above.
5720 (init_dbug_cmds): Same.
5721 * remote-est.c (est_regname): Same.
5722 (init_est_cmds): Same.
5723 * rom68k-rom.c (rom68k_regname): Same.
5724 (init_rom68k_cmds): Same.
5725
5726 2002-06-25 Tom Tromey <tromey@redhat.com>
5727
5728 * breakpoint.c (delete_command): Don't repeat `delete' commands.
5729
5730 2002-06-25 Andrew Cagney <cagney@redhat.com>
5731
5732 * infrun.c (stop_registers): Change variable's type to ``struct
5733 regcache'''.
5734 (xmalloc_inferior_status): Delete function.
5735 (free_inferior_status): Delete function.
5736 (normal_stop): Use regcache_cpy.
5737 (struct inferior_status): Change type of fields ``stop_registers''
5738 and ``registers'' to ``struct regcache''.
5739 (write_inferior_status_register): Use regcache_write.
5740 (save_inferior_status): Instead of calling
5741 xmalloc_inferior_status, allocate the inf_status buffer directly.
5742 Use regcache_dup_no_passthrough and regcache_dup to save the
5743 buffers.
5744 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
5745 Replace the stop_registers regcache instead of overriding it. Use
5746 regcache_xfree. Instead of calling free_inferior_status, xfree
5747 the buffer directly.
5748 (discard_inferior_status): Use regcache_xfree. Instead of calling
5749 free_inferior_status, xfree the buffer directly.
5750 (build_infrun): Use regcache_xmalloc.
5751 (_initialize_infrun): Delete redundant call to build_infrun.
5752
5753 * Makefile.in (infcmd.o): Add $(regcache_h).
5754
5755 * infcmd.c: Include "regcache.h".
5756 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
5757 obtain the address of `stop_registers' register buffer.
5758 (print_return_value): Ditto.
5759
5760 * inferior.h (struct regcache): Add opaque declaration.
5761 (stop_registers): Change variable's declared type to ``struct
5762 regcache''.
5763
5764 2002-06-24 Tom Tromey <tromey@redhat.com>
5765
5766 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
5767 * target.c (initialize_targets): Fixed typo in
5768 trust-readonly-sections `show' documentation.
5769
5770 * main.c: Marked all strings with _().
5771
5772 2002-06-24 Don Howard <dhoward@redhat.com>
5773
5774 * memattr.c (create_mem_region): Treat hi == 0 as a special case
5775 that means max CORE_ADDR+1.
5776 (lookup_mem_region): Ditto.
5777 (mem_info_command): Ditto.
5778
5779 2002-06-24 Grace Sainsbury <graces@redhat.com>
5780
5781 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
5782 (REGISTER_BYTES_OK): Remove.
5783 (REGISTER_BYTES): Remove.
5784 (STORE_STRUCT_RETURN): Remove.
5785 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
5786 (STORE_RETURN_VALUE): Remove.
5787 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
5788 (FRAME_CHAIN): Remove.
5789 (FRAMELESS_FUNCTION_INVOCATION): Remove.
5790 (FRAME_SAVED_PC): Remove.
5791 * m68k-tdep.c (m68k_register_bytes_ok):Add.
5792 (m68k_store_struct_return): Add.
5793 (m68k_deprecated_extract_return_value): Add.
5794 (m68k_deprecated_extract_struct_value_address): Add.
5795 (m68k_store_return_value): Add.
5796 (m68k_frame_chain): Add.
5797 (m68k_frameless_function_invocation): Add.
5798 (m68k_frame_saved_pc): Add.
5799 (m68k_gdbarch_init): added set_gdbarch calls for new
5800 functions and deleted macros.
5801
5802 2002-06-23 Tom Tromey <tromey@redhat.com>
5803
5804 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
5805 (ALLDEPFILES): Likewise.
5806 (udiheaders): Removed.
5807 (udip2soc.o): Likewise.
5808 (udi2go32.o): Likewise.
5809 (udr.o): Likewise.
5810 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
5811
5812 2002-06-22 Andrew Cagney <ac131313@redhat.com>
5813
5814 * infrun.c (_initialize_infrun): Delete unnecessary call to
5815 build_infrun.
5816
5817 * regcache.h: Update comments describing the regcache_cpy family
5818 of functions.
5819 (regcache_save, regcache_restore): Delete declaration.
5820 (regcache_save_no_passthrough): Delete declaration.
5821 (regcache_restore_no_passthrough): Delete declaration.
5822 * regcache.c (regcache_save): Delete function.
5823 (regcache_save_no_passthrough): Delete function.
5824 (regcache_restore): Delete function.
5825 (regcache_restore_no_passthrough): Delete function.
5826
5827 2002-06-21 Andrew Cagney <ac131313@redhat.com>
5828
5829 * config/m68k/tm-m68k.h: Fix typo.
5830 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
5831 (m68k_frame_init_saved_regs): Declare.
5832
5833 2002-06-21 Jim Blandy <jimb@redhat.com>
5834
5835 Remove some vestiges of Harris 88k support.
5836 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
5837 register numbering quirk.
5838 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
5839 odd symbols occurring in Harris 88k ELF targets.
5840
5841 2002-06-21 Tom Tromey <tromey@redhat.com>
5842
5843 * gdb_locale.h: New file.
5844 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
5845 (defs_h): Added gdb_locale.h.
5846 * configure, config.in: Rebuilt.
5847 * configure.in (PACKAGE): Define.
5848 * defs.h: Include gdb_locale.h.
5849 * main.c (captured_main): Call setlocale, bindtextdomain,
5850 textdomain.
5851
5852 2002-06-21 Dave Brolley <brolley@redhat.com>
5853
5854 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
5855 * config/frv/frv.mt: New file.
5856 * config/frv/tm-frv.h: New file.
5857 * configure.tgt: Support frv-*-*.
5858 * Makefile.in (frv-tdep.o): New target.
5859 * frv-tdep.c: New file.
5860 * NEWS: Mention frv.
5861
5862 2002-06-21 Dave Brolley <brolley@redhat.com>
5863
5864 * MAINTAINERS: Add self to "Write After Approval" list.
5865
5866 2002-06-21 Grace Sainsbury <graces@redhat.com>
5867
5868 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
5869 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
5870 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
5871 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
5872 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
5873
5874 * m68k-tdep.c: Include arch-utils.h
5875 (m68k_register_raw_size): Add.
5876 (m68k_register_virtual_size): Add.
5877 (m68k_register_virtual_type): Add.
5878 (m68k_register_name): Add.
5879 (m68k_stack_align): Add.
5880 (m68k_register_byte): Add.
5881 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
5882 tm-m68k.h.
5883
5884 2002-06-21 Grace Sainsbury <graces@redhat.com>
5885
5886 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
5887 m68k_find_saved_regs.
5888 (m68k_pop_frame): Removed saved_regs structure, and replaced
5889 references to it with frame->saved_regs.
5890 (m68k_gdbarch_init): Added function calls to initialize the
5891 gdbarch structure.
5892 (m68k_fix_call_dummy): Add.
5893 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
5894 (CALL_DUMMY): Remove.
5895 (CALL_DUMMY_LENGTH): Remove.
5896 (CALL_DUMMY_START_OFFSET): Remove.
5897 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
5898 (FIX_CALL_DUMMY): Remove.
5899 (PUSH_DUMMY_FRAME): Remove.
5900 (POP_FRAME): Remove.
5901
5902 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
5903
5904 * parse.c (parse_fprintf): New function used to avoid calls to
5905 fprintf in bison parser generated debug code.
5906 * parser-defs.h: Declaration of new parse_fprintf function.
5907 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
5908 Set YYDEBUG to 1 by default.
5909 Set YYFPRINTF as parse_fprintf.
5910
5911 2002-06-21 Michal Ludvig <mludvig@suse.cz>
5912
5913 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
5914 encoding anymore.
5915 (pointer_encoding, enum ptr_encoding): New.
5916 (execute_cfa_program): Take care about pointer encoding.
5917 (dwarf2_build_frame_info): Only call parse_frame_info for
5918 .debug_frame and .eh_frame.
5919 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
5920 fixed augmentation handling, added relative addressing,
5921 ignore duplicate FDEs. Added comments.
5922 * dwarf2cfi.c: Reindented.
5923
5924 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
5925
5926 * event-top.c (command_handler): Don't use space_at_cmd_start
5927 unless there is sbrk() on the host. Assign time and space data
5928 to union fields of the appropriate length.
5929
5930 2002-06-20 Michal Ludvig <mludvig@suse.cz>
5931
5932 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
5933 x86_64_register_name. Return type changed to 'const char *'.
5934 (x86_64_register_name2nr): Rename to x86_64_register_number.
5935 (x86_64_gdbarch_init): Update to reflect the change.
5936 * x86-64-tdep.h: Ditto.
5937 * x86-64-linux-nat.c (x86_64_fxsave_offset)
5938 (supply_fpregset): Ditto.
5939
5940 2002-06-19 Andrew Cagney <cagney@redhat.com>
5941
5942 * regcache.h: Update copyright.
5943 (struct regcache, struct gdbarch): Add opaque declarations.
5944 (current_regcache): Declare global variable.
5945 (regcache_read, regcache_write): Add gdbarch parameter.
5946 (regcache_save, regcache_save_no_passthrough)
5947 (regcache_restore, regcache_restore_no_passthrough)
5948 (regcache_dup, regcache_dup_no_passthrough)
5949 (regcache_cpy, regcache_cpy_no_passthrough)
5950 (deprecated_grub_regcache_for_registers)
5951 (deprecated_grub_regcache_for_register_valid)
5952 (regcache_valid_p): Add function declarations.
5953
5954 * regcache.c: Update copyright.
5955 (regcache_descr_handle): New global variable.
5956 (struct regcache_descr): Define.
5957 (init_legacy_regcache_descr, init_regcache_descr): New functions.
5958 (regcache_descr, xfree_regcache_descr): New functions.
5959 (struct regcache): Define.
5960 (regcache_xmalloc, regcache_xfree): New functions.
5961 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
5962 (regcache_dup, regcache_dup_no_passthrough): New functions.
5963 (regcache_valid_p, regcache_read_as_address): New functions.
5964 (deprecated_grub_regcache_for_registers): New function.
5965 (deprecated_grub_regcache_for_register_valid): New function.
5966 (current_regcache): New global variable.
5967 (register_buffer): Add regcache parameter. Update calls.
5968 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
5969 (read_register_gen, write_register_gen): Update register_buffer
5970 call. Test for legacy_p instead of gdbarch_register_read_p or
5971 gdbarch_register_write_p.
5972 (regcache_collect): Update register_buffer call.
5973 (build_regcache): Rewrite. Use deprecated grub functions.
5974 (regcache_save, regcache_save_no_passthrough): New functions.
5975 (regcache_restore, regcache_restore_no_passthrough): New
5976 functions.
5977 (_initialize_regcache): Create the regcache_data_handle. Swap
5978 current_regcache global variable.
5979
5980 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
5981 parameter to regcache_read and regcache_write calls.
5982 (sh4_register_read): Ditto.
5983 (sh64_pseudo_register_read): Ditto.
5984 (sh64_register_read): Ditto.
5985 (sh_pseudo_register_write): Ditto.
5986 (sh4_register_write): Ditto.
5987 (sh64_pseudo_register_write): Ditto.
5988 (sh64_register_write): Ditto.
5989
5990 * defs.h (XCALLOC): Define.
5991
5992 2002-06-19 Grace Sainsbury <graces@redhat.com>
5993
5994 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
5995 * m68k-tdep.c (m68k_gdbarch_init): Added.
5996 (m68k_dump_tdep): Added.
5997
5998 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
5999
6000 * ada-lang.c (fill_in_ada_prototype): Update comment.
6001
6002 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
6003
6004 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
6005 MIPS_ABI_LAST.
6006 (mips_abi_string, mips_abi_strings): New.
6007 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
6008 (mips_gdbarch_init): Set tdep->found_abi. Don't set
6009 tdep->mips_abi_string. Honor mips_abi_string. Default to
6010 O32 if no ABI is found.
6011 (mips_dump_tdep): Use mips_abi_strings.
6012 (mips_abi_update): New function.
6013 (_initialize_mips_tdep): Initialize mips_abi_string. Add
6014 ``set mips abi'' and ``show mips abi''. Check the size of
6015 mips_abi_strings.
6016
6017 2002-06-19 Andrew Cagney <cagney@redhat.com>
6018
6019 * i386-linux-tdep.c (i386_linux_register_name): Make return type
6020 constant.
6021
6022 2002-06-18 Joel Brobecker <brobecker@gnat.com>
6023
6024 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
6025 current frame using only the first stack size adjustment. All
6026 subsequent size adjustments are not considered to be part of
6027 the "static" part of the current frame.
6028 Compute the address of the saved registers relative to the
6029 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
6030 in use in this frame.
6031
6032 2002-06-18 Don Howard <dhoward@redhat.com>
6033
6034 * valops.c (value_ind): Use value_at_lazy() when dereferencing
6035 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
6036 suggesting this solution.
6037
6038 2002-06-18 Andrew Cagney <ac131313@redhat.com>
6039
6040 * config/romp/xm-rtbsd.h: Delete file.
6041 * config/romp/rtbsd.mh: Delete file.
6042
6043 2002-06-18 Keith Seitz <keiths@redhat.com>
6044
6045 * breakpoint.c (condition_command): Post breakpoint_modify
6046 when a condition is added to an existing breakpoint.
6047 (commands_command): Likewise for commands.
6048 (set_ignore_count): Likewise for ignore counts.
6049 If no tty, do not simply return, still need to send event
6050 notification.
6051 (ignore_command): Only print a newline if the command came
6052 from a tty.
6053 Don't call breakpoints_changed, since this is now properly
6054 handled by set_ignore_count.
6055
6056 2002-06-18 Andrew Cagney <cagney@redhat.com>
6057
6058 * MAINTAINERS: Note that cris-elf target can be compiled with
6059 -Werror.
6060 * cris-tdep.c (cris_register_name): Make return type constant.
6061 (cris_breakpoint_from_pc): Ditto.
6062
6063 2002-06-18 Michal Ludvig <mludvig@suse.cz>
6064
6065 * frame.h (struct frame_info): Change type of context to
6066 'struct context'.
6067
6068 2002-06-17 Andrew Cagney <cagney@redhat.com>
6069
6070 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
6071 pointer.
6072 * gdbarch.h, gdbarch.c: Regenerate.
6073 * config/mips/tm-mips.h (mips_register_name): Update.
6074 * i386-tdep.h (i386_register_name): Update.
6075 * mips-tdep.c (mips_register_name): Update
6076 * alpha-tdep.c (alpha_register_name): Update.
6077 * arch-utils.c (legacy_register_name): Update.
6078 * arch-utils.h (legacy_register_name): Update.
6079 * avr-tdep.c (avr_register_name): Update.
6080 * ia64-tdep.c (ia64_register_name): Update.
6081 * i386-tdep.c (i386_register_name): Update.
6082 * sparc-tdep.c (sparc32_register_name): Update.
6083 (sparc64_register_name): Update.
6084 (sparclite_register_name): Update.
6085 (sparclet_register_name): Update.
6086 * sh-tdep.c (sh_generic_register_name): Update.
6087 (sh_sh_register_name): Update.
6088 (sh_sh3_register_name): Update.
6089 (sh_sh3e_register_name): Update.
6090 (sh_sh_dsp_register_name): Update.
6091 (sh_sh3_dsp_register_name): Update.
6092 (sh_sh4_register_name): Update.
6093 (sh_sh64_register_name): Update.
6094 * s390-tdep.c (s390_register_name): Update.
6095 * rs6000-tdep.c (rs6000_register_name): Update.
6096 * ns32k-tdep.c (ns32k_register_name_32082): Update.
6097 (ns32k_register_name_32382): Update.
6098 * d10v-tdep.c (d10v_ts2_register_name): Update.
6099 (d10v_ts3_register_name): Update.
6100 * xstormy16-tdep.c (xstormy16_register_name): Update.
6101 * vax-tdep.c (vax_register_name): Update.
6102 * v850-tdep.c (v850_register_name): Update.
6103 * m68hc11-tdep.c (m68hc11_register_name): Update.
6104 * mn10300-tdep.c (mn10300_generic_register_name): Update.
6105 (am33_register_name): Update.
6106
6107 2002-06-17 Grace Sainsbury <graces@redhat.com>
6108
6109 * m68k-tdep.c: Reindented.
6110
6111 2002-06-17 Andrew Cagney <ac131313@redhat.com>
6112
6113 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
6114 list of predefined types.
6115
6116 2002-06-16 Mark Kettenis <kettenis@gnu.org>
6117
6118 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
6119 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
6120 REGISTER_CONVERT_TO_RAW): Remove defines.
6121 (i386_register_virtual_type, i386_register_convertible,
6122 i386_register_convert_to_virtual, i386_register_convert_to_raw):
6123 Remove prototypes.
6124 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6125 macros mentioned above.
6126
6127 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
6128 (i386lynx_saved_pc_after_call): Remove prototype.
6129 * i386ly-tdep.c: Include "i386-tdep.h".
6130 (i386lynx_saved_pc_after_call): Make static. Use
6131 read_memory_nobpt instead of read_memory. Use
6132 read_memory_unsigned_integer instead of read_memory_integer.
6133 (i386lynx_init_abi): New function.
6134 (i386lynx_coff_osabi_sniffer): New function.
6135 (_initialize_i386bsd_tdep): New function.
6136
6137 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
6138 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
6139 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
6140 (i386_fix_call_dummy): Remove prototype.
6141 * i386-tdep.c (i386_call_dummy_words): New variable.
6142 (i386_gdbarch_init): Adjust for removal of the
6143 macros mentioned above.
6144
6145 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6146
6147 * command.h (add_setshow_auto_boolean_cmd): Replace
6148 add_set_auto_boolean_cmd.
6149 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
6150 add_set_auto_boolean_cmd.
6151 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
6152 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
6153 mask-address'' command.
6154 (show_mask_address): Add cmd parameter.
6155 * remote.c (add_packet_config_cmd): Update. Change type of
6156 set_func and show_func to cmd_sfunc_ftype.
6157 (_initialize_remote): Update `set remote Z-packet'
6158 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
6159 (show_remote_protocol_e_packet_cmd): Ditto.
6160 (show_remote_protocol_E_packet_cmd): Ditto.
6161 (show_remote_protocol_P_packet_cmd): Ditto.
6162 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
6163 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
6164 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
6165 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
6166 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
6167 (show_remote_protocol_Z_packet_cmd): Ditto.
6168 (show_remote_protocol_binary_download_cmd): Ditto.
6169 (show_remote_cmd): Pass NULL to all of above.
6170
6171 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6172
6173 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
6174 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
6175 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
6176 POP_FRAME): Remove defines.
6177 (i386_push_arguments, i386_store_struct_return,
6178 i386_extract_return_value, i386_store_return_value,
6179 i386_extract_struct_value_address, i386_push_dummy_frame,
6180 i386_pop_frame): Renove prototypes.
6181 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6182 macros mentioned above.
6183
6184 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6185
6186 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
6187 add_set_boolean_cmd.
6188 (add_setshow_cmd): New function.
6189 * command.h (add_setshow_boolean_cmd): Replace
6190 add_set_boolean_cmd.
6191 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
6192 and ``set rdiromatzero''.
6193 * maint.c (_initialize_maint_cmds): Update commented out code.
6194 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
6195 * target.c (initialize_targets): Update `set
6196 trust-readonly-sections'.
6197 * remote.c (_initialize_remote): Update `set remotebreak'.
6198
6199 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6200
6201 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
6202 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
6203 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
6204 fit into multi-arch framework.
6205 (i386_breakpoint_from_pc): New function.
6206 (i386_gdbarch_init): Adjust for removal of the macros mentioned
6207 above.
6208
6209 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
6210 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
6211 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
6212 (i386_frameless_function_invocation, i386_frame_num_args,
6213 i386_frame_init_saved_regs): Remove prototypes.
6214 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6215 macros mentioned above.
6216
6217 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6218
6219 * cli/cli-decode.c (set_cmd_cfunc): Update.
6220 (set_cmd_sfunc): Update.
6221 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
6222 (set_cmd_sfunc, set_cmd_cfunc): Update.
6223 * cli/cli-decode.h: Update.
6224
6225 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6226
6227 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
6228 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
6229
6230 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6231
6232 * defs.h (auto_boolean): Declare enum.
6233 * command.h (cmd_auto_boolean): Delete enum.
6234 * mips-tdep.c (mask_address_var): Update.
6235 (mips_mask_address_p): Update.
6236 (show_mask_address): Update.
6237 * remote.c (struct packet_config): Update.
6238 (update_packet_config): Update.
6239 (show_packet_config_cmd): Update.
6240 (packet_ok): Update.
6241 (add_packet_config_cmd): Update.
6242 (_initialize_remote):
6243 * command.h: Update.
6244 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
6245 (do_setshow_command): Update.
6246 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
6247 * cli/cli-decode.h: Update.
6248
6249 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6250
6251 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
6252 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
6253 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
6254 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
6255 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
6256 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
6257
6258 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
6259 list of DJGPP COFF targets.
6260
6261 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
6262 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
6263 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
6264 (FP0_REGNUM): Remove define.
6265 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
6266 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
6267 (i386_register_virtual_size): Remove protoype.
6268 * i386-tdep.c (i386_register_virtual_size): Removed.
6269 (i386_extract_return_value, i386_store_return_value): Use
6270 FP0_REGNUM instead of NUM_FREGS to determine whether the
6271 floating-point registers are available.
6272 (i386_gdbarch_init): Tweak FIXME about FPU registers.
6273 Adjust for removal of macros mentioned above.
6274
6275 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6276
6277 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
6278 comments.
6279 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
6280 Remove prototypes.
6281 (supply_gregset, fill_gregset): Remove use of register keyword and
6282 remove declaration for regmap. Use I386_NUM_GREGS instead of
6283 NUM_REGS and NUM_FREGS.
6284 (FPREGSET_FSAVE_OFFSET): Remove.
6285 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
6286 NUM_FREGS to determine whether the floating-point registers are
6287 available.
6288
6289 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
6290 gnu_store_registers): Replace usage of NUM_GREGS with
6291 I386_NUM_GREGS.
6292
6293 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
6294 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
6295 usage of NUM_GREGS with I386_NUM_GREGS.
6296
6297 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
6298
6299 * i386bsd-nat.c: Include "i386-tdep.h".
6300 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
6301 I386_NUM_GREGS.
6302
6303 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
6304 and associated comment. They no longer make any sense, since we
6305 don't use this file anymore on Linux.
6306
6307 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
6308 * i386-tdep.c (i386_register_offset, i386_register_size): Use
6309 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
6310 elements in these arrays.
6311 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
6312 MAX_NUM_REGS.
6313
6314 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6315
6316 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
6317 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
6318
6319 2002-06-14 Andrew Cagney <cagney@redhat.com>
6320
6321 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
6322 EXTRACT_RETURN_VALUE.
6323 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
6324 EXTRACT_STRUCT_VALUE_ADDRESS.
6325 * gdbarch.h, gdbarch.c: Regenerate.
6326
6327 * values.c (value_being_returned): Handle
6328 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
6329 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
6330
6331 * arm-linux-tdep.c (arm_linux_init_abi): Update.
6332 * arm-tdep.c (arm_gdbarch_init): Update.
6333 * avr-tdep.c (avr_gdbarch_init): Update.
6334 * cris-tdep.c (cris_gdbarch_init): Update.
6335 * d10v-tdep.c (d10v_gdbarch_init): Update.
6336 * ia64-tdep.c (ia64_gdbarch_init): Update.
6337 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
6338 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
6339 * s390-tdep.c (s390_gdbarch_init): Update.
6340 * sh-tdep.c (sh_gdbarch_init): Update.
6341 * s390-tdep.c (s390_gdbarch_init): Update.
6342 * sparc-tdep.c (sparc_gdbarch_init): Update.
6343 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
6344 * v850-tdep.c (v850_gdbarch_init): Update.
6345 * vax-tdep.c (vax_gdbarch_init): Update.
6346 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
6347 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
6348
6349 * config/arc/tm-arc.h: Update.
6350 * config/d30v/tm-d30v.h: Update.
6351 * config/fr30/tm-fr30.h: Update.
6352 * config/h8300/tm-h8300.h: Update.
6353 * config/h8500/tm-h8500.h: Update.
6354 * config/i386/tm-i386.h: Update.
6355 * config/i386/tm-ptx.h: Update.
6356 * config/i386/tm-symmetry.h: Update.
6357 * config/i960/tm-i960.h: Update.
6358 * config/m32r/tm-m32r.h: Update.
6359 * config/m68k/tm-delta68.h: Update.
6360 * config/m68k/tm-linux.h: Update.
6361 * config/m68k/tm-m68k.h: Update.
6362 * config/m88k/tm-m88k.h: Update.
6363 * config/mcore/tm-mcore.h: Update.
6364 * config/mips/tm-mips.h: Update.
6365 * config/mn10200/tm-mn10200.h: Update.
6366 * config/pa/tm-hppa.h: Update.
6367 * config/pa/tm-hppa64.h: Update.
6368 * config/sparc/tm-sp64.h: Update.
6369 * config/sparc/tm-sparc.h: Update.
6370 * config/sparc/tm-sparclet.h: Update.
6371 * config/z8k/tm-z8k.h: Update.
6372
6373 2002-06-14 Andrew Cagney <cagney@redhat.com>
6374
6375 * Makefile.in (i386_linux_tdep_h): Define.
6376 (i386_tdep_h, i387_tdep_h): Define.
6377 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
6378 $(i386_tdep_h) and $(i387_tdep_h).
6379 * i386-linux-nat.c: Include "i386-linux-tdep.h".
6380
6381 2002-06-14 Mark Kettenis <kettenis@gnu.org>
6382
6383 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
6384 Already covered by the default.
6385
6386 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
6387 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
6388 (i386_gdbarch_init): Initialize long_double_format and long_double
6389 bit.
6390
6391 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
6392 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
6393 Move these to ...
6394 * config/i386/i386sol2.mh: ... here.
6395 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
6396 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
6397 (SIGCONTEXT_PC_OFFSET): Remove define.
6398 (IN_SIGTRAMP): Remove define.
6399 * i386-sol2-tdep.c: New file.
6400
6401 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
6402 * config/i386/tm-i386nw.h: Removed.
6403
6404 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
6405 USE_STRUCT_CONVENTION): Remove defines.
6406 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6407 (get_longjmp_target): Remove prototype.
6408 (IN_SIGTRAMP): Remove define.
6409 (i386bsd_in_sigtramp): Remove prototype.
6410 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
6411 function. Update comment accordingly
6412 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
6413 (FRAME_SAVED_PC): Remove define.
6414 (i386bsd_frame_saved_pc): Remove prototype.
6415 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
6416 GET_LONGJMP_TARGET): Remove defines.
6417 (get_longjmp_target): Remove prototype.
6418 (IN_SIGTRAMP): Remove define.
6419 (i386bsd_in_sigtramp): Remove prototype.
6420 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
6421 function. Update comment accordingly
6422 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
6423 (FRAME_SAVED_PC): Remove define.
6424 (i386bsd_frame_saved_pc): Remove prototype.
6425 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
6426 Remove prototype.
6427 (USE_STRUCT_CONVENTION): Remove prototype.
6428 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
6429 declaration.
6430 (_initialize_i386bsd_nat): Revise logic to determine some
6431 constants at compile time when compiling a native GDB. Warn if
6432 things don't match up with what we expect.
6433 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
6434 Remove variables.
6435 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
6436 to use date stored in `struct gdbarch_tdep'.
6437 (i386bsd_sigcontext_offset): Remove varaible.
6438 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
6439 stored in `struct gdbarch_tdep'.
6440 (i386bsd_frame_saved_pc): Make static.
6441 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
6442 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
6443 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
6444 i386fbsd4_sc_pc_offset): New variables.
6445 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
6446 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
6447 functions.
6448 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
6449 functions.
6450 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
6451 Modify the value of i386fbsd_sigtramp_start and
6452 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
6453 i386fbsd_sigtramp_end.
6454 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
6455 function.
6456
6457 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
6458 define to i386-linux-tdep.h.
6459 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
6460 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
6461 defines.
6462 (i386_linux_register_name, i386_linux_register_byte,
6463 i386_linux_register_raw_size): Remove prototypes.
6464 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
6465 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
6466 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
6467 TARGET_WRITE_PC): Remove defines.
6468 (i386_linux_in_sigtramp, i386_linux_frame_chain,
6469 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
6470 i386_linux_write_pc): Remove prototypes.
6471 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6472 (get_longjmp_target): Remove prototype.
6473 * i386-linux-tdep.h: New file.
6474 * i386-linux-nat.c: Include "i386-linux-tdep.h".
6475 * i386-linux-tdep.c: Include "i386-tdep.h" and
6476 "i386-linux-tdep.h".
6477 (i386_linux_register_name, i386_linux_register_byte,
6478 i386_linux_register_raw_size, i386_linux_in_sigtramp,
6479 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
6480 Make static.
6481 (i386_linux_init_abi): New function.
6482 (_initialize_i386_linux_tdep): New function.
6483
6484 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
6485 (i386_saved_pc_after_call): Remove prototype.
6486 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
6487 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
6488 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
6489 (i386_register_name, i386_stab_reg_to_regnum,
6490 i386_dwarf_reg_to_regnum): Remove prototypes.
6491 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
6492 SIZEOF_SSE_REGS): Remove defines.
6493 (REGISTER_BYTES): Remove define.
6494 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
6495 (i386_register_byte, i386_register_raw_size): Remove prototypes.
6496 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
6497 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
6498 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
6499 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
6500 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
6501 (get_longjmp_target): Remove prototype.
6502 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
6503 (sigtramp_saved_pc): Remove define.
6504 (i386v4_sigtramp_saved_pc): Remove prototype.
6505 * config/i386/tm-go32.h (FRAME_CHAIN,
6506 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
6507 (i386go32_frame_saved_pc): Remove prototype.
6508 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6509 (get_longjmp_target): Remove prototype.
6510 * i386-tdep.h: Include "osabi.h".
6511 (enum i386_abi): Removed.
6512 (enum struct_return): New enum.
6513 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
6514 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
6515 sc_pc_offset members.
6516 (i386_gdbarch_register_os_abi): Remove prototype.
6517 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
6518 I386_SSE_NUM_REGS): New defines.
6519 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
6520 I386_SSE_SIZEOF_REGS): New defines.
6521 (i386_register_name, i386_register_byte, i386_register_raw_size):
6522 New prototypes.
6523 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
6524 (i386bsd_sigtramp_saved_pc): New prototype.
6525 * i386-tdep.c: Don't include "elf-bfd.h".
6526 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
6527 i386_frame_chain, i386_saved_pc_after_call): Make static.
6528 (i386_frame_saved_pc): Rewrite to call architecture dependent
6529 function to deal with signal handlers. Make static.
6530 (i386go32_frame_saved_pc): Removed.
6531 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
6532 Removed.
6533 (i386_get_longjmp_target): New function.
6534 (default_struct_convention, pcc_struct_convention,
6535 reg_struct_convention, valid_conventions, struct_convention): New
6536 variables.
6537 (i386_use_struct_convention): New function.
6538 (i386v4_sigtramp_saved_pc): Renamed to
6539 i386_svr4_sigtramp_saved_pc. Made static. Moved.
6540 (i386_pc_in_sigtramp): New function.
6541 (i386_abi_names): Removed.
6542 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
6543 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
6544 Removed.
6545 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
6546 i386_gdbarch_register_os_abi): Removed.
6547 (struct i386_abi_handler): Removed.
6548 (i386_abi_handler_list): Removed.
6549 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
6550 functions.
6551 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
6552 i386_nw_init_abi): New functions.
6553 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
6554 Use set_gdbarch_xxx() calls instead of relying on macros for a
6555 number of calls.
6556 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
6557 (_initialize_i386_tdep): Add new 'struct-convcention' command.
6558 Register the various architecture variants defined in this file.
6559
6560 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
6561
6562 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
6563 (struct main_type): Remove arg_types member. Update comments for
6564 struct field.
6565 (TYPE_ARG_TYPES): Remove.
6566 (TYPE_FN_FIELD_ARGS): Update.
6567 (smash_to_method_type): Update prototype.
6568
6569 * c-typeprint.c (cp_type_print_method_args): Take method type
6570 instead of argument list. Use new argument layout. Simplify.
6571 (c_type_print_args): Use new argument layout. Simplify.
6572 (c_type_print_base): Update call to cp_type_print_method_args.
6573 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
6574 argument; use die->type instead. Update call to
6575 smash_to_method_type.
6576 (read_structure_scope): Update call to dwarf2_add_member_fn.
6577 * gdbtypes.c (allocate_stub_method): Update comment.
6578 (smash_to_method_type): Take new NARGS and VARARGS arguments.
6579 Use new argument layout.
6580 (check_stub_method): Use new argument layout. Don't count
6581 void as an argument.
6582 (print_arg_types): Update comments. Use new argument layout.
6583 (recursive_dump_type): Don't print arg_types member.
6584 * hpread.c (hpread_read_struct_type): Use new argument layout.
6585 (fixup_class_method_type): Likewise.
6586 (hpread_type_lookup): Likewise.
6587 * stabsread.c (read_type): Update calls to read_args and
6588 smash_to_method_type.
6589 (read_args): Use new argument layout. Simplify.
6590 * valops.c (typecmp): Use new argument layout. Update parameters
6591 and comments. Simplify.
6592 (hand_function_call): Use new argument layout.
6593 (search_struct_method): Update call to typecmp.
6594 (find_overload_match): Use new argument layout.
6595
6596 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6597
6598 * NEWS: Mention multithreaded debug support for gdbserver.
6599
6600 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6601
6602 * MAINTAINERS: Mention NEWS.
6603
6604 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6605
6606 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
6607 (struct mips_objfile_private, compare_pdr_entries): New.
6608 (non_heuristic_proc_desc): Read the ".pdr" section if it
6609 is present.
6610
6611 2002-06-12 Andrew Cagney <ac131313@redhat.com>
6612
6613 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
6614 (arm_debug): New static variable.
6615 (_initialize_arm_tdep): Add ``set debug arm'' command.
6616
6617 2002-06-12 Andrew Cagney <ac131313@redhat.com>
6618
6619 * Makefile.in (sim_arm_h): Define.
6620 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
6621 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
6622 (arm_register_sim_regno): New function, map an internal REGNUM
6623 onto a simulator register number.
6624 (arm_gdbarch_init): Set register_sim_regno.
6625
6626 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
6627
6628 * MAINTAINERS: Add self.
6629
6630 2002-06-11 Jim Blandy <jimb@redhat.com>
6631
6632 * source.c (source_info): Mention whether the symtab has
6633 information about preprocessor macros.
6634
6635 Call the command `info macro', not `show macro'.
6636 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
6637 Fix error message.
6638 (_initialize_macrocmd): Register `info_macro_command' in
6639 `infolist', not `showlist'.
6640
6641 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
6642
6643 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
6644 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
6645 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
6646 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
6647 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
6648 unconditionally.
6649 (set_mipsfpu_single_command, set_mipsfpu_double_command)
6650 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
6651 (_initialize_mips_tdep): Remove dead code.
6652 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
6653 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6654 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
6655 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6656 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
6657 MIPS_LAST_FP_ARG_REGNUM): Remove.
6658
6659 2002-06-11 Michal Ludvig <mludvig@suse.cz>
6660
6661 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
6662 (unwind_tmp_obstack_free, parse_frame_info)
6663 (update_context, cfi_read_fp, cfi_write_fp)
6664 (cfi_frame_chain, cfi_init_extra_frame_info)
6665 (cfi_virtual_frame_pointer): Use the above function.
6666 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
6667
6668 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
6669
6670 * v850-tdep.c (v850_type_is_scalar): New function.
6671 (v850_use_struct_convention): Match current gcc implementation
6672 as close as possible.
6673 (v850_push_arguments): Fix stack_offset handling. Don't write
6674 struct_addr into register. This is done by v850_store_struct_return.
6675 (v850_extract_return_value): Care for structs.
6676 (v850_store_return_value): Ditto.
6677 (v850_store_struct_return): Actually write address.
6678
6679 2002-06-11 Michal Ludvig <mludvig@suse.cz>
6680
6681 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
6682 without debug information too.
6683
6684 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6685
6686 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
6687 Make multi-arch pure.
6688 * gdbarch.h, gdbarch.c: Re-generate.
6689 * arm-tdep.c (arm_print_float_info): Update.
6690 * arch-utils.h (default_print_float_info): Update.
6691 * arch-utils.c (default_print_float_info): Update.
6692 * infcmd.c (float_info): Update call.
6693
6694 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6695
6696 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
6697 the front of the initialize list.
6698
6699 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6700
6701 * infrun.c (struct inferior_status): Replace fields
6702 selected_frame_address and selected_level with field
6703 selected_frame_id.
6704 (save_inferior_status): Update. Use get_frame_id.
6705 (struct restore_selected_frame_args): Delete.
6706 (restore_selected_frame): Update. Use frame_find_by_id.
6707 (restore_inferior_status): Update.
6708
6709 * breakpoint.h (struct breakpoint): Change type of
6710 watchpoint_frame to frame_id.
6711 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
6712 call to get_current_frame.
6713 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
6714 get_current_frame.
6715 (watchpoint_check): Use frame_find_by_id.
6716
6717 * frame.h (record_selected_frame): Delete declaration.
6718 * stack.c (record_selected_frame): Delete function.
6719
6720 * frame.h (struct frame_id): Define.
6721 (get_frame_id): Declare.
6722 (frame_find_by_id): Declare.
6723 * frame.c (frame_find_by_id): New function.
6724 (get_frame_id): New function.
6725
6726 2002-06-10 Andrey Volkov <avolkov@transas.com>
6727
6728 * ser-e7kpc.c: Fix duplicated define and call of
6729 _initialize_ser_e7000pc
6730
6731 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
6732
6733 * signals/signals.c (target_signal_from_host): Fix #ifdef
6734 SIGRTMIN case.
6735 (do_target_signal_to_host): Likewise.
6736
6737 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
6738
6739 * mips-tdep.c (mips_find_abi_section): New function.
6740 (mips_gdbarch_init): Call it.
6741
6742 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6743
6744 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
6745 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
6746 after Andrew's 2002-06-08 gdbarch change.
6747
6748 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6749
6750 * i386-linux-nat.c (suppy_gregset): Don't supply
6751 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
6752 register cache.
6753 (fill_gregset): Don't fetch it under the same circumstances.
6754
6755 2002-06-09 Andrew Cagney <cagney@redhat.com>
6756
6757 * Makefile.in (callback_h): Define.
6758 (remote_sim_h): Update path to remote-sim.h.
6759 (remote-rdp.o): Add $(callback_h).
6760 (remote-sim.o): Use $(callback_h).
6761 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
6762 * remote-rdp.c: Include "gdb/callback.h".
6763
6764 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6765
6766 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
6767 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
6768
6769 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6770
6771 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
6772 * rdi-share/serpardr.c: Ditto.
6773 * rdi-share/unixcomm.c: Ditto.
6774 * rdi-share/serdrv.c: Ditto.
6775 * rdi-share/hostchan.h: Ditto.
6776 * rdi-share/hostchan.c: Ditto.
6777 * rdi-share/host.h: Ditto.
6778 * rdi-share/devsw.c: Ditto.
6779
6780 * objfiles.h: Change type of obj_private to void pointer.
6781 * pa64solib.c: Update copyright. Don't include "assert.h", use
6782 strcmp instead of STREQ, use LONGEST, do not use PTR
6783 * somsolib.c: Ditto.
6784
6785 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
6786 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
6787 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
6788
6789 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6790
6791 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
6792 (default_get_saved_register): Delete function.
6793 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
6794 generic_unwind_get_saved_register.
6795 * gdbarch.h, gdbarch.c: Re-generate.
6796
6797 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6798
6799 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
6800 generic_func_frame_chain_valid.
6801 * gdbarch.h, gdbarch.c: Re-generate.
6802 * blockframe.c (generic_func_frame_chain_valid): Only check
6803 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
6804 passing FP to PC_IN_CALL_DUMMY.
6805 Fix PR gdb/360.
6806
6807 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6808
6809 * gdbarch.sh (struct gdbarch_data): Add field init_p.
6810 (register_gdbarch_data): Initialize init_p.
6811 (gdbarch_data): Initialize data pointer using the init function.
6812 (init_gdbarch_data): Delete function.
6813 (gdbarch_update_p): Update.
6814 (initialize_non_multiarch): Update.
6815 (struct gdbarch): Add field initialized_p.
6816 * gdbarch.h, gdbarch.c: Re-generate.
6817
6818 2002-06-07 Michal Ludvig <mludvig@suse.cz>
6819
6820 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
6821 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
6822 better do the things actually here.
6823 * x86-64-tdep.c (x86_64_register_name2nr): New.
6824 (x86_64_register_name): Renamed to x86_64_register_nr2name.
6825 (x86_64_gdbarch_init): Respect the above change.
6826 * x86-64-tdep.h (x86_64_register_name2nr)
6827 (x86_64_register_nr2name): Add prototypes.
6828 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
6829
6830 2002-06-06 Michael Snyder <msnyder@redhat.com>
6831
6832 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
6833 Delete extra braces and re-indent.
6834 (d10v_store_return_value): Char return values
6835 must be shifted over by one byte in R0.
6836 (d10v_extract_return_value): Delete extra braces, re-indent.
6837
6838 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
6839
6840 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
6841 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
6842 (d10v_integer_to_address): Rewrite.
6843 (d10v_frame_init_saved_regs): When reading fp and sp registers use
6844 the d10v specific functions which take care of converting to the
6845 correct space.
6846
6847 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
6848
6849 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
6850 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
6851
6852 2002-06-02 Andrew Cagney <ac131313@redhat.com>
6853
6854 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
6855 includes.
6856 * config/tm-linux.h: Ditto.
6857 * config/alpha/tm-alphalinux.h: Ditto.
6858 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
6859 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
6860 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
6861 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
6862 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
6863 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
6864 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
6865 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
6866 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
6867 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
6868 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
6869 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
6870 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
6871 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
6872 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
6873 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
6874 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
6875 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
6876 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
6877 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
6878 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
6879 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
6880 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
6881 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
6882 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
6883 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
6884 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
6885 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
6886 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
6887 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
6888 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
6889 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
6890 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
6891 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
6892 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
6893 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
6894 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
6895
6896 2002-05-04 Aidan Skinner <aidan@velvet.net>
6897
6898 * ada-exp.tab.c: New file
6899 * ada-exp.y: New file
6900 * ada-lang.c: New file
6901 * ada-lang.h: New file
6902 * ada-lex.c: New file
6903 * ada-lex.l: New file
6904 * ada-tasks.c: New file
6905 * ada-typeprint.c: New file
6906 * ada-valprint.c: New file
6907
6908 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6909
6910 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
6911 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
6912
6913 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6914
6915 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
6916 insetead of ppc-linux-tdep.o.
6917 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
6918 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
6919
6920 2002-06-02 Andrew Cagney <ac131313@redhat.com>
6921
6922 2002-05-07 Christian Groessler <chris@groessler.org>
6923 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
6924 bit register contents for little endian hosts.
6925
6926 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6927
6928 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
6929 any maintainer.
6930
6931 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6932
6933 * gdbarch.h: Regenerate.
6934
6935 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6936
6937 * MAINTAINERS: Add everyone to write-after-approval list.
6938
6939 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6940
6941 * stack.c (frame_info): Use frame_register_unwind instead of
6942 saved_regs. Mention when the SP is on the stack or in a register.
6943
6944 * frame.h (frame_register_unwind_ftype): Define. Document.
6945 (struct frame_info): Add field register_unwind and
6946 register_unwind_cache.
6947 (frame_register_unwind): Declare.
6948 (generic_unwind_get_saved_register): Declare.
6949
6950 * frame.c (frame_register_unwind): New function.
6951 (generic_unwind_get_saved_register): New function.
6952
6953 * blockframe.c (generic_call_dummy_register_unwind): New function.
6954 (frame_saved_regs_register_unwind): New function.
6955 (set_unwind_by_pc): New function.
6956 (create_new_frame): New function.
6957 (get_prev_frame): New function.
6958
6959 2002-05-30 Andrew Cagney <ac131313@redhat.com>
6960
6961 * a29k-share/: Delete directory.
6962 * remote-vx29k.c: Delete file.
6963
6964 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6965
6966 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
6967 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6968
6969 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6970
6971 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
6972 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6973 (sparc64nbsd-nat.o)
6974 (sparcnbsd-nat.o)
6975 (sparcnbsd-tdep.o): New dependency lists.
6976 * NEWS: Note new UltraSPARC NetBSD native configuration.
6977 * configure.host (sparc64-*-netbsd*): New host.
6978 * configure.tgt (sparc-*-netbsdelf*)
6979 (sparc-*-netbsd*): Set gdb_target to nbsd.
6980 (sparc64-*-netbsd*): New target.
6981 * sparc64nbsd-nat.c: New file.
6982 * sparcnbsd-nat.c: New file.
6983 * sparcnbsd-tdep.c: New file.
6984 * sparcnbsd-tdep.h: New file.
6985 * config/sparc/nbsd.mt: New file.
6986 * config/sparc/nbsd64.mh: New file.
6987 * config/sparc/nbsd64.mt: New file.
6988 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
6989 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
6990 (HOST_IPC): Remove.
6991 * config/sparc/nbsdaout.mt: Remove.
6992 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
6993 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
6994 (HOST_IPC): Remove.
6995 * config/sparc/nbsdelf.mt: Remove.
6996 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
6997 sparc-nat.c compatiblity defines.
6998 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
6999 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
7000 * config/sparc/tm-nbsd64.h: New file.
7001 * config/sparc/tm-nbsdaout.h: Remove.
7002 * config/sparc/xm-nbsd.h: Remove.
7003
7004 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
7005
7006 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
7007 * sparc-tdep.c: Include osabi.h.
7008 (gdbarch_tdep): Add osabi member.
7009 (_initialize_sparc_tdep): Use gdbarch_register.
7010 (sparc_gdbarch_init): Use generic OS ABI framework.
7011 (sparc_dump_tdep): New function.
7012
7013 2002-05-30 Kevin Buettner <kevinb@redhat.com>
7014
7015 * corefile.c (do_captured_read_memory_integer): Return non-zero
7016 result.
7017 (safe_read_memory_integer): Copy result of memory read when
7018 status is non-zero. Also, add comments.
7019
7020 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
7021
7022 * Makefile.in (ppc_tdep_h): Define.
7023 (ppc-linux-nat.o)
7024 (ppc-linux-tdep.o)
7025 (rs6000-tdep.o): Use $(ppc_tdep_h).
7026 (ppc-sysv-tdep.o)
7027 (ppcnbsd-nat.o)
7028 (ppcnbsd-tdep.o): New dependency lists.
7029 * ppc-tdep.h: Use generic OS ABI framework.
7030 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
7031 (ppc_linux_init_abi): New functions.
7032 (ppc_sysv_abi_broken_use_struct_convention)
7033 (ppc_sysv_abi_use_struct_convention)
7034 (ppc_sysv_abi_push_arguments): Move to...
7035 * ppc-sysv-tdep.c: ...here.
7036 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
7037 * rs6000-tdep.c (process_note_abi_tag_sections)
7038 (get_elfosabi): Remove.
7039 (rs6000_gdbarch_init): Use generic OS ABI framework.
7040 (rs6000_dump_tdep): New function.
7041 (_initialize_rs6000_tdep): Use gdbarch_register.
7042 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
7043 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
7044 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
7045 of ppc-linux-tdep.o.
7046 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
7047 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
7048 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
7049 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
7050 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
7051 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
7052
7053 2002-05-29 Jim Blandy <jimb@redhat.com>
7054
7055 * macroscope.c (default_macro_scope): Put `void' in empty argument
7056 list.
7057
7058 2002-05-29 Andrew Cagney <ac131313@redhat.com>
7059
7060 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
7061 * arch-utils.c: Include "sim-regno.h".
7062 * gdbarch.sh: Don't include "sim-regno.h".
7063 * gdbarch.h, gdbarch.c: Regenerate.
7064 * sim-regno.h (legacy_register_sim_regno): Move declaration from
7065 here.
7066 * arch-utils.h (legacy_register_sim_regno): To here.
7067 * remote-sim.c (legacy_register_sim_regno): Move function from
7068 here.
7069 * arch-utils.c (legacy_register_sim_regno): To here.
7070
7071 2002-05-28 Andrew Cagney <ac131313@redhat.com>
7072
7073 * sim-regno.h: New file.
7074 * Makefile.in (sim_regno_h): Define.
7075 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
7076 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
7077 (legacy_register_sim_regno): New function.
7078 (one2one_register_sim_regno): New function.
7079 (gdbsim_fetch_register): Rewrite.
7080 (gdbsim_store_register): Only store a register when
7081 REGISTER_SIM_REGNO is valid.
7082 * d10v-tdep.c: Include "sim-regno.h".
7083 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
7084 (d10v_ts3_register_sim_regno): Ditto.
7085 * gdbarch.sh: Include "sim-regno.h".
7086 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
7087 * gdbarch.h, gdbarch.c: Regenerate.
7088 * arch-utils.h (default_register_sim_regno): Delete declaration.
7089 * arch-utils.c (default_register_sim_regno): Delete function.
7090
7091 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
7092
7093 * ppcnbsd-nat.c: Rewrite.
7094 * ppcnbsd-tdep.c: New file.
7095 * ppcnbsd-tdep.h: New file.
7096 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
7097 solib.o, and solib-svr4.o.
7098 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
7099 nbsd-tdep.o, and corelow.o.
7100
7101 2002-05-28 Andrew Cagney <ac131313@redhat.com>
7102
7103 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
7104 `tr' and `sed'. Mention that `broken' targets are not expected to
7105 build.
7106
7107 2002-05-27 Michal Ludvig <mludvig@suse.cz>
7108
7109 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
7110 Let PC point right after the prologue before looking up symbols.
7111
7112 2002-05-27 Martin M. Hunt <hunt@redhat.com>
7113
7114 * i386-tdep.c (i386_register_virtual_type): Return
7115 builtin_type_vec128i for SSE registers.
7116
7117 * gdbtypes.h (builtin_type_vec128i): Declare.
7118
7119 * gdbtypes.c (build_builtin_type_vec128i): New function.
7120 (builtin_type_v2_double, builtin_type_v4_int64): New types.
7121 (builtin_type_vec128i): New type for SSE2 128-bit registers.
7122 (build_gdbtypes): Initialize new builtin vector types.
7123 (_initialize_gdbtypes): Register new vector types with gdbarch.
7124
7125 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7126
7127 * MAINTAINERS: ns32k is not longer an obsolete candidate,
7128 since it has been multi-arch'd.
7129 * NEWS: Note that ns32k-*-* is now partial multi-arch.
7130 Move Alpha and VAX multi-arch news entries to same section
7131 as other multi-arch news.
7132
7133 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7134
7135 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
7136 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
7137 static. Rename some register numbers to put them in ns32k-tdep
7138 private namespace.
7139 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
7140 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
7141 functions.
7142 (_initialize_ns32k_tdep): Use gdbarch_register.
7143 * ns32k-tdep.h: New file.
7144 * ns32knbsd-tdep.c: New file.
7145 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
7146 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
7147 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
7148 REGISTER_BYTES, REGISTER_BYTE): Remove.
7149 * config/ns32k/tm-ns32k.h: New file.
7150 * config/ns32k/tm-umax.h: Remove.
7151
7152 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7153
7154 * ns32k-tdep.c (ns32k_saved_pc_after_call,
7155 ns32k_store_struct_return, ns32k_extract_return_value,
7156 ns32k_store_return_value, ns32k_extract_struct_value_address): New
7157 functions.
7158 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
7159 ns32k_saved_pc_after_call.
7160 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
7161 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
7162 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
7163 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
7164 ns32k_extract_struct_value_address.
7165
7166 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7167
7168 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
7169 ns32k_fix_call_dummy): New.
7170 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
7171 ns32k_call_dummy_words.
7172 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
7173 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
7174 CALL_DUMMY_NARGS): Remove.
7175 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
7176
7177 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7178
7179 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
7180 ns32k_frame_saved_pc, ns32k_frame_args_address,
7181 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
7182 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
7183 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
7184 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
7185 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
7186 (BREAKPOINT): Remove..
7187 (FRAME_CHAIN): Define as ns32k_frame_chain.
7188 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
7189 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
7190 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
7191 (FRAME_FIND_SAVED_REGS): Remove.
7192 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
7193 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
7194 (POP_FRAME): Define as ns32k_pop_frame.
7195
7196 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7197
7198 * ns32k-tdep.c (ns32k_register_byte_32082,
7199 ns32k_register_byte_32382, ns32k_register_raw_size,
7200 ns32k_register_virtual_size, ns32k_register_virtual_type): New
7201 functions.
7202 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
7203 ns32k_register_byte_32382.
7204 * config/ns32k/tm-umax.h: Update copyright years.
7205 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
7206 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
7207 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
7208 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
7209 (ns32k_get_enter_addr): Fix prototype.
7210
7211 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7212
7213 * ns32k-tdep.c: Update copyright years.
7214 (ns32k_register_name_32082): New function.
7215 (ns32k_register_name_32382): Ditto.
7216 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
7217 (REGISTER_NAME): Define as ns32k_register_name_32382.
7218 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
7219 (REGISTER_NAME): Define as ns32k_register_name_32082.
7220
7221 2002-05-24 Jim Blandy <jimb@redhat.com>
7222
7223 * dwarf2read.c (free_line_header): Use xfree, not free.
7224
7225 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
7226
7227 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
7228 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
7229
7230 2002-05-23 Andrew Cagney <ac131313@redhat.com>
7231
7232 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
7233
7234 2002-05-23 Andrew Cagney <ac131313@redhat.com>
7235
7236 From Ross Alexander at NEC Europe:
7237 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
7238
7239 2002-05-23 Michael Snyder <msnyder@redhat.com>
7240
7241 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
7242 for input, rather than parse_and_eval_address.
7243
7244 2002-05-23 Andrew Cagney <ac131313@redhat.com>
7245
7246 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
7247 * Makefile.in (sim_d10v_h): Update definition.
7248
7249 2002-05-24 Andrew Cagney <cagney@redhat.com>
7250
7251 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
7252 change `2002-05-22 Michael Snyder' below.
7253 (d10v_push_arguments): Ditto.
7254 (d10v_extract_return_value): Ditto.
7255
7256 2002-05-23 Jim Blandy <jimb@redhat.com>
7257
7258 * macrotab.c (check_for_redefinition): Don't complain if the new
7259 definition is the same as the previous one. Take more arguments
7260 to allow the comparison.
7261 (macro_define_object, macro_define_function): Pass more arguments
7262 to check_for_redefinition.
7263
7264 2002-05-22 Michael Snyder <msnyder@redhat.com>
7265
7266 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
7267 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
7268 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
7269 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
7270 Don't bail if return_pc is PC_IN_CALL_DUMMY.
7271 Add a temp variable to save a call (and a memory read).
7272 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
7273 if possible (so that PC_IN_CALL_DUMMY will work).
7274
7275 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
7276
7277 * MAINTAINERS: Remove status `OBSOLETE' from v850.
7278
7279 2002-05-22 Michal Ludvig <mludvig@suse.cz>
7280
7281 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
7282 fde->cie_ptr.
7283 (dwarf2_build_frame_info): Corrected handling of eh_frame.
7284 (dwarf2_build_frame_info): Add offset to fde->initial_location
7285 so that frames of shared libraries are mapped correctly.
7286 (execute_stack_op): Change type of 'result' from ULONGEST to
7287 CORE_ADDR.
7288
7289 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7290
7291 * config/alpha/tm-nbsd.h: Include solib.h.
7292
7293 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7294
7295 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
7296 assumptions about the host's byte order.
7297
7298 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7299
7300 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
7301 to dependency list.
7302 * alphanbsd-tdep.c: Include solib-svr4.h.
7303 * shnbsd-tdep.c: Ditto.
7304
7305 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7306
7307 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
7308 nbsd-tdep.h to dependency list.
7309 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
7310 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
7311 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
7312 nbsdaout.mh and nbsdelf.mh consistently.
7313 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
7314 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
7315 nbsdaout.mt and nbsdelf.mh consistently.
7316 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
7317 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
7318 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
7319 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
7320 a.out shared library stuff from here...
7321 * config/nm-nbsdaout.h: ...to here.
7322 * config/tm-nbsd.h: Remove.
7323 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
7324 * config/arm/nbsd.mh: Remove.
7325 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
7326 nbsd-tdep.o.
7327 * config/arm/nbsdaout.mh: New file.
7328 * config/arm/nbsdelf.mh: New file.
7329 * config/arm/nm-nbsdaout.h: New file.
7330 * config/i386/nbsd.mh: Remove.
7331 * config/i386/nbsd.mt: Remove.
7332 * config/i386/nbsdaout.mh: New file.
7333 * config/i386/nbsdaout.mt: New file.
7334 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
7335 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
7336 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
7337 i386_register_u_addr): Remove.
7338 * config/i386/nm-nbsdaout.h: New file.
7339 * config/i386/nm-nbsdelf.h: Remove.
7340 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
7341 (USE_STRUCT_CONVENTION): Remove.
7342 * config/i386/tm-nbsdaout.h: New file.
7343 * config/i386/tm-nbsdelf.h: Remove.
7344 * config/m68k/nbsd.mh: Remove.
7345 * config/m68k/nbsd.mt: Remove.
7346 * config/m68k/nbsdaout.mh: New file.
7347 * config/m68k/nbsdaout.mt: New file.
7348 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
7349 * config/m68k/nm-nbsdaout.h: New file.
7350 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
7351 (IN_SOLIB_CALL_TRAMPOLINE): Define.
7352 * config/ns32k/nbsd.mh: Remove.
7353 * config/ns32k/nbsd.mt: Remove.
7354 * config/ns32k/nbsdaout.mh: New file.
7355 * config/ns32k/nbsdaout.mt: New file.
7356 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
7357 * config/ns32k/nm-nbsdaout.h: New file.
7358 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
7359 (IN_SOLIB_CALL_TRAMPOLINE): Define.
7360 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
7361 (SVR4_SHARED_LIBS): Remove.
7362 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
7363 * config/sparc/nbsd.mh: Remove.
7364 * config/sparc/nbsd.mt: Remove.
7365 * config/sparc/nbsdaout.mh: New file.
7366 * config/sparc/nbsdaout.mt: New file.
7367 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
7368 * config/sparc/nbsdelf.mt: New file.
7369 * config/sparc/nm-nbsdaout.h: New file.
7370 * config/sparc/nm-nbsdelf.h: Remove.
7371 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
7372 * config/sparc/tm-nbsdaout.h: New file.
7373
7374 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7375
7376 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
7377 mipsnbsd-tdep.c
7378 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
7379
7380 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7381
7382 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
7383 shnbsd-nat.c.
7384 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
7385
7386 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7387
7388 * NEWS: Note new MIPS NetBSD native configuration.
7389 * configure.host (mips*-*-netbsd*): New host.
7390 * configure.tgt (mips*-*-netbsd*): New target.
7391 * mipsnbsd-nat.c: New file.
7392 * mipsnbsd-tdep.c: New file.
7393 * mipsnbsd-tdep.h: New file.
7394 * config/mips/nbsd.mh: New file.
7395 * config/mips/nbsd.mt: New file.
7396 * config/mips/nm-nbsd.h: New file.
7397 * config/mips/tm-nbsd.h: New file.
7398
7399 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7400
7401 * Makefile.in (SFILES): Add osabi.c.
7402 (COMMON_OBS): Add osabi.o.
7403 (osabi.o): New dependency list.
7404 * osabi.c: New file.
7405 * osabi.h: New file.
7406 * doc/gdbint.texinfo: Document new generic OS ABI framework.
7407
7408 * Makefile.in (alpha_tdep_h): Define and use instead of
7409 alpha-tdep.h.
7410 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
7411 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
7412 Remove.
7413 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
7414 * alpha-tdep.h: Include osabi.h.
7415 (alpha_abi): Remove.
7416 (gdbarch_tdep): Use generic OS ABI framework.
7417 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
7418 gdbarch_register_osabi.
7419 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
7420 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
7421 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
7422
7423 * Makefile.in (sh_tdep_h): Add osabi.h.
7424 * sh-tdep.h (sh_osabi): Remove.
7425 (gdbarch_tdep): Use generic OS ABI framework.
7426 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
7427 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
7428 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
7429 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
7430
7431 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
7432 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
7433 gdbarch_register_osabi.
7434 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
7435 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
7436 (get_elfosabi): Rename to...
7437 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
7438 ABI framework support routines.
7439 (arm_gdbarch_init): Use generic OS ABI framework.
7440 (arm_dump_tdep): Likewise.
7441 (_initialize_arm_tdep): Likewise.
7442 * arm-tdep.h: Include osabi.h.
7443 (arm_abi): Remove.
7444 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
7445 osabi member.
7446 (arm_gdbarch_register_os_abi): Remove prototype.
7447 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
7448 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
7449
7450 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
7451 * mips-tdep.c: Include osabi.h.
7452 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
7453 OS ABI framework.
7454
7455 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
7456
7457 * h8300-tdep.c: Fix formatting.
7458
7459 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
7460
7461 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
7462 printing vector registers.
7463
7464 2002-05-19 Andrew Cagney <ac131313@redhat.com>
7465
7466 From Fernando Nasser:
7467 * remote.c (remote_async_open_1): Re-throw the exception when the
7468 connection fails.
7469 (remote_cisco_open): Ditto.
7470 (remote_open_1): Ditto.
7471
7472 2002-05-19 Andrew Cagney <ac131313@redhat.com>
7473
7474 * remote.c (remote_start_remote_dummy): Add uiout parameter.
7475 (remote_start_remote): Add uiout parameter. Pass through to
7476 remote_start_remote_dummy.
7477 (remote_open_1): Use catch_exception instead of catch_errors.
7478 (remote_async_open_1): Ditto.
7479 (remote_cisco_open): Ditto.
7480
7481 2002-05-19 Andrew Cagney <ac131313@redhat.com>
7482
7483 * remote.c (remote_start_remote): Replace PTR with void pointer.
7484 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
7485 static.
7486
7487 2002-05-18 Andrew Cagney <ac131313@redhat.com>
7488
7489 * gdb_indent.sh: Allow the script to be run in the sim directory.
7490
7491 2002-05-18 Mark Kettenis <kettenis@gnu.org>
7492
7493 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
7494 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
7495
7496 * corelow.c (core_open): Only call set_gdbarch_from_file if
7497 exec_bfd is NULL.
7498
7499 2002-05-17 Andrey Volkov <avolkov@transas.com>
7500
7501 * h8300-tdep.c: Add support of EXR register
7502 * config/h8300/tm-h8300.h: Ditto.
7503
7504 2002-05-17 Andrey Volkov <avolkov@transas.com>
7505
7506 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
7507
7508 2002-05-17 Andrey Volkov <avolkov@transas.com>
7509
7510 * h8300-tdep.c: Change literal regnums to REGNO.
7511
7512 2002-05-17 Jim Blandy <jimb@redhat.com>
7513
7514 * NEWS: Note addition of macro support.
7515
7516 Expand preprocessor macros in C expressions.
7517 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
7518 (scan_macro_expansion, scanning_macro_expansion,
7519 finished_macro_expansion): New function declarations.
7520 (expression_macro_lookup_func, expression_macro_lookup_baton): New
7521 variable declarations.
7522 * parser-defs.h (expression_context_pc): New declaration.
7523 * parse.c (expression_context_pc): New variable.
7524 (parse_exp_1): Set expression_context_pc, as well as
7525 expression_context_block.
7526 * c-exp.y (yylex): If we're not already reading the result of a
7527 macro expansion, try to macro-expand the next token. When we're
7528 done scanning a macro expansion, switch back to the mainline text.
7529 Commas and `if's in a macro's expansion don't terminate the input.
7530 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
7531 (macro_original_text, macro_expanded_text,
7532 expression_macro_lookup_func, expression_macro_lookup_baton): New
7533 variables.
7534 (scan_macro_expansion, scanning_macro_expansion,
7535 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
7536 c_preprocess_and_parse): New functions.
7537 (c_language_defn, cplus_language_defn, asm_language_defn): Call
7538 c_preprocess_and_parse, instead of c_parse.
7539 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
7540 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
7541
7542 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
7543
7544 * sh-tdep.c (gdb_print_insn_sh64): Delete.
7545 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
7546 (sh_gdbarch_init): Always use gdb_print_insn_sh.
7547
7548 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
7549
7550 * NEWS: Add section for multi-arched targets. Add v850 to that section.
7551
7552 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
7553
7554 * Makefile.in (sh_tdep_h): Define and use.
7555 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
7556 register enum): Move to...
7557 * * sh-tdep.h: ...here.
7558 * sh-tdep.c: Include sh-tdep.h.
7559 * sh3-rom.c: Likewise.
7560 * shnbsd-tdep.c: Likewise.
7561
7562 2002-05-16 Michael Snyder <msnyder@redhat.com>
7563
7564 * arm-tdep.c: Spelling fix in comment.
7565
7566 2002-05-16 Jim Blandy <jimb@redhat.com>
7567
7568 Add commands for manually expanding macros and showing their
7569 definitions.
7570 * macrocmd.c, macroscope.c, macroscope.h: New files.
7571 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
7572 (macroscope_h): New variable.
7573 (HFILES_NO_SRCDIR): Add macroscope.h.
7574 (COMMON_OBS): Add macrocmd.o, macroscope.o.
7575 (macroscope.o, macrocmd.o): New rules.
7576
7577 Teach the Dwarf 2 reader to read macro information.
7578 * dwarf2read.c: #include "macrotab.h".
7579 (dwarf_macinfo_buffer): New variable.
7580 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
7581 dwarf_macinfo_size.
7582 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
7583 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
7584 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
7585 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
7586 dwarf2_macro_spaces_in_definition): New complaints.
7587 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
7588 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
7589 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
7590 the partial symbol table.
7591 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
7592 from what's recorded in the partial symbol table.
7593 (read_file_scope): If the compilation unit has a
7594 `DW_AT_macro_info' attribute, read its macro information.
7595 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
7596
7597 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
7598
7599 Fix PR gdb/546
7600 * ser-tcp.c: Don't include <netinet/udp.h>.
7601
7602 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
7603
7604 * MAINTAINERS: Update my email address.
7605
7606 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
7607
7608 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
7609 include file of the same name.
7610
7611 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7612
7613 * configure.tgt: Mark v850 as multi-arched.
7614 * config/v850/tm-v850.h: Remove file.
7615 * config/v850/v850.mt: Eliminate TM_FILE.
7616
7617 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7618
7619 * v850-tdep.c: Full multi-arch.
7620 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
7621 Define GDB_MULTI_ARCH to 2.
7622
7623 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
7624
7625 * p-exp.y (current_type): New static variable.
7626 Carries the type of the expression at the position that is parsed.
7627 (push_current_type, pop_current_type): Two new functions. Used
7628 to store/restore current_type in expression on specific tokens.
7629 (search_field): New static variable. Set to one after parsing a point
7630 as at that point only a FIELDNAME token should be searched.
7631 (FIELDNAME): New token. After a point only a token belonging to
7632 current_type type definition is allowed.
7633 (all over token rules): reset and change current_type according
7634 to rules.
7635 (exp '[' rule): insert implicit array index field if
7636 exp is a pascal string type.
7637
7638 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7639
7640 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
7641 frame info. Use frame_info's saved_regs instead of matching member
7642 in extra_frame_info throughout.
7643 (v850_frame_init_saved_regs): New function.
7644 (v850_init_extra_frame_info): Move most functionality into
7645 v850_frame_init_saved_regs().
7646 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
7647 (v850_frame_find_saved_regs): Remove declaration.
7648 (FRAME_FIND_SAVED_REGS): Remove definition.
7649 (v850_frame_init_saved_regs): Add declaration.
7650 (FRAME_INIT_SAVED_REGS): Add definition.
7651
7652 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7653
7654 * v850-tdep.c: Begin multi-arch'ing v850.
7655 (v850_target_architecture_hook): Remove function.
7656 (v850_gdbarch_init): New function. Add code previously in
7657 v850_target_architecture_hook().
7658 (_initialize_v850_tdep): Don't set target_architecture_hook.
7659 Call register_gdbarch_init() instead.
7660
7661 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
7662
7663 * gdbtypes.h (struct cplus_struct_type): Remove args field.
7664 * hpread.c (hpread_read_struct_type): Remove assignments to args.
7665 (fixup_class_method_type): Likewise.
7666
7667 2002-05-15 Jim Blandy <jimb@redhat.com>
7668
7669 Add macro structures to GDB's symbol tables. Nobody puts anything
7670 in them yet.
7671 * symtab.h (struct symtab): New member: `macro_table'.
7672 * buildsym.h (pending_macros): New global variable.
7673 * buildsym.c: #include "macrotab.h".
7674 (buildsym_init): Initialize `pending_macros'.
7675 (end_symtab): If we found macro information while reading a CU's
7676 debugging info, do build a symtab structure for it. Make the
7677 symtab point to the macro information, and clear the
7678 `pending_macros' pointer which held it while we were reading the
7679 debug info.
7680 (really_free_pendings): Free any pending macro table.
7681 * objfiles.h (struct objfile): New member: `macro_cache'.
7682 * objfiles.c (allocate_objfile): Set allocate and free functions
7683 for the macro cache's objstack.
7684 (free_objfile): Empty the macro cache's obstack.
7685 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
7686 set new allocate and free functions for it.
7687 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
7688 free functions for the macro cache's objstack. (Why is this
7689 function building its own objfile?)
7690 * symmisc.c (print_objfile_statistics): Print statistics on the
7691 macro bcache.
7692 * Makefile.in: Note that buildsym.o depends on macrotab.h.
7693
7694 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
7695
7696 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
7697 (REGISTER_U_ADDR): Delete definition.
7698 (arm_register_u_addr): Delete declaration.
7699
7700 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
7701
7702 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
7703 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
7704
7705 2002-05-14 Andrew Cagney <ac131313@redhat.com>
7706
7707 * regcache.c (register_valid): Revise comments refering to "Not
7708 available" and "unavailable".
7709 * frame.c (frame_register_read): Ditto.
7710 * findvar.c (value_of_register): Ditto.
7711
7712 2002-05-15 Andrew Cagney <cagney@redhat.com>
7713
7714 * Makefile.in (remote_sim_h): Replace remote-sim_h.
7715 (remote-sim.o): Update dependencies.
7716 (d10v-tdep.o): Specify dependencies.
7717 (sim_d10v_h): Define.
7718
7719 2002-05-14 Jim Blandy <jimb@redhat.com>
7720
7721 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
7722 * macrotab.c (macro_lookup_inclusion, find_definition,
7723 new_macro_table): Same.
7724
7725 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
7726 not `! strcmp ()'. This is a dubious improvement.
7727 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
7728
7729 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
7730 although it's not necessary, to avoid a warning.
7731
7732 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
7733
7734 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
7735 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
7736 TYPE_INSTANCE_FLAGS.
7737 (struct main_type): New.
7738 (struct type): Move most members to struct main_type. Change
7739 cv_type and as_type to new type_chain member. Add instance_flags.
7740 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
7741 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
7742 (finish_cv_type): Remove prototype.
7743 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
7744 Set TYPE_CHAIN.
7745 (alloc_type_instance): New function.
7746 (smash_type): New function.
7747 (make_pointer_type, make_reference_type, make_function_type)
7748 (smash_to_member_type, smash_to_method_type): Call smash_type.
7749 (make_qualified_type): New function.
7750 (make_type_with_address_space): Call make_qualified_type.
7751 (make_cv_type): Likewise.
7752 (finish_cv_type): Remove unnecessary function.
7753 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
7754 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
7755 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
7756 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
7757 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
7758 * hpread.c (hpread_read_struct_type): Likewise.
7759 * stabsread.c (read_struct_type): Likewise.
7760
7761 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
7762
7763 * configure.tgt: Add a catch all sh* target, for cases like
7764 sh[2,3,4]-elf and sh-hms.
7765
7766 2002-05-14 Keith Seitz <keiths@redhat.com>
7767
7768 * event-loop.c (create_file_handler): Don't do anything but
7769 update data when we are given a fd which we are already
7770 monitoring.
7771
7772 2002-05-14 Michal Ludvig <mludvig@suse.cz>
7773
7774 * dwarf2cfi.c (context_cpy): Copy registers correctly.
7775 (update_context): Use __func__ in warnings.
7776
7777 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
7778
7779 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
7780 and tcp_close to net_open and net_close.
7781 (net_open): Accept "udp:" and "tcp:" specifications. Connect
7782 using UDP if requested. Don't try to disable Nagle on UDP
7783 sockets.
7784 * remote.c (remote_serial_open): New function. Warn about UDP.
7785 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
7786
7787 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
7788
7789 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
7790
7791 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
7792
7793 * configure.tgt: Remove sh-hms target.
7794 * MAINTAINERS: Don't list sh-hms as a separate target.
7795
7796 2002-05-13 Jim Blandy <jimb@redhat.com>
7797
7798 Add first preprocessor macro-expansion files.
7799 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7800 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7801 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7802 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7803 (COMMON_OBS): Add macrotab.o, macroexp.o.
7804 (macroexp.o, macrotab.o): New rules.
7805
7806 2002-05-13 Andrew Cagney <ac131313@redhat.com>
7807
7808 * config/m88k/tm-m88k.h: Update copyright.
7809 (m88k_target_write_pc): Declare
7810 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
7811 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
7812 (SHIFT_INST_REGS): Update definition.
7813 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
7814 using old definition of TARGET_WRITE_PC.
7815 * regcache.c (generic_target_write_pc): Delete code handling
7816 NNPC_REGNUM.
7817 * gdbarch.sh (NNPC_REGNUM): Delete.
7818 * gdbarch.h, gdbarch.c: Regenerate.
7819
7820 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
7821
7822 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
7823 builtin reg number.
7824
7825 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
7826
7827 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
7828 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
7829 (gen_address_of, gen_struct_ref, gen_repeat): Use type
7830 access macros.
7831 * c-typeprint.c (cp_type_print_method_args): Likewise.
7832 (c_type_print_args): Likewise.
7833 * d10v-tdep.c (d10v_push_arguments): Likewise.
7834 (d10v_extract_return_value): Likewise.
7835 * expprint.c (print_subexp): Likewise.
7836 * gdbtypes.c (lookup_primitive_typename): Likewise.
7837 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
7838 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
7839 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
7840 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
7841 (TYPE_VECTOR): Likewise.
7842 * hpread.c (hpread_read_struct_type)
7843 (fix_static_member_physnames, fixup_class_method_type)
7844 (hpread_type_lookup): Likewise.
7845 * mdebugread.c (parse_symbol, parse_type): Likewise.
7846 * p-lang.c (is_pascal_string_type): Likewise.
7847 * valops.c (hand_function_call): Likewise.
7848 * x86-64-tdep.c (classify_argument): Likewise.
7849
7850 * hpread.c (hpread_read_function_type)
7851 (hpread_read_doc_function_type): Call replace_type.
7852 * dstread.c (create_new_type): Delete.
7853 (decode_dst_structure, process_dst_function): Call alloc_type.
7854 Use type access macros.
7855
7856 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7857
7858 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
7859 the're not supported by the current architecture.
7860 (i387_fill_fxsave): Likewise.
7861
7862 2002-05-12 Fred Fish <fnf@redhat.com>
7863
7864 * symfile.c (default_symfile_offsets): Arrange for uninitialized
7865 sect_index_xxx members to index the first slot in section_offsets
7866 if all of the section_offsets are zero.
7867
7868 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7869
7870 * configure.tgt (sparc-*openbsd): Remove entry accidentially
7871 checked in with last change.
7872
7873 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7874
7875 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
7876 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
7877 config.sub.
7878
7879 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
7880
7881 * Makefile.in: Update dependencies.
7882
7883 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7884
7885 * language.c (local_hex_string_custom): Simplify. Do not depend
7886 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
7887
7888 * memattr.c (mem_info_command): Replace calls to
7889 longest_local_hex_string and longest_local_hex_string_custom.
7890 * buildsym.c (make_blockvector): Ditto.
7891 * solib.c (info_sharedlibrary_command): Ditto.
7892 * tracepoint.c (tracepoints_info): Ditto.
7893 * symtab.c (print_msymbol_info): Ditto.
7894
7895 * language.c (local_hex_string): Delete.
7896 (local_hex_string_custom): Delete.
7897 (longest_local_hex_string): Rename to local_hex_string.
7898 (longest_local_hex_string_custom): Rename to
7899 local_hex_string_custom.
7900 * language.h (local_hex_string): Change parameter type to LONGEST.
7901 (local_hex_string_custom): Ditto.
7902 (longest_local_hex_string): Delete declaration.
7903 (longest_local_hex_string_custom): Ditto.
7904
7905 * solib.c: Update copyright.
7906 * memattr.c: Update copyright.
7907
7908 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7909
7910 * arch-utils.h (legacy_register_to_value): Declare.
7911 (legacy_value_to_register): Declare.
7912 (legacy_convert_register_p): Declare.
7913 * arch-utils.c (legacy_register_to_value): New function.
7914 (legacy_value_to_register): New function.
7915 (legacy_convert_register_p): New function.
7916
7917 * gdbarch.sh (REGISTER_TO_VALUE): Define.
7918 (VALUE_TO_REGISTER): Define.
7919 (CONVERT_REGISTER_P): Define.
7920 * gdbarch.h, gdbarch.c: Regenerate.
7921
7922 * valops.c (value_assign): Use CONVERT_REGISTER_P and
7923 VALUE_TO_REGISTER.
7924 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
7925 CONVERT_REGISTER_P.
7926
7927 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
7928 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7929
7930 * Makefile.in: Update dependencies for valops.c.
7931 * valops.c: Include "gdb_assert.h".
7932 (typecmp): Skip THIS parameter to methods.
7933 (find_method_list): Remove static_memfuncp argument,
7934 update callers. Check for stub methods.
7935 (find_value_oload_method_list): Don't set *static_memfuncp.
7936 (find_overload_match): Don't check for stub methods. Assert
7937 that methods are not stubbed. Handle static methods.
7938 (value_find_oload_method_list): Remove static_memfuncp argument.
7939 * gdbtypes.c (check_stub_method): Do not add THIS pointer
7940 to the argument list for static stub methods.
7941 * value.h (value_find_oload_method_list): Update prototype.
7942
7943 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7944
7945 * arch-utils.h (generic_register_size): Declare.
7946 (generic_register_raw_size, generic_register_virtual_size): Delete
7947 declarations.
7948 * arch-utils.c (generic_register_raw_size): Delete.
7949 (generic_register_size): New function.
7950 (generic_register_virtual_size): Delete.
7951
7952 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
7953 default generic_register_size.
7954 * gdbarch.h, gdbarch.c: Re-generate.
7955
7956 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
7957 register_virtual_size.
7958 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
7959 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
7960
7961 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7962
7963 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
7964 * gdbarch.h, gdbarch.c: Regenerate.
7965 * gnu-v3-abi.c: Update copyright.
7966 (vtable_address_point_offset): Update.
7967 (gnuv3_rtti_type): Update.
7968 (gnuv3_baseclass_offset): Update.
7969 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
7970 (init_fetch_link_map_offsets): Update.
7971 * remote.c (get_remote_state): Update.
7972
7973 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
7974
7975 * TODO: Remove value_headof/value_from_vtable_info comment.
7976 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
7977 * values.c (value_headof, value_from_vtable_info): Delete.
7978 * value.h (value_from_vtable_info): Delete prototype.
7979
7980 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7981
7982 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
7983 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
7984 $(gdb_regex_h).
7985 (gdb_assert_h): Define.
7986 (gdb_wait_h): Define.
7987 (gdb_regex_h): Define.
7988
7989 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
7990
7991 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
7992 * linespec.c (find_methods): Handle GCC 3.x template constructors.
7993
7994 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7995
7996 * nbsd-tdep.c: Fix comment.
7997
7998 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7999
8000 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
8001 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
8002 (nbsd-tdep.o): New dependency list.
8003 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
8004 nbsd-tdep.h.
8005 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
8006 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
8007 * nbsd-tdep.c: New file.
8008 * nbsd-tdep.h: New file.
8009 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
8010 nbsd-tdep.h.
8011 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
8012 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
8013 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
8014 * config/sh/nbsd.mt (TDEPFILES): Ditto.
8015
8016 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8017
8018 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
8019 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
8020 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
8021 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
8022 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
8023 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
8024
8025 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8026
8027 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
8028 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8029 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
8030 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
8031 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
8032 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
8033 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
8034
8035 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8036
8037 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
8038 fetch_elfcore_registers to...
8039 * i386nbsd-tdep.c: ...here.
8040 (i386nbsd_use_struct_convention): Rename to...
8041 (i386nbsd_aout_use_struct_convention): ...this.
8042 (i386nbsd_supply_reg): New function.
8043 (i386nbsd_fill_reg): New function.
8044 (fetch_core_registers): Use i386nbsd_supply_reg.
8045 (fetch_elfcore_registers): Likewise.
8046 (_initialize_i386nbsd_tdep): New function.
8047 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
8048 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8049 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
8050 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
8051 (i386nbsd_aout_use_struct_convention): ...this.
8052
8053 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8054
8055 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
8056 (store_inferior_registers): Use shnbsd_fill_reg.
8057 * shnbsd-tdep.c (sh_nbsd_supply_registers,
8058 sh_nbsd_supply_register): Collapse into...
8059 (shnbsd_supply_reg): ...this.
8060 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
8061 (shnbsd_fill_reg): ...this.
8062 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
8063 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
8064 (fetch_core_registers): Use shnbsd_supply_reg.
8065 (fetch_elfcore_registers): Use shnbsd_supply_reg.
8066 (sh_nbsd_core_fns): Rename to...
8067 (shnbsd_core_fns): ...this.
8068 (sh_nbsd_elfcore_fns): Rename to...
8069 (shnbsd_elfcore_fns): ...this.
8070 (sh_nbsd_init_abi): Rename to...
8071 (shnbsd_init_abi): ...this.
8072 (_initialize_sh_nbsd_tdep): Rename to...
8073 (_initialize_shnbsd_tdep): ...this.
8074 * shnbsd-tdep.h (sh_nbsd_supply_registers,
8075 sh_nbsd_supply_register, sh_nbsd_fill_registers,
8076 sh_nbsd_fill_register): Remove prototypes.
8077 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
8078
8079 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8080
8081 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
8082 (i387-nat.o): Delete dependency list.
8083 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
8084 (x86-64-linux-nat.o): Likewise.
8085 * i387-nat.c: Delete file, moving contents to...
8086 * i387-tdep.c: ...here.
8087 * i387-nat.h: Rename...
8088 * i387-tdep.h: ...to this.
8089 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
8090 * i386-linux-nat.c: Likewise.
8091 * i386bsd-nat.c: Likewise.
8092 * i386gnu-nat.c: Likewise.
8093 * i386nbsd-nat.c: Likewise.
8094 * i386v4-nat.c: Likewise.
8095 * x86-64-linux-nat.c: Likewise.
8096 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
8097 * config/i386/go32.mh (NATDEPFILES): Likewise.
8098 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
8099 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
8100 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
8101 * config/i386/linux.mh (NATDEPFILES): Likewise.
8102 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
8103 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8104 * config/i386/obsd.mh (NATDEPFILES): Likewise.
8105 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
8106
8107 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8108
8109 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
8110 (alphanbsd-nat.o): Remove dependency list.
8111 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
8112 * alphanbsd-nat.c: Delete. Contents moved to...
8113 * alphanbsd-tdep.c: ...here.
8114 (_initialize_alphanbsd_tdep): Register core functions.
8115 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
8116
8117 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8118
8119 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
8120 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
8121 (alphanbsd-nat.o): Likewise.
8122 (alphabsd-tdep.o): New dependency list.
8123 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
8124 (fill_gregset): Use alphabsd_fill_reg.
8125 (supply_fpregset): Use alphabsd_supply_fpreg.
8126 (fill_fpregset): Use alphabsd_fill_fpreg.
8127 (fetch_inferior_registers): Use struct reg and struct fpreg
8128 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
8129 and alphabsd_supply_fpreg.
8130 (store_inferior_registers): Use struct reg and struct fpreg
8131 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
8132 and alphabsd_fill_fpreg.
8133 * alphabsd-tdep.c: New file.
8134 * alphabsd-tdep.h: New file.
8135 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
8136 (fetch_elfcore_registers): Use alphabsd_supply_reg and
8137 alphabsd_supply_fpreg.
8138 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
8139 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
8140
8141 2002-05-11 Eric Christopher <echristo@redhat.com>
8142
8143 * mips-tdep.c (mips_double_register_type): Fix thinko.
8144 (mips_single_register_type): Ditto.
8145 * MAINTAINERS: Add self.
8146
8147 2002-05-11 Mark Kettenis <kettenis@gnu.org>
8148
8149 * i387-nat.c (i387_supply_register, i387_fill_fsave,
8150 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
8151 right thing on architectures with different endianness and/or
8152 integer sizes.
8153
8154 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
8155
8156 From Christian Limpach <chris@Pin.LU>
8157 * configure.in: Change sed expression which comments out
8158 NATDEPFILES to also comment out continuation lines.
8159 * configure: Regenerate.
8160
8161 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8162
8163 * sh-tdep.c: Clean up code erroneously reintroduced by previous
8164 big patch.
8165
8166 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8167
8168 * sh-tdep.c: Include correct file.
8169
8170 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8171
8172 New support for sh64-elf (sh5) target.
8173
8174 * configure.tgt: For sh64-elf target, default to sh-elf.
8175
8176 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
8177 (struct gdbarch_tdep): Add new fields for new registers and ABI
8178 info.
8179
8180 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
8181 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
8182 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
8183 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
8184 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
8185 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
8186 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
8187 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
8188 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
8189 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
8190 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
8191 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
8192 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
8193 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
8194 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
8195 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
8196 sh64_get_gdb_regnum, sh64_media_reg_base_num,
8197 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
8198 sign_extend, sh64_nofp_frame_init_saved_regs,
8199 sh64_init_extra_frame_info, sh64_get_saved_register,
8200 sh64_extract_struct_value_address, sh64_pop_frame,
8201 sh64_push_arguments, sh64_extract_return_value,
8202 sh64_store_return_value, sh64_show_media_regs,
8203 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
8204 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
8205 sh_sh64_register_virtual_type,
8206 sh_sh64_register_convert_to_virtual,
8207 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
8208 sh64_register_read, sh64_pseudo_register_write,
8209 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
8210 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
8211 sh64_do_pseudo_register, sh_compact_do_registers_info,
8212 sh64_do_registers_info, sh_gdbarch_init): New functions.
8213
8214 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8215
8216 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
8217
8218 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
8219
8220 * linespec.c (decode_line_1): Check for a double quote after
8221 a filename correctly.
8222
8223 2002-05-10 Jim Blandy <jimb@redhat.com>
8224
8225 Properly track the size of the current objfile's .debug_line section.
8226 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
8227 (DWARF_LINE_SIZE): New macro.
8228 (dwarf2_build_psymtabs_hard): Record the line section's size in
8229 the partial symbol table.
8230 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
8231 symbol table.
8232
8233 2002-05-10 Petr Sorfa <petrs@caldera.com>
8234
8235 * ia64-tdep.c: Handle breakpoints on L instruction type
8236 in MLX instruction bundle by moving the breakpoint to
8237 the third slot (X instruction type) as L holds only data.
8238
8239 2002-05-10 Kevin Buettner <kevinb@redhat.com>
8240
8241 * dbxread.c (discarding_local_symbols_complaint): New complaint.
8242 (process_one_symbol): Complain about discarding local symbols
8243 due to a misplaced N_LBRAC entry.
8244
8245 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
8246
8247 From Daniel Berlin <dan@cgsoftware.com>
8248 * linespec.c (find_toplevel_char): '<' and '>' also increase and
8249 decrease the depth we are at, in the case of templates.
8250
8251 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
8252
8253 * mips-tdep.c (mips_float_register_type): New function.
8254 (mips_double_register_type): New function.
8255 (mips_print_register): Use them.
8256 (do_fp_register_row): Likewise.
8257
8258 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
8259
8260 * signals/signals.c (signals): Remove conditional compilation around
8261 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
8262 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
8263
8264 2002-05-09 Michael Snyder <msnyder@redhat.com>
8265
8266 * remote-rdp.c (remote_rdp_can_run): Remove.
8267
8268 2002-05-09 Tom Tromey <tromey@redhat.com>
8269
8270 * jv-valprint.c (java_val_print): Handle `char' as a special case
8271 of TYPE_CODE_INT.
8272
8273 2002-05-09 Michael Snyder <msnyder@redhat.com>
8274
8275 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
8276 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
8277 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
8278 str r(0123),[sp,#nn].
8279 (arm_skip_prologue): Ditto. Also make disassembly
8280 order-independent by placing it in a loop.
8281
8282 2002-05-06 Michael Snyder <msnyder@redhat.com>
8283
8284 * stabsread.c (read_type): Add recognition for new attribute:
8285 "@V;" means that an array type is actually a vector.
8286 This is analogous to the vector flag that's been added to dwarf2.
8287
8288 2002-05-09 Mark Kettenis <kettenis@gnu.org>
8289
8290 * i386-tdep.h (i386_abi): New enum.
8291 (struct gdbarch_tdep): Replace os_ident member with abi.
8292 (i386_gdbarch_register_os_abi): New prototype.
8293 * i386-tdep.c (i386_abi_names): New array.
8294 (process_note_abi_tag_sections): Removed.
8295 (process_note_sections): New function.
8296 (i386_elf_abi_from_note, i386_elf_abi): New functions.
8297 (struct i386_abi_handler): New struct.
8298 (i386_abi_handler_list): New variable.
8299 (i386_gdbarch_register_os_abi): New function.
8300 (i386_gdbarch_init): Adapt for the changes given above.
8301
8302 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
8303
8304 * gregset.h: Say "GNU/Linux".
8305
8306 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
8307
8308 * gdbtypes.c : Add new builtin type for 64 bit vectors.
8309 (build_gdbtypes): Build builtin_type_v2_float.
8310 (_initialize_gdbtypes): Register new builtin type.
8311
8312 2002-05-08 Andrew Cagney <ac131313@redhat.com>
8313
8314 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
8315 (clear_gdbarch_swap): New function.
8316 (initialize_non_multiarch): Call.
8317 (gdbarch_update_p): Before calling init(), swap out and clear the
8318 existing architecture.
8319 * gdbarch.c: Regenerate.
8320
8321 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8322
8323 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
8324 alphanbsd-tdep.c.
8325
8326 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8327
8328 * sh-nbsd-nat.c: Rename to...
8329 * shnbsd-nat.c: ...this.
8330 * sh-nbsd-tdep.c: Rename to...
8331 * shnbsd-tdep.c: ...this.
8332 * sh-nbsd-tdep.h: Rename to...
8333 * shnbsd-tdep.h: ...this.
8334 * config/sh/nbsd.mh: Use shnbsd-nat.o.
8335 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
8336
8337 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
8338
8339 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
8340 concatenation for command help messages.
8341
8342 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8343
8344 * NEWS: Note new sh*-*-netbsdelf* configuration.
8345 * configure.host: Set gdb_host_cpu to sh for all sh*.
8346 (sh*-*-netbsdelf*): New host.
8347 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
8348 (sh*-*-netbsdelf*): New target.
8349 * sh-nbsd-nat.c: New file.
8350 * sh-nbsd-tdep.c: New file.
8351 * sh-nbsd-tdep.h: New file.
8352 * config/sh/nbsd.mh: New file.
8353 * config/sh/nbsd.mt: New file.
8354 * config/sh/nm-nbsd.h: New file.
8355 * config/sh/tm-nbsd.h: New file.
8356
8357 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8358
8359 * sh-tdep.c (sh_osabi_names): Declare.
8360 (process_note_abi_tag_sections): New function.
8361 (get_elfosabi): Ditto.
8362 (sh_gdbarch_register_os_abi): Ditto.
8363 (sh_dump_tdep): Ditto.
8364 _initialize_sh_tdep): Use gdbarch_register to register
8365 sh_gdbarch_init and sh_dump_tdep.
8366 * config/sh/tm-sh.h (sh_osabi): Declare.
8367 (gdbarch_tdep): Add sh_osabi and osabi_name members.
8368
8369 2002-05-07 Andrew Cagney <ac131313@redhat.com>
8370
8371 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
8372 (thumb_scan_prologue): Ditto.
8373 (arm_find_callers_reg): Ditto.
8374 (arm_frame_chain): Ditto.
8375 (arm_init_extra_frame_info): Ditto.
8376 (arm_frame_saved_pc): Ditto.
8377 (arm_pop_frame): Ditto.
8378 (arm_push_return_address): New function.
8379 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
8380 call_dummy_location, call_dummy_breakpoint_offset_p,
8381 call_dummy_breakpoint_offset, call_dummy_p,
8382 call_dummy_stack_adjust_p, call_dummy_words,
8383 sizeof_call_dummy_words, call_dummy_start_offset,
8384 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
8385 call_dummy_address, push_return_address and push_dummy_frame for
8386 generic dummy frames.
8387
8388 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
8389
8390 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
8391 size computation for alloca.
8392 (sh_fp_frame_init_saved_regs): Likewise.
8393
8394 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
8395
8396 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
8397 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
8398 * arm-tdep.c (arm_store_return_value): Use them.
8399 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
8400 * remote-rdp.c (remote_rdp_fetch_register): Use
8401 ARM_MAX_REGISTER_RAW_SIZE.
8402 (remote_rdp_store_register): Likewise.
8403
8404 2002-05-07 Michal Ludvig <mludvig@suse.cz>
8405
8406 * dwarf2cfi.c: Code cleanup, removed unused variables,
8407 added default labels to switch {} statements.
8408 * x86-64-tdep.c: Ditto.
8409 * x86-64-linux-nat.c: Ditto.
8410
8411 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
8412
8413 * solib.h: Protect against multiple inclusion.
8414
8415 2002-05-06 Jim Blandy <jimb@redhat.com>
8416
8417 Add first preprocessor macro-expansion files.
8418 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
8419 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
8420 (splay_tree_h, macroexp_h, macrotab_h): New variable.
8421 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
8422 (COMMON_OBS): Add macrotab.o, macroexp.o.
8423 (macroexp.o, macrotab.o): New rules.
8424
8425 Separate the job of reading the line number info statement program
8426 header (...expialidocious) out into its own function.
8427 * dwarf2read.c (struct line_head, struct filenames, struct
8428 directories): Replace with...
8429 (struct line_header): New structure, containing the full
8430 contents of the statement program header, including the
8431 include directory and file name tables.
8432 (read_file_scope): If we have line number info, instead of just
8433 calling dwarf_decode_lines to do all the work, call
8434 dwarf_decode_line_header first to get a `struct line_header'
8435 containing the data in the statement program header, and then
8436 pass that to dwarf_decode_lines, which will pick up where that
8437 left off. Be sure to clean up the `struct line_header' object.
8438 (dwarf_decode_line_header, free_line_header, add_include_dir,
8439 add_file_name): New functions.
8440 (dwarf_decode_lines): Move all the code to read the statement
8441 program header into dwarf_decode_line_header. Take the line
8442 header it built as the first argument, instead of the offset to
8443 the compilation unit's line number info. Use the new `struct
8444 line_header' type instead of the old structures. No need to do
8445 cleanups here now, since we don't allocate anything.
8446 (dwarf2_statement_list_fits_in_line_number_section,
8447 dwarf2_line_header_too_long): New complaints.
8448
8449 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
8450
8451 * gdbtypes.c (init_vector_type): New function.
8452 (build_builtin_type_vec128): Simplify the representation of SIMD
8453 registers.
8454 (build_gdbtypes): Initialize new builtin vector types.
8455 (_initialize_gdbtypes): Register new vector types with gdbarch.
8456 (builtin_type_v4_float, builtin_type_v4_int32,
8457 builtin_type_v8_int16, builtin_type_v16_int8,
8458 builtin_type_v2_int32, builtin_type_v4_int16,
8459 builtin_type_v8_int8): New (renamed) SIMD types.
8460
8461 2002-05-06 Mark Kettenis <kettenis@gnu.org>
8462
8463 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
8464 (i387_fill_fxsave): Likewise.
8465
8466 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8467
8468 * alpha-tdep.c (alpha_extract_return_value): Don't use
8469 non-constant array size in prototype.
8470
8471 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8472
8473 From Brian Taylor <briant at model dot com>:
8474 * ui-out.c (ui_out_field_core_addr): Use the function
8475 longest_local_hex_string_custom'to format addresses > 32 bits
8476 wide.
8477
8478 * ui-out.c (ui_out_field_core_addr): Update comment.
8479
8480 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8481
8482 * stack.c (select_and_print_frame): Make static. Delete the
8483 parameter `level'.
8484 (func_command): Update call.
8485 (select_frame_command): Delete code computing the frame level.
8486 * frame.h (select_and_print_frame): Delete declaration.
8487
8488 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8489
8490 * sparc-tdep.c (sparc_get_saved_register): Comment why
8491 get_prev_frame call is safe.
8492
8493 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8494
8495 * frame.h (select_frame): Delete level parameter.
8496 * stack.c (select_frame): Update. Use frame_relative_level to
8497 obtain the frame's level.
8498 (select_and_print_frame): Update call.
8499 (select_frame_command): Ditto.
8500 (up_silently_base): Ditto.
8501 (down_silently_base): Ditto.
8502 * ocd.c (ocd_start_remote): Ditto.
8503 * remote-rdp.c (remote_rdp_open): Ditto.
8504 * remote-mips.c (mips_initialize): Ditto.
8505 (common_open): Ditto.
8506 * remote-e7000.c (e7000_start_remote): Ditto.
8507 * m3-nat.c (select_thread): Ditto.
8508 * hppa-tdep.c (child_get_current_exception_event): Ditto.
8509 (child_get_current_exception_event): Ditto.
8510 * varobj.c (varobj_create): Ditto.
8511 (varobj_update): Ditto.
8512 (c_value_of_root): Ditto.
8513 * tracepoint.c (finish_tfind_command): Ditto.
8514 * corelow.c (core_open): Ditto.
8515 * arch-utils.c (generic_prepare_to_proceed): Ditto.
8516 * thread.c (info_threads_command): Ditto.
8517 (switch_to_thread): Ditto.
8518 * infrun.c (normal_stop): Ditto.
8519 (restore_selected_frame): Ditto.
8520 (restore_inferior_status): Ditto.
8521 * breakpoint.c (insert_breakpoints): Ditto.
8522 (watchpoint_check): Ditto.
8523 (bpstat_stop_status): Ditto.
8524 (do_enable_breakpoint): Ditto.
8525 * blockframe.c (flush_cached_frames): Ditto.
8526 (reinit_frame_cache): Ditto.
8527
8528 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8529
8530 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
8531 maintainer.
8532
8533 2002-05-04 Jim Blandy <jimb@redhat.com>
8534
8535 * gdbtypes.c (replace_type): Doc fix.
8536
8537 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8538
8539 * valprint.c (strcat_longest): Delete commented out function.
8540 Update copyright.
8541
8542 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8543
8544 * MAINTAINERS: Mark a29k as deleted.
8545 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
8546 Move new configurations to the top.
8547 * configure.tgt: Remove a29k.
8548 * config/a29k/tm-vx29k.h: Delete.
8549 * config/a29k/vx29k.mt: Delete.
8550 * config/a29k/tm-a29k.h: Delete.
8551 * config/a29k/a29k-udi.mt: Delete.
8552 * config/a29k/a29k.mt: Delete.
8553 * a29k-tdep.c: Delete.
8554 * remote-udi.c: Delete.
8555 * remote-mm.c: Delete.
8556 * remote-eb.c: Delete.
8557 * remote-adapt.c: Delete.
8558 * Makefile.in: Remove obsolete code.
8559 * config/s390/s390x.mt: Ditto.
8560 * config/s390/s390.mt: Ditto.
8561 * config/sparc/sparclynx.mh: Ditto.
8562 * config/sparc/linux.mh: Ditto.
8563 * config/pa/hppaosf.mh: Ditto.
8564 * config/pa/hppabsd.mh: Ditto.
8565 * config/ns32k/nbsd.mt: Ditto.
8566 * config/mips/vr5000.mt: Ditto.
8567 * config/m68k/sun3os4.mh: Ditto.
8568 * config/m68k/nbsd.mt: Ditto.
8569 * config/m68k/m68klynx.mh: Ditto.
8570 * config/m32r/m32r.mt: Ditto.
8571 * config/i386/x86-64linux.mt: Ditto.
8572 * config/i386/nbsdelf.mt: Ditto.
8573 * config/i386/nbsd.mt: Ditto.
8574 * config/i386/i386lynx.mh: Ditto.
8575
8576 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8577
8578 * target.c (debug_print_register): New function. Handle oversize
8579 registers.
8580 (debug_to_fetch_registers): Call.
8581 (debug_to_store_registers): Call.
8582
8583 2002-05-03 Jim Blandy <jimb@redhat.com>
8584
8585 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
8586 (read_type): Doc fix.
8587 * gdbtypes.c (replace_type): Doc fix.
8588
8589 * stabsread.c (multiply_defined_struct): New complaint.
8590 (read_struct_type): If the type we were passed isn't empty, or
8591 incomplete, don't read the new struct type into it; complain,
8592 and return the original type unchanged. Take a new `type_code'
8593 argument, which is the type code for the new type.
8594 (read_type): Rather than storing the type's type code here, pass
8595 it as an argument to read_struct_type, and let that take care of
8596 storing it. That way, we don't overwrite the original type code,
8597 so read_struct_type can use it to decide whether we're overwriting
8598 something we shouldn't.
8599 (complain_about_struct_wipeout): New function.
8600
8601 2002-05-03 Andrew Cagney <ac131313@redhat.com>
8602
8603 * gdbarch.sh: Assert that gdbarch is non-NULL.
8604 * gdbarch.c: Regenerate.
8605
8606 2002-05-03 Jason Merrill <jason@redhat.com>
8607
8608 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
8609 and return NULL.
8610
8611 2002-05-03 Michal Ludvig <mludvig@suse.cz>
8612
8613 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
8614 (x86_64_dwarf2gdb_regno_map_length),
8615 (x86_64_dwarf2_reg_to_regnum): Added.
8616 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
8617 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
8618 (_initialize_x86_64_tdep): Synced with the change above.
8619 (x86_64_skip_prologue): Reformulated message.
8620
8621 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
8622
8623 * f-exp.y: Also use new prev_lexptr variable
8624 to improve error reporting. Based on Michael Snyder
8625 2002-04-24 dated patch to c-exp.y.
8626 * jv-exp.y: Likewise.
8627 * m2-exp.y: Likewise.
8628
8629 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
8630
8631 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
8632 we are dealing with vectors.
8633
8634 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8635
8636 * config/m68k/tm-nbsd.h: Obvious fix,
8637 correct machine name.
8638
8639 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8640
8641 * p-typeprint.c (pascal_type_print_base): Add support
8642 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
8643
8644 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8645
8646 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
8647 for fondamental pascal 'char' type.
8648
8649 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8650
8651 * p-lang.h (is_pascal_string_type): Declaration changed,
8652 new sixth argument of type char ** added.
8653 * p-lang.c (is_pascal_string_type): Implementation
8654 changed. Args length_pos, length_size, string_pos, char_size
8655 can now be NULL. New argument arrayname set to the field
8656 name of the char array. Return value set to char array
8657 field index plus one.
8658 * p-valprint.c (pascal_val_print): Adapt to new declaration of
8659 is_pascal_string_type function.
8660
8661 2002-05-02 Andrew Cagney <cagney@redhat.com>
8662
8663 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
8664 <cagney@redhat.com> change.
8665 * gdbarch.c: Regenerate.
8666
8667 2002-05-02 Andrew Cagney <cagney@redhat.com>
8668
8669 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
8670 before probing for a new one. Detect errorenous gdbarch_init
8671 functions.
8672 * gdbarch.c: Regenerate.
8673
8674 2002-05-01 Andrew Cagney <cagney@redhat.com>
8675
8676 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
8677 * config/mcore/tm-mcore.h: Ditto. Update copyright.
8678 * config/v850/tm-v850.h: Ditto. Update copyright.
8679
8680 2002-04-30 Andrew Cagney <ac131313@redhat.com>
8681
8682 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
8683 current_gdbarch.
8684
8685 2002-04-30 Michael Snyder <msnyder@redhat.com>
8686
8687 * arm-tdep.c: Whitespace clean-ups.
8688 (arm_skip_prologue): Fix thinko; two lines
8689 should have been removed as part of 4/24 change.
8690
8691 2002-04-30 Kevin Buettner <kevinb@redhat.com>
8692
8693 * rs6000-tdep.c: Added comment describing how fpscr register
8694 numbers were chosen.
8695
8696 2002-04-30 Michael Snyder <msnyder@redhat.com>
8697
8698 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
8699
8700 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
8701
8702 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
8703 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
8704 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
8705
8706 2002-04-29 Kevin Buettner <kevinb@redhat.com>
8707
8708 From Louis Hamilton <hamilton@redhat.com>:
8709 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
8710 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
8711 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
8712 not bfd-private xcoff data, to determine wordsize.
8713 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
8714
8715 2002-04-29 Andrew Cagney <ac131313@redhat.com>
8716
8717 GDB 5.2 released from 5.2 branch.
8718
8719 2002-04-29 Michal Ludvig <mludvig@suse.cz>
8720
8721 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
8722 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
8723 (x86_64_register_info_table): Added comments with register numbers.
8724
8725 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
8726
8727 * rs6000-tdep.c (rs6000_extract_return_value,
8728 rs6000_store_return_value): Handle returning vectors.
8729 (rs6000_gdbarch_init): Use
8730 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
8731 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
8732 New function.
8733 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
8734 vectors.
8735 (ppc_sysv_abi_push_arguments): Handle vector parameters.
8736 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
8737
8738 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8739
8740 * hpread.c (hpread_psymtab_to_symtab_1,
8741 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
8742 with fprintf_unfiltered (gdb_stderr,...).
8743
8744 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8745
8746 * remote-array.c (printf_monitor, write_monitor,
8747 array_insert_breakpoint, array_remove_breakpoint ):
8748 Replace fprintf (stderr,...
8749 with fprintf_unfiltered (gdb_stderr,....
8750 * remote-es.c: Likewise.
8751 * remote-os9k.c: Likewise.
8752 * remote-st.c: Likewise.
8753
8754 2002-04-28 Andreas Schwab <schwab@suse.de>
8755
8756 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
8757 linux-proc.o and gcore.o.
8758
8759 2002-04-26 Michal Ludvig <mludvig@suse.cz>
8760
8761 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
8762 code without frame pointers.
8763
8764 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8765
8766 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
8767 ON_STACK is needed.
8768
8769 2002-04-26 Ben Elliston <bje@redhat.com>
8770
8771 * target.c (do_xfer_memory): Correct reference to the new option
8772 "trust-readonly-sections".
8773
8774 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
8775
8776 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
8777 * gdbtypes.c (recursive_dump_type): Output the vector flag.
8778 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
8779 vectors.
8780 (read_array_type): Record the fact that this array type is really a
8781 vector (i.e. are passed in by value).
8782
8783 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
8784
8785 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
8786 * alpha-tdep.c (alpha_sigcontext_addr): New function.
8787 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
8788 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
8789 * alpha-linux-tdep.c: Include frame.h.
8790 (alpha_linux_sigcontext_addr): New function.
8791 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
8792 alpha_linux_sigcontext_addr.
8793 * alpha-osf1-tdep.c: Include gdbcore.h.
8794 (alpha_osf1_sigcontext_addr): New function.
8795 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
8796 alpha_osf1_sigcontext_addr.
8797 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
8798 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
8799
8800 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8801
8802 * stack.c (selected_frame_level):
8803 (select_frame): Do not set selected_frame_level.
8804 * frame.h (selected_frame_level): Delete declaration.
8805
8806 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8807
8808 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
8809 convert_from_func_ptr-addr when AIX / PowerOpen.
8810
8811 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8812
8813 * valops.c (hand_function_call): Call
8814 generic_save_call_dummy_addr.
8815 * frame.h (generic_save_call_dummy_addr): Declare.
8816 * blockframe.c (struct dummy_frame): Add fields call_lo and
8817 call_hi.
8818 (generic_find_dummy_frame): Check for PC in range call_lo to
8819 call_hi instead of entry_point_address.
8820 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
8821 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
8822 (generic_save_call_dummy_addr): New function.
8823
8824 2002-04-24 David S. Miller <davem@redhat.com>
8825
8826 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
8827 sparc_skip_prologue.
8828 (sparc_skip_prologue): Kill frameless_p arg, and use line number
8829 information to find prologue when possible.
8830 (sparc_prologue_frameless_p): Call examine_prologue directly.
8831 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
8832 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
8833 second argument.
8834 (SKIP_PROLOGUE): Likewise.
8835
8836 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8837
8838 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
8839 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
8840 indicate that the condition it was testing is always true.
8841 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
8842 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8843 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8844
8845 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8846
8847 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
8848 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
8849 tdep->jb_pc and tdep->jb_elt_size.
8850 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
8851 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
8852 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
8853 * alpha-nat.c (get_longjmp_target): Remove.
8854 (JB_ELEMENT_SIZE): Ditto.
8855 (JB_PC): Ditto.
8856 * alpha-tdep.c (alpha_get_longjmp_target): New function.
8857 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
8858 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
8859 to alpha_get_longjmp_target.
8860 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
8861 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
8862 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
8863
8864 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8865
8866 * README: Update to GDB 5.2.
8867
8868 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8869
8870 * gdbarch.sh (LC_ALL): Set to `c'.
8871
8872 2002-04-25 Theodore A. Roth <troth@verinet.com>
8873
8874 * avr-tdep.c: Ran through gdb_indent.sh.
8875
8876 2002-04-25 Theodore A. Roth <troth@verinet.com>
8877
8878 * MAINTAINERS: Add myself as AVR maintainer.
8879 * NEWS: Note new target avr.
8880
8881 2002-04-25 Theodore A. Roth <troth@verinet.com>
8882
8883 * Makefile.in: Add support for AVR target.
8884 * configure.tgt: Add support for AVR target.
8885 * avr-tdep.c: New file
8886 * config/avr/avr.mt: New file.
8887
8888 2002-04-25 Theodore A. Roth <troth@verinet.com>
8889
8890 * MAINTAINERS: Add myself to write-after-approval.
8891
8892 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8893
8894 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
8895 with fprintf_unfiltered (gdb_stderr,....
8896
8897 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8898
8899 Fix PR gdb/508.
8900 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
8901
8902 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8903
8904 * p-exp.y: Also use new prev_lexptr variable
8905 to improve error reporting. Based on Michael Snyder
8906 2002-04-24 dated patch to c-exp.y.
8907
8908 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8909
8910 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
8911 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
8912 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
8913 to 0.
8914 * config/alpha/tm-alpha.h: Remove forward decls of struct type
8915 and struct value.
8916 (FUNCTION_START_OFFSET): Remove.
8917 (BREAKPOINT): Ditto.
8918
8919 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8920
8921 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
8922 * NEWS: Ditto.
8923
8924 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8925
8926 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
8927 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
8928 alpha_linux_pc_in_sigtramp.
8929 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
8930 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
8931 alpha_osf1_pc_in_sigtramp.
8932 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
8933 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
8934 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8935 alphafbsd_pc_in_sigtramp.
8936 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
8937 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8938 alphanbsd_pc_in_sigtramp.
8939 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
8940 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
8941
8942 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8943
8944 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
8945
8946 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8947
8948 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
8949 alphanbsd-tdep.c.
8950 (alphanbsd-nat.o): New dependency list.
8951 (alphanbsd-tdep.o): Ditto.
8952 * NEWS: Note new native NetBSD/alpha configuration.
8953 * alphanbsd-nat.c: New file.
8954 * alphanbsd-tdep.c: Ditto.
8955 * configure.host (alpha*-*-netbsd*): New host.
8956 * configure.tgt (alpha*-*-netbsd*): New target.
8957 * config/alpha/nbsd.mh: New file.
8958 * config/alpha/nbsd.mt: Ditto.
8959 * config/alpha/nm-nbsd.h: Ditto.
8960 * config/alpha/tm-nbsd.h: Ditto.
8961
8962 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8963
8964 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
8965 (alpha-osf1-tdep.o): New dependency list.
8966 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
8967 and skip_sigtramp_frame members.
8968 * alpha-linux-tdep.c: Include gdbcore.h.
8969 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
8970 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
8971 * alpha-osf1-tdep.c: New file.
8972 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
8973 alpha-osf1-dep.c.
8974 (alpha_frame_past_sigtramp_frame): New function.
8975 (alpha_dynamic_sigtramp_offset): Ditto.
8976 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
8977 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
8978 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
8979 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
8980 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
8981 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
8982 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
8983 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
8984 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
8985 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
8986 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
8987 to find_solib_trampoline_target.
8988 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
8989 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
8990 (SKIP_TRAMPOLINE_CODE): Remove.
8991 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8992 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8993 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8994 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8995 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
8996 (PROC_SIGTRAMP_MAGIC): Ditto.
8997 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8998 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8999 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9000 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
9001 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
9002
9003 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
9004
9005 * NEWS: Note that Alpha targets are now multi-arch.
9006
9007 2002-04-24 Michael Snyder <msnyder@redhat.com>
9008
9009 * parser-defs.h (prev_lexptr): New external variable.
9010 * parse.c (parse_exp_1): Set prev_lexptr to null before
9011 calling the language-specific parser.
9012 * c-exp.y (yylex): Set prev_lexptr to start of current token.
9013 (yyerror): Use prev_lexptr in error reporting.
9014
9015 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
9016
9017 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
9018 * gregset.h: If FILL_FPXREGSET is defined, provide
9019 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
9020 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
9021 is defined, call fill_fpxregset.
9022
9023 2002-04-24 Roland McGrath <roland@frob.com>
9024
9025 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
9026 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
9027 (supply_gregset, supply_fpregset): New functions.
9028
9029 * gnu-nat.c (gnu_find_memory_regions): New function.
9030 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
9031 (gnu_xfer_memory): Add a cast.
9032
9033 2002-04-24 Michael Snyder <msnyder@redhat.com>
9034
9035 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
9036 loop. Add handling for "str lr, [sp, #-4]!" and for saves
9037 of argument regs ("str r(0123), [r11, #-nn"]).
9038 (arm_skip_prologue): Better handling for frameless functions.
9039 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
9040 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
9041
9042 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
9043
9044 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
9045 NUM_PSEUDO_REGS can be used.
9046
9047 2002-04-24 Andrew Cagney <ac131313@redhat.com>
9048
9049 * arch-utils.h: Update copyright.
9050
9051 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
9052 * gdbarch.h, gdbarch.c: Re-generate.
9053
9054 * inferior.h (IN_SIGTRAMP): Delete definition.
9055 * arch-utils.c (legacy_pc_in_sigtramp): New function.
9056 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
9057
9058 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
9059 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
9060 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
9061 (find_proc_framesize): Ditto.
9062 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
9063 (alpha_init_extra_frame_info): Ditto.
9064 * infrun.c (handle_inferior_event): Ditto.
9065 (handle_inferior_event): Ditto.
9066 (check_sigtramp2): Ditto.
9067 * blockframe.c (create_new_frame): Ditto.
9068 (get_prev_frame): Ditto.
9069 * ppc-linux-tdep.c: Update comments.
9070 * i386-linux-tdep.c: Update comments.
9071 * breakpoint.c (bpstat_what): Update comment.
9072
9073 2002-04-24 David S. Miller <davem@redhat.com>
9074
9075 * i960-tdep.c (register_in_window_p): New function.
9076 (i960_find_saved_register): Use it instead of
9077 REGISTER_IN_WINDOW_P.
9078 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
9079
9080 * symtab.h (find_stab_function_addr): Kill extern.
9081 * minsyms.c (find_stab_function_addr): Remove from here...
9082 * dbxread.c: ... to here, and mark it static.
9083
9084 2002-04-20 David S. Miller <davem@redhat.com>
9085
9086 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
9087 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
9088
9089 2002-04-21 David S. Miller <davem@redhat.com>
9090
9091 * remote-vxsparc.c (vx_read_register): Fix typo, we want
9092 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
9093 (vx_write_register): Likewise.
9094
9095 2002-04-23 J. Brobecker <brobecker@gnat.com>
9096
9097 * source.c (is_regular_file): New function.
9098 (openp): Check wether file to open is a regular file
9099 to avoid opening directories.
9100
9101 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9102
9103 * findvar.c (extract_signed_integer): Cast printf argument
9104 to suppress format warning.
9105 (extract_unsigned_integer): Likewise.
9106 * infcmd.c (registers_info): Likewise.
9107 * top.c (get_prompt_1): Likewise.
9108 * valops.c (value_assign): Likewise.
9109 * valprint.c (print_decimal): Likewise.
9110
9111 2002-04-22 H.J. Lu (hjl@gnu.org)
9112
9113 * c-exp.y (typebase): Support
9114
9115 [long|long long|short] [signed|unsigned] [int|]
9116
9117 and
9118
9119 signed [long|long long|short] int
9120
9121 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9122
9123 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
9124 and vax-tdep.h.
9125 * vax-tdep.h: New file.
9126 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
9127 Make several routines static.
9128 (vax_get_saved_register): New function.
9129 (vax_gdbarch_init): New function.
9130 (_initialize_vax_tdep): Register vax_gdbarch_init.
9131 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
9132 Remove macros now under the control of gdbarch.
9133
9134 2002-04-22 Michael Snyder <msnyder@redhat.com>
9135
9136 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
9137 Some whitespace and coding standards tweaks.
9138
9139 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9140
9141 * vax-tdep.c: Include regcache.h.
9142 (vax_call_dummy_words): New.
9143 (sizeof_vax_call_dummy_words): New.
9144 (vax_fix_call_dummy): New function.
9145 (vax_saved_pc_after_call): Ditto.
9146 * config/vax/tm-vax.h: Don't include regcache.h.
9147 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
9148 (CALL_DUMMY): Remove.
9149 (CALL_DUMMY_WORDS): Define.
9150 (SIZEOF_CALL_DUMMY_WORDS): Define.
9151 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
9152
9153 2002-04-18 Michael Snyder <msnyder@redhat.com>
9154
9155 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
9156
9157 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9158
9159 * vax-tdep.c (vax_frame_chain): New function.
9160 (vax_push_dummy_frame): Ditto.
9161 (vax_pop_frame): Ditto.
9162 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
9163 (FRAMELESS_FUNCTION_INVOCATION): Use
9164 generic_frameless_function_invocation_not.
9165 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
9166 (POP_FRAME): Use vax_pop_frame.
9167
9168 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9169
9170 * vax-tdep.c (vax_store_struct_return): New function.
9171 (vax_extract_return_value): Ditto.
9172 (vax_store_return_value): Ditto.
9173 (vax_extract_struct_value_address): Ditto.
9174 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
9175 vax_store_struct_return.
9176 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
9177 (STORE_RETURN_VALUE): Use vax_store_return_value.
9178 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
9179
9180 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9181
9182 * vax-tdep.c (vax_frame_saved_pc): New function.
9183 (vax_frame_args_address_correct): Ditto.
9184 (vax_frame_args_address): Ditto.
9185 (vax_frame_locals_address): Ditto.
9186 (vax_frame_num_args): Move code to be in proximity to
9187 other frame-related functions.
9188 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
9189 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
9190 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
9191 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
9192 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
9193
9194 2002-04-22 H.J. Lu (hjl@gnu.org)
9195
9196 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
9197 includedir.
9198
9199 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9200
9201 * vax-tdep.c (vax_frame_init_saved_regs): New function.
9202 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
9203 (FRAME_INIT_SAVED_REGS): New macro.
9204
9205 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9206
9207 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
9208
9209 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9210
9211 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
9212 where needed.
9213 (fetch_osf_core_registers): Likewise.
9214 (supply_gregset): Likewise.
9215
9216 2002-04-22 J. Brobecker <brobecker@gnat.com>
9217
9218 * symfile.h (get_section_index): Define.
9219 * symfile.c (get_section_index): New function.
9220 * mdebugread.c (SC_IS_SBSS): New macro.
9221 (SC_IS_BSS): Return true for the scBss storage class only, as
9222 the scSBss storage class refers to the .sbss section.
9223 (parse_partial_symbols): Discard the symbols which associated
9224 section does not exist.
9225 Make sure to use the .sbss section index for symbols which
9226 storage class is scBss, rather than using the .bss section index.
9227
9228 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9229
9230 * vax-tdep.c: Update copyright years.
9231 (vax_register_name): New function.
9232 (vax_register_byte): Ditto.
9233 (vax_register_raw_size): Ditto.
9234 (vax_register_virtual_size): Ditto.
9235 (vax_register_virtual_type): Ditto.
9236 * config/vax/tm-vax.h: Update copyright years.
9237 (REGISTER_NAMES): Remove.
9238 (REGISTER_NAME): Define.
9239 (REGISTER_BYTE): Use vax_register_byte.
9240 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
9241 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
9242 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
9243
9244 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9245
9246 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
9247 declaration
9248 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
9249
9250 2002-04-21 David S. Miller <davem@redhat.com>
9251
9252 * arch-utils.c (generic_prologue_frameless_p): Kill
9253 SKIP_PROLOGUE_FRAMELESS_P code.
9254 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
9255 references.
9256 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
9257 * arc-tdep.c (arc_prologue_frameless_p): Implement.
9258 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
9259 references.
9260 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
9261 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
9262 (sparc_gdbarch_init): Pass it to
9263 set_gdbarch_prologue_frameless_p.
9264
9265 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9266
9267 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
9268 (alphabsd-nat.o): New dependency list.
9269
9270 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9271
9272 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
9273 alphafbsd-tdep.c.
9274 (alpha-linux-tdep.o): New dependency list.
9275 (alphafbsd-tdep.o): Likewise.
9276
9277 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9278
9279 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
9280 to here...
9281 * alpha-tdep.c: ...from here.
9282 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
9283
9284 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9285
9286 * config/alpha/tm-alpha.h: Move alpha_software_single_step
9287 prototype from here...
9288 * alpha-tdep.h: ...to here.
9289
9290 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9291
9292 * frame.h (selected_frame_level): Document as deprecated.
9293 (frame_relative_level): Declare.
9294 * stack.c (frame_relative_level): New function.
9295 (selected_frame_level): Document as deprecated.
9296 (select_frame): Do not set the selected_frame_level.
9297
9298 * stack.c (frame_info, record_selected_frame): Update.
9299 (frame_command, current_frame_command): Update.
9300 (up_silently_base, up_command, down_silently_base): Update.
9301 (down_command): Update.
9302 * inflow.c (kill_command): Update.
9303 * tracepoint.c (finish_tfind_command): Update.
9304 * corelow.c (core_open): Update.
9305 * thread.c (info_threads_command): Update.
9306 (do_captured_thread_select): Update.
9307 * infcmd.c (finish_command): Update.
9308 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
9309
9310 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9311
9312 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
9313
9314 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9315
9316 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
9317 type const.
9318
9319 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9320
9321 * alphafbsd-tdep.c: Update copyright years. Include
9322 alpha-tdep.h.
9323 (alphafbsd_use_struct_convention): Make static.
9324 (alphafbsd_init_abi): New function.
9325 (_initialize_alphafbsd_tdep): New function.
9326 * config/alpha/tm-fbsd.h: Update copyright years.
9327 (USE_STRUCT_CONVENTION): Remove.
9328
9329 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9330
9331 * alpha-tdep.c (alpha_abi_handler): New structure to describe
9332 an Alpha ABI variant.
9333 (alpha_abi_handler_list): Declare.
9334 (alpha_gdbarch_register_os_abi): New function.
9335 (alpha_gdbarch_init): Give registered ABI variant handlers a
9336 chance to tweak the gdbarch once we have set up defaults.
9337 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
9338
9339 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9340
9341 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
9342 to standard_coerce_float_to_double.
9343 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
9344
9345 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9346
9347 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
9348 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
9349 from gdbarch_tdep rather than a constant.
9350 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
9351 the default text address for all Alpha Unix ABIs.
9352 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
9353 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
9354
9355 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9356
9357 * alpha-tdep.h: New file. Includes several Alpha target constants
9358 taken from...
9359 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
9360 let gdbarch deal with.
9361 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
9362 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
9363 to dependency list.
9364 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
9365 Alpha target register names.
9366 * alphabsd-nat.c: Likewise.
9367 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
9368 Alpha target register names. Make serveral routines static.
9369 (alpha_get_saved_register): New function.
9370 (alpha_abi_names): New.
9371 (process_note_abi_tag_sections): New function.
9372 (get_elfosabi): New function.
9373 (alpha_gdbarch_init): New function.
9374 (alpha_dump_tdep): New function.
9375 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
9376
9377 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9378
9379 * frame.c (find_saved_register): Delete #ifdef
9380 HAVE_REGISTER_WINDOWS code.
9381 * config/sparc/tm-sparc.h: Update comments.
9382 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
9383
9384 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9385
9386 * i960-tdep.c (i960_find_saved_register): New function.
9387 (i960_get_saved_register): New function.
9388 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
9389 (i960_get_saved_register): Declare.
9390 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
9391
9392 2002-04-20 David S. Miller <davem@redhat.com>
9393
9394 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
9395
9396 2002-04-20 Andrew Cagney <ac131313@redhat.com>
9397
9398 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
9399 instead of NUM_PSEUDO_REGS.
9400
9401 2002-04-20 David S. Miller <davem@redhat.com>
9402
9403 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
9404 GDB_MULTI_ARCH_PARTIAL
9405 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
9406 define, let tm-sp64.h do it.
9407
9408 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
9409
9410 * frame.c (find_saved_register): Avoid a NULL pointer
9411 dereference and actually walk the frame list.
9412
9413 2002-04-20 Andrew Cagney <ac131313@redhat.com>
9414
9415 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
9416 sorted in most most-recent-used order. Document.
9417 * gdbarch.h, gdbarch.c: Regenerate.
9418
9419 2002-04-19 Andrew Cagney <ac131313@redhat.com>
9420
9421 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
9422 instead of ->prev.
9423 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
9424 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
9425 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
9426 instead of ->prev.
9427
9428 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
9429
9430 Fix PR gdb/471.
9431 * gdbtypes.c (init_simd_type): Rewrite using new functions.
9432 (build_builtin_type_vec128): Ditto.
9433 (append_composite_type_field): Fix calculation of type length in
9434 union case.
9435
9436 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
9437
9438 * config/djgpp/README: Update.
9439
9440 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
9441 compiler warnings.
9442
9443 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
9444
9445 * alpha-tdep.c (setup_arbitrary_frame): Rename...
9446 (alpha_setup_arbitrary_frame): ...to this.
9447 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
9448 for alpha_setup_arbitrary_frame.
9449
9450 2002-04-18 Andrew Cagney <cagney@redhat.com>
9451
9452 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
9453 * gdbarch.h, gdbarch.c: Regenerate.
9454
9455 * defs.h (breakpoint_from_pc_fn): Delete type definition.
9456 * target.h (memory_breakpoint_from_pc): Update declaration.
9457 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
9458
9459 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
9460 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
9461 * mem-break.c (memory_breakpoint_from_pc): Ditto.
9462 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
9463 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
9464 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
9465 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
9466 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
9467 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
9468 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
9469 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
9470 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
9471
9472 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
9473 const pointer.
9474 * monitor.c (monitor_insert_breakpoint): Ditto.
9475 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
9476
9477 * config/mcore/tm-mcore.h: Update copyright.
9478 * mem-break.c: Ditto.
9479 * xstormy16-tdep.c: Ditto.
9480
9481 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
9482
9483 * p-exp.y: Add precedence rule for '^' token.
9484 This removes the shift/reduce conflicts.
9485 Remove the comment concerning these shift/reduce conflicts.
9486
9487 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
9488
9489 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
9490 (registers_powerpc_nofp): New register set for processors
9491 without floating point unit.
9492
9493 2002-04-18 David S. Miller <davem@redhat.com>
9494
9495 * MAINTAINERS: Add myself to write-after-approval.
9496
9497 2002-04-17 Michael Snyder <msnyder@redhat.com>
9498
9499 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
9500
9501 2002-04-17 Andrew Cagney <ac131313@redhat.com>
9502
9503 * rs6000-tdep.c (frame_initial_stack_address): Use
9504 frame_register_read to read the alloca_reg.
9505
9506 2002-04-17 Andrew Cagney <ac131313@redhat.com>
9507
9508 * frame.c (find_saved_register): Find saved registers in the next
9509 not prev frame.
9510 Fix PR gdb/365.
9511
9512 2002-04-17 Andrew Cagney <ac131313@redhat.com>
9513
9514 * gdbarch.sh (LANG): Set to ``c''.
9515
9516 2002-04-15 Andrew Cagney <ac131313@redhat.com>
9517
9518 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
9519
9520 2002-04-15 Andrew Cagney <ac131313@redhat.com>
9521
9522 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
9523 Update copyright.
9524
9525 * hpread.c (hpread_get_lntt): Add declaration.
9526 Also fix PR gdb/391.
9527
9528 2002-04-14 Andrew Cagney <ac131313@redhat.com>
9529
9530 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
9531 * aclocal.m4, configure: Re-generate.
9532 Fix PR gdb/391.
9533
9534 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
9535
9536 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
9537 instead of tm_print_insn.
9538
9539 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
9540
9541 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
9542
9543 2002-04-14 Andrew Cagney <ac131313@redhat.com>
9544
9545 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
9546 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
9547 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
9548
9549 2002-04-12 Don Howard <dhoward@redhat.com>
9550
9551 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
9552 max_user_call_depth.
9553 (init_cmd_lists): Initialize the new value;
9554 * cli/cli-script.c (execute_user_command): Limit the call depth of
9555 user defined commands. This avoids a core-dump when user commands
9556 are infinitly recursive.
9557
9558 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9559
9560 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
9561 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
9562 from tdep struct instead of DEFAULT_LR_SAVE.
9563 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
9564 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
9565 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
9566
9567 2002-04-12 Michael Snyder <msnyder@redhat.com>
9568
9569 * Remote.c: Spelling fix.
9570 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
9571 If no symbol found for "sbrk", try "_sbrk".
9572 (make_output_phdrs): Use bfd_section_name.
9573 (gcore_copy_callback): Use bfd_section_name.
9574 * eval.c: Indentation fix-ups.
9575 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
9576 in case it gets applied to an address that is already
9577 in the instruction space.
9578 * cli/cli-decode.c (help_list): Allow long lines to wrap.
9579 * symfile.c: Fix indentation, long lines.
9580 * source.c: White space fix-up.
9581
9582 2002-04-12 Andrew Cagney <cagney@redhat.com>
9583
9584 * defs.h (read_relative_register_raw_bytes): Delete declaration.
9585 * frame.c (frame_register_read): New function. Return non-zero on
9586 success.
9587 (read_relative_register_raw_bytes_for_frame): Delete.
9588 (read_relative_register_raw_bytes): Delete.
9589 * frame.h (frame_register_read): Declare.
9590 * d30v-tdep.c: Update Copyright. Use frame_register_read.
9591 * sh-tdep.c: Ditto.
9592 * infcmd.c (do_registers_info): Ditto.
9593 * hppa-tdep.c: Ditto.
9594 * rs6000-tdep.c: Ditto.
9595 * h8500-tdep.c: Ditto.
9596 * mips-tdep.c: Ditto.
9597 * h8300-tdep.c: Ditto.
9598 * z8k-tdep.c: Ditto.
9599
9600 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9601
9602 From Jimi X <jimix@watson.ibm.com>:
9603 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
9604 64-bit SysV ABI.
9605
9606 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9607
9608 From Jimi X <jimix@watson.ibm.com>:
9609 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
9610 bfd info.
9611
9612 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9613
9614 From Jimi X <jimix@watson.ibm.com>:
9615 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
9616 register sets for these processor variants.
9617
9618 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
9619
9620 * regformats/reg-ppc.dat: Support FPSCR.
9621
9622 2002-04-11 Kevin Buettner <kevinb@redhat.com>
9623
9624 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
9625 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
9626 Add fpscr as an invalid/unfetchable register.
9627 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
9628 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
9629 (fill_fpregset): Add support for register fpscr.
9630 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
9631 (fill_gregset): Account for the fact that register ``mq'' might
9632 not exist.
9633 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
9634 (registers_power): Add fpscr to register set at slot 71.
9635 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
9636 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
9637
9638 2002-04-11 Michael Snyder <msnyder@redhat.com>
9639
9640 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
9641 * configure: Regenerate.
9642 * config.in: Regenerate.
9643 * acconfig.h: Add define for _SYSCALL32.
9644 * core-sol2.c: Remove #define _SYSCALL32.
9645 * solib-legacy.c: Remove #define _SYSCALL32.
9646
9647 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9648
9649 * stack.c (select_frame): Cleanup internal error message, do not
9650 use %p.
9651
9652 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9653
9654 * stack.c (select_frame): Check that selected_frame and the
9655 specified level are as expected.
9656 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
9657 Update copyright.
9658 * frame.h (struct frame_info): Add field `level'. Update
9659 copyright.
9660 Work-in-progress PR gdb/464.
9661
9662 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9663
9664 * maint.c (maint_print_section_info): Rename print_section_info.
9665 (print_bfd_section_info, print_objfile_section_info): Update.
9666 * inferior.h (struct gdbarch): Add opaque declaration.
9667 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
9668 * gdbarch.h: Regenerate.
9669
9670 2002-04-10 Michal Ludvig <mludvig@suse.cz>
9671
9672 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
9673 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
9674 (kernel_u_size): Added.
9675 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
9676 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
9677
9678 2002-04-04 Jim Ingham <jingham@apple.com>
9679
9680 * valarith.c (find_size_for_pointer_math): New function, either returns
9681 the size for a pointer's target, returns 1 for void *, or errors for
9682 incomplete types.
9683 (value_add, value_sub): use find_size_for_pointer_math.
9684
9685 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
9686
9687 * linux-low.c (linux_look_up_symbols): New hook.
9688 (linux_target_ops): Add linux_look_up_symbols.
9689 * remote-utils.c (decode_address): New function.
9690 (look_up_one_symbol): New function.
9691 * server.c (handle_query): Call target look_up_symbols hook.
9692 * server.h (look_up_one_symbol): Add prototype.
9693 * target.h (struct target_ops): Add look_up_symbols hook.
9694
9695 2002-04-09 Andrew Cagney <ac131313@redhat.com>
9696
9697 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
9698 override FP_REGNUM with frame->fp. Update copyright.
9699 * parse.c (num_std_regs, std_regs): Delete.
9700 (target_map_name_to_register): Do not search std_regs. Update
9701 function description.
9702 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
9703 declarations. Update copyright.
9704 Fix PR gdb/251.
9705
9706 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
9707
9708 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
9709 after the last symbol in a block.
9710
9711 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
9712
9713 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
9714 is non zero as a found symbol.
9715
9716 2002-04-08 Andrew Cagney <ac131313@redhat.com>
9717
9718 * findvar.c: Include "builtin-regs.h".
9719 (value_of_register): Call value_of_builtin_reg when applicable.
9720 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
9721 (target_map_name_to_register): Call
9722 builtin_reg_map_name_to_regnum.
9723 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
9724 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
9725 (builtin_regs_h): Define.
9726 (builtin-regs.o): New target.
9727 (findvar.o): Add $(builtin_regs_h).
9728 * builtin-regs.c, builtin-regs.h: New files.
9729 * std-regs.c: New file.
9730 Partial fix for PR gdb/251.
9731
9732 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9733
9734 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
9735 it's no longer required.
9736
9737 2002-04-08 Andrew Cagney <ac131313@redhat.com>
9738
9739 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
9740
9741 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9742
9743 From Jimi X <jimix@watson.ibm.com>:
9744 * rs6000-tdep.c (rs6000_software_single_step): Use
9745 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
9746 and size. Use target_insert_breakpoint() and
9747 target_remove_breakpoint() to insert and remove breakpoints
9748 instead of explicit memory reads and writes.
9749
9750 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9751
9752 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
9753 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
9754 ELF_OBJECT_FORMAT ifdef.
9755
9756 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9757
9758 From Jimi X <jimix@watson.ibm.com>:
9759 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
9760
9761 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9762
9763 From Jimi X <jimix@watson.ibm.com>:
9764 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
9765 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
9766
9767 2002-04-07 Mark Kettenis <kettenis@gnu.org>
9768
9769 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
9770 s/asprintf/xasprintf/.
9771 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
9772
9773 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9774
9775 I believe Jeff Law denies responsability for this one:
9776 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
9777 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
9778 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
9779 Work-around for PR gdb/366.
9780
9781 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
9782
9783 * remote-e7000.c (write_small, e7000_read_inferior_memory,
9784 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
9785 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
9786
9787 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
9788
9789 * sh-tdep.c (sh_fp_frame_init_saved_regs,
9790 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
9791 information.
9792
9793 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9794
9795 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
9796 maintainer.
9797
9798 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9799
9800 * README (Reporting Bugs in GDB): Document the bug web page as the
9801 prefered way of submitting bugs.
9802 Fix PR gdb/402.
9803
9804 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9805
9806 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
9807 -1. Update comment.
9808 * gdbarch.h, gdbarch.c: Re-generate.
9809
9810 2002-04-07 Andreas Schwab <schwab@suse.de>
9811
9812 * m68klinux-nat.c (fill_fpregset): Properly pass address of
9813 buffer to regcache_collect.
9814
9815 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9816
9817 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
9818 * gdbarch.c, gdbarch.h: Re-generate.
9819
9820 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9821
9822 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
9823 declaration. Fix -Werror.
9824
9825 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
9826
9827 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
9828 * gdbarch.c: Regenerate.
9829
9830 2002-04-05 Michael Snyder <msnyder@redhat.com>
9831
9832 * breakpoint.c (clear_command): Rewrite middle section to
9833 combine two loops with identical control conditions.
9834 Add a cleanup to eliminate a memory leak.
9835 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
9836
9837 2002-04-05 H.J. Lu (hjl@gnu.org)
9838
9839 * solib-svr4.c (bkpt_names): Add "__start".
9840
9841 2002-04-04 Andrew Cagney <ac131313@redhat.com>
9842
9843 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
9844 as test for 64 bit target.
9845
9846 2002-04-05 Andrew Cagney <ac131313@redhat.com>
9847
9848 * h8500-tdep.c (h8500_write_fp): Delete function.
9849 * dwarf2cfi.c (cfi_write_fp): Document as not used.
9850 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
9851 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
9852 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
9853 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
9854 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
9855 (s390_write_fp):
9856 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
9857 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
9858 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
9859 (d10v_write_fp): Delete function.
9860 * inferior.h (write_fp, generic_target_write_fp): Delete
9861 declarations.
9862 * regcache.c (generic_target_write_fp): Delete function.
9863 (write_fp): Delete function.
9864 * gdbarch.sh (TARGET_WRITE_FP): Delete.
9865 * gdbarch.h, gdbarch.c: Regenerate.
9866 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
9867 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
9868 (sparc64_write_fp): Delete declaration.
9869 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
9870 (h8500_write_fp): Delete declaration.
9871
9872 2002-04-04 Andrew Cagney <ac131313@redhat.com>
9873
9874 * sparc-tdep.c (sparc64_write_fp): Delete.
9875 (sparc_push_dummy_frame): Replace write_fp call with code to store
9876 the FP directly.
9877 (sparc_gdbarch_init): Do not initialize write_fp.
9878
9879 2002-04-05 Kevin Buettner <kevinb@redhat.com>
9880
9881 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
9882 clause.
9883
9884 2002-03-29 Jim Blandy <jimb@redhat.com>
9885
9886 * stack.c (get_selected_block): Add new argument `addr_in_block',
9887 used to return the exact code address we used to select the block,
9888 not just the block.
9889 * blockframe.c (get_frame_block, get_current_block): Same.
9890 * frame.h (get_frame_block, get_current_block,
9891 get_selected_block): Update declarations.
9892 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
9893 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
9894
9895 2002-04-05 Michael Snyder <msnyder@redhat.com>
9896
9897 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
9898 warning message.
9899
9900 2002-04-05 J. Brobecker <brobecker@gnat.com>
9901
9902 * utils.c (xfullpath): New function.
9903 * defs.h (xfullpath): Add declaration.
9904 * source.c (openp): Use xfullpath in place of gdb_realpath to
9905 avoid resolving the basename part of filenames when the
9906 associated file is a symbolic link. This fixes a potential
9907 inconsistency between the filenames known to GDB and the
9908 filenames it prints in the annotations.
9909 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
9910 to be able to match a filename with either the real filename, or
9911 the name of any symbolic link to this file.
9912 (lookup_partial_symtab): Ditto.
9913
9914 2002-04-04 Michael Snyder <msnyder@redhat.com>
9915
9916 * breakpoint.c: Add support for hardware breakpoints in overlays.
9917 (overlay_events_enabled): New state variable.
9918 (insert_breakpoints): Use overlay_events_enabled to decide
9919 whether to attempt to set a breakpoint at the overlay load addr.
9920 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9921 (remove_breakpoint): Use overlay_events_enabled to decide
9922 whether breakpoints need to be removed from overlay load addr.
9923 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9924 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
9925 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
9926 disable_overlay_breakpoints): Update overlay_events_enabled.
9927
9928 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
9929
9930 * dwarf2read.c (struct function_range): New.
9931 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
9932 (check_cu_functions): New.
9933 (read_file_scope): Initialize global function lists.
9934 Call dwarf_decode_line after processing children.
9935 (read_func_scope): Add to global function list.
9936 (dwarf_decode_lines): Call check_cu_functions everywhere
9937 record_line is called. Call record_line with a linenumber
9938 of 0 to mark sequence ends.
9939
9940 2002-04-04 Michal Ludvig <mludvig@suse.cz>
9941
9942 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
9943 change sync with glibc.
9944
9945 2002-04-03 Jim Blandy <jimb@redhat.com>
9946
9947 * configure.in: Call AC_C_INLINE.
9948 * configure: Regenerated.
9949
9950 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
9951
9952 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
9953 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
9954
9955 2002-03-31 Mark Kettenis <kettenis@gnu.org>
9956
9957 * NEWS: Mention gcore support on FreeBSD/i386.
9958
9959 * fbsd-proc.c: New file.
9960 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
9961 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
9962
9963 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
9964 while statement.
9965
9966 2002-03-29 Jim Blandy <jimb@redhat.com>
9967
9968 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
9969 unescaped newlines in string literals, but newer ones don't. So
9970 escape them.
9971
9972 2002-03-26 Michael Snyder <msnyder@redhat.com>
9973 Andrew Cagney <cagney@redhat.com>
9974
9975 * cli/cli-dump.c: New file. Dump memory to file,
9976 restore file to memory.
9977 * cli/cli-dump.h: New file.
9978 * Makefile.in: Add rules, dependencies for cli-dump.o.
9979 * NEWS: Mention new commands.
9980
9981 2002-03-28 Michael Snyder <msnyder@redhat.com>
9982
9983 * symfile.c (symbol_file_add): Move test for null symbols to later.
9984
9985 2002-03-27 Andrew Cagney <ac131313@redhat.com>
9986
9987 From veksler at il.ibm.com:
9988 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
9989 the xstrduped original path.
9990 Fix PR gdb/417.
9991
9992 2002-03-27 Michael Snyder <msnyder@redhat.com>
9993
9994 * breakpoint.c (_initialize_breakpoint): Clean up help string.
9995 * infcmd.c (_initialize_infcmd): Ditto.
9996 * language.c (_initialize_language): Ditto.
9997 * symfile.c (_initialize_symfile): Ditto.
9998 * top.c (_init_main): Ditto.
9999 * cli/cli-cmds.c (init_cli_cmds): Ditto.
10000
10001 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
10002
10003 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
10004 vector registers handling.
10005 (skip_prologue): Handle new AltiVec instructions. Fill in new
10006 fields of frame data.
10007 (frame_get_saved_regs): Fill in information for AltiVec registers.
10008
10009 2002-03-27 Jim Blandy <jimb@redhat.com>
10010
10011 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
10012 a function; leave this macro here to invoke that function.
10013 (symbol_init_mangled_name): Declaration for that function.
10014 * symtab.c (symbol_init_mangled_name): New function.
10015
10016 2002-03-27 Andrew Cagney <ac131313@redhat.com>
10017
10018 * valarith.c: Replace strerror with safe_strerror.
10019 * tracepoint.c: Ditto.
10020 * lin-lwp.c: Ditto.
10021 * go32-nat.c: Ditto.
10022 * inflow.c: Ditto.
10023 * gnu-nat.c: Ditto.
10024
10025 2002-03-27 Andreas Schwab <schwab@suse.de>
10026
10027 * event-top.c (command_line_handler): Remove useless if.
10028
10029 2002-03-27 Andreas Jaeger <aj@suse.de>
10030
10031 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
10032 comment.
10033
10034 2002-03-27 Michal Ludvig <mludvig@suse.cz>
10035
10036 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
10037 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
10038 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
10039 (x86_64_linux_dr_get_status, supply_gregset),
10040 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
10041 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
10042 (x86_64_register_info_table): Add.
10043 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
10044 (x86_64_register_raw_size, x86_64_register_virtual_type),
10045 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
10046 general x86_64_register_info_table.
10047 (i386_gdbarch_init): gdbarch_register_bytes is now set
10048 dynamicaly during initialization.
10049 * regformats/reg-x86-64.dat: Synced with changes to registers above.
10050 * gdbserver/linux-x86-64-low.c: Ditto.
10051
10052 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
10053
10054 * gdbserver/server.c (main): Call target_signal_to_host_p
10055 and target_signal_to_host on signals received from the remote.
10056 * gdbserver/remote-utils.c (prepare_resume_reply): Call
10057 target_signal_from_host on signals sent to the remote.
10058 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
10059 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
10060
10061 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
10062
10063 * signals/signals.c: Include "server.h" in gdbserver build.
10064 (target_signal_from_name): Don't use STREQ.
10065 (_initialize_signals): Likewise. Don't include function in
10066 gdbserver build.
10067
10068 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
10069
10070 * signals.c: Moved to...
10071 * signals/signals.c: Here.
10072 * Makefile (signals.o): Update.
10073
10074 2002-03-26 Jeff Law (law@redhat.com)
10075
10076 * somread.c (som_symtab_read): Remove some commented out code and
10077 updated related comments. Do not set the minimal symbol table to
10078 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
10079 in a dynamic executable.
10080 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
10081 where we are unable to find the minimal symbol for the given
10082 PC value.
10083
10084 2002-03-25 Jeff Law (law@redhat.com)
10085
10086 * linux-proc.c (read_mapping): Scan up to end of line for filename.
10087
10088 2002-03-25 Michal Ludvig <mludvig@suse.cz>
10089
10090 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
10091
10092 2002-03-23 Andrew Cagney <ac131313@redhat.com>
10093
10094 * command.h: Update copyright.
10095 (struct cmd_list_element): Replace definition with opaque
10096 declaration.
10097 (enum cmd_types): Document that it will eventually be moved to
10098 cli/cli-decode.h
10099 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
10100 (MALLOCED_REPLACEMENT): Delete macro.
10101 * Makefile.in (cli_decode_h): Add $(command_h).
10102 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
10103 * top.c: Include "cli/cli-decode.h".
10104 * completer.c: Include "cli/cli-decode.h".
10105 * maint.c: Include "cli/cli-decode.h".
10106 * cli/cli-decode.h: Include "command.h".
10107 (enum command_class): Delete.
10108 (enum cmd_types): Comment out.
10109 (enum cmd_auto_boolean): Delete.
10110 (enum var_types): Delete.
10111
10112 2002-03-23 Andrew Cagney <ac131313@redhat.com>
10113
10114 * cli/cli-decode.c: Include "gdb_assert.h".
10115 (add_set_or_show_cmd): New static function.
10116 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
10117 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
10118 all fields, such as func, from the set command.
10119
10120 2002-03-23 Andrew Cagney <ac131313@redhat.com>
10121
10122 * MAINTAINERS (sh-elf): Change warning flag to -w.
10123
10124 2002-03-23 Andrew Cagney <cagney@redhat.com>
10125
10126 * defs.h (error): Add printf format attribute.
10127 * thread-db.c (thread_from_lwp): Fix error format string.
10128 * stack.c (parse_frame_specification): Ditto.
10129 * cli/cli-decode.c (undef_cmd_error): Ditto.
10130 * scm-lang.c (scm_lookup_name): Ditto.
10131 * tracepoint.c (trace_error): Ditto.
10132 * remote-utils.c (usage): Ditto.
10133 * remote.c (compare_sections_command): Ditto.
10134 Fix PR gdb/328.
10135
10136 2002-03-22 Andrew Cagney <ac131313@redhat.com>
10137
10138 * gdbtypes.c (append_composite_type_field): New function.
10139 (init_composite_type): New function.
10140 * gdbtypes.h (append_composite_type_field): Declare.
10141 (init_composite_type): Ditto.
10142
10143 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
10144
10145 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
10146 function.
10147 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
10148 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
10149 structure returning convention for SYSV ABI case, but not
10150 for GNU/Linux, FreeBSD, or NetBSD.
10151
10152 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
10153
10154 * symtab.h (lookup_block_symbol): Add mangled_name argument
10155 to prototype.
10156
10157 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
10158 with new mangled_name argument.
10159 * linespec.c (decode_line_1): Likewise.
10160 * valops (value_of_this): Likewise.
10161 * symtab.c (lookup_transparent_type): Likewise.
10162 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
10163 (lookup_symbol): If we are given a mangled name, pass it down
10164 to lookup_symbol_aux.
10165 (lookup_block_symbol): If we are given a mangled name to check
10166 against, only return symbols which match it.
10167
10168 2002-03-22 Christopher Faylor <cgf@redhat.com>
10169
10170 * win32-nat.c (child_create_inferior): Check for proper shell to use
10171 here, in case the user changes it on the fly.
10172 (_initialize_inftarg): Remove shell path considerations.
10173
10174 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
10175
10176 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
10177 for gdbarch_max_register_raw_size and max_register_virtual_size.
10178 Adjust copyright year.
10179
10180 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
10181
10182 * dbxread.c (process_one_symbol): Extend the first N_SLINE
10183 in a function to cover the entire beginning of the function
10184 as well if it does not already.
10185
10186 2002-03-21 Tom Rix <trix@redhat.com>
10187
10188 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
10189 (rs6000_ptrace64): Renamed from ptrace64.
10190
10191 2002-03-20 Martin M. Hunt <hunt@redhat.com>
10192
10193 * gdbserver/remote-utils.c (remote_open): Don't call
10194 getprotobyname, we're all using TCP here so just use
10195 IPPROTO_TCP.
10196 * gdbserver/gdbreplay.c (remote_open): Ditto.
10197
10198 2002-03-20 Martin M. Hunt <hunt@redhat.com>
10199
10200 * regcache.c (_initialize_regcache): No need to call
10201 build_regcache() at this time; it gets called whenever
10202 the gdbarch changes.
10203
10204 2002-03-20 David O'Brien <obrien@FreeBSD.org>
10205
10206 * sparc-nat.c: Include sys/param.h where possible.
10207
10208 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
10209
10210 Fix PR gdb/422.
10211 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
10212 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
10213 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
10214 complex types.
10215 * stabsread.c (rs6000_builtin_type): Likewise.
10216 (read_sun_floating_type): Likewise.
10217
10218 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10219
10220 * stabsread.c (read_member_functions): Remove skip code for duplicate
10221 constructor/destructor methods. Use standard parsing for these
10222 methods and just do not chain them to the list of methods after
10223 parsing.
10224
10225 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
10226
10227 * coffread.c: Remove redundant static declarations. Replace
10228 occurrences of `PTR' with `void *'.
10229 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
10230 * top.h (quit_cover): Likewise.
10231 * defs.h (catch_errors): Likewise.
10232
10233 2002-03-18 Andrew Cagney <ac131313@redhat.com>
10234
10235 * defs.h (XMALLOC): Define.
10236 * gdb-events.sh (XMALLOC): Delete macro.
10237 * gdb-events.c, gdb-events.h: Regenerate.
10238 * gdbarch.sh (XMALLOC): Delete macro.
10239 * gdbarch.c: Regenerate.
10240 * serial.c (XMALLOC): Delete macro.
10241 * ui-file.c (XMALLOC): Ditto.
10242 * ser-unix.h (XMALLOC): Ditto.
10243 * sh-tdep.c (XMALLOC): Ditto.
10244 * ui-out.c (XMALLOC): Ditto.
10245 * utils.c (XMALLOC): Ditto.
10246 * i386-tdep.c (XMALLOC): Ditto.
10247 * gdb-events.c (XMALLOC): Ditto.
10248 * d10v-tdep.c (XMALLOC): Ditto.
10249 * cli-out.c (XMALLOC): Ditto.
10250
10251 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
10252 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
10253 * ui-file.c, ui-out.c: Ditto.
10254
10255 2002-03-18 Andrew Cagney <ac131313@redhat.com>
10256
10257 * command.h (struct cmd_list_element): Add field context.
10258 (set_cmd_context, get_cmd_context): Declare.
10259 * cli/cli-decode.h: Ditto.
10260 * cli/cli-decode.c (get_cmd_context): New function.
10261 (set_cmd_context): New function.
10262 (add_cmd): Initialize context.
10263 Part of fixing PR gdb/145 and PR gdb/146.
10264
10265 2002-03-17 Andrew Cagney <ac131313@redhat.com>
10266
10267 * cli/cli-decode.c (cmd_type): New function.
10268 * command.h (cmd_type): Declare.
10269 * infrun.c (set_schedlock_func): Call function cmd_type.
10270 * kod.c (kod_set_os): Call cmd_type.
10271 * cris-tdep.c (cris_version_update): Use function cmd_type.
10272 (cris_mode_update, cris_abi_update): Ditto.
10273
10274 * command.h: (execute_cmd_post_hook): Declare.
10275 (execute_cmd_pre_hook): Declare.
10276 * cli/cli-script.c (clear_hook_in_cleanup): New function.
10277 (execute_cmd_post_hook, execute_cmd_pre_hook): New
10278 functions. Execute pre/post hook while ensuring that afterwords
10279 hook_in is cleared.
10280 * top.c (execute_command): Use execute_cmd_post_hook, and
10281 execute_cmd_pre_hook to execute pre/post commands.
10282 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
10283 hook_stop_stub.
10284 (hook_stop_stub): Call execute_cmd_pre_hook.
10285
10286 2002-03-17 Andrew Cagney <ac131313@redhat.com>
10287
10288 * kod.c (kod_set_os): Revert previous change. Is called by ``info
10289 set'' and this leads to a core dump. Move xstrdup of
10290 operating_system to after check that it is not NULL.
10291
10292 2002-03-17 Andrew Cagney <ac131313@redhat.com>
10293
10294 * kod.c (kod_set_os): Remove unnecessary check that
10295 ``command->type'' is set_cmd.
10296
10297 * valprint.c (set_input_radix): Use input_radix.
10298 (set_output_radix): Use output_radix.
10299 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
10300 isn't reverted.
10301
10302 2002-03-16 Andrew Cagney <ac131313@redhat.com>
10303
10304 * value.h (struct value): Delete field ``substring_addr''. Change
10305 aligner fields to force_doublest_align, force_longest_align,
10306 force_core_addr_align and force_pointer_aligh.
10307
10308 * value.h (struct value): Fix typo in above change.
10309
10310 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10311
10312 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
10313 to fix internal_error from ``maintenance print architecture''.
10314
10315 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10316
10317 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
10318 for gcc versions after gcc-2.8.1.
10319
10320 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10321
10322 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
10323 for method resolution. Restore adjustment of ``this'' pointer after
10324 calling value_struct_elt, which was accidentally removed during the
10325 HP merge.
10326
10327 2002-03-15 Andrew Cagney <ac131313@redhat.com>
10328
10329 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
10330 value_of_register.
10331 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
10332 get_saved_register.
10333 * value.h (value_of_register): Update.
10334
10335 2002-03-14 Richard Henderson <rth@redhat.com>
10336
10337 * configure.in: Detect declaration for canonicalize_file_name.
10338 * utils.c (canonicalize_file_name): Declare, if needed.
10339 (gdb_realpath): Prefer realpath if available and usable.
10340 * config.in, configure: Rebuild.
10341
10342 2002-03-14 Richard Henderson <rth@redhat.com>
10343
10344 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
10345 a constant array bound.
10346
10347 * MAINTAINERS: Add myself to write-after-approval.
10348
10349 2002-03-14 Michael Snyder <msnyder@redhat.com>
10350
10351 * symfile.c (syms_from_objfile): Return immediately if no syms.
10352 (symbol_file_add): Return immediately if no syms.
10353 (find_sym_fns): Return immediately if no syms.
10354
10355 2002-03-13 Michal Ludvig <mludvig@suse.cz>
10356
10357 * gdbserver/remote-util.c (remote_open): Print remote-side's
10358 IP address when remote debugging over the network.
10359
10360 2002-03-12 David O'Brien <obrien@FreeBSD.org>
10361
10362 * config/sparc/fbsd.mh: Fix copyright.
10363 * config/sparc/fbsd.mt: Likewise.
10364
10365 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
10366
10367 * MAINTAINERS: Fix typo in name of gdb warnings option.
10368 (x86-64): Fix formating so that this can be parsed by awk.
10369
10370 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
10371
10372 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
10373 * defs.h: Include "gdb/signals.h".
10374 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
10375
10376 2002-03-10 Michal Ludvig <mludvig@suse.cz>
10377
10378 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
10379 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
10380 from x86-64-tdep.h
10381
10382 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
10383 Don Howard <dhoward@redhat.com>
10384
10385 * mips-tdep.c (ST0_FR): Define.
10386 (mips2_fp_compat): New function, temporarily disabled.
10387 (mips_read_fp_register_single): New function.
10388 (mips_read_fp_register_double): New function.
10389 (mips_print_register): Use them.
10390 (do_fp_register_row): Likewise.
10391
10392 2002-03-09 Andrew Cagney <ac131313@redhat.com>
10393
10394 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
10395 approval''.
10396
10397 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10398
10399 * stabsread.c (read_member_functions): Fix is_stub test for
10400 static member functions, improve comment.
10401
10402 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
10403
10404 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
10405 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
10406 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
10407 commands that set boolean values.
10408 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
10409 (arm_rdi_resume): Always initialize PC.
10410 (arm_rdi_open): Don't use rslt as a boolean.
10411 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
10412 (arm_rdi_fetch_registers, arm_rdi_store_registers)
10413 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
10414 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
10415
10416 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
10417
10418 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
10419 * configure: Rebuilt.
10420
10421 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
10422
10423 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
10424 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
10425
10426 2002-03-06 Andrew Cagney <ac131313@redhat.com>
10427
10428 * cli/cli-decode.c (set_cmd_completer): New function.
10429 * command.h (set_cmd_completer): Declare.
10430 * cli/cli-decode.h (set_cmd_completer): Ditto.
10431
10432 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
10433 * cli/cli-cmds.c (init_cli_cmds): Ditto.
10434 * win32-nat.c (_initialize_inftarg): Ditto.
10435 * remote-rdi.c (_initialize_remote_rdi): Ditto.
10436 * proc-api.c (_initialize_proc_api): Ditto.
10437 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
10438 * source.c (_initialize_source): Ditto.
10439 * exec.c (_initialize_exec): Ditto.
10440 * solib.c (_initialize_solib): Ditto.
10441 * top.c (init_main): Ditto.
10442 * tracepoint.c (_initialize_tracepoint): Ditto.
10443 * symfile.c (_initialize_symfile): Ditto.
10444 * printcmd.c (_initialize_printcmd): Ditto.
10445 * infcmd.c (_initialize_infcmd): Ditto.
10446 * corefile.c (_initialize_core): Ditto.
10447
10448 2002-03-05 Andrew Cagney <ac131313@redhat.com>
10449
10450 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
10451
10452 2002-03-05 Andrew Cagney <ac131313@redhat.com>
10453
10454 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
10455
10456 2002-03-05 Andrew Cagney <ac131313@redhat.com>
10457
10458 * NEWS: Update headings, 5.2 has branched.
10459
10460 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
10461
10462 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
10463 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
10464 (register_addr, REGISTER_RAW_SIZE): Likewise.
10465 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
10466 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
10467
10468 2002-03-03 Michal Ludvig <mludvig@suse.cz>
10469
10470 * MAINTAINERS (x86-64): Add myself.
10471 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
10472 changed value_ptr -> struct value *
10473
10474 2002-03-01 David O'Brien <obrien@FreeBSD.org>
10475
10476 * configure.host (sparc64-*-freebsd): Add.
10477 * configure.tgt: Likewise.
10478 * config/sparc/fbsd.mh: New file.
10479 * config/sparc/fbsd.mt: Likewise.
10480 * config/sparc/nm-fbsd.h: Likewise.
10481 * config/sparc/tm-fbsd.h: Likewise.
10482
10483 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
10484
10485 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
10486 regformats/reg-s390x.dat.
10487
10488 2002-03-01 Andrew Cagney <ac131313@redhat.com>
10489
10490 * utils.c: Add FIXME explaining true/false problem.
10491
10492 2002-02-28 Andrew Cagney <ac131313@redhat.com>
10493
10494 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
10495
10496 2002-02-28 Michael Chastain <mec@shout.net>
10497
10498 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
10499
10500 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
10501
10502 * gdbserver/linux-s390-low.c: New file.
10503 * regformats/reg-s390.dat: New file.
10504 * regformats/reg-s390x.dat: New file.
10505 * gdbserver/configure.srv: Add S/390.
10506 * gdbserver/Makefile.in: Add S/390.
10507 * configure.tgt: Enable gdbserver for S/390.
10508
10509 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
10510
10511 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
10512 first line of the doc string for "info dos", except at the end of
10513 the sentence, since the short help stops at the first period.
10514
10515 2002-02-28 Jason Merrill <jason@redhat.com>
10516
10517 * dwarf2read.c (dwarf_cfi_name): Add new codes.
10518
10519 2002-02-27 Fred Fish <fnf@redhat.com>
10520
10521 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
10522 comment (dumy -> dummy).
10523
10524 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10525
10526 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
10527
10528 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
10529
10530 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
10531
10532 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10533
10534 * gdbserver/acconfig.h: New file.
10535 * gdbserver/i387-fp.c: New file.
10536 * gdbserver/i387-fp.h: New file.
10537 * gdbserver/linux-x86-64.c: New file.
10538 * regformats/reg-x86-64.dat: New file.
10539 * configure.tgt: Add x86_64-*-linux* gdbserver support.
10540 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
10541 * gdbserver/configure.in: Add support for regsets.
10542 * gdbserver/config.in: Regenerate.
10543 * gdbserver/configure: Regenerate.
10544 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
10545 * gdbserver/linux-low.h: New file.
10546 * gdbserver/linux-low.c: Include "linux-low.h". Add support
10547 for regsets.
10548 * gdbserver/linux-arm-low.c: Include "linux-low.h".
10549 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
10550 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
10551 * gdbserver/linux-mips-low.c: Include "linux-low.h".
10552 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
10553 * gdbserver/linux-sh-low.c: Include "linux-low.h".
10554 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
10555 "i387-fp.h". Add PTRACE_GETREGS and friends.
10556 * gdbserver/regcache.c (supply_register): New function.
10557 (supply_register_by_name): New function.
10558 (collect_register): New function.
10559 (collect_register_by_name): New function.
10560
10561 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10562
10563 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
10564 (config.status): Add configure.srv dependency.
10565 (server_h): Add config.h dependency.
10566
10567 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10568
10569 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
10570 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
10571 * gdbserver/configure.srv: Change i386-*-linux* to use
10572 reg-i386-linux.o.
10573
10574 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10575
10576 * x86-64-tdep.c: Re-indent. Update copyright date.
10577
10578 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10579
10580 From Michal Ludvig <mludvig@suse.cz>:
10581 * x86-64-tdep.c (value.h): Delete.
10582 (gdb_assert.h): Include.
10583 (x86_64_register_convert_to_virtual,
10584 x86_64_register_convert_to_raw ): Add check which lets only
10585 floating-point values to be converted.
10586 (value_push): Delete.
10587 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
10588 (i386_gdbarch_init): Number of register_bytes fixed.
10589
10590 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10591
10592 * MAINTAINERS: Add x86-64 target.
10593
10594 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10595
10596 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
10597 * osfsolib.c (solib_map_sections): Ditto.
10598 * irix5-nat.c (solib_map_sections): Ditto.
10599 * corelow.c (gdb_check_format): Ditto.
10600 * symfile.c (symfile_bfd_open): Ditto.
10601 * solib.c (solib_map_sections): Ditto.
10602 Fix PR gdb/354.
10603
10604 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10605
10606 * remote.c (_initialize_remote): By default, disable ``e'' and
10607 ``E'' step out-of-range packets.
10608
10609 2002-02-26 Andreas Schwab <schwab@suse.de>
10610
10611 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
10612 m68k_linux_frame_saved_pc.
10613 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
10614 in_sigtramp.
10615 (SIGCONTEXT_PC_OFFSET): Remove.
10616 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
10617 m68k_linux_sigtramp_saved_pc): New functions.
10618 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
10619 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
10620 (UCONTEXT_PC_OFFSET): Define.
10621 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
10622 non-RT and RT signal trampolines.
10623
10624 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
10625
10626 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
10627 (TARGET_NBPG, STACK_END_ADDR): Delete
10628 (VARIABLES_INSIDE_BLOCK): Delete.
10629
10630 2002-02-25 Andrew Cagney <ac131313@redhat.com>
10631
10632 * utils.c (perror_with_name): Make string parameter constant.
10633 (print_sys_errmsg): Ditto.
10634 (query): Ditto.
10635 * defs.h (perror_with_name): Update.
10636 (print_sys_errmsg): Update.
10637 (query): Update.
10638
10639 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
10640
10641 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
10642 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
10643
10644 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10645
10646 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
10647 if it already matches the current architecture from the exec file.
10648 Include arch-utils.h for gdbarch_info_init prototype.
10649 * Makefile.in (rs6000-nat.o): Update dependencies.
10650
10651 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
10652
10653 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
10654 list of exported variables.
10655
10656 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
10657
10658 * gdbserver/configure.srv: New file.
10659 * gdbserver/configure.in: Use configure.srv instead
10660 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
10661 from it.
10662 * gdbserver/configure: Regenerated.
10663 * gdbserver/terminal.h: New file.
10664 * gdbserver/Makefile.in: Update for configure changes. Remove
10665 more unneeded include paths.
10666
10667 2002-02-24 Andrew Cagney <ac131313@redhat.com>
10668
10669 From wiz at danbala:
10670 * config/sparc/tm-sp64.h: Fix grammar and typos.
10671 Fix PR gdb/287.
10672
10673 2002-02-24 Andrew Cagney <ac131313@redhat.com>
10674
10675 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
10676 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
10677 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
10678 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
10679 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
10680 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
10681 * s390-tdep.c: Ditto.
10682 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
10683 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
10684 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
10685 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
10686 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
10687 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
10688 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
10689 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
10690 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
10691 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
10692 Fix PR gdb/378.
10693
10694 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10695
10696 * lin-thread.c: Delete file.
10697 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
10698 to gdb_proc_service.h.
10699 * configure: Re-generate.
10700
10701 * ocd.c (ocd_open): Do not try to open the "ocd" device.
10702 * serial.c (serial_open): Delete check for "ocd".
10703 Fix PR gdb/349.
10704
10705 * Makefile.in (linux-thread.o): Delete target.
10706 * linux-thread.c: Delete file.
10707
10708 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
10709 renamed SH files to be consistent.
10710
10711 * symtab.c (sort_search_symbols): Use xfree.
10712
10713 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10714
10715 * arm-linux-tdep.c (arm_linux_init_abi): Register
10716 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
10717 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
10718 definition with undef, since we don't want the sysvr4 definition.
10719 (SKIP_TRAMPOLINE_CODE): Likewise.
10720
10721 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10722
10723 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
10724
10725 * configure.in: (AC_CHECK_FUNCS) Added test for
10726 canonicalize_file_name Regenerated.
10727 * config.in, configure: Regenerated.
10728 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
10729 defined use canonicalize_file_name.
10730
10731 2002-02-23 Michael Chastain <mec@shout.net>
10732
10733 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
10734
10735 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10736
10737 * README: Remove references to cygnus.com.
10738 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
10739 dot com'' form. Remove references to cygnus.com and sourceware.
10740
10741 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10742
10743 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
10744 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
10745 1003.1-2001 no longer allows "head -1".
10746 * gdb/Makefile.in (version.c): Likewise.
10747 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
10748 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
10749 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
10750
10751 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10752
10753 * cli/cli-decode.c (cmd_cfunc_eq): New function.
10754 * command.h (cmd_cfunc_eq): Declare.
10755 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
10756
10757 * cli/cli-cmds.h (is_complete_command): Change parameter to a
10758 ``struct cmd_list_element *''.
10759 * cli/cli-cmds.c (is_complete_command): Update. Use
10760 cmd_cfunc_eq.
10761 * top.c (execute_command): Pass the command to
10762 is_complete_command.
10763 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
10764
10765 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10766
10767 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
10768 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
10769 architecture defines.
10770 * s390-tdep.c (s390_gdbarch_init): Likewise.
10771
10772 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10773
10774 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
10775 (arm_linux_push_arguments): Likewise.
10776 (arm_linux_init_abi): Register them. Also register linux-specific
10777 call_dummy_words.
10778 (find_minsym_and_objfile): Use strcmp, not STREQ.
10779 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
10780 (arm_linux_call_dummy_words): Delete declaration.
10781 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
10782 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
10783 declarations.
10784 (LOWEST_PC): Delete.
10785
10786 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10787
10788 * maint.c (print_section_info): Do not prepend `0x' to filepos
10789 output, it will be handled by local_hex_string_custom.
10790
10791 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10792
10793 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
10794 (store_newfpe_double, store_newfpe_extended, store_fpregister)
10795 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
10796
10797 2002-02-22 Jim Blandy <jimb@redhat.com>
10798
10799 Indicate that the bcache functions don't change the strings
10800 they're passed.
10801 * bcache.h (bcache, hash): Add `const' keywords to declarations.
10802 * bcache.c (bcache, hash): Add `const' keywords to definitions.
10803
10804 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
10805
10806 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
10807
10808 2002-02-21 Christopher Faylor <cgf@redhat.com>
10809
10810 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
10811 find the complete path to a loaded DLL.
10812
10813 2002-02-21 Fred Fish <fnf@redhat.com>
10814
10815 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
10816 that marks the end of the range of a function, enter a line number
10817 entry that has a line number of zero and a PC offset that matches
10818 the end of the function. This starts a range of PC's for which no
10819 line number information is known.
10820 * symtab.c (find_pc_sect_line): If our best fit is in a range of
10821 PC's for which no line number info is found (line number is zero)
10822 then we didn't find any valid line information.
10823 * symtab.h: Document use of zero line number entry.
10824
10825 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
10826
10827 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
10828 (have_ptrace_getvrregs): Define for run time checks.
10829 (gdb_vrregset_t): New type for Altivec register handling.
10830 (fetch_register, store_register): Fetch/store altivec register
10831 when needed.
10832 (fetch_altivec_register, store_altivec_register): New functions.
10833 (supply_vrregset, fill_vrregset): New functions.
10834 (fetch_altivec_registers, store_altivec_registers): New functions.
10835 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
10836 registers as well.
10837
10838 2002-02-21 Jiri Smid <smid@suse.cz>
10839
10840 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
10841
10842 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
10843
10844 * Makefile.in (armnbsd-nat.o): Update dependencies.
10845 * armnbsd-nat.c (supply_gregset): New function. Common code to
10846 supply the integer register set.
10847 (supply_fparegset): New function. Similar for FPA registers.
10848 (fetch_regs, fetch_fp_regs): Use them.
10849 (fetch_core_registers): Likewise.
10850 (fetch_elfcore_registers): New function.
10851 (arm_netbsd_elfcore_fns): New core-file type specification.
10852 (_initialize_arm_netbsd_nat): Register it.
10853
10854 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
10855
10856 * armnbsd-nat.c: Include gdbcore.h.
10857 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
10858 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
10859 'void' to declaration, to shut up ARI.
10860 (fetch_core_registers): Make static. Rewrite using supply_register.
10861 (arm_netbsd_core_fns): New core-file type specification.
10862 (_initialize_arm_netbsd_nat): New function.
10863
10864 2002-02-21 Christopher Faylor <cgf@redhat.com>
10865
10866 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
10867 value.
10868
10869 2002-02-20 Christopher Faylor <cgf@redhat.com>
10870
10871 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
10872 fails.
10873
10874 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10875
10876 * jv-exp.y (parse_number): Change type of implicit longs
10877 to builtin_type_uint64.
10878
10879 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10880
10881 * gdbserver/linux-low.c (mywait): Change argument to waitpid
10882 to be an integer instead of a `union wait'.
10883
10884 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10885
10886 * mips-linux-nat.c: Call the operating system GNU/Linux.
10887 * mips-linux-tdep.c: Likewise.
10888 * mips-tdep.c: Likewise.
10889
10890 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10891
10892 Fix PR gdb/265.
10893 * jv-exp.y (parse_number): Handle 64-bit integers.
10894
10895 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10896
10897 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
10898 AC_STDC_HEADERS to AC_HEADER_STDC.
10899 * gdbserver/configure: Regenerated.
10900
10901 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
10902
10903 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
10904 is defined.
10905 * sparc-tdep.c (get_longjmp_target): Likewise.
10906
10907 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
10908
10909 * News: Add news about ARM and Multi-arch. Mention the new target
10910 arm*-*-netbsd*.
10911
10912 2002-02-19 Jim Blandy <jimb@redhat.com>
10913
10914 * stabsread.c (error_type_complaint): Improve error message.
10915
10916 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
10917
10918 * gdbserver/README: Update documentation.
10919 * gdbserver/configure.in: Update configury to match documentation.
10920 * gdbserver/Makefile.in: Likewise.
10921 * gdbserver/configure: Regenerated.
10922 * gdbserver/aclocal.m4: New file, generated by aclocal.
10923 * gdbserver/config.in: New file, generated by autoheader.
10924
10925 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10926
10927 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
10928 armnbsd-nat.c.
10929
10930 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10931
10932 * arm-tdep.h (enum arm_float_model): New enum.
10933 (struct gdbarch_tdep): Add fp_model.
10934 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
10935 up floating-point conversions until we know the floating-point model
10936 in use by the inferior. Don't complain about being unable to
10937 determine the ABI of the inferior when we don't have one.
10938 (arm_extract_return_value): Support different floating-point models.
10939 (arm_store_return_value): Likewise.
10940 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
10941 ARM_FLOAT_SOFT.
10942 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
10943
10944 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10945
10946 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
10947 of ``current_gdbarch''.
10948
10949 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10950
10951 * armnbsd-nat.c : ANSIfy all function declarations.
10952 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
10953 (fetch_inferior_registers): Re-implement in terms of above.
10954 (store_register, store_regs, store_fp_register, store_fp_regs): New.
10955 (store_inferior_registers): Re-implement in terms of above.
10956
10957 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10958
10959 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
10960 kernel.
10961 * arm-linux-tdep.c: Likewise.
10962 * config/arm/tm-linux.h: Likewise.
10963
10964 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10965
10966 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
10967 * config/arm/nbsd.mt (TM_FILE): Delete.
10968 * config/arm/tm-nbsd.h: Delete.
10969
10970 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10971
10972 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
10973 Initialize CALL_DUMMY_LENGTH.
10974
10975 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10976
10977 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
10978 function.
10979 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
10980 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
10981 defines one thing and that is incorrect for this port.
10982 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
10983
10984 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
10985
10986 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
10987
10988 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
10989
10990 * win32-nat.c (display_selector): New function. Displays information
10991 about the information returned by GetThreadSelectorEntry API function.
10992 (display_selectors): New function. Displays the infomation of
10993 the selector given as argument, or of CS, DS ans FS selectors
10994 if no argument is given.
10995 ( _initialize_inftarg): Add "w32" as info prefix command.
10996 Add "info w32 selector" as command calling display_selectors.
10997
10998 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
10999
11000 * i386-tdep.c (get_longjmp_target): Fix compilation failure
11001 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
11002 if not defined.
11003
11004 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11005
11006 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
11007
11008 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11009
11010 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
11011 (arm_fix_call_dummy): Call it.
11012 (arm_call_dummy_breakpoint_offset): Delete.
11013 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
11014 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
11015
11016 2002-02-18 Andrew Cagney <ac131313@redhat.com>
11017
11018 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
11019 Default to func_frame_chain_valid.
11020 * gdbarch.h, gdbarch.c: Re-generate.
11021 * frame.h (FRAME_CHAIN_VALID): Delete definition.
11022
11023 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
11024
11025 * ppc-linux-nat.c: Update copyright.
11026 (fetch_register, store_register): Add tid parameter, don't compute
11027 tid here.
11028 (fetch_ppc_registers, store_ppc_registers): Add tid
11029 parameter. Pass it along to callees.
11030 (fetch_inferior_registers, store_inferior_registers): Compute tid
11031 here, and pass it to calleed functions.
11032 (fill_gregset, supply_fpregset): Clean up formatting.
11033
11034 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11035
11036 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
11037 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
11038
11039 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11040
11041 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
11042 * gdbarch.c gdbarch.h: Regenerate.
11043 * breakpoint.c (create_longjmp_breakpoint): Always compile this
11044 function.
11045 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
11046 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
11047 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
11048
11049 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
11050 * arm-tdep.c (arm_get_longjmp_target): New function.
11051 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
11052 this to a positive value register arm_get_longjmp_target as the
11053 longjmp handler.
11054 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
11055 (arm_linux_init_abi): Set up longjmp description in tdep.
11056 * armnbsd-nat.c (get_longjmp_target): Delete.
11057 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
11058 description in tdep.
11059 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
11060 (get_longjmp_target): Delete declaration.
11061 (GET_LONGJMP_TARGET): Delete.
11062 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
11063 (GET_LONGJMP_TARGET): Delete.
11064
11065 2002-02-17 Kevin Buettner <kevinb@redhat.com>
11066
11067 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
11068 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
11069 of ``current_gdbarch''.
11070
11071 2002-02-17 Tom Tromey <tromey@redhat.com>
11072
11073 * cli/cli-cmds.c (compare_strings): New function.
11074 (complete_command): Only print each unique item once.
11075 * completer.h (complete_line): Declare.
11076 * completer.c (complete_line): New function.
11077 (line_completion_function): Use it.
11078
11079 2002-02-16 Andrew Cagney <ac131313@redhat.com>
11080
11081 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
11082 * gdbarch.h, gdbarch.c: Re-generate.
11083
11084 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
11085
11086 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
11087
11088 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
11089
11090 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
11091 * valops.c (value_arg_coerce): Don't take the address of a reference
11092 to convert an argument to a reference.
11093
11094 2002-02-15 Christopher Faylor <cgf@redhat.com>
11095
11096 * win32-nat.c (get_image_name): New function.
11097 (handle_load_dll): Use get_image_name function.
11098 (get_child_debug_event): Avoid registering debug events until possibly
11099 execed process is started.
11100 (child_create_inferior): Allow invocation via shell so that command
11101 line redirection, etc. works ok.
11102 (_initialize_inftarg): Add new command: "set shell" to control whether
11103 a shell is used to start a process.
11104
11105 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
11106
11107 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
11108 instead of find_register_by_number.
11109 (cannot_store_register): Likewise.
11110
11111 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
11112
11113 * dwarf2read.c: Replace fprintf (stderr, ...) by
11114 fprintf_unfiltered (gdb_stderr, ...).
11115
11116 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
11117
11118 * gdbserver/gdbserver.1: Document --attach.
11119
11120 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
11121
11122 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
11123 descriptions.
11124 * arm-tdep.c (arm_default_arm_le_breakpoint)
11125 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
11126 (arm_default_thumb_be_breakpoint): New. Initialize them from
11127 traditional breakpoint defines.
11128 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
11129 (arm_gdbarch_init): Initialize new breakpoint variables.
11130 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
11131 (arm_linux_init_abi): Initialize linux-specific breakpoint.
11132 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
11133 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
11134 code out to ...
11135 (arm_netbsd_init_abi_common): ... here; new function.
11136 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
11137 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
11138 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
11139 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
11140
11141 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
11142
11143 * arm-tdep.h (enum arm_abi): New enum.
11144 (struct gdbarch_tdep): New structure.
11145 (LOWEST_PC): Provide a default.
11146 (arm_gdbarch_register_os_abi): Declare new function.
11147 * arm-tdep.c (arm_abi_names): New array.
11148 (process_note_abi_tag_sections): New function.
11149 (get_elfosabi): New function.
11150 (arm_gdbarch_register_os_abi): New function.
11151 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
11152 support for that ABI has been built in, then call the appropriate
11153 configuration routine. Use gdbarch_num_regs() to get the number
11154 of registers.
11155 (arm_dump_tdep): New function.
11156 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
11157 place-holder functions.
11158 (_initialize_arm_tdep): Register them.
11159 * config/arm/tm-arm.h (LOWEST_PC): Delete.
11160
11161 * armnbsd-tdep.c: New file.
11162 * Makefile.in (armnbsd-tdep.o): Add dependencies.
11163 * config/arm/nbsd.mt (TDEPFILES): Add it.
11164 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
11165
11166 * armnbsd-nat.c: Include regcache.h.
11167 * Makefile.in (armnbsd-nat.o): Update dependency list.
11168
11169 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
11170
11171 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11172
11173 * gdbserver/Makefile.in: Fix typos in target rules.
11174
11175 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11176
11177 Fix part of PR gdb/267.
11178 * linespec.c (find_methods): Handle constructors specially for now.
11179
11180 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
11181
11182 * arm-tdep.c (arm_push_arguments): Eliminate special float type
11183 handling.
11184 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
11185 standard_coerce_float_to_double().
11186
11187 2002-02-14 Christopher Faylor <cgf@redhat.com>
11188
11189 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
11190 GDBINIT_FILENAME.
11191
11192 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
11193
11194 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
11195 find_variant_by_name, because it confuses the multiarch
11196 framework. Return NULL if there isn't an architecture with the
11197 user supplied name, instead of forcing a different one without
11198 recording the change with the multiarch machinery.
11199 (find_variant_by_name): Delete.
11200
11201 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11202
11203 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
11204 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
11205
11206 2002-02-13 Martin M. Hunt <hunt@redhat.com>
11207
11208 * stack.c (print_frame_info_base): When calling
11209 print_frame_info_listing_hook, set current_source_symtab.
11210
11211 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11212
11213 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
11214 and remove unused $(INCLUDE_DIR).
11215 Add regcache.c to OBS.
11216 Add generated register protocol files to clean target.
11217 Update dependencies for new objects, obsolete old target code.
11218
11219 * gdbserver/linux-low.c: Remove all platform-specific code to
11220 new files. Remove various dead code. Update to use regcache
11221 functionality.
11222 * gdbserver/remote-utils.c (fromhex): Add return statement
11223 to quiet warning.
11224 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
11225 constant.
11226 (input_interrupt): Add integer parameter to match prototype
11227 of a signal handler.
11228 (outreg): Use register_data ().
11229 (prepare_resume_reply): Use gdbserver_expedite_regs.
11230 * gdbserver/server.c (main): Dynamically allocate own_buf because
11231 PBUFSIZ is no longer constant. Use registers_to_string () and
11232 registers_from_string ().
11233 * gdbserver/server.h: No longer include "defs.h". Add prototypes
11234 for error (), fatal (), and warning (). Update definition of
11235 PBUFSIZ to use regcache functionality. Add include guard.
11236 * gdbserver/utils.c (fatal): Add missing ``const''.
11237 (warning): New function.
11238
11239 * regformats/regdat.sh: Include "regcache.h" in generated files.
11240 Provide init_registers () function.
11241 * regformats/regdef.h: Add prototype for set_register_cache ().
11242 Add include guard.
11243
11244 * gdbserver/linux-arm-low.c: New file.
11245 * gdbserver/linux-i386-low.c: New file.
11246 * gdbserver/linux-ia64-low.c: New file.
11247 * gdbserver/linux-m68k-low.c: New file.
11248 * gdbserver/linux-mips-low.c: New file.
11249 * gdbserver/linux-ppc-low.c: New file.
11250 * gdbserver/linux-sh-low.c: New file.
11251
11252 * gdbserver/regcache.c: New file.
11253 * gdbserver/regcache.h: New file.
11254
11255 * gdbserver/low-linux.c: Removed obsolete file.
11256
11257 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11258
11259 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
11260 * config/i386/linux.mt: Likewise.
11261 * config/ia64/linux.mt: Likewise.
11262 * config/m68k/linux.mh: Likewise.
11263 * config/powerpc/linux.mh: Likewise.
11264 * config/mips/linux.mt: Likewise.
11265
11266 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
11267
11268 * config/i386/i386lynx.mh: Mark gdbserver variables
11269 as (currently) obsolete for this target.
11270 * config/i386/nbsd.mt: Likewise.
11271 * config/i386/nbsdelf.mt: Likewise.
11272 * config/m32r/m32r.mt: Likewise.
11273 * config/m68k/m68klynx.mh: Likewise.
11274 * config/m68k/nbsd.mt: Likewise.
11275 * config/m68k/sun3os4.mh: Likewise.
11276 * config/mips/vr5000.mt: Likewise.
11277 * config/ns32k/nbsd.mt: Likewise.
11278 * config/pa/hppabsd.mh: Likewise.
11279 * config/pa/hppaosf.mh: Likewise.
11280 * config/powerpc/nbsd.mt: Likewise.
11281 * config/rs6000/rs6000lynx.mh: Likewise.
11282 * config/s390/s390.mt: Likewise.
11283 * config/s390/s390x.mt: Likewise.
11284 * config/sparc/sparclynx.mh: Likewise.
11285 * config/sparc/sun4os4.mh: Likewise.
11286 * config/i386/x86-64linux.mt: Likewise.
11287 * config/sparc/linux.mh: Likewise.
11288
11289 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11290
11291 * configure.tgt: Configure gdbserver only for known working
11292 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
11293 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
11294 SUBDIRS if it is configured. Update comment for ${nativefile}.
11295 * configure: Regenerated.
11296
11297 2002-02-13 Michael Snyder <msnyder@redhat.com>
11298
11299 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
11300
11301 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
11302 (default_gcore_mach): Just return 0, work around a problem in bfd.
11303 (default_gcore_target): OK to return NULL if exec_bfd is null.
11304 (make_mem_sec): Use a cast, avoid a warning.
11305
11306 * procfs.c (find_memory_regions_callback): Use a cast instead of
11307 calling host_pointer_to_address (which complains if
11308 sizeof (host pointer) != sizeof (target pointer)).
11309 (procfs_make_note_section): Avoid overflow in psargs string.
11310
11311 * procfs.c (procfs_make_note_section): Make the default
11312 implementation return an error.
11313
11314 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
11315
11316 * procfs.c (procfs_make_note_section): Provide a default definition
11317 (for alpha-dec-osf4.0f). Fix typos.
11318
11319 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
11320
11321 * linux-proc.c: Add include of regcache.h.
11322 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
11323
11324 2002-02-13 Andrew Cagney <ac131313@redhat.com>
11325
11326 From 2002-01-18 Greg McGary <greg@mcgary.org>:
11327 * memattr.c (create_mem_region): Disallow useless empty region.
11328 Regions are half-open intervals, so allow [A..B) [B..C) as
11329 non-overlapping.
11330
11331 2002-02-13 Michael Chastain <mec@shout.net>
11332
11333 * defs.h: Kill CONST_PTR.
11334 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
11335 * c-lang.c (c_builtin_types): Likewise.
11336 * ch-lang.c (ch_builtin_types): Likewise.
11337 * f-lang.c (f_builtin_types): Likewise.
11338 * language.c (unknown_builtin_types): Likewise.
11339 * m2-lang.c (m2_builtin_types): Likewise.
11340 * p-lang.c (pascal_builtin_types): Likewise.
11341 * scm-lang.c (c_builtin_types): Likewise.
11342
11343 2002-02-13 Keith Seitz <keiths@redhat.com>
11344
11345 * arm-tdep.h (arm_get_next_pc): Add declaration.
11346
11347 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
11348
11349 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
11350 with other related struct-returning functions.
11351 (arm_extract_struct_value_address): New function.
11352 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
11353 initialize float_format, double_format and long_double_format as
11354 appropriate to the endianness of the target.
11355 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
11356 (arm_use_struct_convention): Delete declaration.
11357 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
11358
11359 2002-02-13 Keith Seitz <keiths@redhat.com>
11360
11361 * defs.h (core_addr_to_string_nz): New function.
11362
11363 2002-02-13 Mark Kettenis <kettenis@gnu.org>
11364
11365 Apply missing bits of 2002-01-15 patch.
11366 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
11367 (fill_fpregset): Use i387_fill_fsave.
11368
11369 2002-02-12 Keith Seitz <keiths@redhat.com>
11370
11371 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
11372 (core_addr_to_string_nz): New function.
11373
11374 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
11375
11376 * arm-linux-nat.c: Really include arm-tdep.h.
11377 * config/arm/tm-linux.h (struct type, struct value): Declare.
11378
11379 2002-02-11 Michael Snyder <msnyder@redhat.com>
11380
11381 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
11382 (gcore section): Ifdef for Solaris and Unixware only.
11383 (procfs_do_thread_registers): Unixware needs one lwpstatus
11384 per thread (not one prstatus or pstatus).
11385 (procfs_make_note_section): Iterate only over kernel threads (lwps),
11386 not over all gdb threads. For unixware, call elfcore_write_pstatus
11387 once before iterating over threads.
11388
11389 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
11390
11391 * arm-tdep.h: New file.
11392 * arm-tdep.c: Include arm-tdep.h.
11393 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
11394 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
11395 (arm_print_float_info, arm_register_type, convert_to_extended)
11396 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
11397 (arm_extract_return_value, arm_register_name): Make static.
11398 (arm_software_single_step): Similarly. Fix types in declaration.
11399 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
11400 (arm_store_return_value, arm_store_struct_return): New functions.
11401 (arm_gdbarch_init): Register the above functions. Also register
11402 call_dummy_start_offset, sizeof_call_dummy_words,
11403 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
11404 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
11405 max_register_virtual_size, register_size. Set up
11406 prologue_cache.saved_regs here, rather than ...
11407 (_initialize_arm_tdep): ... here.
11408 * config/arm/tm-arm.h (struct type, struct value): Delete forward
11409 declarations.
11410 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
11411 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
11412 (arm_print_float_info, arm_register_type, convert_to_extended)
11413 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
11414 (arm_extract_return_value, arm_register_name): Delete declarations.
11415 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
11416 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
11417 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
11418 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
11419 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
11420 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
11421 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
11422 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
11423 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
11424 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
11425 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
11426 (arm_get_next_pc): No-longer static -- these are needed by the RDI
11427 interface.
11428 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
11429 * remote-rdi.c remote-rdp.c: Likewise.
11430 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
11431 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
11432 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
11433 definition.
11434
11435 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
11436 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
11437 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
11438 from non-ARM_ prefixed definitions.
11439 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
11440 all uses of above.
11441 * remote-rdi.c remote-rdp.c: Likewise.
11442 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
11443
11444 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
11445
11446 * arm-tdep.c (arm_frameless_function_invocation)
11447 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
11448 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
11449 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
11450 (arm_pop_frame, arm_get_next_pc): Make static.
11451 (arm_gdbarch_init): Register above in gdbarch structure.
11452 (arm_read_fp): Renamed from arm_target_read_fp.
11453 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
11454 * config/arm/tm-arm.h (arm_frameless_function_invocation)
11455 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
11456 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
11457 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
11458 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
11459 (arm_pc_is_thumb_dummy): Delete declarations.
11460 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
11461 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
11462 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
11463 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
11464
11465 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
11466
11467 * symtab.c (compare_search_syms): New function.
11468 (sort_search_symbols): New function.
11469 (search_symbols): Sort symbols after searching rather than
11470 before.
11471
11472 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11473
11474 * NEWS: Linux -> GNU/Linux.
11475
11476 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11477
11478 * gdbarch.sh: For for level one methods, disallow a definition
11479 when partially multi-arched. Add comments explaining rationale.
11480 * gdbarch.h: Re-generate.
11481
11482 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11483
11484 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
11485 multi-arch partial.
11486
11487 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11488
11489 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
11490 field. Use diff -u.
11491 * gdbarch.c: Re-generate.
11492
11493 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11494
11495 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
11496 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
11497 partial.
11498
11499 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11500
11501 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
11502 multi-arch partial.
11503 (PUSH_ARGUMENTS): Switch to using predefault.
11504 * gdbarch.c: Regenerate.
11505
11506 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11507
11508 * valops.c (PUSH_ARGUMENTS): Delete definition.
11509 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
11510 partial. Default to default_push_arguments.
11511 * gdbarch.h, gdbarch.c: Regenerate.
11512
11513 2002-02-09 Andrew Cagney <ac131313@redhat.com>
11514
11515 * defs.h (throw_exception): Rename return_to_top_level. Update
11516 comments.
11517 * utils.c (error_stream, internal_verror, quit): Ditto.
11518 * top.c (throw_exception, catcher): Ditto.
11519 * sparclet-rom.c (sparclet_load): Ditto.
11520 * remote.c (interrupt_query, minitelnet): Ditto.
11521 * remote-sds.c (interrupt_query): Ditto.
11522 * remote-mips.c (mips_error, mips_kill): Ditto.
11523 * ocd.c (interrupt_query): Ditto.
11524 * monitor.c (monitor_interrupt_query): Ditto.
11525 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
11526 * target.h: Update comment.
11527
11528 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
11529
11530 2002-02-09 Andrew Cagney <ac131313@redhat.com>
11531
11532 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
11533 default_double_format.
11534 * gdbarch.h, gdbarch.c: Re-generate.
11535 * findvar.c (floatformat_unknown): Delete variable definition.
11536 * doublest.h (floatformat_unknown): Delete variable declaration.
11537
11538 2002-02-09 Jim Blandy <jimb@redhat.com>
11539
11540 * stabsread.c (read_type): Add code to parse Sun's syntax for
11541 prototyped function types.
11542
11543 2002-02-09 Andrew Cagney <ac131313@redhat.com>
11544
11545 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
11546 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
11547
11548 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11549
11550 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
11551 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
11552 now _initialize_xcoffsolib gets called again and overrides the
11553 commands from solib.c in a native configuration.
11554
11555 2002-02-09 Mark Kettenis <kettenis@gnu.org>
11556
11557 * doublest.c (store_typed_floating): Don't try to return a value.
11558 Fixes PR gdb/290.
11559
11560 2002-02-08 Jim Blandy <jimb@redhat.com>
11561
11562 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
11563 is prototyped and has no arguments, print its argument list as
11564 `(void)'.
11565
11566 2002-02-08 Chris Demetriou <cgd@broadcom.com>
11567
11568 * MAINTAINERS (write-after-approval): Add myself.
11569 (paper-trail): I've escaped!
11570
11571 2002-02-08 Christopher Faylor <cgf@redhat.com>
11572
11573 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
11574 changes.
11575 (_initialize_check_for_gdb_ini): Ditto.
11576
11577 2002-02-08 Martin M. Hunt <hunt@redhat.com>
11578
11579 * win32-nat.c (cygwin_pid_to_str): Fix typo.
11580 xaprintf -> xasprintf.
11581
11582 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
11583
11584 * win32-nat.c: Remove use of printf and sprintf functions.
11585
11586 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
11587
11588 * arm-tdep.c (arm_frame_chain_valid): Make static.
11589 (arm_push_arguments): Likewise.
11590 (arm_gdbarch_init): New function.
11591 (_initialize_arm_tdep): Call it.
11592 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
11593 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
11594 (FRAME_CHAIN_VALID): Delete.
11595 (arm_frame_chain_valid): Delete declaration.
11596 (PUSH_ARGUMENTS): Delete.
11597 (arm_push_arguments): Delete declaration.
11598 (CALL_DUMMY_P): Delete.
11599
11600 2002-02-08 Andrew Cagney <ac131313@redhat.com>
11601 Corinna Vinschen <vinschen@redhat.com>
11602
11603 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
11604 on builtin float types.
11605
11606 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
11607
11608 * utils.c: Include <curses.h> before "bfd.h".
11609 * tui/tui-hooks.c: Likewise.
11610 * tui/tui.c: Likewise.
11611 * tui/tuiCommand.c: Likewise.
11612 * tui/tuiData.c: Likewise.
11613 * tui/tuiDataWin.c: Likewise.
11614 * tui/tuiDisassem.c: Likewise.
11615 * tui/tuiGeneralWin.c: Likewise.
11616 * tui/tuiIO.c: Likewise.
11617 * tui/tuiLayout.c: Likewise.
11618 * tui/tuiRegs.c: Likewise.
11619 * tui/tuiSource.c: Likewise.
11620 * tui/tuiSourceWin.c: Likewise.
11621 * tui/tuiStack.c: Likewise.
11622 * tui/tuiWin.c: Likewise.
11623
11624 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
11625
11626 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
11627 to include space for pseudoregs as well. Update loops accordingly.
11628 (sh_fp_frame_init_saved_regs): Ditto.
11629 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
11630
11631 2002-02-07 Andrew Cagney <ac131313@redhat.com>
11632
11633 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
11634 Add Richard Earnshaw to Arm maintainers.
11635
11636 2002-02-07 Andrew Cagney <ac131313@redhat.com>
11637
11638 * defs.h (warning_begin): Delete declaration.
11639
11640 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
11641 Delete macro.
11642
11643 2002-02-07 Michael Snyder <msnyder@redhat.com>
11644
11645 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
11646 Logic bug, remove misplaced else.
11647
11648 2002-02-07 Klee Dienes <klee@apple.com>
11649
11650 * fork-inferior.c (fork_inferior): Add '!' to the list of
11651 characters that need to be quoted when building a string for the
11652 shell. Quote '!' specifically with a backslash, since CSH chokes
11653 when trying to evaluate "str!str".
11654
11655 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
11656
11657 * rdi-share/host.h: Only provide a typedef for bool if it is not
11658 defined.
11659
11660 2002-02-04 Michael Snyder <msnyder@redhat.com>
11661
11662 * breakpoint.h (enum bptype): Add new overlay event bp type.
11663 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
11664
11665 * breakpoint.c (create_internal_breakpoint): New function.
11666 (internal_breakpoint_number): Moved into create_internal_breakpoint.
11667 (create_longjmp_breakpoint): Use create_internal_breakpoint.
11668 (create_thread_event_breakpoint): Ditto.
11669 (create_solib_event_breakpoint): Ditto.
11670 (create_overlay_event_breakpoint): New function.
11671 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
11672 (update_breakpoints_after_exec): Delete and re-initialize
11673 overlay event breakpoints after an exec. Add FIXME comment
11674 about longjmp breakpoint.
11675 (print_it_typical): Ignore overlay event breakpoints.
11676 (print_one_breakpoint): Ditto.
11677 (mention): Ditto.
11678 (bpstat_what): Do not stop for overlay event breakpoints.
11679 (delete_breakpoint): Don't delete overlay event breakpoints.
11680 (breakpoint_re_set_one): Delete the overlay event breakpoint.
11681 (breakpoint_re_set): Re-create overlay event breakpoint.
11682
11683 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
11684 (overlay_manual_command): Disable overlay breakpoints.
11685 (overlay_off_command): Disable overlay breakpoints.
11686
11687 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11688
11689 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
11690 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
11691 to here from config/tm-arm.h.
11692 (coff_sym_is_thumb): Make static.
11693 (arm_elf_make_msymbol_special): New function.
11694 (arm_coff_make_msymbol_special): New function.
11695 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
11696 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
11697 (coff_sym_is_thumb): Delete declaration.
11698 (arm_elf_make_msymbol_special): Declare.
11699 (arm_coff_make_msymbol_special): Declare.
11700 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
11701 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
11702
11703 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11704
11705 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
11706
11707 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11708
11709 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
11710 * gdbarch.c gdbarch.h: Regenerate.
11711 * arch-utils.c (default_print_float_info): New function.
11712 * arch-utils.h (default_print_float_info): Prototype it.
11713 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
11714 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
11715 (PRINT_FLOAT_INFO): Document it.
11716
11717 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
11718 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
11719 (PRINT_FLOAT_INFO): Define.
11720
11721 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
11722
11723 * win32-nat.c (_initialize_check_for_gdb_ini):
11724 Add typecast to sprintf argument to suppress a warning.
11725
11726 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
11727
11728 * win32-nat.c (last_sig): Changed type of variable to target_signal,
11729 to allow easier handling of pass state.
11730 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
11731 that gives exception name and address.
11732 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
11733 and set last_sig value to ourstatus->value.sig. Some missing
11734 exceptions added.
11735 (child_continue): Correctly report continue_status.
11736 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
11737 TARGET_SIGNAL_0 (new default value).
11738 (child_resume): consider sig argument passed to decide if
11739 the exception should be passed to debuggee or not.
11740
11741 2002-02-05 Michael Snyder <msnyder@redhat.com>
11742
11743 * regcache.c (fetch_register): Call target_fetch_register
11744 only if we don't call FETCH_PSEUDO_REGISTER.
11745 (store_register): Call target_store_register only if we
11746 don't call STORE_PSEUDO_REGISTER.
11747
11748 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
11749
11750 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
11751 ELF_MAKE_MSYMBOL_SPECIAL.
11752 * gdbarch.c, gdbarch.h: Regenerate.
11753 * arch-utils.c (default_make_msymbol_special): New function.
11754 * arch-utils.h (default_make_msymbol_special): Export.
11755 * elfread.c (elf_symtab_read): Compile use of
11756 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
11757 multiarched.
11758 * coffread.c (coff_symtab_read): Ditto, for
11759 COFF_MAKE_MSYMBOL_SPECIAL.
11760
11761 2002-02-05 Jim Blandy <jimb@redhat.com>
11762
11763 * solib-svr4.c (svr4_truncate_ptr): New function.
11764 (svr4_relocate_section_addresses): Do the address arithmetic with
11765 the appropriate truncation for target addresses, even when
11766 CORE_ADDR is larger than a target address.
11767
11768 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11769
11770 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
11771 to (int *).
11772
11773 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11774
11775 * gdbserver/linux-low.c (kill_inferior): Remove commented out
11776 code.
11777
11778 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11779
11780 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
11781
11782 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11783
11784 * gdbserver/linux-low.c: Remove unused include files.
11785
11786 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11787
11788 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
11789 (read_inferior_memory): Use it.
11790 (write_inferior_memory): Likewise.
11791
11792 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11793
11794 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
11795 grubbing through sys_errlist.
11796
11797 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11798
11799 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
11800
11801 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11802 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
11803
11804 2002-02-04 Andrew Cagney <ac131313@redhat.com>
11805
11806 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
11807 (do_sfunc, set_cmd_sfunc): New functions.
11808
11809 * command.h (struct cmd_list_element): Add field func.
11810 * cli/cli-decode.h (struct cmd_list_element): Ditto.
11811 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
11812 * cli/cli-decode.h: Ditto.
11813
11814 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
11815 (help_all, help_cmd_list): Ditto.
11816 (find_cmd, complete_on_cmdlist): Ditto.
11817 * top.c (execute_command): Ditto.
11818
11819 * cli/cli-setshow.c (do_setshow_command): Call func instead of
11820 function.sfunc.
11821
11822 * infcmd.c (notice_args_read): Fix function signature.
11823
11824 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
11825 * cli/cli-decode.c (add_set_cmd): Ditto.
11826 * utils.c (initialize_utils): Ditto.
11827 * maint.c (_initialize_maint_cmds): Ditto.
11828 * infrun.c (_initialize_infrun): Ditto.
11829 * demangle.c (_initialize_demangler): Ditto.
11830 * remote.c (add_packet_config_cmd): Ditto.
11831 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11832 * cris-tdep.c (_initialize_cris_tdep): Ditto.
11833 * proc-api.c (_initialize_proc_api): Ditto.
11834 * kod.c (_initialize_kod): Ditto.
11835 * valprint.c (_initialize_valprint): Ditto.
11836 * top.c (init_main): Ditto.
11837 * infcmd.c (_initialize_infcmd): Ditto.
11838 * corefile.c (_initialize_core): Ditto.
11839 * arm-tdep.c (_initialize_arm_tdep): Ditto.
11840 * arch-utils.c (initialize_current_architecture): Ditto.
11841 (_initialize_gdbarch_utils): Ditto.
11842 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
11843
11844 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
11845 * wince.c (_initialize_inftarg): Ditto.
11846 * symfile.c (_initialize_symfile): Ditto.
11847 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11848 * language.c (_initialize_language): Ditto.
11849 * arc-tdep.c (_initialize_arc_tdep): Ditto.
11850
11851 2002-02-04 Michael Snyder <msnyder@redhat.com>
11852
11853 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
11854
11855 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11856
11857 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
11858 Add rules for building the register data files.
11859
11860 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11861
11862 * regformats/regdat.sh: Add braces to the definition of
11863 expedite_regs_${arch}.
11864
11865 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11866
11867 * regformats/regdef.h (struct reg): Add comment describing the
11868 requirements for offset and size fields.
11869
11870 2002-02-04 Andreas Schwab <schwab@suse.de>
11871
11872 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
11873 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
11874
11875 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
11876
11877 * gdbarch.sh (copyright): Update years in generated header.
11878 (SMASH_TEXT_ADDRESS): Add rule.
11879 * gdbarch.h, gdbarch.c: Re-generate.
11880 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
11881 * dbxread.c: Likewise.
11882 * dwarfread.c: Likewise.
11883 * elfread.c: Likewise.
11884 * somread.c: Likewise.
11885
11886 * arm-tdep.c (arm_smash_text_address): New function.
11887 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
11888
11889 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11890
11891 Add support for hardware watchpoints on win32 native.
11892 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
11893 CONTEXT_DEBUG_REGISTERS.
11894 (dr variable): New variable. Static array containing a local copy
11895 of debug registers.
11896 (debug_registers_changed): New variable. Reflects when debug registers
11897 are changed and need to be written to inferior.
11898 (debug_registers_used): New variable. Reflects when any debug register
11899 was set, used when new threads are created.
11900 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
11901 i386-nat code.
11902 (thread_rec): Set dr array if id is the thread of current_event .
11903 (child_continue, child_resume): Change the debug registers for all
11904 threads if debug_registers_changed.
11905 (child_add_thread): Change the debug registers if debug_registers_used.
11906 * config/i386/cygwin.mh: Add use of i386-nat.o file.
11907 Link nm.h to new nm-cygwin.h file.
11908 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
11909 of hardware registers.
11910
11911 2002-02-03 Andrew Cagney <ac131313@redhat.com>
11912
11913 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
11914 Restore behavour broken by 2002-01-20 Andrew Cagney
11915 <ac131313@redhat.com> IEEE_FLOAT removal.
11916
11917 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11918
11919 * c-valprint.c (c_val_print): Pass a proper valaddr to
11920 cp_print_class_method.
11921 * valops.c (search_struct_method): If there is only one method
11922 and args is NULL, return that method.
11923
11924 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11925
11926 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
11927 accessing tag_name directly.
11928
11929 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11930
11931 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
11932 of accessing tag_name directly.
11933
11934 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11935
11936 PR gdb/280
11937 * gdbtypes.c (replace_type): New function.
11938 * gdbtypes.h (replace_type): Add prototype.
11939 * stabsread.c (read_type): Use replace_type.
11940
11941 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
11942
11943 * Makefile.in (memattr.o): Add missing dependencies rule.
11944
11945 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11946
11947 * breakpoint.c (break_at_finish_command): Really export.
11948 (break_at_finish_at_depth_command): Ditto.
11949 (tbreak_at_finish_command): Ditto.
11950 * hppa-tdep.c: Include completer.h.
11951 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
11952 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
11953
11954 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11955
11956 * utils.c (do_write): New function.
11957 (error_stream): Rewrite combining the code from error_begin and
11958 verror.
11959 (verror): Rewrite using error_stream.
11960 (error_begin): Delete function.
11961
11962 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11963
11964 * utils.c (error_begin): Make static.
11965 * defs.h (error_begin): Delete declaration.
11966
11967 * linespec.c (cplusplus_error): Replace cplusplus_hint.
11968 (decode_line_1): Use cplusplus_error instead of error_begin,
11969 cplusplus_hint and return_to_top_level.
11970 * coffread.c (coff_symfile_read): Use error instead of error_begin
11971 and return_to_top_level.
11972 * infrun.c (default_skip_permanent_breakpoint): Ditto.
11973
11974 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11975
11976 * language.h (type_error, range_error): Make string parameter
11977 constant.
11978 * language.c (warning_pre_print): Delete extern declaration.
11979 * dwarfread.c (warning_pre_print): Ditto.
11980 * language.c (type_error, range_error): Rewrite to use verror and
11981 vwarning instead of warning_begin.
11982
11983 2002-02-01 Michael Snyder <msnyder@redhat.com>
11984
11985 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
11986 (set_ignore_count): Move misplaced comment back where it belongs.
11987
11988 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11989
11990 * command.h (NO_FUNCTION): Delete macro.
11991 * cli/cli-decode.h (NO_FUNCTION): Ditto.
11992 * top.c (execute_command): Replace NO_FUNCTION with NULL.
11993 * tracepoint.c (_initialize_tracepoint): Ditto.
11994 * cli/cli-decode.c (add_set_cmd): Ditto.
11995 * cli/cli-cmds.c (init_cli_cmds): Ditto.
11996
11997 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
11998
11999 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
12000 Update ``this'' pointer when calling virtual functions.
12001
12002 2002-02-01 Michael Snyder <msnyder@redhat.com>
12003
12004 * breakpoint.c (create_temp_exception_breakpoint): Delete.
12005 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
12006
12007 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
12008
12009 * regformats/reg-arm.dat: New file.
12010 * regformats/reg-i386.dat: New file.
12011 * regformats/reg-ia64.dat: New file.
12012 * regformats/reg-m68k.dat: New file.
12013 * regformats/reg-mips.dat: New file.
12014 * regformats/reg-ppc.dat: New file.
12015 * regformats/reg-sh.dat: New file.
12016 * regformats/regdef.h: New file.
12017 * regformats/regdat.sh: New file.
12018
12019 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
12020
12021 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
12022 (arm_frame_args_address, arm_frame_locals_address): New functions.
12023 (arm_frame_num_args): New function.
12024 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
12025 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
12026 (FRMA_NUM_ARGS): Call arm_frame_num_args.
12027
12028 2002-01-31 Michael Snyder <msnyder@redhat.com>
12029
12030 * breakpoint.c (break_at_finish_command): Export.
12031 (break_at_finish_at_depth_command): Export.
12032 (tbreak_at_finish_command): Export.
12033 (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
12034 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
12035 "txbreak" commands, which are HPPA specific.
12036
12037 * printcmd.c (disassemble_command): Remove an ancient
12038 artifact of an old merge.
12039
12040 * symfile.h (enum overlay_debugging_state):
12041 Define enum constant values for overlay mode.
12042 * symfile.c (overlay_debugging): Use enums instead of literals.
12043 (overlay_is_mapped, overlay_auto_command,
12044 overlay_manual_command): Ditto.
12045
12046 * breakpoint.c (insert_breakpoints, remove_breakpoint,
12047 breakpoint_here_p, breakpoint_inserted_here_p,
12048 breakpoint_thread_match, bpstat_stop_status,
12049 describe_other_breakpoints, check_duplicates, clear_command):
12050 Coding standard fixes.
12051
12052 * target.c (target_xfer_memory): Add spaces, coding standard.
12053 (do_xfer_memory): Add missing line to trust-readonly
12054 code: check bfd SEC_READONLY flag for section.
12055
12056 2002-01-31 Andrew Cagney <ac131313@redhat.com>
12057
12058 * PROBLEMS: Fix typo, 5.1->5.1.1.
12059
12060 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
12061
12062 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
12063 data symbols, since we search based on textlow and texthigh.
12064 (find_pc_sect_symtab): Likewise.
12065
12066 2002-01-30 Andrew Cagney <ac131313@redhat.com>
12067
12068 * defs.h (vwarning): Declare.
12069 * utils.c (vwarning): New function.
12070 (warning): Call vwarning.
12071 (warning_begin): Delete function.
12072
12073 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
12074 the warning message.
12075 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
12076 warning_begin.
12077
12078 2002-01-30 Michael Snyder <msnyder@redhat.com>
12079
12080 * NEWS: Mention "set trust-readonly-sections" command.
12081 Mention generate-core-file command.
12082
12083 2002-01-15 Michael Snyder <msnyder@redhat.com>
12084
12085 * target.c: New command, "set trust-readonly-sections on".
12086 (do_xfer_memory): Honor the suggestion to trust readonly sections
12087 by reading them from the object file instead of from the target.
12088 (initialize_targets): Register command "set trust-readonly-sections".
12089
12090 2002-01-29 Andrew Cagney <ac131313@redhat.com>
12091
12092 * parse.c (target_map_name_to_register): Simplify, search regs and
12093 pseudo-regs using a single loop.
12094
12095 2002-01-30 Andrew Cagney <ac131313@redhat.com>
12096
12097 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
12098
12099 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
12100
12101 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
12102 * config/i386/i386v42mp.mh: Add i387-nat.o .
12103 * i386v4-nat.c: Include i387-nat.h.
12104 (supply_fpregset): Use i387_supply_fsave.
12105 (fill_fpregset): Use i387_fill_fsave.
12106
12107 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
12108
12109 * arm-tdep.c (arm_call_dummy_words): Define.
12110 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
12111 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
12112 (CALL_DUMMY_WORDS): Define.
12113 (arm_call_dummy_words): Declare.
12114 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
12115 (arm_linux_call_dummy_words): Declare.
12116
12117 2002-01-30 Andreas Schwab <schwab@suse.de>
12118
12119 * m68klinux-nat.c: Fix last change to use regcache_collect
12120 instead of referencing registers[] directly.
12121
12122 2002-01-29 Andrew Cagney <ac131313@redhat.com>
12123
12124 * parse.c (target_map_name_to_register): Delete code wrapped in
12125 #ifdef REGISTER_NAME_ALIAS_HOOK.
12126
12127 2002-01-28 Michael Snyder <msnyder@redhat.com>
12128
12129 * regcache.c (legacy_read_register_gen): Need to be able to
12130 read pseudo-register as well as real register.
12131 (legacy_write_register_gen): Ditto.
12132
12133 2002-01-28 Andrew Cagney <ac131313@redhat.com>
12134
12135 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
12136 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
12137 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
12138 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
12139 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
12140 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
12141 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
12142 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
12143 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
12144 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
12145 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
12146 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
12147 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
12148 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
12149 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
12150 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
12151 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
12152 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
12153 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
12154 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
12155
12156 2002-01-28 Andrew Cagney <ac131313@redhat.com>
12157
12158 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
12159 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
12160 (initialize_current_architecture): Update target_byte_order using
12161 information from BFD.
12162 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
12163 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
12164
12165 2002-01-28 Andrew Cagney <ac131313@redhat.com>
12166
12167 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
12168 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
12169
12170 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
12171 #ifdef INVALID_FLOAT.
12172 * infcmd.c (do_registers_info): Ditto.
12173 * values.c (unpack_double): Ditto. Add comment.
12174
12175 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
12176 already commented out.
12177
12178 2002-01-26 Andreas Schwab <schwab@suse.de>
12179
12180 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
12181 * m68klinux-nat.c: Update ptrace interface for fetching/storing
12182 registers and add support for PTRACE_GETREGS.
12183
12184 2002-01-24 Andrew Cagney <ac131313@redhat.com>
12185
12186 GDB 5.1.1 released from 5.1 branch.
12187 * NEWS: Add 5.1.1 news.
12188 * README: Sync with 5.1 branch.
12189
12190 2002-01-23 Fred Fish <fnf@redhat.com>
12191
12192 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
12193 stabstring on initial malloc. Reallocing will copy it for us,
12194 if necessary.
12195
12196 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
12197
12198 * Makefile.in (hpread_h): Delete.
12199 (HFILES_NO_SRCDIR): Remove hpread.h.
12200 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
12201 (hpread.o): Update dependencies.
12202 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
12203
12204 * hp-psymtab-read.c: Remove file.
12205 * hp-symtab-read.c: Remove file.
12206 * hpread.h: Remove file.
12207
12208 * hpread.c: Merge all contents of hp-psymtab-read.c,
12209 hp-symtab-read.c and hpread.h into this file, as it was prior to
12210 January 1999.
12211
12212 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
12213 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
12214 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
12215 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
12216
12217 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
12218
12219 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
12220 fill_gregset): Call gdbarch_tdep() just once, assign result to
12221 variable and use that, instead of calling the function several
12222 times.
12223
12224 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
12225
12226 * configure.host: Accept sparcv9 as alias for sparc64.
12227 * configure.tgt: Likewise.
12228
12229 2002-01-22 Kevin Buettner <kevinb@redhat.com>
12230
12231 * solib-aix5.c (build_so_list_from_mapfile)
12232 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
12233 arguments is not reversed.
12234 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
12235 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
12236
12237 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
12238
12239 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
12240 modified version of obsolete sh_fetch_pseudo_register.
12241 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
12242 (sh4_register_read): New function.
12243 (sh_pseudo_register_write): New function. Renamed and modified
12244 version of obsolete sh_store_pseudo_register.
12245 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
12246 (sh4_register_write): New function.
12247 (sh_gdbarch_init): Remove setting of gdbarch function
12248 fetch_pseudo_register and store_pseudo_register. Remove setting of
12249 register_convert_to_raw, register_convert_to_virtual,
12250 register_convertible.
12251 (sh_sh4_register_convertible): Delete. No longer needed. All is
12252 taken care by architecture specific functions
12253 register_read/register_write.
12254 (sh_sh4_register_convert_to_virtual): Make static.
12255 (sh_sh4_register_convert_to_raw): Ditto.
12256
12257 2002-01-22 Andrew Cagney <ac131313@redhat.com>
12258
12259 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
12260 (floatformat_is_nan, floatformat_mantissa): Ditto.
12261
12262 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
12263 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
12264 builtin_type_ieee_double_little,
12265 builtin_type_ieee_double_littlebyte_bigword,
12266 builtin_type_m68881_ext, builtin_type_i960_ext,
12267 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
12268 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
12269 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
12270 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
12271
12272 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
12273
12274 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
12275 parameter. Set frameless flag if it exists and depended of
12276 whether the scanned function is frameless or not.
12277 (xstormy16_skip_prologue): If function is frameless, return
12278 result of xstormy16_scan_prologue().
12279 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
12280 call.
12281
12282 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
12283
12284 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
12285 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
12286 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
12287 sh_sh4_register_byte, sh_sh4_register_raw_size,
12288 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
12289 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
12290 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
12291 sh_store_pseudo_register, sh_do_pseudo_register): Call
12292 gdbarch_tdep() just once, assign result to variable and use that,
12293 instead of calling the function several times.
12294
12295 2002-01-20 Mark Kettenis <kettenis@gnu.org>
12296
12297 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
12298 macros instead of LAST_FPU_CTRL_REGNUM.
12299 (store_register): Likewise.
12300
12301 2002-01-21 Jim Blandy <jimb@redhat.com>
12302
12303 * infcmd.c (run_command): Check that the `exec' target layer's BFD
12304 is up-to-date before running the program, not just when a program
12305 exits.
12306
12307 2002-01-21 Fred Fish <fnf@redhat.com>
12308
12309 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
12310 when we have found all instructions we are looking for.
12311
12312 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
12313
12314 * arm-tdep.c (arm_register_name): New function.
12315 (arm_registers_names): Make static.
12316 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
12317 (arm_register_name): Declare.
12318 (REGISTER_NAME): Use it.
12319
12320 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
12321 Kevin Buettner <kevinb@redhat.com>
12322
12323 Convert arm targets to new FRAME interface.
12324 * arm-tdep.c (struct frame_extra_info): Remove fsr.
12325 (arm_frame_find_save_regs): Delete.
12326 (arm_frame_init_saved_regs): New.
12327 (arm_init_extra_frame_info): Alloacte saved_regs as required.
12328 Allocate extra_info as required. Convert all uses of fsr.regs
12329 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
12330 to use extra_info.
12331 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
12332 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
12333 (check_prologue_cache, save_prologue_cache): Likewise.
12334 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
12335 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
12336 (FRAME_FIND_SAVED_REGS): Delete.
12337 (arm_frame_find_saved_regs): Delete prototype.
12338 (arm_frame_init_saved_regs): New prototype.
12339 (FRAME_INIT_SAVED_REGS): Define.
12340
12341 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12342
12343 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
12344
12345 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12346
12347 From Jeff Law <law@redhat.com>:
12348 * infttrace.c: Include <sys/pstat.h>.
12349 (child_pid_to_exec_file): Revamp. Use pstat call to get the
12350 exec file if the ttrace equivalent fails.
12351
12352 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12353
12354 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
12355 (closeLogFile): Ditto.
12356
12357 2002-01-20 Michael Chastain <mec@shout.net>
12358
12359 * top.c (print_gdb_version): Bump copyright year to 2002.
12360
12361 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12362
12363 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
12364 Zannoni and Eli Zaretskii.
12365
12366 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
12367
12368 * buildsym.c: Update copyright years.
12369 * c-typeprint.c: Likewise.
12370 * dwarf2read.c: Likewise.
12371 * f-typeprint.c: Likewise.
12372 * gdbtypes.c: Likewise.
12373 * gdbtypes.h: Likewise.
12374 * hp-symtab-read.c: Likewise.
12375 * hpread.c: Likewise.
12376 * mdebugread.c: Likewise.
12377 * p-typeprint.c: Likewise.
12378
12379 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12380
12381 * remote-sim.c (gdbsim_open): Simplify code testing the macro
12382 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
12383 byte-order selectable.
12384 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
12385 * arch-utils.c: Ditto.
12386 (set_endian): Ditto.
12387 (set_endian_from_file): Ditto.
12388 * gdbserver/low-sim.c (create_inferior): Ditto.
12389 * gdbarch.sh: Ditto.
12390 * gdbarch.h: Re-generate.
12391 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12392 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
12393 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
12394 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12395 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12396 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12397 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
12398 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
12399 macro definition.
12400 * config/mips/tm-wince.h: Remove #undef of macro
12401 TARGET_BYTE_ORDER_SELECTABLE.
12402 * config/sh/tm-wince.h: Ditto.
12403
12404 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
12405
12406 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
12407 member function fields. Add accessor macro
12408 TYPE_FN_FIELD_ARTIFICIAL.
12409 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
12410 * c-typeprint.c (c_type_print_base): Skip artificial member
12411 functions.
12412
12413 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
12414
12415 * f-typeprint.c: Delete unused function f_type_print_args.
12416 * p-typeprint.c: Delete unused function pascal_type_print_args.
12417
12418 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
12419
12420 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
12421 comment. Add ``artificial'' to ``union field_location''.
12422
12423 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
12424
12425 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
12426 * mdebugread.c (parse_symbol): Likewise.
12427 * stabsread.c (define_symbol): Likewise.
12428 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
12429 initializing TYPE_FIELD_BITPOS to n (obsolete).
12430 (hpread_doc_function_type): Likewise.
12431 * hpread.c (hpread_function_type): Likewise.
12432
12433 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12434
12435 * configure.in (host_makefile_frag): Only require a host makefile
12436 fragment when a native build.
12437 * configure: Re-generate.
12438
12439 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12440
12441 * doublest.h (floatformat_from_type): Declare.
12442 * doublest.c (floatformat_from_type): New function.
12443 (convert_typed_floating): Use.
12444
12445 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
12446 call to function floatformat_from_type.
12447
12448 * gdbarch.sh (IEEE_FLOAT): Delete.
12449 * gdbarch.h, gdbarch.c: Re-generate.
12450 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
12451 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
12452 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
12453 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
12454 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
12455 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
12456 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
12457 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
12458 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
12459 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
12460 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
12461 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
12462
12463 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
12464 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
12465 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
12466 * sh-tdep.c (sh_gdbarch_init): Ditto.
12467 * mips-tdep.c (mips_gdbarch_init): Ditto.
12468 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
12469 * cris-tdep.c (cris_gdbarch_init): Ditto.
12470
12471 2002-01-20 Jiri Smid <smid@suse.cz>
12472
12473 * configure.host, configure.tgt: Support x86-64.
12474 * NEWS: Note new target x86-64.
12475
12476 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
12477 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
12478 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
12479 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
12480 x86-64-linux-nat.o): Fix dependencies.
12481
12482 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12483
12484 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
12485 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
12486 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
12487 * config/sparc/xm-sun4os4.h: Delete file.
12488 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
12489
12490 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12491
12492 * config/sparc/sparclynx.mh (XM_FILE): Delete.
12493 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
12494 * config/m68k/m68klynx.mh (XM_FILE): Delete.
12495 * config/i386/i386lynx.mh (XM_FILE): Delete.
12496 * config/rs6000/xm-rs6000ly.h: Delete file.
12497 * config/sparc/xm-sparclynx.h: Delete file.
12498 * config/m68k/xm-m68klynx.h: Delete file.
12499 * config/i386/xm-i386lynx.h: Delete file.
12500 * config/xm-lynx.h: Delete file.
12501 * config/djgpp/fnchange.lst: Update.
12502
12503 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12504
12505 * alpha-tdep.c (alpha_register_byte): New function.
12506 (alpha_register_raw_size): Ditto.
12507 (alpha_register_virtual_size): Ditto.
12508 (alpha_skip_prologue_internal): Renamed from
12509 alpha_skip_prologue.
12510 (alpha_skip_prologue): New version that calls
12511 alpha_skip_prologue_internal.
12512 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
12513 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
12514 second argument from alpha_skip_prologue.
12515 (REGISTER_BYTE): Use alpha_register_byte.
12516 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
12517 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
12518 (FRAMELESS_FUNCTION_INVOCATION): Use
12519 generic_frameless_function_invocation_not.
12520 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
12521 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
12522
12523 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12524
12525 * config/mips/xm-news-mips.h: Delete file.
12526 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
12527
12528 * config/m88k/xm-m88k.h: Delete file.
12529 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
12530 * config/m88k/xm-delta88v4.h: Ditto.
12531 * config/m88k/xm-delta88.h: Ditto.
12532
12533 * config/alpha/xm-fbsd.h: Delete file.
12534 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
12535
12536 * config/sparc/xm-sparc.h: Delete file.
12537 * Makefile.in (xm-sun4os4.h): Delete dependency.
12538 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
12539 * config/sparc/xm-sun4os4.h: Ditto.
12540 * config/sparc/xm-linux.h: Ditto.
12541
12542 * config/i386/xm-windows.h: Delete file.
12543
12544 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12545
12546 * utils.c: Include <sys/param.h> for MAXPATHLEN.
12547 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
12548
12549 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12550
12551 * alpha-tdep.c (alpha_call_dummy_words): New.
12552 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
12553 (CALL_DUMMY_P): Define.
12554 (CALL_DUMMY_WORDS): Define.
12555 (SIZEOF_CALL_DUMMY_WORDS): Define.
12556
12557 2002-01-19 Per Bothner <per@bothner.com>
12558
12559 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
12560 isn't NULL, which can happen with some gcj-3.x-produced code.
12561
12562 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12563
12564 * alpha-tdep.c (alpha_register_virtual_type): New function.
12565 (alpha_init_frame_pc_first): Ditto.
12566 (alpha_fix_call_dummy): Ditto.
12567 (alpha_store_struct_return): Ditto.
12568 (alpha_extract_struct_value_address): Ditto.
12569 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
12570 alpha_register_virtual_type.
12571 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
12572 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
12573 alpha_extract_struct_value_address.
12574 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
12575 (INIT_FRAME_PC): Use init_frame_pc_noop.
12576 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
12577
12578 2002-01-19 Mark Kettenis <kettenis@gnu.org>
12579
12580 * i386gnu-nat.c: Include "i386-tdep.h".
12581 (fetch_fpregs): Simplify code dealing with uninitialized floating
12582 point states such that it doesn't require FP7_REGNUM.
12583
12584 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12585
12586 * alpha-tdep.c (frame_extra_info): New.
12587 (alpha_find_saved_regs): Make static. Use
12588 frame->extra_info.
12589 (alpha_frame_init_saved_regs): New function.
12590 (alpha_frame_saved_pc): Use frame->extra_info.
12591 (temp_saved_regs): Don't declare as struct frame_saved_regs.
12592 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
12593 (init_extra_frame_info): Rename to...
12594 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
12595 (alpha_print_extra_frame_info): New function.
12596 (alpha_frame_locals_address): Ditto.
12597 (alpha_frame_args_address): Ditto.
12598 (alpha_pop_frame): Use frame->extra_info.
12599 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
12600 alpha_frame_args_address.
12601 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
12602 (alpha_find_saved_regs): Remove prototype.
12603 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
12604 (EXTRA_FRAME_INFO): Remove.
12605 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
12606 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
12607
12608 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12609
12610 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
12611 (alpha_cannot_fetch_register): Ditto.
12612 (alpha_cannot_store_register): Ditto.
12613 (alpha_register_convertible): Ditto.
12614 (alpha_use_struct_convention): Ditto.
12615 * config/alpha/tm-alpha.h: Update copyright years.
12616 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
12617 (INNER_THAN): Use core_addr_lessthan.
12618 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
12619 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
12620 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
12621 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
12622 (FRAME_CHAIN): Remove unnecessary cast.
12623
12624 2002-01-18 Andrew Cagney <ac131313@redhat.com>
12625
12626 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
12627 obsolete.
12628
12629 2002-01-18 Andrew Cagney <ac131313@redhat.com>
12630
12631 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
12632 * monitor.c, remote-array.c, remote-bug.c: Ditto.
12633 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
12634 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
12635 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
12636 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
12637 * x86-64-linux-nat.c: Ditto.
12638
12639 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12640
12641 * alpha-tdep.c (alpha_register_name): New function.
12642 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
12643 (REGISTER_NAME): Define.
12644
12645 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12646
12647 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
12648
12649 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12650
12651 * alpha-tdep.c: Update copyright years.
12652 (alpha_next_pc): New function.
12653 (alpha_software_single_step): Ditto.
12654 * config/alpha/tm-alpha.h: Add prototype for
12655 alpha_software_single_step.
12656
12657 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12658
12659 * alphabsd-nat.c: Update copyright years.
12660 (fill_gregset): Use regcache_collect.
12661 (fill_fpregset): Likewise.
12662 (fetch_inferior_registers): Only fetch integer registers
12663 if requested to do so.
12664 (store_inferior_registers): Only store integer registers
12665 if requested to do so.
12666
12667 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12668
12669 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
12670 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
12671 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
12672 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
12673 * config/alpha/fbsd.mh (XDEPFILES): Delete.
12674 * config/arm/linux.mh (XDEPFILES): Delete.
12675 * config/arm/nbsd.mh (XDEPFILES): Delete.
12676 * config/i386/i386dgux.mh (XDEPFILES): Delete.
12677 * config/i386/i386sol2.mh (XDEPFILES): Delete.
12678 * config/i386/i386m3.mh (XDEPFILES): Delete.
12679 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
12680 * config/i386/i386gnu.mh (XDEPFILES): Delete.
12681 * config/i386/fbsd.mh (XDEPFILES): Delete.
12682 * config/i386/i386bsd.mh (XDEPFILES): Delete.
12683 * config/i386/i386sco5.mh (XDEPFILES): Delete.
12684 * config/i386/i386v4.mh (XDEPFILES): Delete.
12685 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
12686 * config/i386/i386sco4.mh (XDEPFILES): Delete.
12687 * config/i386/i386aix.mh (XDEPFILES): Delete.
12688 * config/i386/go32.mh (XDEPFILES): Delete.
12689 * config/i386/cygwin.mh (XDEPFILES): Delete.
12690 * config/i386/i386lynx.mh (XDEPFILES): Delete.
12691 * config/i386/i386mach.mh (XDEPFILES): Delete.
12692 * config/i386/i386v32.mh (XDEPFILES): Delete.
12693 * config/i386/linux.mh (XDEPFILES): Delete.
12694 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
12695 * config/i386/ncr3000.mh (XDEPFILES): Delete.
12696 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
12697 * config/i386/i386sco.mh (XDEPFILES): Delete.
12698 * config/i386/i386v.mh (XDEPFILES): Delete.
12699 * config/i386/nbsd.mh (XDEPFILES): Delete.
12700 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
12701 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
12702 * config/i386/symmetry.mh (XDEPFILES): Delete.
12703 * config/i386/obsd.mh (XDEPFILES): Delete.
12704 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
12705 * config/ia64/linux.mh (XDEPFILES): Delete.
12706 * config/ia64/aix.mh (XDEPFILES): Delete.
12707 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
12708 * config/m68k/dpx2.mh (XDEPFILES): Delete.
12709 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
12710 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
12711 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
12712 * config/m68k/linux.mh (XDEPFILES): Delete.
12713 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
12714 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
12715 * config/m68k/nbsd.mh (XDEPFILES): Delete.
12716 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
12717 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
12718 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
12719 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
12720 * config/m88k/delta88.mh (XDEPFILES): Delete.
12721 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
12722 * config/m88k/m88k.mh (XDEPFILES): Delete.
12723 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
12724 * config/mips/linux.mh (XDEPFILES): Delete.
12725 * config/mips/irix6.mh (XDEPFILES): Delete.
12726 * config/mips/irix5.mh (XDEPFILES): Delete.
12727 * config/mips/irix4.mh (XDEPFILES): Delete.
12728 * config/mips/irix3.mh (XDEPFILES): Delete.
12729 * config/mips/decstation.mh (XDEPFILES): Delete.
12730 * config/mips/mipsm3.mh (XDEPFILES): Delete.
12731 (NATDEPFILES): Move core-aout.o to here.
12732 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
12733 * config/pa/hpux1020.mh (XDEPFILES): Delete.
12734 * config/pa/hppabsd.mh (XDEPFILES): Delete.
12735 * config/pa/hppahpux.mh (XDEPFILES): Delete.
12736 * config/pa/hpux11w.mh (XDEPFILES): Delete.
12737 * config/pa/hppaosf.mh (XDEPFILES): Delete.
12738 * config/pa/hpux11.mh (XDEPFILES): Delete.
12739 * config/powerpc/aix.mh (XDEPFILES): Delete.
12740 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
12741 * config/powerpc/linux.mh (XDEPFILES): Delete.
12742 * config/romp/rtbsd.mh: Rename XDEPFILES.
12743 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
12744 * config/rs6000/aix4.mh (XDEPFILES): Delete.
12745 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
12746 * config/s390/s390.mh (XDEPFILES): Delete.
12747 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
12748 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
12749 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
12750 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
12751 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
12752 * config/sparc/nbsd.mh (XDEPFILES): Delete.
12753 * config/sparc/linux.mh (XDEPFILES): Delete.
12754 * config/vax/vaxult.mh (XDEPFILES): Delete.
12755 * config/vax/vaxult2.mh (XDEPFILES): Delete.
12756 * Makefile.in (DEPFILES): Remove XDEPFILES.
12757
12758 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12759
12760 * utils.c (internal_verror): Fix comments, default is yes not no.
12761 Update queries to match. Default to quit and dump core.
12762
12763 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12764
12765 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
12766 copyright.
12767 * defs.h, event-top.c, gdbcmd.h: Ditto.
12768 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
12769 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
12770 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
12771 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
12772 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
12773 * mi/mi-main.c:Ditto.
12774
12775 * stack.c, symfile.c: Update copyright.
12776
12777 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
12778
12779 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
12780 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
12781 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
12782 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
12783
12784 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
12785
12786 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
12787 * gdbserver/low-lynx.c (myattach): Likewise.
12788 * gdbserver/low-nbsd.c (myattach): Likewise.
12789 * gdbserver/low-sim.c (myattach): Likewise.
12790 * gdbserver/low-sparc.c (myattach): Likewise.
12791 * gdbserver/low-sun3.c (myattach): Likewise.
12792
12793 * gdbserver/low-linux.c (myattach): New function.
12794
12795 * gdbserver/server.c (attach_inferior): New function.
12796 (main): Handle "--attach".
12797
12798 2002-01-16 Andrew Cagney <ac131313@redhat.com>
12799
12800 * MAINTAINERS (language support): Daniel Jacobwitz is C++
12801 maintainer.
12802
12803 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
12804
12805 * c-typeprint.c (is_type_conversion_operator): Add additional
12806 check for non-conversion operators.
12807
12808 2002-01-15 Michael Snyder <msnyder@redhat.com>
12809
12810 * linux-proc.c: Add "info proc" command, a la procfs.c.
12811 (read_mapping): New function, abstract and re-use code.
12812 (linux_find_memory_regions): Use new func read_mapping.
12813 (linux_info_proc_cmd): New function, implement "info proc".
12814 (_initialize_linux_proc): Add new command "info proc".
12815
12816 2002-01-15 Michael Snyder <msnyder@redhat.com>
12817
12818 * symfile.c (generic_load): Use bfd_map_over_sections method
12819 instead of manipulating bfd structure members directly.
12820 (add_section_size_callback): New function, bfd sections callback
12821 used by generic_load.
12822 (load_sections_callback): New function, bfd sections callback
12823 used by generic_load.
12824
12825 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
12826
12827 [Based on work by Jim Blandy]
12828 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
12829 (builtin_type_vec128): Export.
12830 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
12831 types.
12832 (builtin_type_vec128): New builtin type for 128 bit vector
12833 registers.
12834 (build_gdbtypes): Initialize builtin_type_v16qi and
12835 builtin_type_v8hi. Create the vec128 register builtin type
12836 structure.
12837 (build_builtin_type_vec128): New function.
12838 (_initialize_gdbtypes): Register builtin_type_v16qi and
12839 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
12840 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
12841 AltiVec register to new builtin type.
12842
12843 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
12844
12845 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
12846 to make_cv_type.
12847
12848 2002-01-14 Andrew Cagney <ac131313@redhat.com>
12849
12850 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
12851 CLEAN_UP_REGISTER_VALUE.
12852 * regcache.c (supply_register): Update only call.
12853
12854 2002-01-14 Andrew Cagney <ac131313@redhat.com>
12855
12856 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12857 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12858 a29k-*-vxworks* targets as obsolete.
12859
12860 2002-01-14 Michael Snyder <msnyder@redhat.com>
12861
12862 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
12863 until we can resolve portability issues.
12864 * gregset.h: Remove references to fpxregs.
12865 * gcore.c (gcore_command): Initialize note_sec to NULL.
12866
12867 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12868
12869 * signals.c (target_signal_to_name): Rewrite. Only use
12870 signals[].name when in bounds and non-NULL.
12871
12872 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12873
12874 From Petr Ledvina <ledvinap@kae.zcu.cz>:
12875 * signals.c (target_signal_to_name): Verify that SIG is within the
12876 bounds of the signals array.
12877
12878 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12879
12880 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
12881
12882 2002-01-13 Keith Seitz <keiths@redhat.com>
12883
12884 * stack.c (print_frame_info_base): Print the frame's pc
12885 only if when print_frame_info_listing_hook is not defined.
12886
12887 2002-01-13 Keith Seitz <keiths@redhat.com>
12888
12889 * varobj.c (varobj_set_value): Make sure that there were no
12890 errors evaluating the object before attempting to set its
12891 value.
12892 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
12893 so this offset adjustment is no longer necessary.
12894 (create_child): Don't set the error flag if the child is
12895 a CPLUS_FAKE_CHILD.
12896 (value_of_child): If value_fetch_lazy fails, return NULL
12897 so that callers will be notified that an error occurred.
12898 (c_value_of_variable): Delay check of variable's validity
12899 until later. We actually want all structs and unions to have
12900 the value "{...}".
12901 Do not return "???" for variables which could not be evaluated.
12902 This error condition must be returned to the caller so that it
12903 can get the error condition from gdb.
12904 (cplus_name_of_child): Adjust index for vptr before figuring
12905 out the name of the child.
12906 (cplus_value_of_child): If a child's (real) parent is not valid,
12907 don't even bother trying to give a value for it. Just return
12908 an error. Change all instances in this function.
12909 (cplus_type_of_child): If our parent is one of the "fake"
12910 parents, we need to get at the type of the real parent, and
12911 derive the child's true type using this information.
12912
12913 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12914
12915 From 2002-01-09 John Marshall <johnm@falch.net>:
12916 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
12917 sources.redhat.com, and tweak some related URLs which had
12918 suffered from linkrot.
12919
12920 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12921
12922 From Jeff law:
12923 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
12924 structures passed in registers.
12925
12926 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
12927
12928 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
12929 white space which prevented compilation. Reported by DSK
12930 <dsk@student.unsw.edu.au>.
12931
12932 2002-01-11 Michael Snyder <msnyder@redhat.com>
12933
12934 * symfile.c (build_section_addr_info_from_section_tab):
12935 Use bfd access method instead of manipulating bfd directly.
12936 (syms_from_objfile): Ditto.
12937 (simple_overlay_update_1): Ditto.
12938 (simple_overlay_update): Ditto.
12939 (generic_load): Ditto.
12940 (overlay_unmapped_address): FIXME comment, bfd access methods.
12941 (sections_overlap): FIXME comment, bfd access methods.
12942 (pc_in_mapped_range): FIXME comment, bfd access methods.
12943 (pc_in_unmapped_range): FIXME comment, bfd access methods.
12944 (section_is_mapped): FIXME comment, bfd access methods.
12945 (section_is_overlay): FIXME comment, bfd access methods.
12946
12947 * symfile.c (generic_load): Whitespace and long line cleanups.
12948 Remove duplicate variable, change several local variables to
12949 more appropriate data types.
12950 (print_transfer_performance): Use %lu instead of %ld for ulongs.
12951
12952 2002-01-12 Andrew Cagney <ac131313@redhat.com>
12953
12954 From Peter Schauer:
12955 * language.c (longest_local_hex_string_custom): Use phex_nz to
12956 convert NUM to a hex string.
12957
12958 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
12959
12960 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
12961 the function.
12962 Update Copyright year.
12963
12964 2002-01-12 Andrew Cagney <ac131313@redhat.com>
12965
12966 * language.c (longest_raw_hex_string): Delete unused function.
12967
12968 2002-01-11 Petr Sorfa <petrs@caldera.com>
12969
12970 * MAINTAINERS (write-after-approval): Add myself.
12971 * dwarf2read.c (read_tag_string_type): Handling of
12972 DW_AT_byte_size.
12973 (read_tag_string_type): FORTRAN fix to prevent propagation of
12974 first string size.
12975 (set_cu_language): Handling of DW_LANG_Fortran95
12976
12977 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
12978
12979 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
12980 GETPID(inferior_ptid).
12981 (store_inferior_registers): Likewise.
12982
12983 2002-01-10 Jason Merrill <jason@redhat.com>
12984
12985 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
12986 Fix DW_OP_minus.
12987
12988 2002-01-10 Andrew Cagney <ac131313@redhat.com>
12989
12990 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
12991 and bfd/elf32-sh-nbsd.c.
12992
12993 2002-01-10 Michael Snyder <msnyder@redhat.com>
12994
12995 * NEWS: Mention --pid and corefile/proc-id behavior change.
12996
12997 * Makefile.in: Add rules for gcore.o and linux-proc.o.
12998 * gcore.c: Include cli/cli-decode.h instead of command.h.
12999
13000 * main.c (captured_main): Add new command line option "--pid".
13001 If the second command line argument (following the symbol-file)
13002 begins with a digit, try to attach to it before trying to open
13003 it as a corefile.
13004 (print_gdb_help): Document the "--pid" argument.
13005
13006 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
13007
13008 * completer.c (command_completer): New function.
13009
13010 * completer.h <command_completer>: Add prototype.
13011
13012 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
13013 completer for the "help" command.
13014
13015 2002-01-09 Jason Merrill <jason@redhat.com>
13016
13017 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
13018
13019 2002-01-09 Michael Snyder <msnyder@redhat.com>
13020
13021 * i386-linux-nat.c (fill_fpxregset): Make global.
13022 (store_fpxregset): Ditto.
13023
13024 * gregset.h (gdb_fpxregset_t): Define.
13025 (supply_fpxregset): Prototype.
13026 (fill_fpxregset): Prototype.
13027
13028 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
13029
13030 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
13031
13032 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
13033 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
13034 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
13035
13036 2002-01-09 Andrew Cagney <ac131313@redhat.com>
13037
13038 * MAINTAINERS: Update target maintainer rules so that any
13039 Maintainer can approve a tested patch for a maintenance-only
13040 target.
13041
13042 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
13043
13044 * MAINTAINERS (write-after-approval): Add myself.
13045
13046 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
13047 IN_SIGTRAMP.
13048
13049 2002-01-08 Michael Snyder <msnyder@redhat.com>
13050
13051 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
13052 real name of the executable, rather than the /proc name.
13053
13054 2002-01-03 Michael Snyder <msnyder@redhat.com>
13055
13056 Implement a "generate-core-file" command in gdb, save target state.
13057 * gcore.c: New file. Implement new command 'generate-core-file'.
13058 Save a corefile image of the current state of the inferior.
13059 * linux-proc.c: Add linux-specific code for saving corefiles.
13060 * target.h (struct target_ops): Add new target vectors for saving
13061 corefiles; to_find_memory_regions and to_make_corefile_notes.
13062 (target_find_memory_regions): New macro.
13063 (target_make_corefile_notes): New macro.
13064 * target.c (update_current_target): Inherit new target methods.
13065 (dummy_find_memory_regions): New place-holder method.
13066 (dummy_make_corefile_notes): New place-holder method.
13067 (init_dummy_target): Initialize new dummy target vectors.
13068 * exec.c (exec_set_find_memory_regions): New function.
13069 Allow the exec_ops vector for memory regions to be taken over.
13070 (exec_make_note_section): New function, target vector method.
13071 * defs.h (exec_set_find_memory_regions): Export prototype.
13072 * procfs.c (proc_find_memory_regions): New function, corefile method.
13073 (procfs_make_note_section): New function, corefile method.
13074 (init_procfs_ops): Set new target vector pointers.
13075 (find_memory_regions_callback): New function.
13076 (procfs_do_thread_registers): New function.
13077 (procfs_corefile_thread_callback): New function.
13078 * sol-thread.c (sol_find_memory_regions): New function.
13079 (sol_make_note_section): New function.
13080 (init_sol_thread_ops): Initialize new target vectors.
13081 * inftarg.c (inftarg_set_find_memory_regions): New function.
13082 Allow to_find_memory_regions vector to be taken over.
13083 (inftarg_set_make_corefile_notes): New function.
13084 Allow to_make_corefile_notes vector to be taken over.
13085 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
13086 interface layer if not target_has_execution (may be a corefile).
13087 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
13088 * config/sparc/sun4sol2.mh: Ditto.
13089 * config/alpha/alpha-linux.mh: Ditto.
13090 * config/arm/linux.mh: Ditto.
13091 * config/i386/x86-64linux.mh: Ditto.
13092 * config/ia64/linux.mh: Ditto.
13093 * config/m68k/linux.mh: Ditto.
13094 * config/mips/linux.mh: Ditto.
13095 * config/powerpc/linux.mh: Ditto.
13096 * config/sparc/linux.mh: Ditto.
13097
13098 2002-01-07 Michael Snyder <msnyder@redhat.com>
13099
13100 * arm-linux-nat.c: Remove references to regcache.c internal data
13101 (registers[] and register_valid[]).
13102
13103 2002-01-07 Michael Snyder <msnyder@redhat.com>
13104
13105 * linux-proc.c: New file. Implement child_pid_to_exec_file,
13106 so that attaching to a pid will automatically read the process's
13107 symbol file and shlibs.
13108 * Makefile.in: Add rule for linux-proc.o.
13109 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
13110 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
13111 * config/arm/linux.mh: Ditto.
13112 * config/i386/linux.mh: Ditto.
13113 * config/i386/x86-64linux.mh: Ditto.
13114 * config/ia64/linux.mh: Ditto.
13115 * config/m68k/linux.mh: Ditto.
13116 * config/mips/linux.mh: Ditto.
13117 * config/powerpc/linux.mh: Ditto.
13118 * config/sparc/linux.mh: Ditto.
13119
13120 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
13121
13122 * win32-nat.c: Add i386-tdep.h dependency.
13123
13124 2002-01-07 Michael Snyder <msnyder@redhat.com>
13125
13126 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
13127 instead of bfd_get_arch_size. Don't bail out just because
13128 there's no exec_bfd.
13129
13130 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
13131 * p-valprint.c (pascal_object_print_value): Ditto.
13132 * somread.c (som_symtab_read): Ditto.
13133 * symfile.c (simple_free_overlay_region_table): Ditto.
13134 * valops.c (value_assign): Ditto.
13135
13136 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
13137 use tilde_expand and strerror for opening save-tracepoints file.
13138
13139 * thread-db.c (thread_db_new_objfile): Indendation fix.
13140
13141 * infptrace.c (GDB_MAX_ALLOCA): New define.
13142 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
13143 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
13144 can be overridden with whatever value is appropriate to the host).
13145 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
13146 alloca to allocate potentially large buffer.
13147 * rs6000-nat.c (child_xfer_memory): Ditto.
13148 * symm-nat.c (child_xfer_memory): Ditto.
13149 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
13150
13151 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
13152
13153 From Nick Clifton <nickc@redhat.com>
13154 * d10v-tdep.c: Set STACK_START to 0x200bffe.
13155
13156 2002-01-07 Michael Snyder <msnyder@redhat.com>
13157
13158 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
13159 Don't use exec_bfd if it's NULL.
13160
13161 2002-01-06 Mark Kettenis <kettenis@gnu.org>
13162
13163 * valops.c (value_arg_coerce): Fix formatting.
13164
13165 2002-01-06 Andrew Cagney <ac131313@redhat.com>
13166
13167 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
13168 * gnu-nat.c: Ditto.
13169
13170 2002-01-06 Andrew Cagney <ac131313@redhat.com>
13171
13172 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
13173 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
13174 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
13175 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
13176 z8k-coff have not been multi-arched. Update z8k-coff build
13177 status.
13178
13179 2002-01-06 Andrew Cagney <ac131313@redhat.com>
13180
13181 * MAINTAINERS: Mark a29k target as obsolete.
13182 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
13183 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
13184 comments.
13185 * NEWS: Note that a29k targets are obsolete.
13186 * a29k-tdep.c: Mark as obsolete.
13187 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
13188 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
13189 a29k-*-vxworks* targets as obsolete.
13190 * remote-adapt.c: Obsolete.
13191 * remote-eb.c: Obsolete.
13192 * remote-mm.c: Obsolete.
13193 * remote-udi.c: Obsolete.
13194 * config/a29k/a29k-udi.mt: Obsolete.
13195 * config/a29k/a29k.mt: Obsolete.
13196 * config/a29k/tm-a29k.h: Obsolete.
13197 * config/a29k/tm-vx29k.h: Obsolete.
13198 * config/a29k/vx29k.mt: Obsolete.
13199
13200 2002-01-05 Andrew Cagney <ac131313@redhat.com>
13201
13202 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
13203 with BFD_ENDIAN_BIG.
13204
13205 2002-01-05 Andrew Cagney <ac131313@redhat.com>
13206
13207 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
13208 * configure, config.in: Re-generate.
13209 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
13210 * defs.h: Do not include <endian.h>.
13211
13212 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
13213
13214 * acconfig.h (HAVE_PT_GETXMMREGS): New.
13215 * config.in: Regenerate.
13216 * configure.in: Update copyright years.
13217 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
13218 * configure: Regenerate.
13219 * i386bsd-nat.c: Update copyright years.
13220 (fill_gregset): Use regcache_collect.
13221 (fetch_inferior_registers): Only fetch integer registers
13222 if requested to do so. Add support for XMM registers
13223 using PT_GETXMMREGS.
13224 (store_inferior_registers): Only store integer registers
13225 if requested to do so. Add support for XMM registers
13226 using PT_SETXMMREGS.
13227 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
13228 (store_inferior_registers): Remove.
13229 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
13230 (fetch_elfcore_registers): New function.
13231 (i386nbsd_elfcore_fns): New.
13232 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
13233 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
13234 i386bsd-nat.o.
13235 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
13236 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
13237 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
13238 * config/i386/tm-nbsd.h: Update copyright years.
13239 (HAVE_SSE_REGS): Define.
13240 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
13241 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
13242 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
13243 (SIGCONTEXT_PC_OFFSET): Remove.
13244 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
13245
13246 2002-01-05 Andrew Cagney <ac131313@redhat.com>
13247
13248 * configure.tgt: Remove powerpc-*-macos* target.
13249 * config/m68k/xm-mpw.h: Delete file.
13250 * config/xm-mpw.h: Delete file.
13251 * ser-mac.c: Delete file.
13252 * mpw-make.sed: Delete file.
13253 * mpw-config.in: Delete file.
13254 * mac-xdep.c: Delete file.
13255 * mac-gdb.r: Delete file.
13256 * mac-defs.h: Delete file.
13257 * mac-nat.c: Delete file.
13258 * config/powerpc/macos.mh: Delete file.
13259 * config/powerpc/macos.mt: Delete file.
13260 * config/powerpc/nm-macos.h: Delete file.
13261 * config/powerpc/tm-macos.h: Delete file.
13262 * source.c (openp, open_source_file): Remove obsolete code.
13263 * top.c (gdb_readline): Ditto.
13264 * utils.c (query): Ditto.
13265 * event-top.c (display_gdb_prompt): Ditto.
13266 * Makefile.in (ser-mac.o): Delete obsolete target.
13267 * NEWS: Update.
13268
13269 2002-01-04 Andrew Cagney <ac131313@redhat.com>
13270
13271 * defs.h (BIG_ENDIAN): Delete macro definition.
13272 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
13273 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
13274 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
13275 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
13276 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
13277 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
13278 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
13279 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
13280 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
13281 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
13282 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
13283 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
13284 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
13285 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
13286 * gdbarch.c: Re-generate.
13287
13288 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13289
13290 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
13291 for core files.
13292
13293 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
13294
13295 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
13296
13297 2002-01-04 Andrew Cagney <ac131313@redhat.com>
13298
13299 * value.h (value_ptr): Delete typedef.
13300
13301 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
13302
13303 * i386nbsd-nat.c: Update copyright years.
13304 Include i386-tdep.h.
13305
13306 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
13307
13308 * stabsread.c: Update copyright years.
13309
13310 From Debashis Mahata <debashis.mahata@wipro.com>:
13311 (read_struct_fields): Deal with Sun C compiler erroneous stab
13312 output for structs and unions.
13313 Fix PR gdb/269.
13314
13315 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13316
13317 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
13318 prototype.
13319
13320 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13321
13322 * cp-abi.c: Fix whitespace.
13323 (baseclass_offset): New wrapper function.
13324 * cp-abi.h (baseclass_offset): Add prototype.
13325 (struct cp_abi_ops): Add baseclass_offset pointer.
13326
13327 * valops.c (vb_match): Move to...
13328 * gnu-v2-abi.c (vb_match): here.
13329 * valops.c (baseclass_offset): Move to...
13330 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
13331
13332 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
13333
13334 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
13335 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
13336 * hpacc-abi.c (init_hpacc_ops): Likewise.
13337
13338 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13339
13340 * valops.c (find_overload_match): Accept obj as a
13341 reference parameter. Update it before returning.
13342 * value.h (find_overload_match): Update prototype.
13343 * eval.c (evaluate_subexp_standard): Pass object to
13344 find_overload_match by reference.
13345
13346 2002-01-03 Andrew Cagney <ac131313@redhat.com>
13347
13348 * valarith.c: Replace value_ptr with struct value pointer. Remove
13349 register attribute from value declarations.
13350 * valops.c: Ditto.
13351 * value.h: Ditto.
13352 * scm-lang.c (scm_lookup_name): Ditto.
13353
13354 2002-01-03 Michael Snyder <msnyder@redhat.com>
13355
13356 Abstract the functionality of iterating over mapped memory
13357 regions into a general purpose iterator function.
13358 * procfs.c (iterate_over_mappings): New function, general purpose
13359 iterator for memory sections.
13360 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
13361 (solib_mappings_callback): New function, callback for above.
13362 (info_proc_mappings): Reimpliment using iterate_over_mappings.
13363 (info_mappings_callback): New function, callback for above.
13364
13365 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
13366
13367 2002-01-01 Mark Kettenis <kettenis@gnu.org>
13368
13369 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
13370 * i386-tdep.c: Include "elf-bfd.h".
13371 (process_note_abi_tag_sections): New function.
13372 (i386_gdbarch_init): Add code to recognize various OS/ABI
13373 combinations.
13374
13375 * maint.c (_initialize_maint_cmds): Add missing \ in
13376 string-literal.
13377
13378 For older changes see ChangeLog-2001
13379 \f
13380 Local Variables:
13381 mode: change-log
13382 left-margin: 8
13383 fill-column: 74
13384 version-control: never
13385 End:
This page took 0.308992 seconds and 5 git commands to generate.