* valops.c (value_slice): Move declaration of `offset' to avoid
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2002-11-22 Andreas Schwab <schwab@suse.de>
2
3 * valops.c (value_slice): Move declaration of `offset' to avoid
4 warning.
5
6 2002-11-22 Christopher Faylor <cgf@redhat.com>
7
8 * win32-nat.c (psapi_get_dll_name): Fix a compiler warning.
9 (struct so_stuff): Add end_addr field.
10 (register_loaded_dll): Calculate and store end address of loaded dll.
11 (solib_address): New function.
12 (child_solib_loaded_library_pathname): Pass carefully constructed
13 section info to safe_symbol_file_add rather than ignoring it.
14 (get_child_debug_event): Call re_enable_breakpoints_in_shlibs when a
15 DLL is loaded.
16 (do_initial_child_stuff): Call disable_breakpoints_in_shlibs.
17 (child_create_inferior): Fix a compiler warning.
18 * config/i386/tm-cygwin.h (PC_SOLIB): Define new macro.
19 (solib_address): Declare new function.
20
21 2002-11-22 Andreas Schwab <schwab@suse.de>
22
23 * m68k-tdep.c (m68k_register_virtual_type): Return int for SR, FPC
24 and FPS registers.
25
26 2002-11-21 Daniel Jacobowitz <drow@mvista.com>
27
28 * maint.c (_initialize_maint_cmds): Fix typo. From
29 Francesco Potorti` <pot@gnu.org>.
30
31 2002-11-21 Andrew Cagney <cagney@redhat.com>
32
33 * mips-tdep.c (mips_dump_tdep): Delete references to
34 GDB_TARGET_UNMASK_DISAS_PC and GDB_TARGET_MASK_DISAS_PC.
35 * config/mips/tm-mips.h (GDB_TARGET_MASK_DISAS_PC): Delete macro.
36 (GDB_TARGET_UNMASK_DISAS_PC): Delete macro.
37 * printcmd.c (build_address_symbolic): Delete calls to
38 GDB_TARGET_UNMASK_DISAS_PC and GDB_TARGET_MASK_DISAS_PC.
39 (address_info): Ditto.
40 Fix PR gdb/773.
41
42 2002-11-19 Klee Dienes <kdienes@apple.com>
43 Adam Fedor <fedor@gnu.org>
44
45 * completer.c (skip_quoted_chars): Renamed from skip_chars. Add
46 the ability to explicitly specify the quote characters and word
47 break characters; if NULL is specified for either, use the old
48 behavior of using the characters used by the completer.
49 (skip_chars): New function. Convenience wrapper around
50 skip_quoted_chars to provide the original skip_chars behavior.
51 * completer.h (skip_quoted_chars): Add prototype.
52
53 2002-11-19 Andrew Cagney <ac131313@redhat.com>
54
55 Problems reported by Paul Eggert.
56 * gdbarch.sh: Use `sort -k 3`. Fix PR gdb/527.
57
58 2002-11-19 Andreas Schwab <schwab@suse.de>
59
60 * m68klinux-nat.c (IS_SIGTRAMP, IS_RT_SIGTRAMP)
61 (m68k_linux_in_sigtramp, SIGCONTEXT_PC_OFFSET)
62 (UCONTEXT_PC_OFFSET, m68k_linux_sigtramp_saved_pc)
63 (m68k_linux_frame_saved_pc): Move to ...
64 * m68klinux-tdep.c: ... here. New file.
65 * Makefile.in (m68klinux-tdep.o): Add dependencies.
66 * config/m68k/linux.mt (TDEPFILES): Add m68klinux-tdep.o.
67
68 2002-11-19 Adam Fedor <fedor@gnu.org>
69
70 * objc-exp.y: Revert to old skip_quoted usage.
71
72 2002-11-19 Adam Fedor <fedor@gnu.org>
73
74 * Makefile.in (SFILES): Add objc-exp.y objc-lang.c.
75 (objc_lang_h): Define.
76 (YYFILES): Add objc-exp.tab.c.
77 (local-maintainer-clean): Remove objc-exp.tab.c.
78 (objc-exp.tab.c, objc-exp.tab.o, objc-lang.o): New target.
79
80 2002-11-19 Pierre Muller <muller@ics.u-strasbg.fr>
81
82 * p-exp.y (typecast rule): Add automatic dereference of
83 pascal classes if needed.
84 (THIS): Set current_type.
85 Automatically dereference pascal classes.
86 (typebase rule): Add ^typebase recognition.
87
88 2002-11-18 Adam Fedor <fedor@gnu.org>
89
90 * expprint.c (print_subexp): Handle OP_OBJC_NSSTRING,
91 OP_OBJC_MSGCALL, and OP_OBJC_SELF.
92 (op_name): Handle OP_OBJC_SELF.
93 * Makefile.in (expprint.o): Add additional depends.
94
95 2002-11-18 Adam Fedor <fedor@gnu.org>
96
97 * expression.h: Rename ObjC ops to OP_OBJC_MSGCALL,
98 OP_OBJC_SELECTOR, OP_OBJC_NSSTRING, and OP_OBJC_SELF.
99 * parse.c (length_of_subexp, prefixify_subexp): Likewise.
100 * objc-exp.y: Likewise.
101
102 2002-11-18 Adam Fedor <fedor@gnu.org>
103
104 * gdb/parser-defs.h: (struct objc_class_str): New structure
105 for parsing ObjC classes.
106
107 2002-11-18 Andrew Cagney <ac131313@redhat.com>
108
109 * stack.c (frame_relative_level): Copy function from here ...
110 * frame.c (frame_relative_level): ...to here.
111
112 2002-11-18 Andrew Cagney <ac131313@redhat.com>
113
114 * frame.h (enum frame_type): Define.
115 (get_frame_type): Declare.
116 (struct frame_info): Add field `type'. Delete field
117 signal_handler_caller.
118 (deprecated_set_frame_signal_handler_caller): Declare.
119 * frame.c (get_frame_type): New function.
120 (deprecated_set_frame_type): New function.
121 (create_new_frame): Set the frame's type.
122 (get_prev_frame): Similar.
123 * sparc-tdep.c: Use get_frame_type instead of signal_handler_caller.
124 * s390-tdep.c: Ditto.
125 * m68klinux-nat.c: Ditto.
126 * ns32k-tdep.c: Ditto.
127 * x86-64-linux-tdep.c: Ditto.
128 * vax-tdep.c: Ditto.
129 * rs6000-tdep.c: Ditto.
130 * ppc-linux-tdep.c: Ditto.
131 * i386-interix-tdep.c: Ditto.
132 * mips-tdep.c: Ditto.
133 * m68k-tdep.c: Ditto.
134 * hppa-tdep.c: Ditto.
135 * ia64-tdep.c: Ditto.
136 * cris-tdep.c: Ditto.
137 * arm-tdep.c: Ditto.
138 * alpha-tdep.c: Ditto.
139 * i386-tdep.c: Ditto.
140 * stack.c: Ditto.
141 * ada-lang.c: Ditto.
142 * blockframe.c: Update.
143 * i386-interix-tdep.c (i386_interix_back_one_frame): Use
144 deprecated_set_frame_type instead of signal_handler_caller.
145 * ppc-linux-tdep.c (ppc_linux_init_extra_frame_info): Ditto.
146 * rs6000-tdep.c (rs6000_init_extra_frame_info): Ditto.
147 * breakpoint.h: Delete FIXME suggesting get_frame_type.
148
149 2002-11-18 Klee Dienes <kdienes@apple.com>
150
151 * Makefile.in (buildsym.o): Add dependency for gdb_assert.h.
152
153 2002-11-18 Klee Dienes <kdienes@apple.com>
154
155 * buildsym.c (pop_context): Add comment.
156
157 2002-11-18 Klee Dienes <kdienes@apple.com>
158
159 * buildsym.h (pop_context): Convert to function, defined in
160 buildsym.c.
161 * buildsym.c: Include gdb_assert.h.
162 (pop_context): Implement as C function. Add check for stack
163 underflow.
164 * dbxread.c (process_one_symbol): Complain and stop processing
165 that symbol if we are already at the top of the context stack for
166 a function-end N_FUN (this would imply an umatched RBRAC). Ditto
167 when processing N_RBRAC.
168
169 2002-11-16 Daniel Jacobowitz <drow@mvista.com>
170
171 * config/pa/nm-hppah.h (CHILD_POST_FOLLOW_INFERIOR_BY_CLONE): Don't
172 define.
173 (struct target_waitstatus): Add opaque definition.
174 * corelow.c (init_core_ops): Don't set to_clone_and_follow_inferior.
175 * exec.c (init_exec_ops): Likewise.
176 * fork-child.c (clone_and_follow_inferior): Remove.
177 * hppah-nat.c (child_post_follow_inferior_by_clone): Remove.
178 * inferior.h (clone_and_follow_inferior): Remove prototype.
179 * infrun.c (follow_fork_mode_both): Remove.
180 (follow_fork_mode_kind_names): Remove commented out "both".
181 (follow_inferior_fork): Remove follow_fork_mode_both support.
182 * inftarg.c (child_clone_and_follow_inferior): Remove.
183 (child_post_follow_inferior_by_clone): Remove.
184 (init_child_ops): Don't set to_clone_and_follow_inferior
185 or to_post_follow_inferior_by_clone.
186 * target.c (default_clone_and_follow_inferior): Remove.
187 (cleanup_target): Don't set to_clone_and_follow_inferior
188 or to_post_follow_inferior_by_clone.
189 (find_default_clone_and_follow_inferior): Remove.
190 (init_dummy_target): Don't set to_clone_and_follow_inferior.
191 (debug_to_clone_and_follow_inferior): Remove.
192 (debug_to_post_follow_inferior_by_clone): Remove.
193 (setup_target_debug): Don't set to_clone_and_follow_inferior
194 or to_post_follow_inferior_by_clone.
195 * target.h (struct target_ops): Remove to_clone_and_follow_inferior
196 and to_post_follow_inferior_by_clone.
197 (child_clone_and_follow_inferior): Remove prototype.
198 (child_post_follow_inferior_by_clone): Remove prototype.
199 (target_clone_and_follow_inferior): Remove macro.
200 (target_post_follow_inferior_by_clone): Remove macro.
201 (find_default_clone_and_follow_inferior): Remove prototype.
202
203 2002-11-16 Daniel Jacobowitz <drow@mvista.com>
204
205 * breakpoint.c (bpstat_stop_status): Call inferior_has_forked,
206 inferior_has_vforked, and inferior_has_execd instead of
207 target_has_forked, target_has_vforked, and target_has_execd.
208 * config/pa/nm-hppah.h (CHILD_HAS_FORKED, CHILD_HAS_VFORKED)
209 (CHILD_HAS_EXECD, CHILD_HAS_SYSCALL_EVENT): Don't define.
210 (CHILD_WAIT): Define.
211 (child_wait): Add prototype.
212 * hppah-nat.c (hpux_has_forked): Rename from child_has_forked.
213 Add prototype.
214 (hpux_has_vforked): Likewise, from child_has_vforked.
215 (hpux_has_execd): Likewise, from child_has_execd.
216 (hpux_has_syscall_event): Likewise, from child_has_syscall_event.
217 (not_same_real_pid, child_wait): New, copied from inftarg.c.
218 Call hpux_has_forked, hpux_has_vforked, hpux_has_execd,
219 and hpux_has_syscall_event instead of the target hooks.
220 * infrun.c (inferior_has_forked, inferior_has_vforked)
221 (inferior_has_execd): New functions.
222 * inftarg.c (not_same_real_pid): Remove.
223 (child_wait): Remove references to not_same_real_pid,
224 target_has_forked, target_has_vforked, target_has_execd,
225 and target_has_syscall_event.
226 (child_has_forked, child_has_vforked, child_has_execd)
227 (child_has_syscall_event): Remove.
228 (init_child_ops): Remove references to child_has_forked,
229 child_has_vforked, child_has_execd, and child_has_syscall_event.
230 * infttrace.c (hpux_has_forked): Rename from child_has_forked.
231 (hpux_has_vforked): Likewise, from child_has_vforked.
232 (hpux_has_execd): Likewise, from child_has_execd.
233 (hpux_has_syscall_event): Likewise, from child_has_syscall_event.
234 * target.c (cleanup_target): Remove references to
235 to_has_forked, to_has_vforked, to_has_execd, and
236 to_has_syscall_event.
237 (update_current_target): Likewise.
238 (setup_target_debug): Likewise.
239 (debug_to_has_forked): Remove.
240 (debug_to_has_vforked): Remove.
241 (debug_to_has_execd): Remove.
242 (debug_to_has_syscall_event): Remove.
243 * target.h (struct target_ops): Remove to_has_forked.
244 to_has_vforked, to_has_execd, and to_has_syscall_event.
245 (child_has_forked, child_has_vforked, child_has_execd)
246 (child_has_syscall_event): Remove prototypes.
247 (inferior_has_forked, inferior_has_vforked, inferior_has_execd): Add
248 prototypes.
249 (target_has_forked, target_has_vforked, target_has_execd)
250 (target_has_syscall_event): Remove macros.
251
252 2002-11-16 Daniel Jacobowitz <drow@mvista.com>
253
254 * hppah-nat.c (child_can_follow_vfork_prior_to_exec): Remove.
255 * inftarg.c (child_can_follow_vfork_prior_to_exec): Remove.
256 (init_child_ops): Don't initialize to_can_follow_vfork_prior_to_exec.
257 * infttrace.c (child_can_follow_vfork_prior_to_exec): Remove.
258 * target.c (cleanup_target): Remove reference to
259 to_can_follow_vfork_prior_to_exec.
260 (update_current_target): Likewise.
261 (debug_to_can_follow_vfork_prior_to_exec): Remove.
262 (setup_target_debug): Remove reference to
263 to_can_follow_vfork_prior_to_exec.
264 * target.h (struct target_ops): Remove
265 to_can_follow_vfork_prior_to_exec.
266 (child_can_follow_vfork_prior_to_exec): Remove prototype.
267 (target_can_follow_vfork_prior_to_exec): Remove definition.
268 * config/pa/nm-hppah.h (CHILD_CAN_FOLLOW_VFORK_PRIOR_TO_EXEC): Don't
269 define.
270 * infrun.c (follow_vfork_when_exec): Remove.
271 (follow_inferior_fork): Remove references to follow_vfork_when_exec.
272 (follow_exec): Likewise.
273 (handle_inferior_event): Likewise.
274 (keep_going): Likewise.
275
276 2002-11-15 Andrew Cagney <cagney@redhat.com>
277
278 * frame.c (generic_unwind_get_saved_register): Make static.
279 * frame.h (generic_unwind_get_saved_register): Delete declaration.
280 * avr-tdep.c (avr_gdbarch_init): Do not set get_saved_register,
281 defaults to generic_unwind_get_saved_register.
282 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
283 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
284 * frv-tdep.c (frv_gdbarch_init): Ditto.
285 * i386-tdep.c (i386_gdbarch_init): Ditto.
286 * s390-tdep.c (s390_gdbarch_init): Ditto.
287 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
288 * v850-tdep.c (v850_gdbarch_init): Ditto.
289 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
290 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
291 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Delete macro.
292
293 2002-11-15 Andrew Cagney <cagney@redhat.com>
294
295 * x86-64-linux-nat.c (i386_sse_regnum_p): New function. Copy from
296 i386-tdep.c.
297
298 2002-11-15 Andrew Cagney <cagney@redhat.com>
299
300 * frame.h (sigtramp_saved_pc): Delete declaration.
301 * blockframe.c (sigtramp_saved_pc): Delete function.
302 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): New function.
303 (ns32k_frame_saved_pc): Call ns32k_sigtramp_saved_pc.
304 * vax-tdep.c (vax_sigtramp_saved_pc): New function.
305 (vax_frame_saved_pc): Call vax_sigtramp_saved_pc.
306
307 2002-11-15 Andrew Cagney <ac131313@redhat.com>
308
309 * frame.c (frame_pc_unwind): New function.
310 (frame_saved_regs_pc_unwind): New function.
311 (frame_register_unwind): Pass unwind_cache instead of
312 register_unwind_cache.
313 (set_unwind_by_pc): Add unwind_pc parameter, set.
314 (create_new_frame): Pass frame->pc_unwind to set_unwind_by_pc.
315 (get_prev_frame): Ditto.
316 * frame.h (frame_pc_unwind_ftype): Declare.
317 (struct frame_info): Add pc_unwind, pc_unwind_cache_p and
318 pc_unwind_cache. Rename register_unwind_cache to unwind_cache.
319 (frame_pc_unwind): Declare.
320 * dummy-frame.c (dummy_frame_pc_unwind): New function.
321 (struct dummy_frame): Add comment mentioning that values are for
322 previous frame.
323 * dummy-frame.h (dummy_frame_pc_unwind): Declare.
324 * blockframe.c (file_frame_chain_valid): Use frame_pc_unwind.
325 (generic_file_frame_chain_valid): Ditto.
326 * stack.c (frame_info): Ditto.
327
328 2002-11-15 David Carlton <carlton@math.stanford.edu>
329
330 * linespec.c (locate_first_half): New function.
331 (decode_line_1): Move code into locate_first_half.
332
333 2002-11-15 Andrew Cagney <ac131313@redhat.com>
334
335 * complaints.h: Add comment explaining how to eliminate a
336 deprecated_complain call.
337 * complaints.h: Fix spelling errors.
338
339 2002-11-15 David Carlton <carlton@math.stanford.edu>
340
341 * printcmd.c: Remove #include "disasm.h".
342
343 2002-11-14 Andrew Cagney <ac131313@redhat.com>
344
345 * frame.h: Move the most relevant interface functions to the start
346 of the file.
347
348 2002-11-14 Andrew Cagney <ac131313@redhat.com>
349
350 * regcache.h (deprecated_registers): Rename registers.
351 * a68v-nat.c, alpha-nat.c, arch-utils.c, core-sol2.c: Update.
352 * hp300ux-nat.c, hppab-nat.c, hppah-nat.c: Update.
353 * hppam3-nat.c, hpux-thread.c, i386gnu-nat.c: Update.
354 * ia64-aix-nat.c, ia64-linux-nat.c, ia64-tdep.c: Update.
355 * irix4-nat.c, irix5-nat.c, lynx-nat.c, m68k-tdep.c: Update.
356 * m68knbsd-nat.c, mips-linux-tdep.c, mipsm3-nat.c: Update.
357 * mipsv4-nat.c, ns32knbsd-nat.c, ppc-bdm.c: Update.
358 * ppc-sysv-tdep.c, ptx4-nat.c, regcache.c, remote-es.c: Update.
359 * remote-sds.c, remote-vx68.c, remote-vxmips.c: Update.
360 * remote-vxsparc.c, rs6000-tdep.c, sol-thread.c: Update.
361 * sparc-nat.c, sparc-tdep.c, sun3-nat.c, symm-nat.c: Update.
362 * v850ice.c: Update.
363
364 Wed Nov 13 19:51:05 2002 Andrew Cagney <cagney@redhat.com>
365
366 * utils.c (gdb_realpath): Add comment mentioning realpath with a
367 NULL buffer.
368
369 2002-11-13 Andrew Cagney <cagney@redhat.com>
370
371 * regcache.h (deprecated_read_register_bytes): Rename
372 read_register_bytes.
373 (deprecated_write_register_bytes): Rename write_register_bytes.
374 * alpha-tdep.c, arm-tdep.c, cris-tdep.c, d10v-tdep.c: Update.
375 * dwarf2cfi.c, frv-tdep.c, hppa-tdep.c, ia64-tdep.c: Update.
376 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10300-tdep.c: Update.
377 * ns32k-tdep.c, regcache.c, remote-sds.c, remote-vx.c: Update.
378 * remote.c, rs6000-tdep.c, s390-tdep.c, sh-tdep.c: Update.
379 * sparc-tdep.c, v850-tdep.c, vax-tdep.c, x86-64-tdep.c: Update.
380 * xstormy16-tdep.c, z8k-tdep.c, config/nm-gnu.h: Update.
381 * config/nm-m3.h, config/h8500/tm-h8500.h: Update.
382 * config/i386/nm-ptx4.h, config/i386/nm-symmetry.h: Update.
383 * config/m32r/tm-m32r.h, config/m68k/nm-sun3.h: Update.
384 * config/m68k/tm-delta68.h, config/m68k/tm-linux.h: Update.
385 * config/mn10200/tm-mn10200.h, config/pa/tm-hppa64.h: Update.
386 * config/sparc/nm-nbsd.h, config/sparc/nm-sun4os4.h: Update.
387 * config/sparc/nm-sun4sol2.h, config/sparc/tm-sparclet.h: Update.
388
389 2002-11-13 Jim Blandy <jimb@redhat.com>
390
391 * findvar.c (read_var_value): Doc fix.
392
393 2002-11-13 Andrew Cagney <cagney@redhat.com>
394
395 * regcache.c (struct regcache): Replace passthough_p with
396 readonly_p.
397 (regcache_xmalloc): Initialize readonly_p.
398 (build_regcache): Initialize readonly_p.
399 (regcache_save): New function.
400 (regcache_restore): New function.
401 (regcache_cpy): Re-implement using regcache_save and
402 regcache_restore.
403 (regcache_raw_read): Update.
404 (regcache_cooked_read): When a read-only cache, checked for cached
405 pseudo register values.
406 (regcache_raw_write): Assert that the cache is not read-only.
407 Remove code handling a non-passthrough cache.
408 * regcache.h (regcache_save): Declare.
409 (regcache_restore): Declare.
410
411 2002-11-13 Andrew Cagney <cagney@redhat.com>
412
413 * regcache.c (struct regcache_descr): Add fields
414 sizeof_cooked_registers and sizeof_cooked_register_valid_p.
415 (init_legacy_regcache_descr): Compute the size of a cooked
416 register cache and then assign that to sizeof_raw_registers. Set
417 sizeof_raw_register_valid_p to sizeof_cooked_register_valid_p
418 (init_legacy_regcache_descr): Ditto.
419
420 2002-11-13 Andrew Cagney <cagney@redhat.com>
421
422 * regcache.c (register_buffer): Move to near start of file, update
423 description.
424 (regcache_raw_read): Use.
425 (regcache_raw_write): Use.
426 (struct regcache): Rename raw_registers to registers and
427 raw_register_valid_p to register_valid_p.
428 (regcache_xmalloc): Update.
429 (regcache_xfree): Update.
430 (register_buffer): Update.
431 (regcache_cpy): Update.
432 (regcache_cpy_no_passthrough): Update.
433 (regcache_valid_p): Update.
434 (deprecated_grub_regcache_for_registers): Update.
435 (deprecated_grub_regcache_for_register_valid): Update.
436 (set_register_cached): Update.
437 (regcache_raw_write): Update.
438
439 2002-11-13 Pierre Muller <muller@ics.u-strasbg.fr>
440
441 * p-exp.y (name_not_typename): Use copy_name to
442 set current_type variable for fields of THIS.
443
444 2002-11-12 Daniel Jacobowitz <drow@mvista.com>
445
446 * gnu-nat.c (init_gnu_ops): Remove NULL initializations.
447 * monitor.c (init_base_monitor_ops): Likewise.
448 * ppc-bdm.c (init_bdm_ppc_ops): Likewise.
449 * remote-array.c (init_array_ops): Likewise.
450 * remote-e7000.c (init_e7000_ops): Likewise.
451 * remote-es.c (init_es1800_ops): Likewise.
452 (init_es1800_child_ops): Likewise.
453 * remote-rdp.c (init_remote_rdp_ops): Likewise.
454 * remote-sim.c (init_gdbsim_ops): Likewise.
455 * remote-st.c (init_st2000_ops): Likewise.
456 * sol-thread.c (init_sol_core_ops): Likewise.
457 (init_sol_thread_ops): Likewise.
458 * v850ice.c (init_850ice_ops): Likewise.
459 * win32-nat.c (init_child_ops): Likewise.
460 * wince.c (init_child_ops): Likewise.
461
462 2002-11-12 Andrew Cagney <ac131313@redhat.com>
463
464 * utils.c (gdb_realpath): Make rp a constant pointer.
465
466 2002-11-12 Andrew Cagney <ac131313@redhat.com>
467
468 * utils.c (gdb_realpath): Rewrite. Try, in order: realpath() with
469 a constant buffer; cannonicalize_file_name(); realpath() with a
470 pathconf() defined buffer, xstrdup().
471
472 2002-11-12 Andrew Cagney <ac131313@redhat.com>
473
474 * config/djgpp/fnchange.lst: Fix typo, hang1.c to hang1.C; hang2.c
475 to hang2.C; hang3.c to hang3.C.
476
477 2002-11-11 Elena Zannoni <ezannoni@redhat.com>
478
479 * findvar.c (read_var_value): Reenable TLS code.
480
481 2002-11-11 Elena Zannoni <ezannoni@redhat.com>
482 Jim Blandy <jimb@redhat.com>
483
484 * gdb_thread_db.h (enum): Add TD_NOTALLOC.
485 * target.c (update_current_target): Add
486 to_get_thread_local_address.
487 * target.h (to_get_thread_local_address): Export.
488 (target_get_thread_local_address): Define.
489 (target_get_thread_local_address_p): Define.
490 * thread-db.c: Include solib-svr4.h.
491 (td_thr_tls_get_addr_p): Define.
492 (thread_db_load): Get a pointer to td_thr_tls_get_addr.
493 (thread_db_get_thread_local_address): New function.
494 (init_thread_db_ops): Initialize to_get_thread_local_address.
495 * configure.in: Add test for TD_NOTALLOC in thread_db.h.
496 * configure: Regenerate.
497 * config.in: Regenerate.
498
499 2002-11-11 David Carlton <carlton@math.stanford.edu>
500
501 * linespec.c (set_flags): New function.
502 (decode_line_1): Move code into set_flags.
503
504 2002-11-11 David Carlton <carlton@math.stanford.edu>
505
506 * linespec.c (decode_line_1): Move chunks of code to separate
507 functions.
508 (initialize_defaults): New function.
509 (decode_indirect): New function.
510
511 2002-11-11 Andrew Cagney <ac131313@redhat.com>
512
513 * blockframe.c (sigtramp_saved_pc): Fix tipo. void_func_ptr
514 instead of void_code_ptr.
515 (sigtramp_saved_pc): Ditto.
516
517 * x86-64-tdep.c (i386_fp_regnum_p): Copy i386-tdep.c's
518 i386_fp_regnum_p.
519
520 2002-11-10 Daniel Jacobowitz <drow@mvista.com>
521
522 * gdbtypes.h (struct main_type): Move artificial flag out of
523 loc. New member of ``struct field'' named static_kind. Reduce
524 overloaded meaning of bitsize.
525 (FIELD_ARTIFICIAL, SET_FIELD_PHYSNAME, SET_FIELD_PHYSADDR)
526 (TYPE_FIELD_STATIC, TYPE_FIELD_STATIC_HAS_ADDR): Likewise.
527 (FIELD_STATIC_KIND, TYPE_FIELD_STATIC_KIND): New macros.
528
529 * ada-lang.c (fill_in_ada_prototype): Initialize static_kind for
530 new fields.
531 (template_to_fixed_record_type, template_to_static_fixed_type)
532 (to_record_with_fixed_variant_part): Likewise.
533 * coffread.c (coff_read_struct_type, coff_read_enum_type): Likewise.
534 * dwarf2read.c (dwarf2_add_field, read_enumeration): Likewise.
535 * dwarfread.c (struct_type, enum_type): Likewise.
536 * hpread.c (hpread_read_enum_type)
537 (hpread_read_function_type, hpread_read_doc_function_type)
538 (hpread_read_struct_type): Likewise.
539 * mdebugread.c (parse_symbol): Likewise.
540
541 2002-11-10 Andrew Cagney <ac131313@redhat.com>
542
543 * breakpoint.h (deprecated_frame_in_dummy): Rename frame_in_dummy.
544 * stack.c (print_frame_info_base): Update.
545 (print_frame_info_base, frame_info): Update.
546 * sparc-tdep.c (sparc_init_extra_frame_info): Update.
547 (sparc_frame_saved_pc): Update.
548 * ada-lang.c (find_printable_frame): Update.
549 * breakpoint.c (deprecated_frame_in_dummy): Update.
550
551 2002-11-09 Mark Kettenis <kettenis@gnu.org>
552
553 * i386-linux-nat.c (ORIG_EAX): Define to -1 if not already
554 defined.
555 (regmap): Extend to cover all registers.
556 (PT_READ_U, PT_WRITE_U, PTRACE_XFER_TYPE,
557 OLD_CANNOT_FETCH_REGISTERS, OLD_CANNOT_STORE_REGISTERS): Remove
558 definitions.
559 (fetch_register, sore_register): Simplify.
560 (old_fetch_inferior_registers, old_store_inferior_registers):
561 Remove functions.
562 (cannot_fetch_register, cannot_store_register): Change
563 implementation to use regmap array to decide which registers
564 cannot be fetched/stored. This removes $orig_eax from the
565 registers that cannot be fetched/stored.
566 (fetch_inferior_registers): Call fetch_register directly instead
567 of calling old_fetch_inferior_registers.
568 (store_inferior_registers): Call store_register directly instead
569 of calling old_store_inferior_registers.
570 (i386_linux_dr_get): Replace PT_READ_U with PTRACE_PEEKUSER.
571 (i386_linux_dr_set): Replace PT_WRITE_U with PTRACE_POKEUSER.
572 * config/i386/nm-linux.h (U_REGS_OFFSET): Remove definition.
573
574 2002-11-09 Klee Dienes <kdienes@apple.com>
575
576 * i387-tdep.c (i387_supply_register): When called with NULL as a
577 buffer, mark the register as not provided (to mirror the behavior
578 of supply_register).
579 (i387_supply_fxsave): Ditto.
580 (i387_supply_fsave): Ditto (inherits the behavior from
581 i387_supply_register).
582
583 2002-11-09 Klee Dienes <kdienes@apple.com>
584
585 * blockframe.c (sigtramp_saved_pc): Use
586 builtin_type_void_code_ptr, not builtin_type_void_data_ptr (we are
587 extracting the PC). Use TYPE_LENGTH (builtin_type_void_code_ptr)
588 instead of (TARGET_PTR_BIT / TARGET_CHAR_BIT).
589
590 2002-11-09 Andrew Cagney <ac131313@redhat.com>
591
592 * frame.c (get_prev_frame): Test prev_p to identify a previously
593 unwound frame. Initialize prev_p.
594 * frame.h (struct frame_info): Add field prev_p. Expand prev/next
595 comment.
596
597 2002-11-09 Andrew Cagney <ac131313@redhat.com>
598
599 * frame.c (get_prev_frame): Cleanups. Eliminate redundant tests
600 for a NULL NEXT_FRAME. Simplify fromleaf initialization. Add
601 more comments. Zap dead code.
602
603 2002-11-09 Mark Kettenis <kettenis@gnu.org>
604
605 * infcmd.c (print_vector_info, print_float_info): Move code that
606 checks whether the target has any registers and whether there is a
607 selected frame up, such that it is also used if a target provides
608 multi-arch definitions of these functions.
609
610 2002-11-08 Andrew Cagney <ac131313@redhat.com>
611
612 * Makefile.in (DESTDIR): Define.
613 (install-only, install-gdbtk, uninstall-gdbtk): Add $(DESTDIR)
614 prefix.
615
616 * config/djgpp/fnchange.lst: 8.3 proof i386obsd-nat.c and
617 i386obsd-tdep.c. Rename to "gdb.cxx", paths containing "gdb.c++".
618
619 2002-11-08 Andrew Cagney <ac131313@redhat.com>
620
621 * i386-linux-tdep.c: Include "reggroups.h".
622 (i386_linux_register_reggroup_p): New function.
623 (i386_linux_init_abi): Set register_reggroup_p to
624 i386_linux_register_reggroup_p.
625 * i386-tdep.h (i386_register_reggroup_p): Declare.
626 * i386-tdep.c: Include "reggroups.h".
627 (i386_init_reggroups): New function.
628 (i386_add_reggroups): New function.
629 (i386_register_reggroup_p): New function.
630 (i386_sse_reggroup, i386_mmx_reggroup): New variables.
631 (_initialize_i386_tdep): Call i386_init_reggroups.
632 (i386_gdbarch_init): Set register_reggroup_p and add in the i386
633 specific reggroups.
634
635 2002-11-09 Mark Kettenis <kettenis@gnu.org>
636
637 * infptrace.c (child_xfer_memory): Make use of the new PT_IO
638 request that's available in *BSD.
639
640 * i386-tdep.h (IS_FPU_CTRL_REGNUM): Remove.
641
642 * i387-tdep.c (i387_fill_fxsave): Use FOOFF_REGNUM instead of
643 FDOFF_REGNUM.
644
645 2002-11-08 Andrew Cagney <ac131313@redhat.com>
646
647 * frame.c (set_unwind_by_pc): Use dummy_frame_register_unwind.
648 * dummy-frame.c (find_dummy_frame): Rename
649 generic_find_dummy_frame, make static. Return the dummy frame
650 instead of the regcache.
651 (generic_find_dummy_frame): Re-implement using find_dummy_frame,
652 (cached_find_dummy_frame): New function. Use find_dummy_frame.
653 (dummy_frame_register_unwind): Rename
654 generic_call_dummy_register_unwind. Use cached_find_dummy_frame.
655 * dummy-frame.h (dummy_frame_register_unwind): Rename
656 generic_call_dummy_register_unwind.
657
658 2002-11-08 Mark Kettenis <kettenis@gnu.org>
659
660 * config/i386/tm-i386v42mp.h: Remove file. Move its contents,
661 except the inclusion of "i386/tm-i386.h", to...
662 * config/i386/nm-i386v42mp.h: ...here.
663 * config/i386/i386v42mp.mt (TM_FILE): Set to tm-i386.h.
664
665 2002-11-08 Andrew Cagney <ac131313@redhat.com>
666
667 * Makefile.in (frame.o): Update dependencies.
668 * blockframe.c (current_frame, frame_obstack_alloc)
669 (frame_saved_regs_zalloc, get_current_frame)
670 (set_current_frame, create_new_frame)
671 (set_unwind_by_pc, get_next_frame)
672 (flush_cached_frames, reinit_frame_cache)
673 (frame_saved_regs_register_unwind)
674 (deprecated_generic_get_saved_register)
675 (get_prev_frame, get_frame_pc, get_frame_saved_regs)
676 (_initialize_blockframe): Move frame code from here...
677 * frame.c: ...to here. Include "gdb_obstack.h", "gdbcore.h",
678 "annotate.h" and "dummy-frame.h".
679 (_initialize_frame): New function.
680
681 2002-11-08 Jim Blandy <jimb@redhat.com>
682
683 * dwarf2read.c (read_func_scope): Restore list_in_scope properly
684 when we finish a function a context.
685 * buildsym.h (outermost_context_p): New macro.
686 (Bug analyzed by David Edelsohn.)
687
688 2002-11-08 Andrew Cagney <ac131313@redhat.com>
689
690 * blockframe.c: Include "dummy-frame.h".
691 (struct dummy_frame, dummy_frame_stack)
692 (generic_find_dummy_frame, deprecated_generic_find_dummy_frame)
693 (generic_pc_in_call_dummy, deprecated_read_register_dummy)
694 (generic_push_dummy_frame, generic_save_dummy_frame_tos)
695 (generic_save_call_dummy_addr, generic_pop_current_frame)
696 (generic_pop_dummy_frame, generic_fix_call_dummy)
697 (generic_fix_call_dummy, generic_call_dummy_register_unwind): Move
698 dummy frame code from here...
699 * dummy-frame.c: ...to here. New file.
700 * dummy-frame.h: New file.
701 (generic_call_dummy_register_unwind): Declare.
702 (generic_find_dummy_frame): Declare.
703 * Makefile.in (SFILES): Add dummy-frame.c.
704 (dummy-frame.o): Specify dependencies.
705 (dummy_frame_h): Define.
706 (COMMON_OBS): Add dummy-frame.o.
707 (blockframe.o): Update dependencies.
708
709 2002-11-08 Jim Blandy <jimb@redhat.com>
710
711 * dwarf2read.c (read_func_scope): Restore local_symbols and
712 param_symbols after we finish the function context. (Based on a
713 patch from David Edelsohn.)
714
715 2002-11-08 David Carlton <carlton@math.stanford.edu>
716
717 * linespec.c (symbol_found): New function.
718 (minsym_found): New function.
719 (decode_line_1): Separate out some code into separate functions.
720
721 2002-11-08 Joel Brobecker <brobecker@gnat.com>
722
723 * i386-tdep.c (i386_frameless_signal_p): Make non static for
724 the benefit of the interix target.
725 * i386-tdep.h (i386_frameless_signal_p): Declare.
726
727 2002-11-08 Andrew Cagney <ac131313@redhat.com>
728
729 * i386-tdep.h (i386_linux_orig_eax_regnum_p): Delete stray
730 declaration that snuck in from change below.
731
732 2002-11-06 Andrew Cagney <cagney@redhat.com>
733
734 * i386-tdep.c (i386_mmx_regnum_p): Rename mmx_regnum_p. Update
735 all callers.
736 (i386_fp_regnum_p): New function. Use instead of FP_REGNUM_P.
737 (i386_fpc_regnum_p): New function. Use instead of FPC_REGNUM_P.
738 (i386_sse_regnum_p): New function. Use instead of SSE_REGNUM_P.
739 (i386_mxcsr_regnum_p): new function. Use instead of
740 MXCSR_REGNUM_P.
741 * i386-tdep.h (SSE_REGNUM_P): Delete macro.
742 (i386_sse_regnum_p): Declare.
743 (i386_mxcsr_regnum_p): Declare.
744 (FP_REGNUM_P, FPC_REGNUM_P): Delete macros.
745 (i386_fp_regnum_p, i386_fpc_regnum_p): Declare.
746 (IS_FP_REGNUM): Update definition.
747 (IS_FPU_CTRL_REGNUM): Update definition..
748 (IS_SSE_REGNUM): Update definition..
749 * i386v-nat.c (register_u_addr): Update.
750 * go32-nat.c (fetch_register): Update.
751 (store_register): Update.
752
753 2002-11-07 Joel Brobecker <brobecker@gnat.com>
754
755 Preparation work to convert the hppa targets to multiarch partial.
756
757 * hppa-tdep.c: Add new functions replacing macro bodies from
758 config/pa/tm-hppa.h. These function will be used to initialize
759 the gdbarch structure. Import some comments from tm-hppa.h,
760 and place them where appropriate, to avoid loosing them when
761 we cleanup this file.
762 (hppa_reg_struct_has_addr): New function.
763 (hppa_inner_than): New function.
764 (hppa_stack_align): New function.
765 (hppa_pc_requires_run_before_use): New function.
766 (hppa_instruction_nullified): New function.
767 (hppa_register_byte): New function.
768 (hppa_register_virtual_type): New function.
769 (hppa_store_struct_return): New function.
770 (hppa_cannot_store_register): New function.
771 (hppa_frame_args_address): New function.
772 (hppa_frame_locals_address): New function.
773 (hppa_smash_text_address): New function.
774 (hppa_coerce_float_to_double): New function. Requires the inclusion
775 of "language.h".
776
777 * Makefile.in (hppa-tdep.o): Add dependency on language.h.
778
779 * tm-hppa.h (REG_STRUCT_HAS_ADDR): Change the definition of this
780 gdbarch-eligible macro to a call to the new associated function
781 created in hppa-tdep.c.
782 (INNER_THAN): Likewise.
783 (STACK_ALIGN): Likewise.
784 (PC_REQUIRES_RUN_BEFORE_USE): Likewise.
785 (INSTRUCTION_NULLIFIED): Likewise.
786 (REGISTER_BYTE): Likewise.
787 (REGISTER_VIRTUAL_TYPE): Likewise.
788 (STORE_STRUCT_RETURN): Likewise.
789 (CANNOT_STORE_REGISTER): Likewise.
790 (FRAME_ARGS_ADDRESS): Likewise.
791 (FRAME_LOCALS_ADDRESS): Likewise.
792 (SMASH_TEXT_ADDRESS): Likewise.
793 (COERCE_FLOAT_TO_DOUBLE): Likewise.
794 (ABOUT_TO_RETURN): Delete, as no longer used.
795
796 2002-11-07 Fernando Nasser <fnasser@redhat.com>
797
798 * printcmd.c (disassemble_command): Remove obsolete function.
799 (_initialize_printcmd): Do not create disassemble command here.
800 * cli/cli-cmds.c (disassemble_command): New function. Implements
801 disassemble command.
802 (init_cli_cmds): Create disassemble command here instead.
803
804 2002-11-07 Andrew Cagney <ac131313@redhat.com>
805
806 * MAINTAINERS: Add Daniel Jacobowitz to global maintainers list.
807
808 2002-11-07 Andrew Cagney <ac131313@redhat.com>
809
810 * regcache.h (regcache_cooked_read_using_offset_hack)
811 (regcache_cooked_write_using_offset_hack): Delete declarations.
812 (register_changed): Delete declaration.
813 * regcache.c (regcache_cooked_read_using_offset_hack)
814 (regcache_cooked_write_using_offset_hack): Delete functions.
815 (cooked_xfer_using_offset_hack): Delete function.
816 (register_changed): Delete function.
817
818 2002-11-07 Jim Blandy <jimb@redhat.com>
819
820 * macroscope.c: #include "complaints.h".
821 (sal_macro_scope): Cope with filenames that appear in the symtabs,
822 but not in the macro table.
823 * Makefile.in (macroscope.o): Record dependency.
824
825 2002-11-07 Joel Brobecker <brobecker@gnat.com>
826
827 * PROBLEMS: Document gdb/816 (unable to read core file on alpha-osf).
828
829 2002-11-07 Andrew Cagney <ac131313@redhat.com>
830
831 * regcache.c (deprecated_registers_fetched): Update.
832 * regcache.h (deprecated_registers_fetched): Rename
833 registers_fetched.
834 * remote-vxsparc.c (vx_read_register): Update.
835 * remote-vxmips.c (vx_read_register): Update.
836 * remote-vx68.c (vx_read_register): Update.
837 * irix5-nat.c (fetch_core_registers): Update.
838 * mipsm3-nat.c (fetch_inferior_registers): Update.
839 * sun3-nat.c (fetch_inferior_registers): Update.
840 * symm-nat.c (fetch_inferior_registers): Update.
841 * ns32knbsd-nat.c (fetch_inferior_registers): Update.
842 (fetch_core_registers): Update.
843 (fetch_kcore_registers): Update.
844 * mips-nat.c (fetch_inferior_registers): Update.
845 * corelow.c (get_core_registers): Update.
846 * a68v-nat.c (fetch_inferior_registers): Update.
847
848 2002-11-06 Joel Brobecker <brobecker@gnat.com>
849
850 Put in place the framework necessary for multiarching the hppa targets.
851 * hppa-tdep.c (hppa_gdbarch_init): New function.
852 (hppa_dump_tdep): New function.
853 (_initialize_hppa_tdep): Register the hppa gdbarch init function and
854 tdep structure dumper.
855 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): New macro, defined to 0
856 until the multi-arching conversion has partially been completed.
857
858 2002-11-06 Andrew Cagney <ac131313@redhat.com>
859
860 * valops.c (value_assign): Merge lval_register case into
861 lval_reg_frame_relative. Use frame_register and
862 regcache_cooked_write instead of get_saved_register and
863 write_register_bytes. After flushing the register cache, try to
864 re-select the selected frame.
865
866 2002-11-06 Andrew Cagney <ac131313@redhat.com>
867
868 * regcache.h (deprecated_register_valid): Rename register_valid.
869 * regcache.c: Update.
870 * ia64-aix-nat.c: Update.
871 * i386gnu-nat.c: Update.
872 * alpha-nat.c: Update.
873 * sparc-nat.c: Update.
874 * lynx-nat.c: Update.
875 * remote-mips.c: Update.
876
877 2002-11-06 Joel Brobecker <brobecker@gnat.com>
878
879 * hppa-tdep.c (_initialize_hppa_tdep): Move function body
880 to end of file, to be more consistent with the pratice followed
881 by other targets.
882
883 2002-11-06 Andrew Cagney <ac131313@redhat.com>
884
885 * infcmd.c: Include "reggroups.h" and <ctype.h>.
886 (print_float_info): Print registers in float_reggroup.
887 (print_vector_info): Print registers in vector_reggroup.
888 (default_print_registers_info): When all, print registers in
889 all_reggroup. Otherwize, print registers in general_reggroup.
890 (registers_info): Rewrite. Add support for register groups.
891 Eliminate a goto.
892
893 2002-11-06 Elena Zannoni <ezannoni@redhat.com>
894
895 * symtab.c (methods_info): Delete. It has been ifdeffed out for
896 ages.
897 (symtab_symbol_info): Remove eons old ifdeffed out code.
898 (_initialize_symtab): Remove prehistoric disabled 'info methods'
899 command.
900
901 2002-11-06 Theodore A. Roth <troth@openavr.org>
902
903 * c-exp.y: Add missing semi-colons.
904 * f-exp.y: Add missing semi-colons.
905 * m2-exp.y: Add missing semi-colons.
906 * p-exp.y: Add missing semi-colons.
907 Add empty action to start rule to avoid a type clash error when
908 building with bison >= 1.50.
909
910 2002-11-06 Jim Blandy <jimb@redhat.com>
911
912 * macrotab.h (struct macro_source_file): Doc fix.
913
914 2002-11-05 Jeff Johnston <jjohnstn@redhat.com>
915
916 * varobj.c (child_exists, cplus_number_of_children): Change
917 STREQ macro references to strcmp.
918 (cplus_name_of_child): Change code to handle the fact that
919 fields are not necessarily contiguous with regards to their
920 access control. This is a fix for PR gdb/792.
921
922 2002-11-05 Andrew Cagney <ac131313@redhat.com>
923
924 * gdbarch.sh (GET_SAVED_REGISTER): Change to a predicate function.
925 * gdbarch.h, gdbarch.c: Regnerate.
926 * frame.h (frame_register): Declare.
927 * frame.c (frame_register): New function.
928 (get_saved_register): Test GET_SAVED_REGISTER_P before calling
929 GET_SAVED_REGISTER, otherwize call
930 generic_unwind_get_saved_register.
931 (frame_register_read): Use frame_register instead of
932 get_saved_register.
933
934 2002-11-05 Elena Zannoni <ezannoni@redhat.com>
935
936 From Jim Ingham <jingham@apple.com>:
937 * event-top.c (gdb_disable_readline): New function.
938 (_initialize_event_loop): Move comment.
939
940 2002-11-05 Elena Zannoni <ezannoni@redhat.com>
941
942 * event-loop.c (start_event_loop): Add comment.
943 Update copyright.
944
945 2002-11-05 Andrew Cagney <ac131313@redhat.com>
946
947 * infcmd.c (default_print_registers_info): Do not call
948 PRINT_REGISTER_HOOK.
949
950 2002-11-05 Andrew Cagney <ac131313@redhat.com>
951
952 * sparc-tdep.c (sparc_print_register_hook): Make static.
953 (sparc_print_registers_info): New function.
954 (sparc_do_registers_info): New function.
955 (sparclet_print_registers_info): New function.
956 (sparclet_do_registers_info): New function.
957 (do_sparc_print_registers_info): New function.
958 (sparc_print_registers): New static function, clone of infcmd.c's
959 default_print_registers_info.
960 * config/sparc/tm-sparclet.h (PRINT_REGISTER_HOOK): Delete macro.
961 (sparclet_do_registers_info): Declare.
962 (DEPRECATED_DO_REGISTERS_INFO): Re-define.
963 * config/sparc/tm-sparc.h (DEPRECATED_DO_REGISTERS_INFO):
964 Re-define.
965 (sparc_do_registers_info): Declare.
966 (PRINT_REGISTER_HOOK): Delete macro.
967 (sparc_print_register_hook): Delete declaration.
968
969 2002-11-05 David Carlton <carlton@math.stanford.edu>
970
971 * symtab.c (lookup_symbol_aux): Move chunks of code into separate
972 functions.
973 (lookup_symbol_aux_local): New function.
974 (lookup_symbol_aux_symtabs): New function.
975 (lookup_symbol_aux_psymtabs): New function.
976
977 2002-11-05 David Carlton <carlton@math.stanford.edu>
978
979 * symtab.c (lookup_symbol_aux): In minsym sections, don't use the
980 previous values of 'objfile' and 'block'.
981
982 2002-11-05 Pierre Muller <muller@ics.u-strasbg.fr>
983
984 * values.c (value_change_enclosing_type): Set
985 enclosing_type field correctly also for the case where
986 more memory needs to be allocated.
987
988 2002-11-03 Mark Kettenis <kettenis@gnu.org>
989
990 * i387-tdep.c (i387_print_float_info): Call fputs_filtered instead
991 of puts_filtered.
992
993 * i387-tdep.c (i387_print_float_info): Replace calls to
994 register_read and deprecated_read_register_gen with calls to
995 frame_register_read, and make the necessary adjustments to the
996 surrounding code.
997
998 2002-11-02 Andrew Cagney <ac131313@redhat.com>
999
1000 * gdbarch.sh (register_reggroup_p): Allow default value.
1001 * gdbarch.h, gdbarch.c: Regenerate.
1002
1003 2002-11-02 Andrew Cagney <ac131313@redhat.com>
1004
1005 * regcache.h: Add coment indicating replacements for deprecated
1006 functions.
1007
1008 2002-11-02 Andrew Cagney <cagney@redhat.com>
1009
1010 * reggroups.h, reggroups.c: New files.
1011 * regcache.c: Include "reggroups.h".
1012 (enum regcache_dump_what): Add `regcache_dump_groups'.
1013 (regcache_dump): Contract size of the "Type" column. When
1014 specified, dump the register's groups.
1015 (maintenance_print_register_groups): New function.
1016 (_initialize_regcache): Add command `maint print register-groups'.
1017 * Makefile.in (COMMON_OBS): Add reggroups.o
1018 (SFILES): Add reggroups.c.
1019 (reggroups_h): Define.
1020 (regcache.o, gdbarch.o): Update dependencies.
1021 (reggroups.o): Specify dependencies.
1022 * gdbarch.sh (register_reggroup_p): Add pure multi-arch method.
1023 Add opaque declaration for `struct reggroup' in generated .h file.
1024 Include "reggroups.h" in generated .c file.
1025 gdbarch.h, gdbarch.c: Re-generate.
1026
1027 2002-11-02 Andrew Cagney <cagney@redhat.com>
1028
1029 * regcache.h (deprecated_read_register_gen): Rename
1030 read_register_gen.
1031 (deprecated_write_register_gen): Rename write_register_gen.
1032 * i387-tdep.c: Update.
1033 * x86-64-linux-nat.c: Update
1034 * wince.c: Update.
1035 * thread-db.c: Update.
1036 * win32-nat.c: Update.
1037 * mips-tdep.c: Update.
1038 * d10v-tdep.c: Update.
1039 * cris-tdep.c: Update.
1040 * remote-sim.c: Update.
1041 * remote-rdi.c: Update.
1042 * remote-rdp.c: Update.
1043 * frame.c: Update.
1044 * target.c: Update.
1045 * blockframe.c: Update.
1046 * x86-64-tdep.c: Update.
1047 * xstormy16-tdep.c: Update.
1048 * sh-tdep.c: Update.
1049 * s390-tdep.c: Update.
1050 * rs6000-tdep.c: Update.
1051 * sparc-tdep.c: Update.
1052 * i386-tdep.c: Update.
1053 * dwarf2cfi.c: Update.
1054 * regcache.c: Update.
1055
1056 2002-11-01 Joel Brobecker <brobecker@gnat.com>
1057
1058 New interix-specific files:
1059 * config/i386/nm-interix.h: New file.
1060 * config/i386/interix.mh: New file.
1061 * config/i386/interix.mt: New file.
1062 * i386-interix-nat.c: New file.
1063 * i386-interix-tdep.c: New file.
1064
1065 2002-11-01 Andrew Cagney <cagney@redhat.com>
1066
1067 * frame.h (deprecated_generic_get_saved_register): Rename
1068 generic_get_saved_register.
1069 * blockframe.c (deprecated_generic_get_saved_register): Update.
1070 * xstormy16-tdep.c (xstormy16_get_saved_register): Update.
1071 (xstormy16_frame_saved_register): Update.
1072 * sh-tdep.c (sh_gdbarch_init): Update.
1073 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1074 * ia64-tdep.c (ia64_get_saved_register): Update.
1075 * cris-tdep.c (cris_gdbarch_init): Update.
1076 * config/m32r/tm-m32r.h (GET_SAVED_REGISTER): Update.
1077 * arm-tdep.c (arm_gdbarch_init): Update.
1078
1079 2002-10-31 Daniel Jacobowitz <drow@mvista.com>
1080
1081 * lin-lwp.c (lin_lwp_resume): Remove resume_all test for !step.
1082
1083 2002-10-31 Daniel Jacobowitz <drow@mvista.com>
1084
1085 * i386-linux-tdep.c (i386_linux_pc_in_sigtramp): Check for
1086 trampolines in sigaction.
1087
1088 2002-10-31 Andrew Cagney <cagney@redhat.com>
1089
1090 * h8300-tdep.c: Include "gdb_assert.h".
1091 (h8300_print_register): Add gdbarch, file and frame parameters.
1092 Use frame_read_unsigned_register to read the register's value.
1093 Use fprintf_filtered to display output.
1094 (h8300_print_registers_info): Replace h8300_do_registers_info.
1095 (h8300_gdbarch_init): Set print_registers_info.
1096
1097 2002-10-31 Andrew Cagney <cagney@redhat.com>
1098
1099 * frame.c (frame_read_unsigned_register): New function.
1100 (frame_read_signed_register): New function.
1101 * frame.h (frame_read_unsigned_register): Declare.
1102 (frame_read_signed_register): Declare.
1103
1104 2002-10-31 Andrew Cagney <cagney@redhat.com>
1105
1106 * h8500-tdep.c (h8500_print_registers_info): New static function,
1107 clone of infcmd.c's default_print_registers_info.
1108 (h8500_do_registers_info): New funtion.
1109 (h8500_print_register_hook): Rename print_register_hook, make
1110 static.
1111
1112 * config/h8500/tm-h8500.h: Update copyright.
1113 (DEPRECATED_DO_REGISTERS_INFO): Define.
1114 (h8500_do_registers_info: Declare.
1115 (PRINT_REGISTER_HOOK): Delete macro.
1116 (print_register_hook): Delete function.
1117
1118 2002-10-31 Andrew Cagney <cagney@redhat.com>
1119
1120 * z8k-tdep.c (z8k_print_register_hook): Make static.
1121 (z8k_print_registers_info): New static function, clone of
1122 infcmd.c's default_print_registers_info.
1123 (z8k_do_registers_info): New function. Wrap
1124 z8k_print_registers_info.
1125 * config/z8k/tm-z8k.h: Update copyright.
1126 (PRINT_REGISTER_HOOK): Delete macro.
1127 (z8k_print_register_hook): Delete declaration.
1128 (DEPRECATED_DO_REGISTERS_INFO): Define.
1129 (z8k_do_registers_info): Declare.
1130
1131 2002-10-30 Joel Brobecker <brobecker@gnat.com>
1132
1133 * hppa-tdep.c (find_function_in_inferior): Remove this extern,
1134 as this is already provided by value.h, and was actually causing
1135 a compilation error because of a conflict in parameter type
1136 declaration due to a missing const keyword.
1137 (low_text_segment_addres): Fix a compilation warning.
1138
1139 2002-10-29 Daniel Jacobowitz <drow@mvista.com>
1140
1141 * mips-linux-nat.c (mips_linux_cannot_fetch_register): Don't fetch
1142 registers without a name.
1143 (mips_linux_cannot_store_register): Don't store registers without
1144 a name.
1145
1146 2002-10-28 David Carlton <carlton@math.stanford.edu>
1147
1148 * symtab.c (find_addr_symbol): Delete. (It was already commented
1149 out.)
1150 * symtab.h: Delete prototype for find_addr_symbol.
1151
1152 2002-10-26 Andrew Cagney <cagney@redhat.com>
1153
1154 * gdbarch.sh (DEPRECATED_DO_REGISTERS_INFO): Rename
1155 DO_REGISTERS_INFO.
1156 gdbarch.h, gdbarch.c: Re-generate.
1157 * infcmd.c (default_print_registers_info): Update reference.
1158 * mips-tdep.c (mips_gdbarch_init): Set deprecated_do_registers_info.
1159 (mips_dump_tdep): Do not print DO_REGISTERS_INFO.
1160 * sh-tdep.c (sh_gdbarch_init): Ditto.
1161 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1162 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1163
1164 2002-10-26 Mark Kettenis <kettenis@gnu.org>
1165
1166 * x86-64-tdep.c (x86_64_init_abi): Set init_extra_frame_info to
1167 cfi_init_extra_frame_info.
1168 * x86-64-tdep.h (x86_64_init_extra_frame_info): Remove prototype.
1169 * x86-64-linux-tdep.c (x86_64_init_extra_frame_info): Remove function.
1170
1171 * x86-64-tdep.c (x86_64_init_abi): Add calls to override the i386
1172 target where necessary. Add more comments and remove the ones
1173 that don't provide any useful information.
1174
1175 * i386-tdep.c (i386_frame_saved_pc): Replace call to
1176 deprecated_read_register_dummy with
1177 frame_unwind_unsigned_register.
1178
1179 * i386-tdep.c (i386_extract_struct_value_address): Use
1180 regcache_raw_read_unsigned instead of
1181 regcache_cooked_read_unsigned since we know that the register
1182 we're reading isn't a pseudo register. Rename variable 'val' into
1183 the more descriptive 'addr'.
1184
1185 * x86-64-tdep.c: Fix some formatting problems, mostly in comments.
1186 (x86_64_push_return_address): Add comment.
1187 (x86_64_pop_frame): Make static.
1188 (examine_argument): Clarify comment.
1189 (x86_64_skip_prologue): Make prolog_expact variable static.
1190
1191 * dwarf2cfi.c: Fix some formatting problems.
1192 (context_cpy, read_encoded_pointer): Clarify comments.
1193
1194 * x86-64-tdep.c (x86_64_breakpoint_from_pc): Constify.
1195 (x86_64_init_abi): Move set_gdbarch_* calls that overlap with the
1196 i386 target back into x86_64_gdbarch_init. Add some comments and
1197 remove meaningless ones.
1198
1199 2002-10-25 Andrew Cagney <cagney@redhat.com>
1200
1201 * complaints.h (struct deprecated_complaint): Rename `struct
1202 complaint'.
1203 * complaints.c (complain): Update.
1204 * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete
1205 incorrect comment indicating that "symfile.h" was being included
1206 for the `struct complaint' definition.
1207 * remote-vx.c: Update.
1208 * objc-lang.c: Update.
1209 * xcoffread.c: Update.
1210 * hpread.c: Update.
1211 * mdebugread.c: Update.
1212 * stabsread.c: Update.
1213 * dwarf2read.c: Update.
1214 * dwarfread.c: Update.
1215 * elfread.c: Update.
1216 * coffread.c: Update.
1217 * stabsread.h: Update.
1218 * dbxread.c: Update.
1219 * buildsym.c: Update.
1220 * gdbtypes.c: Update.
1221 * macrotab.c: Update.
1222
1223 2002-10-25 Mark Kettenis <kettenis@gnu.org>
1224
1225 * x86-64-tdep.c (x86_64_gdbarch_init): Make a bit more similar to
1226 the version in i386-tdep.c. Move set_gdbarch_* calls out into...
1227 (x86_64_init_abi): ...new function.
1228
1229 * Makefile.in (i386v-nat.o): Add $(i386_tdep_h).
1230 * i386v-nat.c: Include "i386-tdep.h".
1231
1232 2002-10-25 Andrew Cagney <cagney@redhat.com>
1233
1234 * gdbtypes.c (address_space_name_to_int): Update.
1235 (address_space_int_to_name): Update.
1236 * gdbarch.sh (address_class_type_flags_to_name): Change to a pure
1237 multi-arch predicate.
1238 (address_class_name_to_type_flags): Ditto.
1239 * gdbarch.h, gdbarch.c: Re-generate.
1240
1241 * MAINTAINERS: Check all warnings when h8300hms and alpha-elf.
1242
1243 2002-10-24 Martin M. Hunt <hunt@redhat.com>
1244
1245 * utils.c (string_to_core_addr): Revert patch from 11 Oct.
1246
1247 2002-10-24 Elena Zannoni <ezannoni@redhat.com>
1248
1249 * symtab.h (INIT_SAL): Delete macro.
1250 (init_sal): Export.
1251 * symtab.c (init_sal): New function.
1252
1253 * ada-lang.c (ada_finish_decode_line_1): Change INIT_SAL macro
1254 to init_sal function call.
1255 (find_sal_from_funcs_and_line): Ditto.
1256 (all_sals_for_line): Ditto.
1257 * breakpoint.c (create_internal_breakpoint): Ditto.
1258 (create_fork_vfork_event_catchpoint): Ditto.
1259 (create_exec_event_catchpoint): Ditto.
1260 (parse_breakpoint_sals): Ditto.
1261 (watch_command_1): Ditto.
1262 (handle_gnu_4_16_catch_command): Ditto.
1263 (clear_command): Ditto.
1264 * hppa-tdep.c (child_enable_exception_callback): Ditto.
1265 * infcmd.c (run_stack_dummy): Ditto.
1266 * infrun.c (process_event_stop_test): Ditto.
1267 (check_sigtramp2): Ditto.
1268 (step_over_function): Ditto.
1269 * linespec.c (decode_line_2): Ditto.
1270 (decode_line_1): Ditto.
1271 * source.c (line_info): Ditto.
1272 * symtab.c (find_pc_sect_line): Ditto.
1273
1274 2002-10-24 Michal Ludvig <mludvig@suse.cz>
1275
1276 * dwarf2cfi.c (struct context)
1277 (struct context_reg): Moved to dwarf2cfi.h
1278 (context_alloc, frame_state_alloc, context_cpy):
1279 Made extern instead of static, removed prototypes.
1280 * dwarf2cfi.h (struct context)
1281 (struct context_reg): New, moved from dwarf2cfi.c
1282 (context_alloc, frame_state_alloc, context_cpy):
1283 New prototypes.
1284 * x86-64-linux-tdep.c (x86_64_linux_sigtramp_saved_pc):
1285 Changed from static to extern.
1286 (LINUX_SIGINFO_SIZE, LINUX_SIGCONTEXT_PC_OFFSET)
1287 (LINUX_SIGCONTEXT_FP_OFFSET)
1288 (LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Adjusted.
1289 (x86_64_linux_in_sigtramp, x86_64_linux_frame_chain)
1290 (x86_64_init_frame_pc, x86_64_init_extra_frame_info): New.
1291 * x86-64-tdep.c (x86_64_gdbarch_init): Several
1292 set_gdbarch_*() calls now use x86-64 specific functions
1293 instead of DWARF2 CFI ones.
1294 * x86-64-tdep.h (x86_64_linux_in_sigtramp)
1295 (x86_64_linux_frame_chain, x86_64_init_frame_pc)
1296 (x86_64_init_extra_frame_info): New prototypes.
1297
1298 2002-10-23 David Carlton <carlton@math.stanford.edu>
1299
1300 * linespec.c: #include "parser-defs.h".
1301 Delete prototype for find_template_name_end.
1302 * Makefile.in (linespec.o): Depend on $(parser_defs_h).
1303
1304 2002-10-23 Jeff Johnston <jjohnstn@redhat.com>
1305
1306 * NEWS: add recent mi fixes.
1307 * varobj.c (struct varobj): Add new "updated" flag.
1308 (new_variable): Default "updated" flag to 0.
1309 (varobj_set_value): Set "updated" flag to 1 if value
1310 changes.
1311 (varobj_update): Check varobj "updated" flag before
1312 comparing old and refreshed values. Fix for
1313 PR gdb/702.
1314
1315 2002-10-23 David Carlton <carlton@math.stanford.edu>
1316
1317 * parse.c (parse_exp_1): Use BLOCK_START.
1318 * x86-64-tdep.c (x86_64_skip_prologue): Use BLOCK_END,
1319 SYMBOL_BLOCK_VALUE.
1320 * objc-lang.c (find_methods): Use BLOCK_START, BLOCK_END.
1321
1322 2002-10-23 David Carlton <carlton@math.stanford.edu>
1323
1324 * symtab.c: Delete cplusplus_hint.
1325 Delete prototype for find_template_name_end.
1326
1327 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
1328
1329 * symtab.h: Update comment.
1330
1331 2002-10-23 Michael Snyder <msnyder@redhat.com>
1332
1333 * printcmd.c (address_info): Restore quotes in output.
1334 * valops.c (value_of_local): Restore quotes in error message.
1335
1336 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
1337
1338 * symtab.c (symbol_demangled_name): New function.
1339 * symtab.h (SYMBOL_DEMANGLED_NAME): Simplify macro, by
1340 turning most of it into a function.
1341 (symbol_demangled_name): Export.
1342
1343 2002-10-23 Michael Snyder <msnyder@redhat.com>
1344
1345 * valops.c (value_of_local): Restore quotes in error message.
1346
1347 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
1348
1349 * symtab.c (symbol_init_language_specific): New function.
1350 * symtab.h (SYMBOL_INIT_LANGUAGE_SPECIFIC): Simplify macro, by
1351 turning most of it into a function.
1352 (symbol_init_language_specific): Export.
1353
1354 2002-10-23 David Carlton <carlton@math.stanford.edu>
1355
1356 * dwarf2read.c (dwarf_tag_name): Add DWARF 3 names.
1357 (dwarf_attr_name): Ditto.
1358 (dwarf_type_encoding_name): Ditto.
1359 (scan_partial_symbols): Descend into DW_TAG_namespace entries.
1360 (process_die): Handle DW_TAG_namespace,
1361 DW_TAG_imported_declaration, DW_TAG_imported_module.
1362 (read_namespace): New function.
1363
1364 2002-10-22 Joel Brobecker <brobecker@gnat.com>
1365
1366 * configure.in: Define NEW_PROC_API on Interix too.
1367 * configure: Regenerate.
1368
1369 2002-10-21 Joel Brobecker <brobecker@gnat.com>
1370
1371 * configure: Regenerate using the proper version of autoconf.
1372
1373 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
1374
1375 * findvar.c (read_var_value): Temporarily disable TLS code, until
1376 complete TLS support is added.
1377
1378 2002-10-21 Jim Blandy <jimb@redhat.com>
1379 Elena Zannoni <ezannoni@redhat.com>
1380
1381 * symtab.h (address_class): Re-add LOC_THREAD_LOCAL_STATIC
1382 for thread local storage locations.
1383 (struct symbol): Add objfile field.
1384 (SYMBOL_OBJFILE): Define.
1385 * dwarf2read.c (is_thread_local): New static variable.
1386 (new_symbol): If variable is in thread local fill in address class
1387 and objfile appropriately.
1388 (decode_locdesc): Recognize and handle DW_OP_GNU_push_tls_address
1389 stack operation.
1390 * printcmd.c (address_info): Print the information for thread
1391 local storage variable.
1392 * findvar.c (read_var_value): In case of thread local variable,
1393 defer to the target vector code to compute address.
1394
1395 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
1396
1397 * solib-svr4.c (svr4_fetch_objfile_link_map): New function.
1398 * solib-svr4.h (svr4_fetch_objfile_link_map): Export.
1399
1400 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
1401
1402 * symtab.h (address_class): Rename
1403 LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC.
1404 * hpread.c (hpread_process_one_debug_symbol): Ditto.
1405 * printcmd.c (address_info): Ditto.
1406 * findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
1407
1408 2002-10-20 Mark Kettenis <kettenis@gnu.org>
1409
1410 * i386bsd-nat.c (i386bsd_dr_set, i386bsd_dr_get_status): Use
1411 DBREG_DRX macro to acces debug registers.
1412
1413 * Makefile.in (i386obsd-tdep.o): New target.
1414
1415 * solib-sunos.c: Include "bcache.h" and "regcache.h".
1416 * Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h).
1417
1418 * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds.
1419 * config/i386/obsd.mt: New file.
1420 * i386bsd-nat.c (_initialize_i386bsd_nat): Introduce
1421 i386obsd_sc_pc_offset and i386obsd_sc_sp_offset;
1422 * i386obsd-nat.c (_initialize_i386obsd_nat): Set
1423 i386obsd_sigtramp_start and i386obsd_sigtramp_end instead of
1424 i386nbsd_sigtramp_start and i386nbsd_sigtramp_end.
1425 * i386obsd-tdep.c: New file.
1426
1427 2002-10-19 Adam Fedor <fedor@gnu.org>
1428
1429 * objc-exp.y (name_not_typename): Fix invalid comment.
1430
1431 2002-10-20 Mark Kettenis <kettenis@gnu.org>
1432
1433 * solib-sunos.c (allocate_rt_common_objfile): Use bcache_xmalloc
1434 to allocate partial syms and macro byte caches.
1435
1436 2002-10-18 David Carlton <carlton@math.stanford.edu>
1437
1438 * symtab.h: Delete 'struct source' and 'struct sourcevector'.
1439
1440 2002-10-18 Adam Fedor <fedor@gnu.org>
1441
1442 * stabsread.c (find_name_end): New function.
1443 (define_symbol): Use it.
1444
1445 2002-10-18 Daniel Jacobowitz <drow@mvista.com>
1446
1447 * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1448 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1449 * config/alpha/nm-nbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1450 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1451
1452 2002-10-17 David Carlton <carlton@math.stanford.edu>
1453
1454 * symfile.h: Add opaque declaration for struct obstack.
1455 Declare obsavestring to take a const char *.
1456 * symfile.c (obsavestring): Make first argument a const char *.
1457
1458 2002-10-16 Adam Fedor <fedor@gnu.org>
1459
1460 * breakpoint.c (parse_breakpoint_sals): Ignore ObjC method
1461 names when matching breakpoints in current file.
1462
1463 2002-10-16 Kevin Buettner <kevinb@redhat.com>
1464
1465 * dwarf2read.c (dwarf2_invalid_pointer_size): New complaint.
1466 (read_tag_pointer_type): Add address class support.
1467 * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS)
1468 (ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_NAME_TO_TYPE_FLAGS):
1469 New methods.
1470 * gdbarch.h, gdbarch.c: Regenerate.
1471 * gdbtypes.c (address_space_name_to_int, address_space_int_to_name)
1472 (make_type_with_address_space, recursive_type_dump): Add address
1473 class support.
1474 * gdbtypes.h (TYPE_FLAG_ADDRESS_CLASS_1, TYPE_FLAG_ADDRESS_CLASS_2)
1475 (TYPE_FLAG_ADDRESS_CLASS_ALL, TYPE_ADDRESS_CLASS_1)
1476 (TYPE_ADDRESS_CLASS_2, TYPE_ADDRESS_CLASS_ALL): New defines
1477
1478 2002-10-16 Klee Dienes <kdienes@apple.com>
1479
1480 * stabsread.c (read_tilde_fields): Use name[sizeof(vptr_name)-2]
1481 to get the last character of a char[] buffer, not
1482 name[sizeof(vptr_name)-1].
1483
1484 2002-10-14 Adam Fedor <fedor@gnu.org>
1485
1486 * symtab.h: New objc_specific struct.
1487 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Handle ObjC.
1488 (SYMBOL_DEMANGLED_NAME): Likewise.
1489
1490 2002-10-14 Adam Fedor <fedor@gnu.org>
1491
1492 * symfile.c (init_filename_language_table): Add ObjC file extension.
1493
1494 2002-10-14 Adam Fedor <fedor@gnu.org>
1495
1496 * utils.c (puts_filtered_tabular): New function.
1497 (fprintf_symbol_filtered): Get ObjC demangled name.
1498 * defs.h (puts_filtered_tabular): Declared.
1499
1500 2002-10-14 Kevin Buettner <kevinb@redhat.com>
1501
1502 * c-lang.h (c_type_print_varspec_prefix): Delete.
1503 * c-typeprint.c (c_type_print_varspec_prefix): Make static. Add
1504 ``need_post_space'' parameter. Adjust all callers.
1505
1506 2002-10-14 Daniel Jacobowitz <drow@mvista.com>
1507
1508 * config/mips/nm-irix4.h (HAVE_NONSTEPPABLE_WATCHPOINT): Define to 1.
1509 * config/mips/nm-irix5.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1510 * config/mips/tm-embed.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1511 * config/pa/nm-hppah.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1512
1513 2002-10-13 Adam Fedor <fedor@gnu.org>
1514
1515 * source.c (print_source_lines): Update comments.
1516
1517 2002-10-13 Adam Fedor <fedor@gnu.org>
1518
1519 * valops.c (value_of_local): New function.
1520 (value_of_this): Use it.
1521 * value.h (value_of_local): Declared.
1522
1523 2002-10-13 Adam Fedor <fedor@gnu.org>
1524
1525 * parse.c: (length_of_subexp, prefixify_subexp): Handle
1526 OP_MSGCALL, OP_SELECTOR, OP_NSSTRING, and OP_SELF.
1527
1528 2002-10-12 Adam Fedor <fedor@gnu.org>
1529
1530 * language.c (binop_result_type): Add language_objc to case.
1531 (integral_type): Likewise.
1532 (character_type): Likewise.
1533 (string_type): Likewise.
1534 (boolean_type): Likewise.
1535 (structured_type): Likewise.
1536 (binop_type_check): Likewise.
1537
1538 2002-10-11 Adam Fedor <fedor@gnu.org>
1539
1540 * printcmd.c (address_info): Print 'self' for ObjC.
1541
1542 2002-10-11 Adam Fedor <fedor@gnu.org>
1543
1544 * expression.h: New ops OP_NSSTRING, OP_SELECTOR, OP_MSGCALL, and
1545 OP_SELF.
1546
1547 2002-10-11 Adam Fedor <fedor@gnu.org>
1548
1549 * language.h (CAST_IS_CONVERSION): Add language_objc.
1550
1551 2002-10-11 Adam Fedor <fedor@gnu.org>
1552
1553 * defs.h (enum language): Add language_objc.
1554
1555 2002-10-11 Klee Dienes <kdienes@apple.com>
1556
1557 * corefile.c (read_memory_typed_address): New function.
1558 * gdbcore.h (read_memory_typed_address): Add prototype.
1559 * blockframe.c (sigtramp_saved_pc): Use read_memory_typed_address
1560 to read a value destined for a CORE_ADDR, not read_memory_integer.
1561 * f-valprint.c (f77_get_dynamic_upperbound): Ditto.
1562 (f77_get_dynamic_lowerbound): Ditto.
1563
1564 2002-10-11 Martin M. Hunt <hunt@redhat.com>
1565
1566 * utils.c (string_to_core_addr): After turning string into
1567 a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS
1568 which will do necessary sign-extension, etc.
1569
1570 2002-10-11 Daniel Jacobowitz <drow@mvista.com>
1571
1572 * c-exp.y (THIS): Delete token and grammar rule.
1573 (yylex): Don't return THIS.
1574 * cp-valprint.c (vtbl_ptr_name_old): Delete.
1575 (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
1576 * demangle.c (cplus_markers): Update comment. Put '$'
1577 first. Remove CPLUS_MARKER.
1578 (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
1579 * jv-exp.y (THIS): Delete token and grammar rule.
1580 (yylex): Don't return THIS.
1581 * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
1582 * objc-exp.y (THIS): Delete token and grammar rule.
1583 (yylex): Don't return THIS.
1584 * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
1585 * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
1586 (read_member_functions): Likewise for opname.
1587 (read_tilde_fields): Use is_cplus_marker.
1588
1589 * defs.h (CPLUS_MARKER): Don't define.
1590 * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
1591 * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
1592 * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
1593 * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
1594 * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
1595
1596 * config/i386/tm-i386v4.h: Delete file.
1597 * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
1598 * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
1599 * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
1600 * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
1601 * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
1602 * config/i386/i386sco5.mt (TM_FILE): Likewise.
1603 * config/i386/i386v4.mt (TM_FILE): Likewise.
1604 * config/i386/ncr3000.mt (TM_FILE): Likewise.
1605
1606 2002-10-10 Marko Mlinar <markom@opencores.org>
1607
1608 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
1609 accidentially not commited 2002-10-09
1610 * gdbarch.h, gdbarch.c: Re-generate.
1611
1612 2002-10-09 Marko Mlinar <markom@opencores.org>
1613
1614 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
1615 * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
1616 * gdbarch.h, gdbarch.c: Re-generate.
1617
1618 2002-10-08 Petr Sorfa <petrs@caldera.com>
1619
1620 Revised and re-submitted by John Wolfe <jlw@caldera.com>
1621
1622 Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
1623 so we can work on more than one compilation unit at a time. This
1624 helps prepare GDB to handle inter-CU die references.
1625 * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
1626 the code to be defined before struct comp_unit_head.
1627 (comp_unit_head): Added new members - offset, cu_head,
1628 begin_die, next and dwarf2_abbrevs.
1629 (dwarf2_abbrevs): Removed single static var; now member of
1630 struct comp_unit_head.
1631 dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
1632 members.
1633 (psymtab_to_symtab_1): Changed to work with the new
1634 struct comp_unit_head.
1635 (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
1636 constructs the dwarf2_abbrevs[] inside the cu_header.
1637 (dwarf2_empty_abbrev_table): Now expects a ptr to a
1638 dwarf2_abbrev table to clean up.
1639 (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
1640 handling of dwarf2_abbrevs inside the cu_header.
1641 (read_partial_die): Now supports the call to the new
1642 dwarf2_lookup_abbrev.
1643 (read_full_die): Now supports the call to the new
1644 dwarf2_lookup_abbrev.
1645
1646 2002-10-06 Christopher Faylor <cgf@redhat.com>
1647
1648 * Makefile.in (install-gdbtk): Add missing continuation backslash to
1649 insure that shell variables, such as "transformed_name" are propagated
1650 to later shell statements in rule.
1651
1652 2002-10-06 Mark Kettenis <kettenis@gnu.org>
1653
1654 * config/i386/nm-i386sco.h: Add protection against
1655 multiple-inclusion. Include "i386/nm-i386v.h".
1656 (REGISTER_U_ADDR): Remove define.
1657 (i386_register_u_addr): Remove prototype.
1658
1659 2002-10-04 Michael Snyder <msnyder@redhat.com>
1660
1661 * m32r-stub.c (handle_exception): Make sure exception is "trap"
1662 before treating it as a single-step event.
1663
1664 2002-10-03 Adam Fedor <fedor@gnu.org>
1665
1666 * objc-lang.c: ARI fixes. Change string.h to gdb_string.h.
1667 (objc_demangle): Remove assignment in if statements, Replace
1668 free with xfree.
1669 (add_msglist): Likewise.
1670 (end_msglist): Likewise.
1671 (complare_selectors): Likewise.
1672 (selectors_info): Likewise.
1673 (compare_classes): Likewise.
1674 (classes_info): Likewise.
1675 (print_object_command): Likewise.
1676 (find_objc_msgcall_submethod): Replace PTR with void *.
1677 * objc-lang.h: Remove check for __STDC__.
1678
1679 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1680
1681 * ui-out.h (ui_out_field_fmt_int): New prototype.
1682 * ui-out.c (ui_out_field_fmt_int): New function allowing specification
1683 of field width and alignment.
1684 * stack.c (print_frame_info_base): When printing frame level, use
1685 ui_out_field_fmt_int with a width of 2 and left alignment. Fix for
1686 PR gdb/192
1687
1688 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1689
1690 * MAINTAINERS: Add self to Write After Approval list.
1691
1692 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1693
1694 * infcmd.c (interrupt_target_command_wrapper): Delete.
1695 (interrupt_target_command): Make non static.
1696 (nofp_registers_info): Make static.
1697 * stack.c (return_command_wrapper): Delete.
1698 (return_command): Make non static.
1699
1700 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1701
1702 * event-top.c (gdb_setup_readline): New function. Code moved from
1703 _initialize_event_loop().
1704 (_initialize_event_loop): Call gdb_setup_readline().
1705
1706 2002-10-02 Andrew Cagney <ac131313@redhat.com>
1707
1708 * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
1709 * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
1710 * gdbarch.h, gdbarch.c: Re-generate.
1711
1712 2002-10-02 Daniel Jacobowitz <drow@mvista.com>
1713
1714 Fix PR gdb/778
1715 * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
1716 before recursing.
1717 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
1718 of fill_in_vptr_fieldno.
1719
1720 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
1721
1722 * inferior.h (registers_info, stepi_command, nexti_command,
1723 continue_command, interrupt_target_command): Export from infcmd.c.
1724 * frame.h (args_info, selected_frame_level_changed_hook,
1725 return_command): Export from stack.c.
1726 * v850ice.c (stepi_command, nexti_command, continue_command): use
1727 prototypes from inferior.h.
1728 * tracepoint.c (registers_info, args_info, locals_info): Use
1729 prototypes from frame.h and inferior.h.
1730 * Makefile.in (mi-main.o): Add dependency on frame.h.
1731
1732 2002-10-02 Andrew Cagney <ac131313@redhat.com>
1733
1734 * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
1735 value in register 3 adjusted by ppc_gp0_regnum.
1736
1737 * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
1738
1739 2002-10-02 Marko Mlinar <markom@opencores.org>
1740
1741 * MAINTAINERS: Add myself to the Write After Approval list.
1742
1743 2002-10-01 Alexandre Oliva <aoliva@redhat.com>
1744
1745 * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
1746 of the section for the N64 ABI, fixed.
1747
1748 * config/mips/tm-irix6.h: Include solib.h.
1749
1750 2002-10-01 Elena Zannoni <ezannoni@redhat.com>
1751
1752 * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
1753 GNU operators.
1754
1755 2002-10-01 Andrew Cagney <ac131313@redhat.com>
1756
1757 * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
1758 and that "mi0" syntax has been removed.
1759
1760 2002-09-30 David Carlton <carlton@math.stanford.edu>
1761
1762 * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
1763 * ppc-sysv-tdep.c: #include "gdb_string.h".
1764 * remote-sds.c (getmessage): Add semicolon after 'retry' label to
1765 pacify GCC.
1766
1767 2002-10-01 Andrew Cagney <ac131313@redhat.com>
1768
1769 * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
1770 "vrsave"'s register number.
1771
1772 2002-09-30 Andrew Cagney <ac131313@redhat.com>
1773
1774 * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
1775 use frame_unwind_signed_register to obtain the PC.
1776 (mips_frame_chain): Handle a generic dummy frame.
1777 (mips_init_extra_frame_info): When a generic dummy frame, don't
1778 re-compute the frame base.
1779 (mips_pop_frame): Handle generic dummy frames.
1780 (mips_gdbarch_init): When generic dummy frames, set
1781 use_generic_dummy_frames, push_dummy_frame to
1782 generic_push_dummy_frame, pc_in_call_dummy to
1783 generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
1784 generic_save_dummy_frame_tos.
1785
1786 2002-09-30 Andrew Cagney <ac131313@redhat.com>
1787
1788 * blockframe.c (generic_find_dummy_frame): Rewrite. Only test
1789 against TOP when TOP was explictly set.
1790 (generic_push_dummy_frame): Set TOP to zero.
1791
1792 2002-09-30 Elena Zannoni <ezannoni@redhat.com>
1793
1794 * event-loop.c (start_event_loop): Rename variable 'result' to
1795 'gdb_result', to avoid conflicts with upcoming intepreters changes.
1796
1797 2002-09-30 Keith Seitz <keiths@redhat.com>
1798
1799 * gdb-events.sh (selected_thread_changed): New event.
1800 * gdb-events.c: Regenerated.
1801 * gdb-events.h: Regenerated.
1802
1803 2002-09-30 Hans-Peter Nilsson <hp@bitrange.com>
1804
1805 * MAINTAINERS: Add self to Write After Approval list.
1806
1807 2002-09-30 Fernando Nasser <fnasser@redhat.com>
1808
1809 * disasm.c: New file.
1810 * disasm.h: New file.
1811 * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
1812 (compare_lines): Ditto.
1813 (dump_insns): Ditto.
1814 (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
1815 argument.
1816 (do_assembly_only): Ditto.
1817 (do_disassembly): Renamed to gdb_disassembly and moved to
1818 disasm.c. Sdded uiout argument.
1819 * Makefile.in: Add new files. Reorder SFILES list. Update
1820 dependencies. Include libgdb.a later in the insight executable.
1821
1822 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1823
1824 * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
1825 bfd/elf64-alpha-fbsd.c.
1826
1827 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1828
1829 * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
1830 i386gnu-tdep.c.
1831
1832 2002-09-29 Andrew Cagney <ac131313@redhat.com>
1833
1834 * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
1835 __FUNCTION__.
1836 * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
1837 function name.
1838 (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
1839 (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
1840 (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
1841 (S_msg_sig_post_reply): Ditto.
1842
1843 2002-09-28 Corinna Vinschen <vinschen@redhat.com>
1844
1845 * sh-tdep.c (sh_use_struct_convention): Use definition according
1846 to ABI.
1847 (sh_push_arguments): Store in register with correct endianess.
1848 (sh_default_store_return_value): Ditto.
1849 (sh_gdbarch_init): Set sizeof long double to 8.
1850
1851 2002-09-27 Mark Kettenis <kettenis@gnu.org>
1852
1853 * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
1854 Fix some whitespace problems.
1855
1856 2002-09-27 David Carlton <carlton@math.stanford.edu>
1857
1858 * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
1859 (mcore-tdep.o): Ditto.
1860 (ns32k-tdep.o): Ditto.
1861 (ns32knbsd-tdep.o): Ditto.
1862 (sh3-rom.o): Ditto.
1863 (vax-tdep.o): Ditto.
1864 * cris-tdep.c: #include "gdb_string.h"
1865 * mcore-tdep.c: Ditto.
1866 * ns32k-tdep.c: Ditto.
1867 * ns32knbsd-tdep.c: Ditto.
1868 * sh3-rom.c: Ditto.
1869 * vax-tdep.c: Ditto.
1870
1871 2002-09-27 David Carlton <carlton@math.stanford.edu>
1872
1873 * config/djgpp/fnchange.lst: Add entries for
1874 gdb/testsuite/gdb.c++/m-static files.
1875
1876 2002-09-27 Jim Wilson <wilson@redhat.com>
1877
1878 * MAINTAINERS: Add myself to the Write After Approval list.
1879
1880 2002-09-26 Martin M. Hunt <hunt@redhat.com>
1881
1882 * mips-tdep.c (find_proc_desc): Initialize startaddr.
1883
1884
1885 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1886
1887 * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
1888 frame.
1889
1890 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1891
1892 * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
1893 (rs6000_struct_return_address): Delete variable.
1894 (rs6000_store_struct_return): Update.
1895 (rs6000_gdbarch_init): Set extract_struct_value_address instead of
1896 deprecated_extract_struct_value_address.
1897 (rs6000_frame_align): New function.
1898 (rs6000_gdbarch_init): Set frame_align.
1899
1900 2002-09-26 Andrew Cagney <ac131313@redhat.com>
1901
1902 From Grace Sainsbury <graces@redhat.com>:
1903 * Makefile.in (gdbtk-main.o): New target.
1904 (gdb.o): New target.
1905 (main_h): Define.
1906 (main.o): Update dependencies.
1907 (gdb$(EXEEXT)): Add gdb.o.
1908 (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
1909 (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
1910 (SUBDIR_GDBTK_CLEAN): Set.
1911 (install-gdbtk): Install the insight binary.
1912 (uninstall-gdbtk): New target.
1913 (all-gdbtk, clean-gdbtk): New rule.
1914 * top.c (use_windows): Default to zero.
1915 * main.c: Include "main.h".
1916 (main): Delete.
1917 (struct captured_main_args): Delete.
1918 (gdb_main): New function.
1919 * main.h: New file.
1920 * gdb.c: New File.
1921
1922 2002-09-25 Andrew Cagney <cagney@redhat.com>
1923
1924 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
1925 (frame_map_regnum_to_name): New function.
1926 (frame_map_name_to_regnum): New function.
1927 * frame.h (frame_map_name_to_regnum): Declare.
1928 (frame_map_regnum_to_name): Declare.
1929 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
1930 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
1931 * parse.c: Do not include "builtin-regs.h".
1932 (target_map_name_to_register): Delete function.
1933 (write_dollar_variable): Use frame_map_name_to_regnum.
1934 * parser-defs.h (target_map_name_to_register): Delete declaration.
1935 * expprint.c: Include "frame.h".
1936 (print_subexp): Use frame_map_regnum_to_name.
1937 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
1938 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
1939
1940 2002-09-25 Andrew Cagney <ac131313@redhat.com>
1941
1942 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
1943 wasn't saved, and the next innermost frame is a dummy, return the
1944 dummy frame's link register.
1945
1946 2002-09-24 Jim Blandy <jimb@redhat.com>
1947
1948 Fix from Paul Breed:
1949 * main.c (captured_main): Add a `break' after the case for 'b'.
1950
1951 2002-09-24 Keith Seitz <keiths@redhat.com>
1952
1953 * varobj.c (c_type_of_child): Use get_target_type instead
1954 of TYPE_TARGET_TYPE.
1955
1956 2002-09-22 Fernando Nasser <fnasser@redhat.com>
1957
1958 * source.c (get_current_or_default_source_symtab_and_line): Remove
1959 function.
1960 (set_default_source_symtab_and_line): New function. Attempts to
1961 determine a source file to list lines from if one is not currently
1962 defined.
1963 (get_current_source_symtab_and_line): Initialize sal.pc and
1964 sal.end fields.
1965 (set_current_source_symtab_and_line): Mark argument as const.
1966 * source.h: Update declarations and comments.
1967 * linespec.c (decode_line_1): Replace call to removed routine above.
1968 * stack.c (print_frame_info_base): Ditto.
1969 * cli/cli-cmds.c (edit_command): Ditto.
1970 (list_command): Ditto.
1971
1972 2002-09-22 Fernando Nasser <fnasser@redhat.com>
1973
1974 * source.c (get_current_or_default_source_symtab_and_line): Initialize
1975 sal.pc and sal.end fields.
1976 (get_current_or_default_source_symtab_and_line): Ditto.
1977 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
1978 so we do not cause a new source symtab to be searched for (reverting an
1979 unintentional change from the 2002-09-20 patch).
1980 * scm-lang.c (scm_unpac): Ditto.
1981
1982 2002-09-21 Andrew Cagney <cagney@redhat.com>
1983
1984 * complaints.c (symfile_explanations): Remove new-line from
1985 ``isolated_message''.
1986 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
1987 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
1988
1989 2002-09-20 Nick Clifton <nickc@redhat.com>
1990
1991 * NEWS: Announce that V850EA ISA is no longer supported.
1992 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
1993
1994 2002-09-20 David Carlton <carlton@math.stanford.edu>
1995
1996 * Makefile.in (c-lang.o): Correct dependencies.
1997 (utils.o): Gather dependencies.
1998 (charset.o): Move.
1999 * c-lang.c: #include "gdb_string.h"
2000
2001 2002-09-20 Fernando Nasser <fnasser@redhat.com>
2002
2003 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
2004 * cli/cli-cmds.c (list_command): New function. Implements the new
2005 cli edit command.
2006 (_init_cli_cmds): Add new command definition.
2007 * gdb.1: Document edit command.
2008 * doc/gdb.texinfo: Document edit command.
2009
2010 2002-09-20 Fernando Nasser <fnasser@redhat.com>
2011
2012 * source.c: Make global variables current_source_symtab and
2013 current_source_line static.
2014 (list_command): Moved to cli/cli-cmds.c.
2015 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
2016 (get_first_line_listed): New accessor function.
2017 (get_lines_to_list): New accessor function.
2018 (get_current_source_symtab_and_line): New function. Retrieves the
2019 position in the source code that we consider current.
2020 (get_current_or_default_source_symtab_and_line): New function.
2021 Like the above but attempts to determine a default position if one
2022 is not currently defined.
2023 (set_current_source_symtab_and_line): New function. Sets the source
2024 code position considered current and returns the previously set one.
2025 (clear_current_source_symtab_and_line): Reset stored information about
2026 a current source line.
2027 (_initialize_source): Remove registration for the "list" command and
2028 its alias.
2029 * source.h: Add declarations for the new functions above.
2030 * symtab.h: Remove declarations for the global variables mentioned
2031 above.
2032 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
2033 obtain current source line.
2034 * linespec.c (decode_line_1): Ditto.
2035 * macroscope.c (default_macro_scope): Ditto.
2036 * scm-lang.c (scm_unpac): Ditto.
2037 * stack.c (print_frame_info_base): Ditto.
2038 * symfile.c (clear_symtab_users): Ditto.
2039 * symtab.c (decode_line_spec): Ditto.
2040 * cli/cli-cmds.c (list_command): Moved here from source.c.
2041 (ambiguous_line_spec): Moved here from source.c.
2042 (_init_cli_cmds): Add definition for "list" and its alias.
2043 * Makefile.in: Update dependencies.
2044
2045 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
2046
2047 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
2048 with what gcc thinks is correct.
2049
2050 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
2051
2052 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
2053 multiple register push instruction.
2054
2055 2002-09-19 Jim Blandy <jimb@redhat.com>
2056
2057 Add support for distinct host and target character sets.
2058 * charset.c, charset.h: New files.
2059 * c-exp.y: #include "charset.h".
2060 (yylex): Convert character and string literals to the target
2061 character set, before returning them as the semantic value of the
2062 token.
2063 * c-lang.c: #include "charset.h".
2064 (c_emit_char): Use charset-specific methods to recognize
2065 characters with backslash escape forms, to decide which characters
2066 to print literally and which to print using numeric escape
2067 sequences, and to convert target characters to host characters
2068 before printing.
2069 * utils.c: #include "charset.h".
2070 (no_control_char_error): New function.
2071 (parse_escape): Use charset-specific methods to recognize
2072 backslash escapes, parse `control character' notation, and convert
2073 characters from the host character set to the target character set.
2074 * configure.in: Set the default host character set.
2075 Check where to find iconv, and what its argument types might be.
2076 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
2077 * Makefile.in (SFILES): List charset.c.
2078 (COMMON_OBS): List charset.o.
2079 (charset.o): New rule.
2080 (charset_h): New header dependency variable.
2081 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
2082 (LIBICONV): New variable, set by configure.
2083 (CLIBS): Include $(LIBICONV) here.
2084 * aclocal.m4, config.in, configure: Regenerated.
2085
2086 2002-09-19 Joel Brobecker <brobecker@gnat.com>
2087
2088 * ada-exp.y: Add missing semicolons to end rules. Fixes a
2089 bison 1.35 warning.
2090
2091 2002-09-19 Richard Earnshaw <rearnsha@arm.com>
2092
2093 * gdb_mbuild.sh: New file.
2094
2095 2002-09-19 Andrew Cagney <ac131313@redhat.com>
2096
2097 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
2098
2099 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2100
2101 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
2102 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
2103 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
2104 valops.c, value.h: Revert previous change.
2105
2106 2002-09-18 Michael Snyder <msnyder@redhat.com>
2107
2108 Preliminary support for Objective-C:
2109 * defs.h (language_objc): New enum value.
2110 (puts_filtered_tabular): Declaration only, exported from utils.c.
2111 (skip_quoted): Delete, declared in completer.h.
2112 * c-exp.y: Include completer.h.
2113 * p-exp.y: Ditto.
2114 * jv-exp.y: Ditto.
2115 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
2116 New operator enum values.
2117 * language.h (CAST_IS_CONVERSION): Test for language_objc.
2118 * language.c (binop_result_type): Handle language_objc case.
2119 (integral_type, character_type, string_type, boolean_type,
2120 structured_type, binop_type_check): Ditto.
2121 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
2122 (struct objc_specific): Add to general_symbol_info.
2123 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
2124 (SYMBOL_DEMANGLED_NAME): Handle objc case.
2125 * parser-defs.h (struct objc_class_str): New struct type.
2126 (start_msglist, end_msglist, add_msglist): Declaration only,
2127 exported from objc-lang.c.
2128 * value.h (value_of_local, value_nsstring,
2129 call_function_by_hand_expecting_type): Exported from valops.c.
2130 * valops.c (find_function_addr): Export.
2131 (call_function_by_hand_expecting_type): New function.
2132 (value_of_local): New function.
2133 * symfile.c (init_filename_language_table): Add ".m" extension
2134 for Objective-C.
2135 * utils.c (puts_filtered_tabular): New function.
2136 (fprintf_symbol_filtered): Add objc demangling support (disabled).
2137 (set/show demangle): Extend help-string to refer to ObjC.
2138 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
2139 * stabsread.c (symbol_reference_defined): Objective-C symbols
2140 may contain colons: make allowances when scanning stabs strings
2141 for colons.
2142 (objc_find_colon): New function.
2143 * printcmd.c (address_info): If language == objc then print
2144 "self" instead of "this".
2145 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
2146 OP_NSSTRING, and OP_SELF.
2147 (prefixify_subexp): Ditto.
2148 * source.c (print_source_lines): Mention objc in comment.
2149 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
2150 method names.
2151
2152 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2153
2154 * complaints.h: Update copyright.
2155 (struct complaints): Declare.
2156 (struct complaint): Make `message' constant.
2157 (internal_complaint): Declare.
2158 (complaint): Declare.
2159 (complaint_root): Delete declaration.
2160 (symfile_complaints): Delete declaration.
2161 (struct complaints): Add opaque declaration.
2162 (clear_complaints): Add a complaints parameter.
2163 * complaints.c: Update copyright.
2164 (enum complaint_series): Define.
2165 (complaint_root): Delete.
2166 (struct complaints): Define.
2167 (complaint_sentinel, symfile_complaint_book): New variables.
2168 (symfile_explanations, symfile_complaints): New variables.
2169 New variables.
2170 (get_complaints): New function.
2171 (vcomplaint): New function.
2172 (complaint): New function.
2173 (internal_complaint): New function.
2174 (complain): Call vcomplain with symfile_complaint.
2175 (clear_complaints): Rewrite.
2176 (_initialize_complaints): Use add_setshow_command.
2177 * Makefile.in (complaints.o): Update dependencies.
2178 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
2179 to call to clear_complaints.
2180 (new_symfile_objfile, reread_symbols): Ditto.
2181 (oldsyms_complaint): Delete.
2182 (empty_symtab_complaint, unknown_option_complaint): Delete.
2183 (free_named_symtabs): Use complaint instead of complain.
2184
2185 2002-09-18 Michael Snyder <msnyder@redhat.com>
2186
2187 Contributed by Apple Computer, Inc. Merged with current sources
2188 by Adam Fedor <fedor@doc.com> [cagney].
2189
2190 * objc-lang.c: First clean-up round: comments, indentation.
2191 * objc-lang.h: Ditto.
2192 * objc-lang.y: Ditto.
2193
2194 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2195
2196 * maint.c (maintenance_internal_error): Print the parameter as the
2197 error message.
2198 (maintenance_internal_warning): New function.
2199 (_initialize_maint_cmds): Add command `maint internal-warning'.
2200
2201 * defs.h (internal_warning, internal_vwarning): Declare.
2202 * utils.c (struct internal_problem): Define.
2203 (internal_vproblem): New function.
2204 (internal_warning): New function.
2205 (internal_vwarning): New function.
2206 (internal_warning_problem, internal_error_problem): New variables.
2207 (internal_verror): Just call internal_vproblem.
2208
2209 2002-09-18 Michael Snyder <msnyder@redhat.com>
2210
2211 * objc-lang.c: New file, support for Objective-C.
2212 Preliminary check-in, not yet integrated into gdb.
2213 * objc-lang.h: New file.
2214 * objc-exp.y: New file.
2215
2216 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2217
2218 * infrun.c (signal_stop_update): Convert definition to ISO C.
2219 (signal_print_update): Ditto.
2220 (signal_pass_update): Ditto.
2221 * inflow.c (terminal_save_ours): Ditto.
2222
2223 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
2224 comments.
2225
2226 * config/djgpp/fnchange.lst: Handle name clashes between
2227 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
2228 bfd/coff-tic80.c.
2229
2230 * i386-linux-tdep.h: Fix tipo.
2231
2232 2002-09-18 Adam Fedor <fedor@gnu.org>
2233
2234 * MAINTAINERS: Add myself to the Write After Approval list.
2235
2236 2002-09-18 Jim Blandy <jimb@redhat.com>
2237
2238 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
2239 texthigh and textlow to reader-specific structs caused
2240 objfile_relocate to miss them. This is fixable, but the work that
2241 the change was supposed to prepare GDB for never got done anyway.
2242
2243 2002-09-18 David Carlton <carlton@math.stanford.edu>
2244
2245 * MAINTAINERS: Alphabetize Write After Approval list.
2246
2247 2002-09-18 Daniel Jacobowitz <drow@mvista.com>
2248
2249 Fix PR gdb/709
2250 * values.c (value_static_field): Call read_var_value.
2251
2252 2002-09-18 Andrew Cagney <ac131313@redhat.com>
2253
2254 * valops.c (hand_function_call): Align the initial stack pointer
2255 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
2256 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
2257 return value.
2258 * mips-tdep.c (mips_frame_align): New function.
2259 (mips_gdbarch_init): Set frame_align.
2260 * gdbarch.sh (FRAME_ALIGN): New method.
2261 * gdbarch.h, gdbarch.c: Re-generate.
2262
2263 2002-09-18 Michal Ludvig <mludvig@suse.cz>
2264
2265 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
2266 registers.
2267
2268 2002-09-17 Andrew Cagney <ac131313@redhat.com>
2269
2270 * NEWS: Mention that MIPS $fp behavior changed.
2271 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
2272 reference to FP_REGNUM.
2273 (mipsnbsd_cannot_store_register): Ditto.
2274 * mips-linux-nat.c: Update copyright.
2275 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
2276 (mips_linux_cannot_store_register): Ditto.
2277 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
2278 * config/mips/tm-mips.h: Update copyright.
2279 (FP_REGNUM): Delete macro.
2280 (MIPS_REGISTER_NAMES): Replace "fp" with "".
2281 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
2282 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
2283 (mips_r3041_reg_names, mips_r3051_reg_names)
2284 (mips_r3081_reg_names): Replace "fp" with "".
2285 Fix PR gdb/480.
2286
2287 2002-09-17 Theodore A. Roth <troth@verinet.com>
2288
2289 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
2290 generic_read_register_dummy() (PR gdb/703).
2291 (avr_push_return_address): #if 0 out unused vars.
2292 (avr_gdbarch_init): Enable use of avr_push_return_address().
2293
2294 2002-09-17 Michael Snyder <msnyder@redhat.com>
2295
2296 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
2297 RTE will take care of it.
2298
2299 2002-09-17 Andrew Cagney <ac131313@redhat.com>
2300
2301 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
2302 invalid, return SP_REGNUM.
2303
2304 2002-09-17 Michael Snyder <msnyder@redhat.com>
2305
2306 * mips-tdep.c (mips_pop_frame): Read saved values of floating
2307 point registers without sign extension.
2308
2309 2002-09-17 Andrew Cagney <cagney@redhat.com>
2310
2311 * blockframe.c (deprecated_read_register_dummy): Rename
2312 generic_read_register_dummy.
2313 * frame.c (frame_unwind_signed_register): New function.
2314 (frame_unwind_unsigned_register): New function.
2315 * frame.h (frame_unwind_signed_register): Declare.
2316 (frame_unwind_unsigned_register): Declare.
2317 (deprecated_read_register_dummy): Rename
2318 generic_read_register_dummy.
2319
2320 * h8300-tdep.c (h8300_frame_chain): Update.
2321 (h8300_frame_saved_pc): Update.
2322 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
2323 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
2324 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
2325 (s390_frame_chain): Update.
2326 * v850-tdep.c (v850_find_callers_reg): Update.
2327 (v850_frame_saved_pc): Update.
2328 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
2329 (m32r_find_callers_reg): Update.
2330 (m32r_frame_saved_pc): Update.
2331 * sh-tdep.c (sh_find_callers_reg): Update.
2332 (sh64_get_saved_pr): Update.
2333 (sh_init_extra_frame_info): Update.
2334 (sh_init_extra_frame_info): Update.
2335 (sh64_init_extra_frame_info): Update.
2336 (sh64_init_extra_frame_info): Update.
2337 * mcore-tdep.c (mcore_find_callers_reg): Update.
2338 (mcore_frame_saved_pc): Update.
2339 (mcore_init_extra_frame_info): Update.
2340 * i386-tdep.c (i386_frame_saved_pc): Update.
2341 * ia64-tdep.c (ia64_frame_saved_pc): Update.
2342 (ia64_init_extra_frame_info): Update.
2343 (ia64_init_extra_frame_info): Update.
2344 * d10v-tdep.c (d10v_frame_saved_pc): Update.
2345 * cris-tdep.c (cris_init_extra_frame_info): Update.
2346 * avr-tdep.c (avr_frame_chain): Update.
2347 (avr_init_extra_frame_info): Update.
2348 (avr_frame_saved_pc): Update.
2349 * arm-tdep.c (arm_find_callers_reg): Update.
2350 (arm_init_extra_frame_info): Update.
2351 (arm_frame_saved_pc): Update.
2352
2353 2002-09-17 Tom Tromey <tromey@redhat.com>
2354
2355 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
2356 is "'".
2357
2358 2002-09-17 Corinna Vinschen <vinschen@redhat.com>
2359
2360 * MAINTAINERS: Remove "non multi-arched" text from h8300.
2361 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
2362 NEXT_PROLOGUE_INSN.
2363 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
2364 NEXT_PROLOGUE_INSN.
2365
2366 2002-09-16 Joel Brobecker <brobecker@gnat.com>
2367
2368 * osfsolib.c: Remove file, replaced by solib-osf.c.
2369 * Makefile.in: Remove compilation rules for osfsolib.c.
2370
2371 2002-09-16 David Carlton <carlton@math.stanford.edu>
2372
2373 * cp-valprint.c (cp_print_class_method): Correct args to
2374 check_stub_method_group.
2375
2376 2002-09-16 Corinna Vinschen <vinschen@redhat.com>
2377
2378 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
2379 `set architecture'. Unify naming convention of functions.
2380 (h8300_skip_prologue): Improve prologue analysis.
2381 (h8300_push_arguments): Rewritten to more closely match GCC's
2382 bizarre argument-passing behavior, along with the comment describing
2383 said behavior.
2384 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
2385 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
2386 sim, remote-e7000.c, remote-hms.c and remote.c
2387
2388 2002-09-15 Mark Kettenis <kettenis@gnu.org>
2389
2390 * i386-tdep.c (gdb_print_insn_i386): Removed.
2391 (i386_print_insn): New function.
2392 (i386_gdbarch_init): Set print_insn to i386_print_insns.
2393 (_initialize_i386_tdep): Don't initialize tm_print_insn and
2394 tm_print_insn_info.
2395
2396 2002-09-14 Mark Kettenis <kettenis@gnu.org>
2397
2398 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
2399 zero.
2400
2401 2002-09-14 Corinna Vinschen <vinschen@redhat.com>
2402
2403 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
2404 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
2405 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
2406
2407 2002-09-13 Christopher Faylor <cgf@redhat.com>
2408
2409 * win32-nat.c (child_create_inferior): Honor 'tty' command.
2410
2411 2002-09-13 Daniel Jacobowitz <drow@mvista.com>
2412
2413 * gdbtypes.c (check_stub_method): Make static.
2414 (check_stub_method_group): New function.
2415 * gdbtypes.h: Update prototypes.
2416 * cp-support.c: New file.
2417 * cp-support.h: New file.
2418
2419 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
2420 (update_method_name_from_physname): New function.
2421 (read_member_functions): Correct method names for operators
2422 and v3 constructors/destructors. Separate v2 constructors and
2423 destructors.
2424 * Makefile.in (stabsread.o): Update dependencies.
2425 (SFILES): Add cp-support.c.
2426 (COMMON_OBS): Add cp-support.o.
2427 (cp_support_h, cp-support.o): Add.
2428
2429 * cp-valprint.c (cp_print_class_method): Call
2430 check_stub_method_group instead of check_stub_method. Remove
2431 extraneous QUITs.
2432 * p-valprint.c (pascal_object_print_class_method): Likewise.
2433 * valops.c (search_struct_method): Likewise.
2434 (find_method_list, value_struct_elt_for_reference): Likewise.
2435
2436 2002-09-13 Andrew Cagney <cagney@redhat.com>
2437
2438 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
2439 * gdbarch.h, gdbarch.c: Regenerate.
2440
2441 2002-09-13 Andrew Cagney <ac131313@redhat.com>
2442
2443 * frame.c (find_saved_register): Delete function.
2444 * frame.h (find_saved_register): Delete declaration.
2445 Fix PR gdb/631.
2446
2447 Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
2448
2449 * mips-tdep.c (read_next_frame_reg): Re-hack using
2450 frame_register_unwind.
2451
2452 Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
2453
2454 * mips-tdep.c (mips_get_saved_register): Re-hack using
2455 frame_register_unwind.
2456
2457 2002-09-12 Joel Brobecker <brobecker@gnat.com>
2458
2459 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
2460 vector. Will be useful for Interix.
2461 * gdbarch.h, gdbarch.c: Regenerate.
2462
2463 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
2464 name of the malloc function by NAME_OF_MALLOC.
2465
2466 2002-09-12 Joel Brobecker <brobecker@gnat.com>
2467
2468 * value.h (find_function_in_inferior): Add const keyword to
2469 one of the parameters. Allows us to invoke this function with
2470 a const char *.
2471 * valops.c (find_function_in_inferior): Likewise.
2472
2473 2002-09-12 Joel Brobecker <brobecker@gnat.com>
2474
2475 * exec.c (xfer_memory): Fix compilation warning with old versions
2476 of GCC.
2477 * tracepoint.c (trace_find_tracepoint_command): Likewise.
2478
2479 2002-09-12 David Carlton <carlton@math.stanford.edu>
2480
2481 * symtab.h: Run through gdb_indent.h.
2482 Add 2002 to Copyright year list.
2483
2484 2002-09-12 Alan Modra <amodra@bigpond.net.au>
2485
2486 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
2487 mach constants.
2488 * MAINTAINERS: Add myself to write after approval list.
2489
2490 2002-09-11 J. Brobecker <brobecker@gnat.com>
2491
2492 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
2493
2494 2002-09-11 J. Brobecker <brobecker@gnat.com>
2495
2496 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
2497 Interix.
2498
2499 2002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
2500
2501 * procfs.c (do_detach): Clear current signal, not just fault.
2502 Corrects problem with breakpoint trap signal leaking to detached
2503 process on Tru64.
2504
2505 2002-09-10 Michael Snyder <msnyder@redhat.com>
2506
2507 * buildsym.c (finish_block): Protect against null pointer.
2508
2509 2002-09-10 Andrew Cagney <cagney@redhat.com>
2510
2511 * infcmd.c (default_print_registers_info): Send all output to
2512 ``file'' instead of ``gdb_stdout''.
2513
2514 2002-09-10 Michael Snyder <msnyder@redhat.com>
2515
2516 * mips-tdep.c (mips_extract_struct_value_address): Make val a
2517 LONGEST, and use signed register read (addresses are sign-
2518 extended for mips).
2519
2520 2002-09-10 Stephane Carrez <stcarrez@nerim.fr>
2521
2522 * event-loop.c (gdb_do_one_event): Make public.
2523 * event-loop.h (gdb_do_one_event): Declare.
2524
2525 2002-09-10 Jeff Law <law@redhat.com>
2526
2527 * infttrace.c (child_resume): Simplify and rework to avoid
2528 TT_PROC_CONTINUE.
2529
2530 2002-09-09 Fred Fish <fnf@intrinsity.com>
2531
2532 * printcmd.c (print_scalar_formatted): "len" is the number of
2533 target bytes, NOT the number of target bits.
2534
2535 2002-09-09 Elena Zannoni <ezannoni@redhat.com>
2536
2537 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
2538 * top.c (init_main): Set rl_terminal_name.
2539
2540 2002-09-08 Aidan Skinner <aidan@velvet.net>
2541
2542 * ada-lang.c (ada_array_bound, ada_type_match,
2543 _initialize_ada_language): Fix K&R definitions.
2544 * ada-tasks.c (get_current_task): Fix K&R definitions.
2545 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
2546
2547 2002-09-07 Christopher Faylor <cgf@redhat.com>
2548
2549 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
2550 Add XP.
2551
2552 2002-09-06 Mark Kettenis <kettenis@gnu.org>
2553
2554 * i386-tdep.c (i386_register_virtual_type,
2555 i386_register_convertible, i386_register_convert_to_virtual,
2556 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
2557 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
2558 (i386_gdbarch_init): Fix comment. Add comments on calls that set
2559 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
2560 Don't set push_arguments twice.
2561
2562 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
2563 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
2564 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
2565 sigtramp_end to NULL.
2566 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
2567 defines.
2568 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
2569
2570 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
2571 whitespace.
2572
2573 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
2574 * gdbarch.h, gdbarch.c: Re-generate.
2575 * blockframe.c (find_pc_sect_partial_function): Convert to use
2576 SIGTRAMP_START_P predicate.
2577
2578 2002-09-05 Michael Snyder <msnyder@redhat.com>
2579
2580 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
2581 generic_dummy_frame method and old method. Also distinguish
2582 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
2583 (arm_extract_return_value): Use new regcache method.
2584
2585 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
2586 adjustment that doesn't conform to the ABI.
2587 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
2588 saved regcache, not from current regcache.
2589
2590 2002-09-05 Andrew Cagney <ac131313@redhat.com>
2591
2592 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
2593 * README: Update.
2594
2595 2002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
2596
2597 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
2598 if arm_apcs_32 is false.
2599
2600 2002-09-04 Andrew Cagney <ac131313@redhat.com>
2601
2602 GDB 5.3 branch created.
2603
2604 2002-09-03 Theodore A. Roth <troth@verinet.com>
2605
2606 * gdb/avr-tdep.c (avr_gdbarch_init): Use
2607 generic_unwind_get_saved_register.
2608
2609 2002-09-03 David Carlton <carlton@math.stanford.edu>
2610
2611 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
2612 argument (PR gdb/653). Update call to smash_to_method_type.
2613 (read_structure_scope): Update call to dwarf2_add_member_fn.
2614
2615 2002-09-03 Michal Ludvig <mludvig@suse.cz>
2616
2617 * x86-64-linux-tdep.c: Include gdb_string.h
2618 * x86-64-linux-nat.c: Ditto.
2619
2620 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2621
2622 * ada-exp.y (yyname, yyrule): Remap global variables that appear
2623 when YYDEBUG is set to 1.
2624 * c-exp.y: Likewise.
2625 * f-exp.y: Likewise.
2626 * jv-exp.y: Likewise.
2627 * m2-exp.y: Likewise.
2628 * p-exp.y: Likewise.
2629
2630 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2631
2632 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
2633 dependency list.
2634 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
2635 solib_svr4_fetch_link_map_offsets to
2636 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
2637 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
2638 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
2639 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
2640 solib-svr4.o, and solib-legacy.o.
2641 * config/i386/tm-nbsd.h: Include solib.h.
2642
2643 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2644
2645 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
2646 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
2647 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
2648 comment noting that this needs its own target configuration.
2649 * config/i386/nbsd.mt: New file.
2650 * config/i386/nbsdaout.mt: Remove.
2651 * config/i386/nbsdelf.mt: Ditto.
2652 * config/i386/tm-nbsdaout.h: Ditto.
2653
2654 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2655
2656 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
2657 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
2658 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
2659 tdep->sigtramp_end.
2660 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
2661 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
2662 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
2663
2664 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2665
2666 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
2667 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
2668 * i386-tdep.h (i386bsd_init_abi): New prototype.
2669 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
2670 function declaration.
2671 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
2672 for NetBSD-a.out or NetBSD-ELF.
2673 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
2674 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
2675 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
2676 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
2677 and nbsd-tdep.h.
2678 (i386nbsd_pc_in_sigtramp): New function.
2679 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2680 i386nbsd_pc_in_sigtramp.
2681 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
2682 and i386nbsdelf_init_abi OS ABI handlers.
2683 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
2684 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
2685
2686 2002-09-02 Mark Kettenis <kettenis@gnu.org>
2687
2688 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
2689 registers if the target really has them.
2690
2691 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2692
2693 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
2694 than nbsd-tdep.h.
2695
2696 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2697
2698 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
2699 list.
2700 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
2701 (alphanbsd_skip_sigtramp_frame): New functions.
2702 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
2703 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
2704 to alphanbsd_sigcontext_addr.
2705
2706 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2707
2708 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
2709 list.
2710 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
2711 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
2712 nbsd_pc_in_sigtramp.
2713 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
2714 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
2715 * nbsd-tdep.c: Include gdb_string.h.
2716 (nbsd_pc_in_sigtramp): New function.
2717 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
2718 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
2719 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2720 ppcnbsd_pc_in_sigtramp.
2721 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
2722 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2723 shnbsd_pc_in_sigtramp.
2724 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
2725 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
2726 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
2727
2728 2002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
2729
2730 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
2731 watchpoints to NULL.
2732 (insert_breakpoints): set val field of watchpoints if NULL.
2733
2734
2735 2002-08-29 Jim Blandy <jimb@redhat.com>
2736
2737 * symtab.c (lookup_symbol_aux): In the cases where we find a
2738 minimal symbol of an appropriate name and use its address to
2739 select a symtab to read and search, use `name' (as passed to us)
2740 as the demangled name when searching the symtab's global and
2741 static blocks, not the minsym's name.
2742
2743 2002-08-29 Keith Seitz <keiths@redhat.com>
2744
2745 * stack.c (print_frame_info_base): Always set current_source_symtab
2746 and current_source_line.
2747
2748 2002-08-29 Donn Terry <donnte@microsoft.com>
2749
2750 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
2751
2752 2002-08-28 Keith Seitz <keiths@redhat.com>
2753
2754 * stack.c (select_frame): Add FIXME concerning selected-frame
2755 events.
2756 (select_frame_command): Send selected-frame-level-changed
2757 event notification, but only if the level actually changed.
2758 (up_silently_base): Add selected-frame-level-changed event
2759 notification.
2760 (down_silently_base): Likewise.
2761
2762 2002-08-28 Andrew Cagney <ac131313@redhat.com>
2763
2764 * Makefile.in: Update dependencies for all gdb/*.c files.
2765
2766 2002-08-27 Tom Tromey <tromey@redhat.com>
2767
2768 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
2769 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
2770 Update dependencies.
2771 * i387-tdep.c: Include gdb_string.h.
2772 * osabi.c: Likewise.
2773 * i386-linux-nat.c: Likewise.
2774 * lin-lwp.c: Likewise.
2775 * ax-gdb.c: Likewise.
2776 * signals/signals.c: Likewise.
2777 * jv-valprint.c: Likewise.
2778 * p-lang.c: Likewise.
2779 * c-valprint.c: Likewise.
2780 * cp-abi.c: Likewise.
2781
2782 2002-08-27 Elena Zannoni <ezannoni@redhat.com>
2783
2784 * cli/cli-script.h (copy_command_lines): Export.
2785 * breakpoint.c: Include cli/cli-script.h.
2786 * Makefile.in (breakpoint.o): Update dependencies.
2787
2788 2002-08-26 Michael Snyder <msnyder@redhat.com>
2789
2790 * breakpoint.c (insert_breakpoints): Protect all references
2791 to 'process_warning'. Shorten long lines.
2792
2793 2002-08-26 Joel Brobecker <brobecker@gnat.com>
2794
2795 * cli/cli-script.c (copy_command_lines): New function.
2796 * defs.h (copy_command_lines): Export.
2797 * testsuite/gdb.base/commands.exp: New tests for commands
2798 attached to a temporary breakpoint, and for commands that
2799 delete the breakpoint they are attached to.
2800
2801 2002-08-26 Michael Snyder <msnyder@redhat.com>
2802
2803 * breakpoint.c (bpstat_stop_status): Instead of copying the
2804 pointer to the breakpoint commands struct, make a new copy
2805 of the struct and point to that.
2806 (bpstat_clear): Free the commands struct.
2807 (bpstat_clear_actions): Free the commands struct.
2808 (bpstat_do_actions): Free the command actions. Also execute
2809 the local cleanups, instead of deleting them.
2810 (delete_breakpoint): Leave the commands field of the bpstat
2811 chain alone -- it will be freed later.
2812
2813 2002-08-26 Kevin Buettner <kevinb@redhat.com>
2814
2815 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
2816 deleted in 2002-08-20 commit. This function is still used by
2817 ppc-linux-nat.c.
2818
2819 2002-08-26 Keith Seitz <keiths@redhat.com>
2820
2821 * gdb-events.sh: Add selected-frame-level-changed event.
2822 * gdb-events.c: Regenerated.
2823 * gdb-events.h: Regenerated.
2824
2825 2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
2826
2827 Fix PR gdb/393:
2828 * inflow.c (terminal_save_ours): New function to save terminal
2829 settings.
2830 * inferior.h (terminal_save_ours): Declare.
2831 * target.c (debug_to_terminal_save_ours): New function.
2832 (cleanup_target): Defaults to_terminal_save_ours.
2833 (update_current_target): Inherit to_terminal_save_ours.
2834 (setup_target_debug): Set to_terminal_save_ours.
2835 * target.h (target_terminal_save_ours): New to save terminal settings.
2836 (target_ops): New member to_terminal_save_ours.
2837 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
2838 * hpux-thread.c (init_hpux_thread_ops): Likewise.
2839 * inftarg.c (init_child_ops): Likewise.
2840 * m3-nat.c (init_m3_ops): Likewise.
2841 * procfs.c (init_procfs_ops): Likewise.
2842 * wince.c (init_child_ops): Likewise.
2843 * win32-nat.c (init_child_ops): Likewise.
2844 * sol-thread.c (init_sol_thread_ops): Likewise.
2845
2846 2002-08-26 Mark Kettenis <kettenis@gnu.org>
2847
2848 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
2849 use regcache_* functions.
2850 (i386_gdbarch_init): Set store_return_value instead of
2851 deprecated_store_return_value.
2852
2853 * regcache.c (regcache_raw_write_signed,
2854 regcache_raw_write_unsigned): New functions.
2855 * regcache.h (regcache_raw_write_signed,
2856 regcache_raw_write_unsigned): New prototypes.
2857
2858 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2859
2860 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
2861 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
2862 source file dependencies. Cleanup corresponding generator rules.
2863
2864 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2865
2866 * regcache.h (register_offset_hack): Declare.
2867 (regcache_cooked_read_using_offset_hack): Declare.
2868 (regcache_cooked_write_using_offset_hack): Declare.
2869
2870 * regcache.c (register_offset_hack): New function.
2871 (regcache_cooked_read_using_offset_hack): New function.
2872 (regcache_cooked_write_using_offset_hack): New function.
2873 (regcache_dump): Check that the registers, according to their
2874 offset, are packed hard against each other.
2875 (cooked_xfer_using_offset_hack): New function.
2876
2877 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2878
2879 * regcache.c (struct regcache_descr): Add field register_type.
2880 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
2881 in as a parameter
2882 (init_regcache_descr): Initialize register_type. Pass the descr
2883 to init_legacy_regcache_descr. Use register_type instead of
2884 REGISTER_VIRTUAL_TYPE.
2885 (register_type): New function.
2886 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
2887 * regcache.h (register_type): Declare.
2888
2889 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2890
2891 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
2892 instead of deprecated_store_return_value. Fix fallout from
2893 2002-08-23 Andrew Cagney <cagney@redhat.com>.
2894
2895 2002-08-25 Andrew Cagney <ac131313@redhat.com>
2896
2897 * regcache.c (max_register_size): New function.
2898 (init_legacy_regcache_descr): Ensure that max_register_size is
2899 large enough for REGISTER_VIRTUAL_SIZE.
2900 * regcache.h (max_register_size): Declare.
2901
2902 2002-08-24 Andrew Cagney <ac131313@redhat.com>
2903
2904 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
2905 store_return_value.
2906 (e500_extract_return_value): Change type of valbuf pointer to
2907 void.
2908
2909 2002-08-24 Mark Kettenis <kettenis@gnu.org>
2910
2911 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
2912 workaround.
2913
2914 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
2915 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
2916 long long) to prevent compiler warning on 64-bit systems.
2917
2918 2002-08-23 Andrew Cagney <cagney@redhat.com>
2919
2920 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
2921 (DEPRECATED_STORE_RETURN_VALUE): New method.
2922 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
2923 * gdbarch.h, gdbarch.c: Re-generate.
2924
2925 * values.c (set_return_value): Pass current_regcache to
2926 STORE_RETURN_VALUE.
2927 * arch-utils.h (legacy_store_return_value): Declare.
2928 * arch-utils.c (legacy_store_return_value): New function.
2929 (legacy_extract_return_value): Update parameters.
2930
2931 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
2932 STORE_RETURN_VALUE.
2933 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2934 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2935 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2936 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2937 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2938 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2939 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2940 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2941 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2942 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2943
2944 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2945 * i386-tdep.c (i386_extract_return_value): Update.
2946 * arch-utils.c (legacy_extract_return_value): Update.
2947 * frv-tdep.c (frv_gdbarch_init): Update.
2948 * cris-tdep.c (cris_gdbarch_init): Update.
2949 * d10v-tdep.c (d10v_gdbarch_init): Update.
2950 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2951 * m68k-tdep.c (m68k_gdbarch_init): Update.
2952 * mcore-tdep.c (mcore_gdbarch_init): Update.
2953 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2954 * s390-tdep.c (s390_gdbarch_init): Update.
2955 * sparc-tdep.c (sparc_gdbarch_init): Update.
2956 * sh-tdep.c (sh_gdbarch_init): Update.
2957 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
2958 * v850-tdep.c (v850_gdbarch_init): Update.
2959 * avr-tdep.c (avr_gdbarch_init): Update.
2960 * ia64-tdep.c (ia64_gdbarch_init): Update.
2961 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2962 * vax-tdep.c (vax_gdbarch_init): Update.
2963 * alpha-tdep.c (alpha_gdbarch_init): Update.
2964 * arm-tdep.c (arm_gdbarch_init): Update.
2965 * mips-tdep.c (mips_gdbarch_init): Update.
2966 * i386-tdep.c (i386_gdbarch_init): Update.
2967
2968 2002-08-23 Andrew Cagney <ac131313@redhat.com>
2969
2970 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
2971 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
2972
2973 2002-08-24 Mark Kettenis <kettenis@gnu.org>
2974
2975 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
2976 problems.
2977
2978 2002-08-23 Joel Brobecker <brobecker@gnat.com>
2979
2980 * infrun.c (handle_inferior_event): Move a comment outside of a
2981 function call, in order to avoid indent reformatting this part
2982 of the code in an unreadable way.
2983
2984 2002-08-23 Grace Sainsbury <graces@redhat.com>
2985
2986 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
2987 when breakpoints fail. Move general breakpoint error messages to
2988 insert_breakpoints.
2989 * breakpoint.c (insert_breakpoints): Change warnings when
2990 breakpoints are nto inserted to specify the type. Remove call to
2991 memory_error when hardware breakpoints can't be inserted. Remove
2992 multiple calls to warning so all messages are sent to the user at
2993 once.
2994 (delete_breakpoints): Make insert error messsages more explicit.
2995
2996 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
2997
2998 * ChangeLog: Move gdbserver entries after GDB 5.2 to
2999 gdbserver/ChangeLog.
3000
3001 2002-08-23 Mark Kettenis <kettenis@gnu.org>
3002
3003 * i386-tdep.c: Include "objfiles.h".
3004 (i386_svr4_init_abi): Set in_solib_call_trampoline and
3005 skip_trampoline_code.
3006 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
3007 (CPLUS_MARKER): Define to '.'.
3008
3009 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
3010 member.
3011 (linux_corefile_thread_callback): Increase args->num_notes.
3012 (linux_make_note_section): Initialize thread_args.num_notes, and
3013 use it to determine whether notes for any threads were created.
3014
3015 2002-08-23 Donn Terry <donnte@microsoft.com>
3016
3017 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
3018 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
3019 and PCUNKILL.
3020 (write_with_trace): Conditionalize out the switch branch handling
3021 PCSHOLD if the corresponding macro is not defined. Likewise for
3022 PRSABORT and PRSTOP.
3023 This change will be needed by the Interix port.
3024
3025 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
3026
3027 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
3028 write_register wherever possible instead of manipulating the
3029 register bytes directly.
3030 Assign VALUE_CONTENTS to a variable and use that.
3031 The GPR numbers are now dependent on the architecture.
3032
3033 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
3034
3035 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
3036 ev_offset fields.
3037 (skip_prologue): Add support for BookE/e500 instructions.
3038 (e500_extract_return_value): New function.
3039 (frame_get_saved_regs): Add support for saving ev registers and
3040 pseudo gpr's.
3041 (e500_store_return_value): New function.
3042 (rs6000_gdbarch_init): Move up default intializations of
3043 deprecated_extract_return_value and store_return_value. Overwrite
3044 init of store_return_value with e500 specific version.
3045 Set extract_return_value for e500.
3046
3047 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
3048
3049 * blockframe.c (generic_call_dummy_register_unwind): Use
3050 regcache_cooked_read to catch cases in which the variable is
3051 stored in a pseudo register.
3052
3053 2002-08-22 Andrew Cagney <cagney@redhat.com>
3054
3055 * NEWS: Mention that the i960 has been made obsolete.
3056 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
3057 i960-tdep.c
3058 (remote-nrom.o): Obsolete target.
3059 (remote-nindy.o, i960-tdep.o): Ditto.
3060 * remote-nrom.c: Make file obsolete.
3061 * remote-nindy.c, remote-vx960.c: Ditto.
3062 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
3063 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
3064 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
3065 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
3066 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
3067 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
3068 i960-*-vxworks* obsolete.
3069 * MAINTAINERS: Note that the i960 is obsolete.
3070
3071 2002-08-21 Corinna Vinschen <vinschen@redhat.com
3072
3073 * aix-thread.c (aix_thread_detach): Disable thread debugging on
3074 detach to allow reinitialization.
3075
3076 2002-08-22 Andrew Cagney <ac131313@redhat.com>
3077
3078 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
3079 attempt).
3080
3081 2002-08-22 Jim Blandy <jimb@redhat.com>
3082
3083 * coffread.c (coff_symfile_read): Don't try to read the line
3084 number table from disk if the image file doesn't have a symbol
3085 table; we'll never actually look at the info anyway, and Windows
3086 ships DLL's with bogus file offsets for the line number data.
3087
3088 2002-08-21 Elena Zannoni <ezannoni@redhat.com>
3089
3090 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
3091 an e500 executable.
3092
3093 2002-08-21 Michael Snyder <msnyder@redhat.com>
3094
3095 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
3096 (MSYMBOL_SIZE): Replace macro with function.
3097 (DEFAULT_MIPS_TYPE): Delete unused macro.
3098 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
3099 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
3100
3101 2002-08-21 Jim Blandy <jimb@redhat.com>
3102
3103 * valops.c (value_cast): Simplify and correct logic for doing a
3104 static cast from a pointer to a base class to a pointer to a
3105 derived class.
3106
3107 2002-08-21 Andrew Cagney <ac131313@redhat.com>
3108
3109 * infcmd.c (default_print_registers_info): Replace
3110 do_registers_info.
3111 (registers_info): Use gdbarch_print_registers_info instead of
3112 DO_REGISTERS_INFO.
3113 * inferior.h (default_print_registers_info): Replace
3114 do_registers_info.
3115 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
3116 (DO_REGISTERS_INFO): Change to a predicate function.
3117 * gdbarch.h, gdbarch.c: Regenerate.
3118
3119 2002-08-21 Keith Seitz <keiths@redhat.com>
3120
3121 * gdb-events.sh: Add target-changed event.
3122 * gdb-events.c: Regenerated.
3123 * gdb-events.c: Regenerated.
3124 * valops.c (value_assign): Add target-changed event notification
3125 to inlval_register, lval_memory, and lval_reg_frame_relative.
3126
3127 2002-08-21 Joel Brobecker <brobecker@gnat.com>
3128
3129 * NEWS: Add an entry regarding the improvement of the next/step
3130 operation on Alpha Tru64 multi-processor machines.
3131
3132 2002-08-21 Andrew Cagney <ac131313@redhat.com>
3133
3134 * Makefile.in: Update dependencies for mi/ cli/ and tui/
3135 directores.
3136 * Makefile.in: Update all _h macro definitions.
3137 * Makefile.in (install-gdbtk): Move to install section.
3138 (rdi-share/libangsd.a): Move to end of file.
3139
3140 2002-08-19 Andrew Cagney <ac131313@redhat.com>
3141
3142 * frame.c (frame_register_unwind): When a register, set addrp to
3143 the register's byte.
3144
3145 2002-08-20 Michael Snyder <msnyder@redhat.com>
3146
3147 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
3148 used locally, so move them from the target machine header to here.
3149 (mips_set_processor_type, mips_register_name, mips32_next_pc,
3150 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
3151 Make static.
3152 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
3153
3154 2002-08-20 Andrew Cagney <cagney@redhat.com>
3155
3156 * NEWS: Mention that the Apollo line was made obsolete.
3157 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
3158 m68*-hp-hpux* obsolete.
3159 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
3160 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
3161 * buildsym.c (make_blockvector): Make static.
3162 * buildsym.h (make_blockvector): Make extern declaration obsolete.
3163 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
3164 (ALLDEPFILES): Remove dstread.c.
3165 (dstread.o): Obsolete make rule.
3166 * dstread.c: Makefile obsolete.
3167 * dst.h: Ditto.
3168 * config/m68k/hp300hpux.mt: Ditto.
3169 * config/m68k/hp300hpux.mh: Ditto.
3170 * config/m68k/hp300bsd.mt: Ditto.
3171 * config/m68k/hp300bsd.mh: Ditto.
3172 * config/m68k/apollo68b.mt: Ditto.
3173 * config/m68k/apollo68v.mh: Ditto.
3174 * config/m68k/apollo68b.mh: Ditto.
3175
3176 2002-08-20 Michael Snyder <msnyder@redhat.com>
3177
3178 * mips-tdep.c (mips_in_return_stub): Make static.
3179 (mips_gdbarch_init): Set in_solib_return_trampoline.
3180 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
3181
3182 2002-08-20 Michael Snyder <msnyder@redhat.com>
3183
3184 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
3185 * gdbarch.c, gdbarch.h: Regenerate.
3186 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
3187 Add.
3188 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
3189
3190 2002-08-20 Michael Snyder <msnyder@redhat.com>
3191
3192 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
3193 (mips_gdbarch_init): Set skip_trampoline_code,
3194 in_solib_call_trampoline.
3195 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
3196 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
3197
3198 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3199
3200 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
3201
3202 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
3203 vector type for ev registers.
3204 (e500_pseudo_register_read): New function.
3205 (e500_pseudo_register_write): New function.
3206 (e500_dwarf2_reg_to_regnum): New function.
3207 (PPC_UISA_NOFP_SPRS): New macro.
3208 (PPC_EV_REGS): New macro.
3209 (PPC_GPRS_PSEUDO_REGS): New macro.
3210 (registers_e500): New register set for e500.
3211 (variants): Add e500 variant.
3212 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
3213 before setting architectural dependent variations. Initialize ev
3214 registers numbers. Add case for e500 architecture. Set the
3215 number of pseudo registers.
3216
3217 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3218
3219 * rs6000-tdep.c: Clean up comments.
3220
3221 2002-08-20 Andrew Cagney <cagney@redhat.com>
3222
3223 * h8300-tdep.c: Re-indent file.
3224
3225 2002-08-20 Jim Blandy <jimb@redhat.com>
3226
3227 * Makefile.in (LDFLAGS): Allow the configure script to establish a
3228 default for this.
3229
3230 2002-08-20 Keith Seitz <keiths@redhat.com>
3231
3232 * breakpoints.c (watch_command_1): Use internal breakpoint
3233 when setting a watchpoint_scope breakpoint.
3234
3235 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3236
3237 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
3238 (build_builtin_type_vec64i): Ditto.
3239 (build_builtin_type_vec128): Ditto.
3240 (build_builtin_type_vec128i): Ditto.
3241
3242 2002-08-19 Michael Snyder <msnyder@redhat.com>
3243
3244 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
3245 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
3246 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
3247 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
3248 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
3249 CALL_DUMMY_ADDRESS): Delete.
3250 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
3251 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
3252 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
3253 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
3254 push_return_address.
3255 (mips_register_raw_size, mips_eabi_use_struct_convention,
3256 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
3257 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
3258 mips_init_extra_frame_info, mips_eabi_push_arguments,
3259 mips_n32n64_push_arguments, mips_push_return_address,
3260 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
3261 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
3262
3263 2002-08-19 Michael Snyder <msnyder@redhat.com>
3264
3265 * mips-tdep.c (mips_frame_num_args): New function.
3266 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
3267 frame_saved_pc, frame_args_address, frame_locals_address,
3268 frame_num_args, and frame_args_skip.
3269 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
3270 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
3271 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
3272 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
3273
3274 2002-08-20 Michael Snyder <msnyder@redhat.com>
3275
3276 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
3277 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
3278 * mips-tdep.c (mips_store_struct_return): New function.
3279 (mips_extract_struct_value_address): New function.
3280 (mips_gdbarch_init): Set store_struct_return and
3281 extract_struct_value_address.
3282
3283 2002-08-20 David Carlton <carlton@math.stanford.edu>
3284
3285 * dwarf2read.c (dwarf2_build_psymtabs): Check that
3286 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
3287 (read_file_scope): Check that line_header is nonzero before
3288 decoding macro information.
3289
3290 2002-08-20 Mark Kettenis <kettenis@gnu.org>
3291
3292 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
3293 flag the general-purpose registers as floating-point on targets
3294 that don't support the floating-point registers.
3295
3296 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3297
3298 * rs6000-tdep.c (altivec_register_p): Delete.
3299 (rs6000_do_altivec_registers): Delete.
3300 (rs6000_altivec_registers_info): Delete.
3301 (rs6000_do_registers_info): Delete.
3302 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
3303 (rs6000_gdbarch_init): Remove setting of do_registers_info.
3304
3305 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
3306
3307 * infcmd.c (do_registers_info): Print vector registers in hex
3308 format only.
3309 (print_vector_info): Check that printing registers
3310 makes sense.
3311 (print_float_info): Ditto.
3312
3313 2002-08-20 Andrew Cagney <ac131313@redhat.com>
3314
3315 * mips-tdep.c (mips_gdbarch_init): Update.
3316 (mips_o32_extract_return_value): Rewrite.
3317 (mips_o32_store_return_value): Rewrite.
3318 (mips_o32_xfer_return_value): New function.
3319 (mips_xfer_register): Tweak debug print message. Allow for
3320 buf_offset when dumping the value transfered.
3321
3322 2002-08-20 Andrew Cagney <ac131313@redhat.com>
3323
3324 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
3325 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
3326 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
3327 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
3328 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
3329
3330 2002-08-14 Michael Snyder <msnyder@redhat.com>
3331
3332 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
3333
3334 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
3335
3336 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
3337 register.
3338 (P): New macro to define a register as a pseudo register.
3339 (R, R4, R8, R16, FR32, R64, R0): Updated.
3340 (struct variant): Add new fields for number of pseudo registers
3341 and number of total registers.
3342 (tot_num_registers): New macro replacing....
3343 (num_registers): ...deleted macro.
3344 (num_registers): New function.
3345 (num_pseudo_registers): New function.
3346 (variants): Update all variants to intialize new fields correctly.
3347 Postpone initialization of number of pseudo regs and real regs.
3348 (init_variants): New function.
3349 (rs6000_gdbarch_init): Initialize variants. Update calculation of
3350 registers offsets.
3351
3352 2002-08-19 David Carlton <carlton@math.stanford.edu>
3353
3354 * valops.c (search_struct_field): Change error message to treat
3355 return value of 0 from value_static_field as meaning that field is
3356 optimized out.
3357 (value_struct_elt_for_reference): Ditto.
3358 * values.c (value_static_field): Treat an unresolved location the
3359 same as a nonexistent symbol. Fix PR gdb/635.
3360 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
3361 enclosed. Fix PR gdb/574.
3362 * MAINTAINERS: Add self to Write After Approval list.
3363
3364 2002-08-19 Andrew Cagney <ac131313@redhat.com>
3365
3366 * mips-tdep.c (mips_xfer_register): New function.
3367 (mips_n32n64_extract_return_value): Rewrite.
3368 (mips_gdbarch_init): For N32 and N64, set extract_return_value
3369 instead of deprecated_extract_return_value.
3370
3371 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
3372
3373 * rs6000-tdep.c (TDEP): Delete macro.
3374 (branch_dest): Replace use of TDEP macro with its body.
3375 (rs6000_pop_frame): Ditto.
3376 (rs6000_push_arguments): Ditto.
3377 (rs6000_skip_trampoline_code): Ditto.
3378 (rs6000_frame_saved_pc): Ditto.
3379 (rs6000_frame_chain): Ditto.
3380 (rs6000_register_name): Ditto.
3381 (rs6000_register_byte): Ditto.
3382 (rs6000_register_raw_size): Ditto.
3383 (rs6000_register_virtual_type): Ditto.
3384 (rs6000_register_convertible): Ditto.
3385 (rs6000_convert_from_func_ptr_addr): Ditto.
3386
3387 2002-08-19 Daniel Jacobowitz <drow@mvista.com>
3388
3389 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
3390 conditionally.
3391 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
3392 MIPS_LINUX_JB_ELEMENT_SIZE.
3393 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
3394 for MAX_REGISTER_RAW_SIZE arrays.
3395 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
3396 MIPS_LINUX_JB_ELEMENT_SIZE.
3397
3398 2002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
3399
3400 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
3401
3402 2002-08-19 Aidan Skinner <aidan@velvet.net>
3403
3404 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
3405 ada-valprint.c ada-tasks.c.
3406 (YYFILES): Add ada-exp.y.
3407 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
3408 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
3409 (ada-exp.tab.o): New target.
3410
3411 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3412
3413 * regcache.c (regcache_xfer_part): New function.
3414 (regcache_raw_read_part): New function.
3415 (regcache_raw_write_part): New function.
3416 (regcache_cooked_read_part): New function.
3417 (regcache_cooked_write_part): New function.
3418 * regcache.h (regcache_raw_read_part): Declare.
3419 (regcache_raw_write_part): Declare.
3420 (regcache_cooked_read_part): Declare.
3421 (regcache_cooked_write_part): Declare.
3422
3423 2002-08-18 Daniel Jacobowitz <drow@mvista.com>
3424
3425 * remote.c (remote_open_1): Add async_p.
3426 (remote_async_open_1): Delete.
3427 (open_remote_target): Delete.
3428 (remote_open, extended_remote_open): Update calls to remote_open_1.
3429 (remote_async_open, extended_remote_async_open): Call
3430 remote_open_1 instead of remote_async_open_1.
3431
3432 2002-08-19 Mark Kettenis <kettenis@gnu.org>
3433
3434 * blockframe.c: Fix a few coding standard violations.
3435
3436 2002-08-19 Mark Kettenis <kettenis@gnu.org>
3437
3438 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
3439 here from ...
3440 * config/i386/tm-i386sco5.h: ... here. File removed.
3441 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
3442
3443 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
3444 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
3445 (TM_FILE): Set to tm-i386.h.
3446 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
3447 * config/i386/tm-i386v.h: Remove file.
3448 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
3449 instead of "i386/tm-i386v.h".
3450 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
3451 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
3452 "i386/tm-i386v.h".
3453 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
3454 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
3455 "i386/tm-i386.h".
3456
3457 2002-08-18 Mark Kettenis <kettenis@gnu.org>
3458
3459 * config/i386/nm-i386v.h: Add protection against
3460 multiple-inclusion.
3461 (i386_register_u_addr): Remove prototype.
3462 (register_u_addr): New prototype.
3463 (REGISTER_U_ADDR): Redefine accordingly.
3464 * i386v-nat.c: Improve several comments.
3465 (i386_register_u_addr): Change signature and rename to
3466 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
3467 ubase variable.
3468
3469 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3470
3471 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
3472 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
3473 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
3474 deprecated_extract_return_value.
3475 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
3476 rename mips_o32o64_push_arguments.
3477 (mips_gdbarch_init): Update.
3478 (mips_extract_return_value): Delete.
3479 (mips_o32_extract_return_value): Clone mips_extract_return_value.
3480 (mips_o64_extract_return_value): Clone mips_extract_return_value.
3481 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
3482 (mips_n32n64_extract_return_value): Clone
3483 mips_extract_return_value.
3484 (mips_store_return_value): Delete.
3485 (mips_o32_store_return_value): Clone mips_store_return_value.
3486 (mips_o64_store_return_value): Clone mips_store_return_value.
3487 (mips_eabi_store_return_value): Clone mips_store_return_value.
3488 (mips_n32n64_store_return_value): Clone mips_store_return_value.
3489
3490 2002-08-18 Aidan Skinner <aidan@velvet.net>
3491
3492 * ada-lang.c: Use gdb_string.h instead of <string.h>.
3493 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
3494
3495 2002-08-18 Aidan Skinner <aidan@velvet.net>
3496
3497 * ada-lang.c: Run through gdb_indent.sh.
3498 * ada-lang.h: Run through gdb_indent.sh.
3499 * ada-tasks.c: Run through gdb_indent.sh.
3500 * ada-typeprint.c: Run through gdb_indent.sh.
3501 * ada-valprint.c: Run through gdb_indent.sh.
3502
3503 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3504
3505 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
3506 ABI.
3507
3508 2002-08-18 Mark Kettenis <kettenis@gnu.org>
3509
3510 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
3511
3512 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
3513 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
3514
3515 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
3516 write_register_gen instead of write_register_bytes.
3517
3518 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
3519 i[3456]-*-osf1mk* configurations have been made obsolete.
3520 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
3521 i[3456]86-*-osf1mk* hosts obsolete.
3522 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
3523 targets obsolete.
3524 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
3525 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
3526 config/i386/i386m3.mt, config/i386/nm-m3.h,
3527 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
3528 config/i386/i386mk.mh, config/i386/i386mk.mt,
3529 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
3530 obsolete.
3531 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
3532 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
3533 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
3534
3535 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3536
3537 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
3538 (hppa_value_returned_from_stack): Declare.
3539 (hppa_extract_return_value): Declare.
3540 * config/pa/hppa.mt: New file.
3541 * configure.tgt: Recognize hppa*-*-*.
3542 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
3543
3544 2002-08-18 Mark Kettenis <kettenis@gnu.org>
3545
3546 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
3547 comment.
3548
3549 2002-08-17 Mark Kettenis <kettenis@gnu.org>
3550
3551 * top.c (gdb_rl_operate_and_get_next): Make sure
3552 operate-and-get-next functions correctly even when the history
3553 list is completely filled.
3554
3555 2002-08-18 Andrew Cagney <ac131313@redhat.com>
3556
3557 * MAINTAINERS (Target Instruction Set Architectures): Rename
3558 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
3559 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
3560 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
3561 already listed under Host/Native.
3562
3563 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
3564 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
3565 mips*-*-*.
3566
3567 2002-08-17 Andrew Cagney <ac131313@redhat.com>
3568
3569 * config/ia64/ia64.mt: New file.
3570 * config/alpha/alpha.mt: New file.
3571 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
3572 ia64-linux-gnu. Mention that ia64-elf is broken.
3573 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
3574
3575 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
3576
3577 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
3578 generic_func_frame_valid instead of func_frame_valid.
3579
3580 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3581
3582 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
3583 procfs appears to be broken when debugging on multi-processor
3584 machines. So enable software single stepping in order to avoid
3585 using the procfs interface to do next/step operations, using
3586 internal breakpoints instead.
3587
3588 * infrun.c (handle_inferior_event): Readjust the stop_pc by
3589 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
3590 make this pc address equal to the value it would have if the
3591 system stepping capability was used. Also set a new flag used
3592 to ensure that we don't readjust the PC one more time later.
3593
3594 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
3595 address by DECR_PC_AFTER_BREAK when software single step is
3596 in use for this architecture, as this has already been taken
3597 care of in handle_inferior_event().
3598
3599 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3600
3601 * infrun.c (handle_inferior_event): Minor reformatting, to make
3602 a rather long condition expression easier to read.
3603
3604 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3605
3606 * Makefile.in (gdbtk.o): Move to end of file.
3607 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
3608 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
3609 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
3610 (gdbtk-wrapper.o, gdbres.o): Ditto.
3611
3612 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3613
3614 * Makefile.in (copying.o): Separate out compile rule.
3615 (hpux-thread.o, procfs.o, signals.o): Ditto.
3616 (v850ice.o, z8k-tdep.o): Ditto.
3617 (tui-file.o): Move to TUI section.
3618 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
3619 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
3620
3621 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3622
3623 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
3624 skip_trampoline_code, for better namespace-proofing.
3625
3626 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
3627
3628 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3629
3630 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
3631
3632 2002-08-16 Joel Brobecker <brobecker@gnat.com>
3633
3634 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
3635 signal, check whether we hit a breakpoint before checking for a
3636 single step breakpoint. Otherwise, GDB fails to notice that a
3637 breakpoint has been hit when stepping onto a breakpoint.
3638
3639 2002-08-16 Keith Seitz <keiths@redhat.com>
3640
3641 * gdb-events.sh (clear_gdb_event_hooks): New function.
3642 * gdb-events.c: Regenerate.
3643 * gdb-events.h: Regenerate.
3644
3645 2002-08-16 Andrew Cagney <ac131313@redhat.com>
3646
3647 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
3648 not_a_sw_breakpoint.
3649 * breakpoint.h (bpstat_stop_status): Add parameter names.
3650
3651 2002-08-16 Grace Sainsbury <graces@redhat.com>
3652
3653 * remote.c (remote_insert_hw_breakpoint)
3654 (remote_remove_hw_breakpoint): Fix calculation of length field
3655 for Z-packet.
3656
3657 2002-08-15 Michael Snyder <msnyder@redhat.com>
3658
3659 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
3660 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
3661 (supply_fpregset): Ditto.
3662
3663 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
3664 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
3665 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
3666 (TARGET_READ_SP): Delete.
3667 (DO_REGISTERS_INFO): Delete.
3668 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
3669 Delete.
3670 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
3671 from macros to functions.
3672
3673 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
3674 (mips_register_convertible, mips_register_convert_to_virtual,
3675 mips_register_convert_to_raw): Make static.
3676 (mips_read_sp): New function.
3677 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
3678 (mips_do_registers_info): Make static.
3679 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
3680 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
3681 (mips_register_convert_from_type, mips_register_convert_to_type):
3682 New functions.
3683 (mips_gdbarch_init): Set up function_start_offset,
3684 register_virtual_size, pc_in_sigtramp.
3685
3686 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3687
3688 * infcmd.c (vector_info): New function.
3689 (_initialize_infcmd): Add command "info vector".
3690 (print_vector_info): New function.
3691
3692 * gdbarch.sh (PRINT_VECTOR_INFO): New method
3693 * gdbarch.h, gdbarch.c: Regenerate.
3694
3695 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3696
3697 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
3698 ``print_all''. Only print vector registers when ``print_all''.
3699
3700 2002-08-15 Andrew Cagney <ac131313@redhat.com>
3701
3702 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
3703 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
3704
3705 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
3706 Add `args' parameter.
3707 * gdbarch.h, gdbarch.c: Regenerate.
3708
3709 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
3710
3711 * infcmd.c (float_info): Call print_float_info.
3712 (print_float_info): New function. By default, print the
3713 floating-point registers.
3714
3715 * arch-utils.h (default_print_float_info): Delete declaration.
3716 * arch-utils.c (default_print_float_info): Delete function.
3717
3718 2002-08-16 Mark Kettenis <kettenis@gnu.org>
3719
3720 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
3721 out define.
3722
3723 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
3724 FRAME.
3725
3726 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
3727 * configure.host: Make i[3456]86-*-aix host obsolete.
3728 * configure.tgt: Make i[3456]86-*-aix target obsolete.
3729 * config/i386/i386aix.mh, config/i386/i386aix.mt,
3730 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
3731 config/i386/xm-i386aix.h: Make files obsolete.
3732 * i386aix-nat.c: Make file obsolete.
3733 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
3734 (i386aix-nat.o): Make target obsolete.
3735
3736 * config/i386/nm-gnu.h: Removed.
3737 * config/i386/nm-i386gnu.h: New file.
3738 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
3739 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
3740 Moved here from ...
3741 * config/i386/tm-i386gnu.h: ... here. Removed.
3742 * config/i386/xm-i386gnu.h: Removed.
3743 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
3744 (NAT_FILE): Set to nm-i386gnu.h.
3745 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
3746 * i386-tdep.c: New file.
3747 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
3748 (i386gnu-tdep.o): Specify dependencies.
3749
3750 2002-08-15 Mark Kettenis <kettenis@gnu.org>
3751
3752 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
3753 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
3754 Adjust a few comments to reflect reality a bit closer.
3755 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
3756 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
3757 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
3758 target_insert_watchpoint, target_remove_watchpoint):
3759 Move defines to ...
3760 * config/i386/nm-i386sco5.h: ... here.
3761 (kernel_u_size): Add prototype. Improve a few comments and add
3762 protection against multiple inclusion.
3763
3764 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
3765 out define.
3766
3767 * uw-thread.c (SP_ARG0): Define if not already defined.
3768 * config/i386/tm-i386.h (SO_ARG0): Remove define.
3769
3770 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
3771
3772 * config/i386/tm-i386.h: Don't include "regcache.h".
3773
3774 * i387-tdep.h (i387_print_float_info): New prototype.
3775 * i387-tdep.c (print_i387_value, print_i387_ext,
3776 print_i387_status_word, print_i387_control_word): Add `struct
3777 ui_file *' argument and use it for output.
3778 (i387_print_float_info): Renamed from i387_float_info. Add
3779 `struct gdbarch *' and `struct ui_file *' arguments and use the
3780 latter for output.
3781 * i386-tdep.c: Include "i387-tdep.h".
3782 (i386_gdbarch_init): Set print_float_info.
3783 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
3784 (FLOAT_INFO): Remove define.
3785
3786 2002-08-13 Michael Snyder <msnyder@redhat.com>
3787
3788 * mips-tdep.c (mips_push_arguments): Rename to
3789 mips_eabi_push_arguments, and tune for EABI.
3790 (MIPS_REGS_HAVE_HOME_P): Delete.
3791 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
3792 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
3793 Delete references to mips_regs_have_home_p.
3794
3795 2002-08-14 Keith Seitz <keiths@redhat.com>
3796
3797 * Makefile.in (install-gdbtk): Create insight plugin directory.
3798 Install plugins.tcl file.
3799
3800 2002-08-14 Keith Seitz <keiths@redhat.com>
3801
3802 * configure.in: Move SUBDIRS to near top of the file so that
3803 --enable options may add things to it.
3804 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
3805 * configure: Regenerate.
3806
3807 2002-08-13 Michael Snyder <msnyder@redhat.com>
3808
3809 * mips-tdep.c (mips_o32o64_push_arguments): New function,
3810 cloned from mips_push_arguments, tuned for o32/o64 ABI.
3811 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
3812
3813 2002-08-13 Andrew Cagney <ac131313@redhat.com>
3814
3815 * vax-tdep.c (vax_get_saved_register): Delete function.
3816 (vax_gdbarch_init): Update.
3817 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
3818 (ns32k_gdbarch_init): Update.
3819 * alpha-tdep.c (alpha_get_saved_register): Delete function.
3820 (alpha_gdbarch_init): Update.
3821
3822 2002-08-13 Andrew Cagney <cagney@redhat.com>
3823
3824 * regcache.c (init_regcache_descr): Overallocate the
3825 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
3826 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
3827 nr_raw_registers.
3828 (set_register_cached): Add range checking assertions. Use
3829 current_regcache.
3830
3831 2002-08-13 Mark Kettenis <kettenis@gnu.org>
3832
3833 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
3834 numbers for MMX registers.
3835
3836 2002-08-13 Andrew Cagney <cagney@redhat.com>
3837
3838 * i386-tdep.c (i386_gdbarch_init): Use
3839 generic_unwind_get_saved_register.
3840
3841 2002-08-13 Kevin Buettner <kevinb@redhat.com>
3842
3843 * procfs.c (procfs_can_use_hw_breakpoint): New function.
3844 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
3845 target vector.
3846 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
3847 Delete. Add comment regarding this now-deleted target method.
3848
3849 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3850
3851 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
3852 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
3853 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
3854 real PC and the page number (if it's within the memory bank window).
3855 (m68hc11_pseudo_register_write): Likewise when saving.
3856 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
3857 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
3858 (m68hc11_register_raw_size): And use 32-bit for it.
3859 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
3860 16K memory bank is used by the prog; also use the virtual pc.
3861
3862 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3863
3864 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
3865 (m68hc11_gdbarch_init): Install it in gdbarch.
3866 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
3867 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
3868 (MSYMBOL_SIZE): New for documentation.
3869 (insn_return_kind): Enum to specify how a function returns.
3870 (frame_extra_info): Cleanup and record the return mode.
3871 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
3872 register in address computation.
3873 (m68hc11_get_return_insn): New to obtain the return instruction used
3874 by the function.
3875 (m68hc11_frame_init_saved_regs): Take into account the return
3876 instruction used by the function for far and interrupt functions.
3877 (m68hc11_init_extra_frame_info): Take into account page register.
3878 (m68hc11_frame_args_address): Adjust according to the return mode.
3879 (show_regs): Print page register only when it's used.
3880
3881 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3882
3883 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
3884 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
3885 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
3886 registers.
3887 (m68hc11_register_raw_size): Likewise.
3888
3889 2002-08-13 Andrew Cagney <cagney@redhat.com>
3890
3891 * i386-tdep.c (i386_register_name): Handle mmx registers.
3892 (mmx_regnum_p): New function.
3893 (i386_mmx_names): New array.
3894 (mmx_num_regs): New variable.
3895 (i386_pseudo_register_read): New function.
3896 (i386_pseudo_register_write): New function.
3897 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
3898
3899 * regcache.c (regcache_raw_read_unsigned): New function.
3900 (regcache_raw_read_signed): New function.
3901 * regcache.h (regcache_raw_read_unsigned): Declare.
3902 (regcache_raw_read_signed): Declare.
3903
3904 2002-08-13 Andrew Cagney <cagney@redhat.com>
3905
3906 * regcache.c (regcache_raw_read_as_address): Delete function.
3907 (regcache_cooked_read_signed): New function.
3908 (regcache_cooked_read_unsigned): New function.
3909 * regcache.h (regcache_cooked_read_signed): Declare.
3910 (regcache_cooked_read_unsigned): Declare.
3911 (regcache_raw_read_as_address): Delete declaration.
3912
3913 * blockframe.c (generic_read_register_dummy): Use
3914 regcache_cooked_read_unsigned.
3915 * i386-tdep.c (i386_extract_struct_value_address): Use
3916 regcache_cooked_read_unsigned.
3917
3918 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3919
3920 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
3921 double sizes according to ELF ABI flags.
3922 (gdbarch_tdep): Record elf_flags.
3923
3924 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3925
3926 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
3927 (m6812_prolog): They can appear in 68HC12 function prologue.
3928 (m68hc11_frame_chain): Cleanup.
3929
3930 2002-08-12 Andrew Cagney <cagney@redhat.com>
3931
3932 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
3933 declarations.
3934 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
3935 (i386_linux_register_raw_size): Delete function.
3936 (i386_linux_init_abi): Update.
3937 * i386-tdep.c (i386_register_raw_size): Delete function.
3938 (i386_register_byte): Delete function.
3939 (i386_gdbarch_init): Update.
3940 (i386_register_size): Delete array.
3941 (i386_register_offset): Delete array.
3942
3943 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
3944 (REGISTER_RAW_SIZE): Delete macro.
3945 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
3946 (REGISTER_BYTE): Delete macro.
3947
3948 2002-08-11 Aidan Skinner <aidan@velvet.net>
3949
3950 * ada-lang.c (ada_lookup_partial_symbol)
3951 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
3952 prototype names so that grep ^func works properly.
3953
3954 * ada-lang.c (ada_array_element_type)
3955 (ada_lookup_partial_symbol): Fix typos in parameter list.
3956
3957 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
3958 Fix prototype names so that grep ^func works properly.
3959
3960 2002-08-10 Andrew Cagney <cagney@redhat.com>
3961 Elena Zannoni <ezannoni@redhat.com>
3962 Martin M. Hunt <hunt@redhat.com>
3963
3964 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
3965 (build_builtin_type_vec128i): Set the vector bit.
3966 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
3967 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
3968 (build_builtin_type_vec64): New function.
3969 (build_builtin_type_vec64i): New function.
3970 (build_gdbtypes): Initialize builtin_type_vec64 and
3971 builtin_type_vec64i.
3972
3973 2002-08-09 Andrew Cagney <cagney@redhat.com>
3974
3975 * regcache.c (regcache_dump): Compare the register offset
3976 with REGISTER_BYTE.
3977 * arch-utils.c (generic_register_byte): New function.
3978 * arch-utils.h (generic_register_byte): Declare.
3979 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
3980 * gdbarch.h, gdbarch.c: Regenerate.
3981
3982 2002-08-09 Andrew Cagney <cagney@redhat.com>
3983
3984 * regcache.c: Include "gdbcmd.h"
3985 (_initialize_regcache): Add commands "maintenance print
3986 registers", "maintenance print raw-registers" and "maintenance
3987 print cooked-registers".
3988 (enum regcache_dump_what): Define.
3989 (dump_endian_bytes): New function.
3990 (regcache_dump): New function.
3991 (regcache_print): New function.
3992 (maintenance_print_registers): New function.
3993 (maintenance_print_raw_registers): New function.
3994 (maintenance_print_cooked_registers): New function.
3995 * Makefile.in (regcache.o): Update dependencies.
3996
3997 2002-08-09 Michael Snyder <msnyder@redhat.com>
3998
3999 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
4000 (mips_push_arguments): Correct some comments. Use paddr_nz
4001 for printing addresses in debug output. Replace static
4002 allocation using MAX_REGISTER_RAW_SIZE with alloca.
4003 (mips_n32n64_push_arguments): New function, cloned from
4004 mips_push_arguments and tuned for the n32/n64 ABI.
4005 (mips_push_register): Buffer needs dynamic allocation.
4006 (mips_print_register): Ditto.
4007 (do_gp_register_row): Ditto.
4008 (mips_store_return_value): Ditto.
4009 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
4010
4011 2002-08-09 Don Howard <dhoward@redhat.com>
4012
4013 * memattr.c (mem_info_command): Print special case of upper bound
4014 as max CORE_ADDR + 1.
4015
4016 2002-08-08 Michael Snyder <msnyder@redhat.com>
4017
4018 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
4019 returns structs by ref if they're too big to fit in two registers.
4020
4021 2002-08-09 Kevin Buettner <kevinb@redhat.com>
4022
4023 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
4024 saved regs value.
4025 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
4026 mips_find_saved_regs().
4027 (mips_pop_frame): Likewise.
4028
4029 2002-08-09 Kevin Buettner <kevinb@redhat.com>
4030
4031 * blockframe.c (frame_saved_regs_register_unwind): Revise
4032 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
4033 frames are in use.
4034
4035 2002-08-09 Grace Sainsbury <graces@redhat.com>
4036
4037 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
4038 T-packets; the 'a' is not taken as a register number.
4039 (remote_check_watch_resources, remote_stopped_by_watchpoint)
4040 (remote_stopped_data_address): New functions; add to target
4041 vector.
4042 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
4043 prototypes to match other implementations of this
4044 function. replace integer argument with pointer -- the length
4045 field in the Z-packet is the length of what is pointed to or 1 if
4046 pointer is null. Add to target vector.
4047 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
4048 target vector.
4049
4050 From Mark Salter:
4051 * remote.c (remote_wait): Add support to extract optional
4052 watchpoint information from T-packet. Ignore unrecognized
4053 optional info in T-packet.
4054 (remote_async_wait): Ditto.
4055
4056 2002-08-09 Corinna Vinschen <vinschen@redhat.com>
4057
4058 * cli/cli-dump.c: Change fopen modes to use binary open modes
4059 as defined in include/fopen-bin.h throughout.
4060
4061 2002-08-08 Michael Snyder <msnyder@redhat.com>
4062
4063 * mips-tdep.c: Minor whitespace and indentation clean-ups.
4064
4065 2002-08-08 Kevin Buettner <kevinb@redhat.com>
4066
4067 * doublest.c (store_floating): Avoid floatformat_from_doublest()
4068 assertion failure by returning early after a warning.
4069
4070 2002-08-08 Kevin Buettner <kevinb@redhat.com>
4071
4072 * mips-tdep.c (mips_find_saved_regs): Make static.
4073 (mips_frame_init_saved_regs): New function.
4074 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
4075 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
4076 (mips_find_saved_regs): Delete declaration.
4077
4078 2002-08-08 Grace Sainsbury <graces@redhat.com>
4079
4080 * remote.c (remote_wait, remote_async_wait): Change
4081 thread_num from int to ULONGEST.
4082 (unpack_varlen_hex): Change result parameter from
4083 int * to ULONGEST *.
4084
4085 2002-08-08 Andrew Cagney <ac131313@redhat.com>
4086
4087 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
4088 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
4089 powerpc*-*-*.
4090 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
4091
4092 2002-08-08 Andrew Cagney <cagney@redhat.com>
4093
4094 * gcore.c (override_derive_stack_segment): Delete variable.
4095 (preempt_derive_stack_segment): Delete function.
4096 (derive_stack_segment): Delete function.
4097 (default_derive_stack_segment): Renamed to derive_stack_segment.
4098 (override_derive_heap_segment): Delete variable.
4099 (preempt_derive_heap_segment): Delete function.
4100 (derive_heap_segment): Delete function.
4101 (default_derive_heap_segment): Rename to derive_heap_segment.
4102
4103 2002-08-06 Michael Snyder <msnyder@redhat.com>
4104
4105 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
4106 * mips-tdep.c (mips_EABI_use_struct_convention,
4107 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
4108 New functions. (mips_use_struct_convention): Delete.
4109 (mips_gdbarch_init): set use_gdbarch_convention.
4110
4111 2002-08-06 Michael Snyder <msnyder@redhat.com>
4112
4113 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
4114 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
4115 mips_o32_reg_struct_has_addr): New functions.
4116 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
4117
4118 2002-08-07 Andrew Cagney <ac131313@redhat.com>
4119
4120 * regcache.c (pseudo_register): Delete function.
4121 (fetch_register): Delete function.
4122 (store_register): Delete function.
4123 (regcache_raw_read, legacy_read_register_gen): Use
4124 target_fetch_registers instead of fetch_register.
4125 (legacy_write_register_gen, regcache_raw_write): Use
4126 target_store_register instead of store_register.
4127 (write_register_bytes): Ditto.
4128
4129 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
4130 (STORE_PSEUDO_REGISTER): Delete.
4131 * gdbarch.h, gdbarch.c: Regenerate.
4132
4133 2002-08-06 Corinna Vinschen <vinschen@redhat.com>
4134
4135 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
4136 write dump file binary.
4137
4138 2002-08-05 Michael Snyder <msnyder@redhat.com>
4139
4140 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
4141 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
4142 (mips_gdbarch_init): Set N32 target to be mips64.
4143
4144 2002-08-06 Kevin Buettner <kevinb@redhat.com>
4145
4146 * frame.c (find_saved_register): Break out of loop once saved
4147 register address is found. Don't mention sparc in loop comment
4148 anymore.
4149
4150 2002-08-06 Kevin Buettner <kevinb@redhat.com>
4151
4152 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
4153 mips_default_saved_regsize to 8.
4154
4155 2002-08-06 Andrew Cagney <ac131313@redhat.com>
4156
4157 * gcore.c: Do not include <sys/procfs.h>.
4158 * Makefile.in (gcore.o): Update dependencies.
4159
4160 2002-08-06 Andrew Cagney <cagney@redhat.com>
4161
4162 * configure.tgt: Make arc-*-* obsolete.
4163 * NEWS: Mention that arc-*-* has been identifed as obsolete.
4164 * MAINTAINERS: Make arc-elf obsolete.
4165 * arc-tdep.c: Make file obsolete.
4166 * config/arc/arc.mt: Ditto.
4167 * config/arc/tm-arc.h: Ditto.
4168
4169 2002-08-05 Theodore A. Roth <troth@verinet.com>
4170
4171 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
4172
4173 2002-08-05 Andrew Cagney <ac131313@redhat.com>
4174
4175 * mcore-tdep.c (mcore_gdbarch_init): Use
4176 generic_unwind_get_saved_register instead of
4177 generic_get_saved_register.
4178 * v850-tdep.c (v850_gdbarch_init): Ditto.
4179 * frv-tdep.c (frv_gdbarch_init): Ditto.
4180 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4181 * s390-tdep.c (s390_gdbarch_init): Ditto.
4182 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4183 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
4184 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
4185
4186 2002-08-05 Joel Brobecker <brobecker@gnat.com>
4187
4188 * objfiles.h: Add missing #include "symfile.h"
4189
4190 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
4191
4192 2002-08-04 Andrew Cagney <ac131313@redhat.com>
4193
4194 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
4195 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
4196 of FIELD_BITSIZE.
4197
4198 2002-08-04 Daniel Jacobowitz <drow@mvista.com>
4199
4200 * NEWS: Cleanup and nitpick.
4201
4202 2002-08-03 Andrew Cagney <ac131313@redhat.com>
4203
4204 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
4205
4206 2002-08-03 Andrew Cagney <ac131313@redhat.com>
4207
4208 * Makefile.in (gdbtk-bp.o): Update dependencies.
4209 (gdbtk-register.o): Ditto.
4210 (gdbtk-varobj.o): Ditto.
4211
4212 2002-08-03 Andrew Cagney <cagney@redhat.com>
4213
4214 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
4215 m68hc11_fetch_pseudo_register.
4216 (m68hc11_pseudo_register_write): Replace
4217 m68hc11_store_pseudo_register.
4218 (m68hc11_gdbarch_init): Update.
4219
4220 Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
4221
4222 * gdbarch.sh: Include "gdb_string.h".
4223 * gdbarch.c: Regenerate.
4224
4225 * regcache.c: Include "gdb_string.h".
4226 * ax-general.c: Ditto.
4227 * varobj.c: Ditto.
4228 * std-regs.c: Ditto.
4229 * fbsd-proc.c: Ditto.
4230 * thread.c: Ditto.
4231
4232 * Makefile.in (regcache.o): Update dependencies.
4233 (thread.o, gdbarch.o): Ditto.
4234 (ax-general.o, gdbarch.o): Ditto.
4235 (varobj.o, std-regs.o): Ditto.
4236 (fbsd-proc.o): Specify dependencies.
4237
4238 2002-08-02 Andrew Cagney <cagney@redhat.com>
4239
4240 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
4241 regnum.
4242 (regcache_cooked_write): Ditto.
4243
4244 2002-08-02 Andrew Cagney <ac131313@redhat.com>
4245
4246 * regcache.c (regcache_cooked_read): New function.
4247 (regcache_cooked_write): New function.
4248 (read_register_gen): Rewrite using regcache_cooked_read.
4249 (write_register_gen): Rewrite using regcache_cooked_write.
4250
4251 * regcache.h (regcache_cooked_read, regcache_cooked_write):
4252 Declare.
4253
4254 2002-08-02 Andrew Cagney <cagney@redhat.com>
4255
4256 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
4257 Replace the architecture methods register_read and register_write.
4258 * gdbarch.h, gdbarch.c: Regenerate.
4259 * regcache.c (init_regcache_descr): Update.
4260 (read_register_gen): Update.
4261 (write_register_gen): Update.
4262 (supply_register): Update comment.
4263
4264 * sh-tdep.c (sh_gdbarch_init): Update.
4265 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
4266 `regcache' and `gdbarch' parameters. Make `buffer' a void
4267 pointer. Update code.
4268 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
4269 `regcache' and `gdbarch' parameters. Make `buffer' a constant
4270 void pointer. Update code.
4271 (sh64_register_write): Delete.
4272 (sh4_register_read): Delete.
4273 (sh64_register_read): Delete.
4274 (sh4_register_write): Delete.
4275 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
4276 void pointer, `to' parameter a void pointer.
4277 (sh_sh64_register_convert_to_raw): Ditto.
4278
4279 2002-08-01 Kevin Buettner <kevinb@redhat.com>
4280
4281 * mips-tdep.c (mips_register_virtual_type): Use architecture
4282 invariant return values.
4283
4284 2002-08-01 Andrew Cagney <cagney@redhat.com>
4285
4286 * linux-proc.c: Include "gdb_string.h".
4287 * Makefile.in (linux-proc.o): Update dependency list.
4288
4289 2002-08-01 Kevin Buettner <kevinb@redhat.com>
4290
4291 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
4292 comment.
4293
4294 2002-08-01 Grace Sainsbury <graces@redhat.com>
4295
4296 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
4297 to_insert_watchpoint, to_remove_watchpoint,
4298 to_stopped_by_watchpoint, to_stopped_data_address,
4299 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
4300 target vecctor. Define their corresponding macros so they call
4301 them.
4302
4303 * target.c: Add default and debug versions of for
4304 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
4305 to_insert_watchpoint, to_remove_watchpoint,
4306 to_stopped_by_watchpoint, to_stopped_data_address,
4307 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
4308
4309 2002-08-01 Kevin Buettner <kevinb@redhat.com>
4310
4311 * mips-tdep.c (mips_register_virtual_type): New function.
4312 (mips_gdbarch_init): Register mips_register_virtual_type()
4313 with gdbarch machinery.
4314 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
4315 this file instead of tm-bigmips.h.
4316 (MIPS_REGSIZE): Delete this macro.
4317 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
4318 multiarch version in mips-tdep.c will be found.
4319
4320 2002-08-01 Andrew Cagney <cagney@redhat.com>
4321
4322 * NEWS: Menion that CHILL has been made obsolete.
4323
4324 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
4325 * stabsread.c (read_range_type): Ditto.
4326 * gdbtypes.h: Ditto.
4327 * language.c (binop_type_check): Ditto.
4328 (binop_result_type): Ditto.
4329 (integral_type): Ditto.
4330 (character_type): Ditto.
4331 (string_type): Ditto.
4332 (boolean_type): Ditto.
4333 (structured_type): Ditto.
4334 (lang_bool_type): Ditto.
4335 (binop_type_check): Ditto.
4336 * language.h (_LANG_chill): Ditto.
4337 * dwarfread.c (set_cu_language): Ditto.
4338 * dwarfread.c (CHILL_PRODUCER): Ditto.
4339 * dwarfread.c (handle_producer): Ditto.
4340 * expression.h (enum exp_opcode): Ditto.
4341 * eval.c: Ditto for comments.
4342 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
4343 * expprint.c (print_subexp): Ditto.
4344 (print_subexp): Ditto.
4345 * valops.c (value_cast): Ditto.
4346 (search_struct_field): Ditto.
4347 * value.h (COERCE_VARYING_ARRAY): Ditto.
4348 * symfile.c (init_filename_language_table): Ditto.
4349 (add_psymbol_with_dem_name_to_list): Ditto.
4350 * valarith.c (value_binop): Ditto.
4351 (value_neg): Ditto.
4352 * valops.c (value_slice): Ditto.
4353 * symtab.h (union language_specific): Ditto.
4354 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
4355 (SYMBOL_DEMANGLED_NAME): Ditto.
4356 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
4357 * defs.h (enum language): Ditto.
4358 * symtab.c (got_symtab): Ditto.
4359 * utils.c (fprintf_symbol_filtered): Ditto.
4360
4361 * ch-typeprint.c: Make file obsolete.
4362 * ch-valprint.c: Make file obsolete.
4363 * ch-lang.h: Make file obsolete.
4364 * ch-exp.c: Make file obsolete.
4365 * ch-lang.c: Make file obsolete.
4366
4367 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
4368 CHILL_LIB.
4369 (TARGET_FLAGS_TO_PASS): Ditto.
4370 (CHILLFLAGS): Obsolete.
4371 (CHILL): Obsolete.
4372 (CHILL_FOR_TARGET): Obsolete.
4373 (CHILL_LIB): Obsolete.
4374 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
4375 ch-valprint.c.
4376 (HFILES_NO_SRCDIR): Remove ch-lang.h.
4377 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
4378 ch-lang.o.
4379 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
4380 targets.
4381
4382 2002-07-31 Joel Brobecker <brobecker@gnat.com>
4383
4384 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
4385 This does not change anything at the moment, but will be helpful
4386 later when full Ada support is integrated.
4387
4388 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4389
4390 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
4391 help message.
4392
4393 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4394
4395 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
4396 and save it in a local variable. Use variable in later test.
4397
4398 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4399
4400 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
4401 test. (Thanks to Daniel Jacobowitz.)
4402
4403 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4404
4405 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
4406 (mips_abi_strings): Add "n64".
4407 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
4408
4409 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4410
4411 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
4412 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
4413
4414 2002-07-31 Kevin Buettner <kevinb@redhat.com>
4415
4416 * utils.c (host_pointer_to_address, address_to_host_pointer):
4417 Use gdb_assert() instead of explicit call to internal_error().
4418
4419 2002-07-30 Kevin Buettner <kevinb@redhat.com>
4420
4421 * Makefile.in (rs6000-nat.o): Update dependencies.
4422
4423 From Nicholas Duffek:
4424 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
4425 (aix-thread.o): New rule.
4426 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
4427 * config/powerpc/aix432.mh: New file.
4428
4429 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
4430
4431 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
4432 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
4433 (fetch_core_registers, ppc_linux_supply_gregset)
4434 (ppc_linux_supply_fpregset): New functions.
4435 (ppc_linux_regset_core_fns): New.
4436 (_initialize_ppc_linux_tdep): Call add_core_fns.
4437 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
4438 and ppc_linux_supply_gregset.
4439 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
4440 (supply_fpregset): Call ppc_linux_supply_fpregset.
4441 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
4442 corelow.o.
4443 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
4444
4445 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
4446
4447 * symtab.c (lookup_symbol): Demangle before lowercasing.
4448
4449 2002-07-30 Andrew Cagney <ac131313@redhat.com>
4450
4451 * symtab.h: Replace #include "gdb_obstack.h" with opaque
4452 declaration.
4453 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
4454 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
4455 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
4456 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
4457 "gdb_string.h".
4458 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
4459 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
4460 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
4461 (avr-tdep.o, mon960-rom.o): Ditto.
4462 (aout_stabs_gnu_h): Define.
4463 (symtab_h): Remove $(gdb_obstack_h).
4464
4465 2002-07-30 Jim Blandy <jimb@redhat.com>
4466
4467 Patch from David Carlton <carlton@math.stanford.edu>:
4468 * gdbinit.in: Move the `dir' commands that add GDB's own source
4469 directory to the search path to the end, so that the `gdb' source
4470 directory will be searched first.
4471
4472 2002-07-29 Andrew Cagney <ac131313@redhat.com>
4473
4474 * gdb_obstack.h: New file.
4475 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
4476 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
4477 * objfiles.h: Include "gdb_obstack.h".
4478 * Makefile.in (gdb_obstack_h): Define.
4479 (symtab_h): Add $(gdb_obstack_h).
4480 (objfiles_h): Add $(gdb_obstack_h).
4481
4482 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
4483 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
4484 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
4485 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
4486 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
4487 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
4488 * symfile.c, coffread.c, c-typeprint.c: Ditto.
4489 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
4490
4491 * Makefile.in (bcache.o): Update dependencies.
4492 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
4493 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
4494 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
4495 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
4496 (stabsread.o, symfile.o, symmisc.o): Ditto.
4497 (symtab.o, typeprint.o, macroexp.o): Ditto.
4498 (macrotab.o, mdebugread.o): Ditto.
4499 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
4500 (coff_ecoff_h, aout_aout64_h): Define.
4501 (aout_stabs_gnu_h, libaout_h): Define.
4502
4503 2002-07-29 Andrew Cagney <cagney@redhat.com>
4504
4505 * regcache.c (struct regcache_descr): Rename nr_registers to
4506 nr_cooked_registers. Revise comments describing the structure
4507 member fields.
4508 (init_regcache_descr): Update.
4509 (init_legacy_regcache_descr): Update.
4510 (read_register_gen, write_register_gen): When a cooked register in
4511 the raw register range, directly access the value from the raw
4512 register cache.
4513
4514 2002-07-29 Andrew Cagney <ac131313@redhat.com>
4515
4516 * z8k-tdep.c: Do not include "obstack.h".
4517 * h8300-tdep.c, h8500-tdep.c: Ditto.
4518 * m68hc11-tdep.c, sh-tdep.c: Ditto.
4519 * valprint.c, v850-tdep.c: Ditto.
4520 * d10v-tdep.c, mn10300-tdep.c: Ditto.
4521 * mn10200-tdep.c: Ditto.
4522
4523 * Makefile.in (z8k-tdep.o): Update dependencies.
4524 (m68hc11-tdep.o, valprint.o): Ditto.
4525 (v850-tdep.o, d10v-tdep.o): Ditto.
4526 (mn10300-tdep.o, sparc-tdep.o): Ditto.
4527 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
4528 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
4529 (sh_opc_h, gdb_sim_sh_h): Define.
4530 (elf_sh_h, elf_bfd_h): Define.
4531 (opcode_m68hc11_h): Define.
4532 (OPCODES_SRC, OPCODES_DIR): define.
4533 (OPCODES): Use $(OPCODES_DIR).
4534 (gdb_sim_d10v_h): Rename sim_d10v_h.
4535 (gdb_sim_arm_h): Rename sim_arm_h.
4536
4537 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4538
4539 * utils.c (host_pointer_to_address, address_to_host_pointer):
4540 Change internal_error() message to indicate function responsible
4541 for the error.
4542
4543 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4544
4545 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
4546 calls to local_hex_string_custom().
4547
4548 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4549
4550 * irix5-nat.c: Move IRIX shared library support from here...
4551 * solib-irix.c: ...to here. Revised substantially to work with
4552 generic solib framework.
4553
4554 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
4555 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
4556 * mips-irix-tdep.c: New file.
4557
4558 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
4559 (mips-irix-tdep.o, solib-irix.o): New rules.
4560 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
4561 solib-irix.o.
4562 * config/mips/irix6.mt (TDEPFILES): Likewise.
4563 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
4564
4565 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4566
4567 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
4568 disabled (via ``#if 0'') includes.
4569
4570 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4571
4572 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
4573 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
4574 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
4575 Add support for the fpscr register.
4576 * rs6000-nat.c (regmap, fetch_inferior_registers)
4577 (store_inferior_registers, fetch_core_registers): Likewise.
4578
4579 2002-07-26 Kevin Buettner <kevinb@redhat.com>
4580
4581 * rs6000-nat.c (language.h): Include.
4582 (special_regs): Delete this array.
4583 (regmap): New function.
4584 (fetch_register, store_register): Use regmap() to map gdb
4585 register numbers to ptrace register numbers. Also, use
4586 outputs from regmap() to make decisions regarding type of
4587 ptrace() call to make. In particular, don't compare against
4588 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
4589 (fetch_inferior_registers, store_inferior_registers): Where
4590 possible, obtain register numbers from tdep struct. Don't
4591 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
4592 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
4593 (LAST_UISA_SP_REGNUM): Delete.
4594
4595 2002-07-25 Kevin Buettner <kevinb@redhat.com>
4596
4597 * rs6000-nat.c (ppc-tdep.h): Include.
4598 (fetch_registers, store_register, fetch_core_registers): Don't
4599 access registers[] directly. Instead, use supply_register() or
4600 regcache_collect() as appropriate.
4601 (find_toc_address): Format hex address with local_hex_string().
4602
4603 2002-07-25 Andrew Cagney <ac131313@redhat.com>
4604
4605 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
4606 bfd/elf32-frv.c.
4607
4608 2002-07-24 Tom Tromey <tromey@redhat.com>
4609
4610 * jv-exp.y: Marked all strings with _().
4611 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
4612 internal_error.
4613 (MethodInvocation, CastExpression, parse_number, yyerror,
4614 java_type_from_name, push_expression_name, yylex): Typo fixes.
4615
4616 2002-07-24 Daniel Jacobowitz <drow@mvista.com>
4617
4618 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
4619 (tee_file_flush, tee_file_write, tee_file_fputs)
4620 (tee_file_isatty): New.
4621 * ui-file.h (tee_file_new): Add prototype.
4622
4623 2002-07-24 Aidan Skinner <aidan@velvet.net>
4624
4625 * ada-lang.c: Change k&r style function definitions to prototyped
4626 form.
4627 * ada-typeprint.c: Change k&r style function definitions to prototyped
4628 form.
4629 * ada-valprint.c: Change k&r style function definitions to prototyped
4630 form.
4631
4632 2002-07-24 Andrew Cagney <cagney@redhat.com>
4633
4634 * README: Remove reference to remote-bug.
4635 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
4636 remote-bug.c.
4637 (m88k-nat.o): Delete rule.
4638 (m88k-tdep.o): Delete rule.
4639 (remote-bug.o): Delete rule.
4640 * MAINTAINERS: Mark as obsolete.
4641 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
4642 * m88k-tdep.c: Make file obsolete.
4643 * config/m88k/m88k.mh: Ditto.
4644 * config/m88k/delta88v4.mh: Ditto.
4645 * config/m88k/delta88v4.mt: Ditto.
4646 * config/m88k/delta88.mt: Ditto.
4647 * config/m88k/delta88.mh: Ditto.
4648 * remote-bug.c: Ditto.
4649 * config/m88k/tm-delta88.h: Ditto.
4650 * config/m88k/nm-delta88v4.h: Ditto.
4651 * config/m88k/xm-delta88.h: Ditto.
4652 * config/m88k/xm-dgux.h: Ditto.
4653 * config/m88k/tm-m88k.h: Ditto.
4654 * config/m88k/nm-m88k.h: Ditto.
4655 * config/m88k/tm-delta88v4.h: Ditto.
4656 * m88k-nat.c: Ditto.
4657 * cxux-nat.c: Ditto.
4658 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
4659 and m88*-*-* obsolete.
4660 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
4661 m88*-*-* obsolete.
4662
4663 2002-07-24 Andrew Cagney <cagney@redhat.com>
4664
4665 * findvar.c (extract_unsigned_integer): Make `addr' parameter
4666 constant. Same for local pointer variables.
4667 (extract_signed_integer): Ditto.
4668 * defs.h (extract_unsigned_integer): Update.
4669 (extract_signed_integer): Update.
4670
4671 2002-07-24 Andrew Cagney <cagney@redhat.com>
4672
4673 * regcache.c (regcache_raw_write): Change buf parameter to a
4674 constant void pointer.
4675 (regcache_raw_read): Change buf parameter to a void pointer.
4676 (legacy_write_register_gen): Change myaddr parameter a constant
4677 void pointer.
4678 (supply_register): Change val parameter to a const void pointer.
4679 * regcache.h (regcache_raw_write): Update declaration.
4680 (regcache_raw_read): Update declaration.
4681 (supply_register): Update declaration.
4682
4683 2002-07-24 Tom Tromey <tromey@redhat.com>
4684
4685 * defs.h (gdb_readline_wrapper): Declare.
4686 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
4687 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
4688 * top.c (gdb_readline_wrapper): New function.
4689 (command_line_input): Use it.
4690
4691 2002-07-24 Andrew Cagney <cagney@redhat.com>
4692
4693 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
4694 regcache_read and regcache_write.
4695 (regcache_raw_read_as_address): Replace regcache_read_as_address.
4696 * regcache.c: Update.
4697 * sh-tdep.c (sh64_push_arguments): Update comment.
4698 (sh_pseudo_register_read): Update.
4699 (sh_pseudo_register_write): Update.
4700 (sh4_register_read): Update.
4701 (sh4_register_write): Update.
4702 (sh64_pseudo_register_read): Update.
4703 (sh64_pseudo_register_write): Update.
4704 (sh64_register_read): Update.
4705 (sh64_register_write): Update.
4706 * i386-tdep.c (i386_extract_return_value): Update.
4707 (i386_extract_struct_value_address): Update.
4708 (i386_extract_return_value): Update.
4709 * blockframe.c (generic_read_register_dummy): Update.
4710 (generic_call_dummy_register_unwind): Update
4711 * infrun.c (write_inferior_status_register): Update.
4712
4713 2002-07-23 Jim Blandy <jimb@redhat.com>
4714
4715 * parser-defs.h (expression_context_pc): Make this extern.
4716 (Thanks to Michael Snyder.)
4717
4718 2002-07-23 Andrew Cagney <ac131313@redhat.com>
4719
4720 GDB 5.2.1 released from 5.2 branch.
4721 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
4722 * README: Update to mention 5.2.1.
4723
4724 2002-07-23 Mark Salter <msalter@redhat.com>
4725
4726 * remote.c (remote_read_bytes): Fix check for error.
4727
4728 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4729
4730 * aix-thread.c (language.h): Include.
4731 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4732 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
4733 Print newlines at end of debug messages.
4734 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
4735 (pdc_write_data): Use local_hex_string() instead of %llx formats.
4736
4737 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4738
4739 * aix-thread.c (ppc-tdep.h): Include.
4740 (special_register_p): New function.
4741 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
4742 (store_regs_user_thread): Use register number information from
4743 gdbarch_tdep struct instead of hardcoded offsets relative to
4744 FIRST_UISA_SP_REGNUM.
4745 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
4746 special_register_p() instead of using FPLAST_REGNUM and
4747 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
4748 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
4749 will be MQ's register number.
4750
4751 2002-07-22 Michael Snyder <msnyder@redhat.com>
4752
4753 * aix-thread.c (ops): Rename to aix_thread_ops.
4754 (base_ops): Rename to base_target.
4755 (ops_attach): Rename to aix_thread_attach.
4756 (ops_detach): Rename to aix_thread_detach.
4757 (ops_resume): Rename to aix_thread_detach.
4758 (ops_wait): Rename to aix_thread_wait.
4759 (ops_kill): Rename to aix_thread_kill.
4760 (init_ops): Rename to init_aix_thread_ops.
4761 (ops_fetch_register): Rename to aix_thread_fetch_register.
4762 (ops_store_register): Rename to aix_thread_store_register.
4763 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
4764 (ops_thread_alive): Rename to aix_thread_thread_alive.
4765 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
4766 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
4767 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
4768 (fetch_regs_lib): Rename to fetch_regs_user_thread.
4769 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
4770 (store_regs_lib): Rename to store_regs_user_thread.
4771 (store_regs_kern): Rename to store_regs_kernel_thread.
4772
4773 2002-07-22 Michael Snyder <msnyder@redhat.com>
4774
4775 * aix-thread.c (ops_prepare_to_store): Eliminate.
4776 (init_ops): Don't initialize ops.prepare_to_store.
4777 (store_regs_kern): Pre-fetch register buffers from child,
4778 because some registers may not be in the cache. Copy
4779 regs from register cache only if they are cached.
4780 (store_regs_lib): Copy regs from register cache only
4781 if they are cached.
4782 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
4783 fill_gprs64): Ditto.
4784
4785 2002-07-22 Kevin Buettner <kevinb@redhat.com>
4786
4787 * aix-thread.c (gdb_assert.h): Include.
4788 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
4789 register sizes (from register cache) match size of buffer holding
4790 register data.
4791 (fill_sprs32): Change parameter types to match those in the ptrace()
4792 buffer.
4793 (store_regs_lib): Likewise, but for 32-bit temporary variables.
4794 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
4795
4796 2002-07-22 Michael Snyder <msnyder@redhat.com>
4797
4798 * aix-thread.c (supply_sprs64): Cosmetic change.
4799 (supply_sprs32): Cosmetic change.
4800 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
4801 (fill_sprs64): Use regcache_collect instead of read_register.
4802 (store_regs_lib): Use regcache_collect instead of
4803 read_register. Use fill_sprs32 instead of fill_sprs64,
4804 if debugging a 32-bit architecture.
4805 (store_regs_kern): Use fill_gprs64 etc. to pull the values
4806 out of the register cache, instead of passing a pointer into
4807 the register cache directly to ptrace. Use regcache_collect
4808 insteaad of read_register.
4809 (ops_prepare_to_store): Use target_read_registers instead
4810 of read_register_bytes.
4811
4812 2002-07-20 Aidan Skinner <aidan@velvet.net>
4813
4814 * MAINTAINERS: Add self under write after approval.
4815
4816 2002-07-20 Aidan Skinner <aidan@velvet.net>
4817
4818 * ada-tasks.c: Change k&r style function definitions to prototyped
4819 form.
4820
4821 2002-07-19 Andrew Cagney <ac131313@redhat.com>
4822
4823 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
4824 * x86-64-tdep.c: Include "objfiles.h".
4825 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
4826 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
4827
4828 2002-07-17 Michal Ludvig <michal@suse.cz>
4829
4830 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
4831 (update_context): Initialise cfa variable.
4832
4833 2002-07-17 Michael Snyder <msnyder@redhat.com>
4834
4835 * aix-thread.c: Shorten some long lines.
4836 Bring comments into line with code spec.
4837
4838 2002-07-18 Joel Brobecker <brobecker@gnat.com>
4839
4840 * infrun.c: Re-indent using gdb_indent.sh.
4841
4842 2002-07-18 Joel Brobecker <brobecker@gnat.com>
4843
4844 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
4845 Leave the indentation temporarily untouched, to minimize the diffs.
4846
4847 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
4848
4849 * stabsread.c: Make os9k sections of the code obsolete,
4850 for real this time.
4851 * stabsread.h: Make os9k sections of the code obsolete.
4852
4853 2002-07-18 Michal Ludvig <mludvig@suse.cz>
4854
4855 * linux-low.c (regsets_store_inferior_registers): Add free()
4856 at the end of a loop to prevent memory leak.
4857 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
4858 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
4859 * config/sparc/tm-sp64linux.h: Make the rest of #endif
4860 line a comment.
4861 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
4862
4863 2002-07-17 Jim Blandy <jimb@redhat.com>
4864
4865 * macrocmd.c (info_macro_command): Remove newline from error
4866 message.
4867
4868 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
4869
4870 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
4871 (sh_gdbarch_init): Use it for sh-dsp.
4872
4873 2002-07-16 Kevin Buettner <kevinb@redhat.com>
4874
4875 * dwarf2read.c (read_initial_length): Handle older, non-standard,
4876 64-bit DWARF2 format.
4877
4878 2002-07-16 Joel Brobecker <brobecker@gnat.com>
4879
4880 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
4881 <sys/proc.h> when not available.
4882
4883 2002-07-16 Andrew Cagney <ac131313@redhat.com>
4884
4885 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
4886 * stabsread.c: Make os9k sections of the code obsolete.
4887 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
4888 * config/i386/i386os9k.mt: Make file obsolete.
4889 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
4890 (COMMON_OBS): Remove os9kread.o
4891 (SFILES): Remove os9kread.c.
4892 (os9kread.o, remote-os9k.o): Make target obsolete.
4893 * remote-os9k.c: Make file obsolete.
4894 * os9kread.c: Make file obsolete.
4895 * Makefile.in
4896
4897 2002-07-16 Andrew Cagney <ac131313@redhat.com>
4898
4899 * NEWS: Mention that the FR30 has been made obsolete.
4900 * fr30-tdep.c: Make file obsolete.
4901 * config/fr30/tm-fr30.h: Ditto.
4902 * config/fr30/fr30.mt: Ditto.
4903 * configure.tgt: Make fr30-*-elf obsolete.
4904 * MAINTAINERS: Make fr30-elf obsolete.
4905
4906 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
4907
4908 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
4909 found is not inside a section.
4910
4911 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4912
4913 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
4914 strerror().
4915 (pdc_realloc): Use xrealloc() instead of realloc().
4916
4917 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4918
4919 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
4920 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
4921 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
4922 macros.
4923
4924 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4925
4926 * aix-thread.c (ptrace_check): Eliminate goto.
4927 (sync_threadlists): Eliminate gotos. Also, fix array overrun
4928 problem.
4929
4930 2002-07-15 Kevin Buettner <kevinb@redhat.com>
4931
4932 * aix-thread.c (gdbcmd.h): Include.
4933 (DEBUG, DBG, DBG2, dbg): Eliminate.
4934 (debug_aix_thread): New static global.
4935 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4936 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
4937 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
4938 invocations to DBG and DBG2 macros to test against
4939 ``debug_aix_thread'' and call fprintf_unfiltered().
4940 (_initialize_aix_thread): Add new command "set debug aix-thread".
4941
4942 2002-07-15 Andrew Cagney <ac131313@redhat.com>
4943
4944 From Gerhard Tonn <TON@de.ibm.com>:
4945 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
4946 instead of supply_register.
4947
4948 2002-07-15 Andrew Cagney <ac131313@redhat.com>
4949
4950 * dwarf2cfi.c: Include "gdb_assert.h".
4951 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
4952 non-NULL.
4953 (update_context): Do not use __func__. Add missing ``break''.
4954 (update_context): Do not use __func__.
4955
4956 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
4957
4958 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
4959 and its setting. Set gdbarch instruction printing functions
4960 directly. For non-rs6000 case use new function
4961 gdb_print_insn_powerpc.
4962 (gdb_print_insn_powerpc): New function.
4963
4964 2002-07-13 Andrew Cagney <ac131313@redhat.com>
4965
4966 * NEWS: Mention that the d30v has been marked obsolete.
4967 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
4968 * configure.tgt: Mark d30v-*-* as obsolete.
4969 * d30v-tdep.c: Mark file as obsolete.
4970 * config/d30v/d30v.mt: Ditto.
4971 * config/d30v/tm-d30v.h: Ditto.
4972
4973 2002-07-13 Aidan Skinner <aidan@velvet.net>
4974
4975 * ada-tasks.c (add_task_entry): replace calls to
4976 malloc() with xmalloc
4977 * ada-tasks.c (init_task_list): replace calls to free with xfree()
4978
4979 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
4980 ada_finish_decode_line_1, all_sals_for_line
4981 ada_breakpoint_rewrite): replace calls to free() with xfree()
4982
4983 2002-07-12 Kevin Buettner <kevinb@redhat.com>
4984
4985 From Nicholas Duffek (with minor changes by Martin Hunt,
4986 Louis Hamilton, and Kevin Buettner):
4987 * aix-thread.c: New file.
4988
4989 2002-07-12 Petr Sorfa <petrs@caldera.com>
4990
4991 * dwarf2read.c (dwarf2_invalid_attrib_class): New
4992 complaint for invalid attribute class or form.
4993 (read_func_scope): DW_AT_frame_base
4994 better handling of DW_AT_block*.
4995 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
4996 better handling of DW_AT_block*.
4997 (read_common_block): DW_AT_location
4998 better handling of DW_AT_block*.
4999 (read_partial_die): DW_AT_location better handling
5000 of DW_AT_block*.
5001 (new_symbol): DW_AT_external better handling of
5002 DW_AT_block*. Proper initialization of variable
5003 "addr".
5004 (attr_form_is_block): New function that returns true
5005 if the attribute's form is of DW_FORM_block*.
5006
5007 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
5008
5009 * valops.c (find_method_list): Remove comment about
5010 removed STATIC_MEMFUNCP argument.
5011 (value_find_oload_method_list): Likewise.
5012
5013 2002-07-12 Kevin Buettner <kevinb@redhat.com>
5014
5015 From Nicholas Duffek:
5016 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
5017 target_new_objfile_hook.
5018
5019 2002-07-12 Kevin Buettner <kevinb@redhat.com>
5020
5021 From Nicholas Duffek:
5022 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
5023 csect.
5024
5025 2002-07-12 Andrew Cagney <cagney@redhat.com>
5026
5027 * MAINTAINERS: Mention --enable-sim-build-warnings.
5028 (m68hc11-elf): Disable sim build warnings.
5029 (m32r-elf): Mark as broken obsolete candidate.
5030 (x86_64-linux-gnu): Mark as buildable with -Werror.
5031 (arm-elf): Change -w to ``,'' which enables warnings but not
5032 -Werror.
5033
5034 2002-07-12 Andrew Cagney <ac131313@redhat.com>
5035
5036 * bcache.h: Update copyright.
5037 (struct bstring, struct bcache): Move definition to "bcache.c".
5038 Replaced by opaque declaration.
5039 (bcache_xfree): Replace free_bcache.
5040 (bcache_xmalloc, bcache_memory_used): Declare.
5041
5042 * bcache.c: Update copyright.
5043 (struct bstring, struct bcache): Moved to here from "bcache.h".
5044 Update comments.
5045 (bcache_xmalloc, bcache_memory_used): New functions.
5046 (bcache_xfree): Replace function free_bcache.
5047
5048 * Makefile.in (objfiles.o): Add $(bcache_h).
5049 (objfiles_h): Remove $(bcache_h).
5050 (symfile.o): Add $(bcache_h).
5051
5052 * symmisc.c: Update copyright.
5053 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
5054 (print_objfile_statistics): Use bcache_memory_used.
5055
5056 * symfile.c: Include "bcache.h".
5057 (reread_symbols): Use bcache_xfree.
5058 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
5059 (add_psymbol_to_list): Pass psymbol_cache by value.
5060 (add_psymbol_with_dem_name_to_list): Ditto.
5061
5062 * objfiles.h: Update copyright.
5063 (struct bcache): Declare opaque. Do not include "bcache.h".
5064 (struct objfile): Change psymbol_cache and macro_cache to ``struct
5065 bcache'' pointers.
5066 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
5067
5068 * objfiles.c: Include "bcache.h". Update copyright.
5069 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
5070 macro_cache.
5071 (free_objfile): Use bcache_xfree.
5072
5073 2002-07-11 Grace Sainsbury <graces@redhat.com>
5074
5075 * monitor.c (monitor_fetch_register): Make name a constant.
5076 (monitor_store_register): Same.
5077
5078 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
5079
5080 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
5081 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
5082 (finish_block) For non-function blocks, hash the symbol table. For
5083 function blocks, mark the symbol table as unhashed.
5084 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
5085 (msymbol_hash_iw): Likewise.
5086 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
5087 value.
5088 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
5089 (lookup_minimal_symbol): Likewise for both.
5090 * symtab.h (struct block): Add `hashtable' flag. Comment the
5091 hashtable.
5092 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
5093 (ALL_BLOCK_SYMBOLS): Update.
5094 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
5095 (struct symbol): Add `hash_next' pointer.
5096 * symtab.c (lookup_block_symbol): Search using the hash table when
5097 possible.
5098 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
5099 (search_symbols, find_addr_symbol): Likewise.
5100
5101 * dstread.c (process_dst_block): Clear hashtable bit for new block.
5102 (read_dst_symtab): Likewise.
5103 * jv-lang.c (get_java_class_symtab): Likewise.
5104 * mdebugread.c: Include "gdb_assert.h".
5105 (shrink_block): Assert that the block being modified is not hashed.
5106 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
5107 * symmisc.c (free_symtab_block): Walk the hash table when freeing
5108 symbols.
5109 (dump_symtab): Recognize hashed blocks.
5110 * printcmd.c (print_frame_args): Assert that function blocks do not
5111 have hashed symbol tables.
5112 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
5113 (fill_in_ada_prototype, debug_print_block): Likewise.
5114 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
5115
5116 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
5117
5118 * stack.c (print_frame): Use result of frame_address_in_block()
5119 instead of fi->pc when evaluating symbols.
5120 (backtrace_command_1): Ditto.
5121
5122 2002-07-11 Andrew Cagney <cagney@redhat.com>
5123
5124 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
5125 Make static.
5126
5127 * arm-tdep.c (arm_register_name): Make return type constant.
5128
5129 2002-07-10 Andrew Cagney <ac131313@redhat.com>
5130
5131 * win32-nat.c (has_detach_ability): Convert to strict ISO C
5132 prototype.
5133 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
5134 * s390-tdep.c (s390_fp_regnum): Ditto.
5135 (s390_read_fp): Ditto.
5136 (s390_pop_frame): Ditto.
5137 (_initialize_s390_tdep): Ditto.
5138 * remote.c (get_remote_state): Ditto.
5139 * procfs.c (mappingflags): Ditto.
5140 * memattr.c (_initialize_mem): Ditto.
5141 * mcore-tdep.c (mcore_pop_frame): Ditto.
5142 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
5143 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
5144 * language.c (set_case_str): Ditto.
5145 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
5146 * frv-tdep.c (new_variant): Ditto.
5147 (frv_stopped_data_address): Ditto.
5148 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
5149 (context_alloc): Ditto.
5150 (frame_state_alloc): Ditto.
5151 (unwind_tmp_obstack_init): Ditto.
5152 (unwind_tmp_obstack_free): Ditto.
5153 (cfi_read_fp): Ditto.
5154 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
5155 (cris_pop_frame): Ditto.
5156 * c-lang.c (scanning_macro_expansion): Ditto.
5157 (finished_macro_expansion): Ditto.
5158 (c_preprocess_and_parse): Ditto.
5159 * gdbarch.sh: Ditto.
5160 * gdbarch.h, gdbarch.c: Regenerate.
5161 * config/mn10200/tm-mn10200.h: Adjust indentation.
5162 * target.c: Adjust indentation.
5163 * symtab.h: Adjust indentation.
5164 * stabsread.h: Adjust indentation.
5165 * remote-es.c: Adjust indentation.
5166 * os9kread.c: Adjust indentation.
5167
5168 2002-07-10 Andrew Cagney <ac131313@redhat.com>
5169
5170 * wince.c (_initialize_wince): Rename _initialize_inftarg.
5171 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
5172
5173 2002-07-10 Grace Sainsbury <graces@redhat.com>
5174
5175 * NEWS: Mention m68k, mcore multi-arching.
5176 * MAINTAINERS: Change status of m68k, mcore to reflect
5177 multi-arching.
5178
5179 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
5180
5181 * valops.c (find_overload_match): Free oload_syms.
5182
5183 2002-07-09 Joel Brobecker <brobecker@gnat.com>
5184
5185 Define HAVE_SYS_PROC_H if sys/proc.h exists
5186 * configure.in: Add check for sys/proc.h
5187 * config.in: Regenerate.
5188 * configure: Regenerate.
5189
5190 2002-07-09 Grace Sainsbury <graces@redhat.com>
5191
5192 * config/m68k/tm-m68k.h: Remove macros wrapped in
5193 #if !GDB_MULTI_ARCH.
5194
5195 2002-07-08 Andrew Cagney <ac131313@redhat.com>
5196
5197 * config.in, configure: Regenerate.
5198
5199 2002-07-08 Mark Kettenis <kettenis@gnu.org>
5200
5201 * dwarf2cfi.c: Include "gcore.h".
5202 (execute_stack_op): Fix implementation of the
5203 DW_OP_deref and DW_OP_deref_size operators by letting do their
5204 lookup in the target.
5205
5206 2002-07-07 Mark Kettenis <kettenis@gnu.org>
5207
5208 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
5209 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
5210 tdep->sc_sp_offset.
5211
5212 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
5213
5214 Fix PR gdb/595, gdb/602
5215 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
5216 Don't call value_cast, just read the vtable pointer; update comments
5217 to match.
5218
5219 2002-07-05 Grace Sainsbury <graces@redhat.com>
5220
5221 * config/mcore/tm-mcore.h: Remove file.
5222 * config/mcore/mcore.mt: Remove definition of TM_FILE
5223 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
5224
5225 2002-07-05 Mark Kettenis <kettenis@gnu.org>
5226
5227 * i386bsd-tdep.c: Include "gdb_string.h".
5228
5229 2002-07-04 Grace Sainsbury <graces@redhat.com>
5230
5231 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
5232 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
5233 mcore-tdep.
5234 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
5235 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
5236 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
5237 (RETVAL_REGNUM): Move macros from tm-mcore.h
5238 (mcore_reg_struct_has_addr): New function.
5239 (mcore_gdbarch_init): Added initializations for the macros removed
5240 from tm-mcore.h.
5241
5242 2002-07-04 Mark Kettenis <kettenis@gnu.org>
5243
5244 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
5245 traditonal string branding within the ELF header.
5246
5247 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
5248
5249 * symtab.c (remove_params): New function.
5250 (make_symbol_overload_list): Use it instead of cplus_demangle.
5251 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
5252
5253 2002-07-04 Mark Kettenis <kettenis@gnu.org>
5254
5255 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
5256
5257 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
5258 New variables.
5259 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
5260 and tdep->sigtramp_end.
5261 * i386obsd-nat.c: New file.
5262 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
5263
5264 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
5265 Don't call get_current_frame().
5266
5267 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
5268
5269 * i386-nat.c (child_post_startup_inferior): New function
5270 calling i386_cleanup_dregs if
5271 I386_USE_GENERIC_WATCHPOINTS is defined.
5272 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
5273 conditional to acknowledge that i386-nat.c has its
5274 own child_post_startup_inferior function.
5275
5276 2002-07-04 Mark Kettenis <kettenis@gnu.org>
5277
5278 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
5279 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
5280 instead of MAX_REGISTER_RAW_SIZE.
5281 (i386_extract_return_value, i386_extract_struct_value_address):
5282 Convert to use regcache.
5283 (i386_gdbarch_init): Set max_register_raw_size and
5284 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
5285 Set extract_return_value and extract_struct_value_address instead
5286 of their deprecated variants.
5287
5288 Convert i386 target to generic dummy frames.
5289 * i386-tdep.c: Include "symfile.h".
5290 (i386_frameless_signal_p): Consider a function to be frameless if
5291 the pc points at the first instruction of the function.
5292 (i386_frame_chain): Handle (generic) call dummies.
5293 (i386_frame_saved_pc): Likewise.
5294 (i386_frame_init_saved_regs): Remove code dealing with call
5295 dummies on the stack.
5296 (i386_push_dummy_frame): Removed.
5297 (i386_call_dummy_words): Removed.
5298 (i386_fix_call_dummy): Removed.
5299 (i386_push_return_address): New function.
5300 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
5301 parameter, and don't call get_current_frame.
5302 (i386_pop_frame): New function.
5303 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
5304 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
5305 entry_point_address, set call_dummy_breakpoint_offset to 0, set
5306 call_dummy_length to 0, set call_dummy_words to NULL, set
5307 sizeof_call_dummy_words to 0, set fix_call_dummy to
5308 generic_fix_call_dummy, set pc_in_call_dummy to
5309 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
5310 generic_push_dummy_frame, set push_return_address to
5311 i386_push_return_address and set frame_chain_valid to
5312 generic_file_frame_chain_valid.
5313
5314 2002-07-03 Andrew Cagney <ac131313@redhat.com>
5315
5316 * gdbarch.sh (struct regcache): Add opaque declaration.
5317 (EXTRACT_RETURN_VALUE): New architecture method.
5318 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
5319 * gdbarch.h, gdbarch.c: Regenerate.
5320 * arch-utils.c (legacy_extract_return_value): New function.
5321 * arch-utils.h (legacy_extract_return_value): Declare.
5322 * values.c (value_being_returned): Re-enable code handling
5323 EXTRACT_STRUCT_VALUE_ADDRESS. Move
5324 deprecated_grub_regcache_for_registers call to block handling
5325 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
5326 (EXTRACT_RETURN_VALUE): Do not define.
5327
5328 2002-07-03 Grace Sainsbury <graces@redhat.com>
5329
5330 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
5331 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
5332 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
5333 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
5334 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
5335 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
5336 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
5337 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
5338 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
5339 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
5340 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
5341 argument so the function fits the prototype in the architecture
5342 vector.
5343 (mcore_pop_frame): Remove argument so the function fits the
5344 prototype. Use get_current_frame instead of the argument.
5345 (mcore_push_arguments): Change type of struct_return so the
5346 function can be used in the architecture vector.
5347 (mcore_store_struct_return): Add.
5348 (mcore_frame_init_saved_regs): Add.
5349 (mcore_gdbarch_init): Add function calls to replace the macros
5350 removed from tm-mcore.h
5351
5352 2002-07-03 Andrew Cagney <ac131313@redhat.com>
5353
5354 * infcmd.c (print_return_value): Remove compatibility code calling
5355 deprecated_grub_regcache_for_registers.
5356
5357 * values.c: Include "regcache.h".
5358 (value_being_returned): Update. Use
5359 deprecated_grub_regcache_for_registers to extract the register
5360 buffer address.
5361 * value.h (value_being_returned): Change ``retbuf'' parameter to a
5362 ``struct regcache''.
5363 * Makefile.in (values.o): Add dependency on $(regcache_h).
5364
5365 * inferior.h (run_stack_dummy): Change type of second parameter to
5366 a ``struct regcache''.
5367 * valops.c (hand_function_call): Change type of retbuf to ``struct
5368 regcache''. Allocate using regcache_xmalloc, clean using
5369 make_cleanup_regcache_xfree.
5370 * infcmd.c (run_stack_dummy): Update. Use
5371 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
5372
5373 * regcache.c (do_regcache_xfree): New function.
5374 (make_cleanup_regcache_xfree): New function.
5375 * regcache.h (make_cleanup_regcache_xfree): Declare.
5376
5377 2002-07-03 Martin M. Hunt <hunt@redhat.com>
5378
5379 * event-top.c (command_line_handler): Don't read past
5380 beginning of buffer.
5381
5382 2002-07-03 Martin M. Hunt <hunt@redhat.com>
5383
5384 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
5385 struct frame_id.
5386 (varobj_create): Store frame_id for root.
5387 (varobj_gen_name): Use xasprintf.
5388 (varobj_update): Save and restore frame using get_frame_id() and
5389 frame_find_by_id().
5390 (create_child): Use xasprintf.
5391 (new_root_variable): Initialize frame_id.
5392 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
5393 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
5394 to prevent memory leak.
5395
5396 2002-07-03 Andrew Cagney <ac131313@redhat.com>
5397
5398 * valops.c (hand_function_call): Move declaration of retbuf to
5399 start of function, allocate using malloc, add a cleanup but before
5400 the inf_status cleanup, cleanup the buffer. Rename local variable
5401 old_chain to inf_status_cleanup.
5402
5403 2002-07-03 Martin M. Hunt <hunt@redhat.com>
5404
5405 * top.c (execute_command): Use cmd_func() and cmd_func_p().
5406
5407 * cli/cli-decode.c (cmd_func_p): New function.
5408 (cmd_func): New function.
5409
5410 * command.h: Add cmd_func() and cmd_func_p().
5411
5412 2002-07-03 Grace Sainsbury <graces@redhat.com>
5413
5414 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
5415 (REGISTER_SIZE): Remove.
5416 (MAX_REGISTER_RAW_SIZE): Remove.
5417 (REGISTER_VIRTUAL_TYPE): Remove.
5418 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
5419 (REGISTER_NAME): Remove.
5420 (USE_GENERIC_DUMMY_FRAMES): Remove.
5421 (CALL_DUMMY): Remove.
5422 (CALL_DUMMY_START_OFFSET): Remove.
5423 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
5424 (CALL_DUMMY_LOCATION): Remove.
5425 (FIX_CALL_DUMMY): Remove.
5426 (CALL_DUMMY_ADDRESS): Remove.
5427 (SIZEOF_CALL_DUMMY_WORDS): Remove.
5428 (SAVE_DUMMY_FRAME_TOS): Remove.
5429 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
5430 (mcore_register_virtual_type): New function.
5431 (mcore_register_byte): New function.
5432 (mcore_register_size): New function.
5433 (mcore_register_name): New function.
5434 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
5435 macros removed from tm-mcore.h.
5436 (mcore_dump_tdep): Add.
5437 (_initialize_mcore_tdep): Add gdbarch_register call.
5438
5439 2002-07-03 Mark Kettenis <kettenis@gnu.org>
5440
5441 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
5442 frameless_look_for_prologue, such that we actually call this
5443 function.
5444
5445 2002-07-02 Joel Brobecker <brobecker@gnat.com>
5446
5447 * frame.h (frame_address_in_block): New function.
5448
5449 * blockframe.c (frame_address_in_block): New function extracted
5450 from get_frame_block().
5451 (get_frame_block): Use frame_address_in_block().
5452 (block_innermost_frame): Use frame_address_in_block() to match
5453 the frame pc address against the block boundaries rather than
5454 the frame pc directly. This prevents a failure when a frame pc
5455 is actually a return-address pointing immediately after the end
5456 of the given block.
5457
5458 2002-07-02 Grace Sainsbury <graces@redhat.com>
5459
5460 * MAINTAINERS: Add self under write after approval.
5461
5462 2002-07-02 Grace Sainsbury <graces@redhat.com>
5463
5464 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
5465 used in architecture vector. The default is
5466 m68k_local_breakpoint_from_pc.
5467 (m68k_local_breakpoint_from_pc): Add.
5468 (enum): Add register numbers from tm-m68k.h.
5469 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
5470 vector.
5471 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
5472 GDB_MULTI_ARCH_PARTIAL.
5473 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
5474 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
5475 m68k-tdep.c.
5476 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
5477 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
5478 to enum in m68k-tdep.c
5479
5480 2002-07-02 Joel Brobecker <brobecker@gnat.com>
5481
5482 * solib-osf.c (open_map): Compute the list of shared libraries
5483 loaded by the inferior, rather than the list of libraries loaded
5484 by GDB itself. Otherwise, GDB ends up reading the symbols from
5485 the wrong shared libraries...
5486
5487 2002-07-02 Mark Kettenis <kettenis@gnu.org>
5488
5489 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
5490 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
5491 macros.
5492 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
5493 Remove functions.
5494 (FRAMELESS_SIGNAL): Remove function.
5495 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
5496 i386_linux_saved_pc_after_call): Removed.
5497 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
5498 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
5499 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
5500
5501 * i386-tdep.c (i386_frameless_signal_p): New function.
5502 (i386_frame_chain): Deal with frameless signals.
5503 (i386_sigtramp_saved_sp): New function.
5504 (i386_frame_saved_pc): Deal with frameless signals.
5505 (i386_saved_pc_after_call): Make sure the correct value is
5506 returned just after entry into a sigtramp.
5507 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
5508 i386fbsd4_sc_sp_offset): New variables.
5509 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
5510 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
5511 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
5512 similiar to what we already did for sc_pc_offset.
5513 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
5514 tdep->sc_sp_offset.
5515
5516 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
5517
5518 2002-07-02 Michal Ludvig <mludvig@suse.cz>
5519
5520 * config/i386/tm-x86-64linux.h: New.
5521 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
5522 definitions.
5523 * config/i386/nm-x86-64.h: Rename to ...
5524 * config/i386/nm-x86-64linux.h: ... this one.
5525 * config/i386/x86-64linux.mh: Reflect the above change.
5526
5527 2002-07-01 Mark Kettenis <kettenis@gnu.org>
5528
5529 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
5530 with sigcontext_addr. Add sc_sp_offset.
5531 (i386bsd_sigtramp_saved_pc): Remove prototype.
5532 (i386bsd_sicontext_addr): Add prototype.
5533 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
5534 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
5535 (i386_svr4_sigtramp_saved_pc): Removed.
5536 (i386_svr4_sigcontext_addr): New function.
5537 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
5538 Initialize tdep->sigcontext_addr instead. Initialize
5539 tdep->sc_pc_offset and tdep->sc_sp_offset.
5540 (i386_gdbarch_init): Likewise.
5541 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
5542 any more.
5543 (i386bsd_sigtramp_saved_pc): Remove function.
5544 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
5545 Initialize tdep->sigcontext_addr instead. Initialize
5546 tdep->sc_pc_offset.
5547 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
5548 of tdep->sigtramp_saved_pc.
5549 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
5550 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
5551 instead.
5552
5553 * i386-tdep.c (i386_frameless_function_invocation,
5554 i386_frame_num_args, i386_frame_init_saved_regs,
5555 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
5556 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
5557 i386_extract_return_value, i386_store_return_value,
5558 i386_extract_struct_value_address, i386_register_virtual_type,
5559 i386_register_convertible, i386_register_convert_to_virtual,
5560 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
5561 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
5562 static.
5563
5564 2002-07-01 Mark Kettenis <kettenis@gnu.org>
5565
5566 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
5567
5568 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
5569 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
5570 this macro. Include "value.h".
5571
5572 2002-06-30 Aidan Skinner <aidan@velvet.net>
5573
5574 * ada-exp.tab.c: remove as it's a generated file
5575 * ada-lex.c: remove as it's a generated file
5576
5577 2002-06-30 Mark Kettenis <kettenis@gnu.org>
5578
5579 * config/i386/tm-i386.h (struct frame_info, struct
5580 frame_saved_regs, struct value, struct type): Remove forward
5581 declarations.
5582
5583 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
5584 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
5585 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
5586 (FILL_FPXREGSET): Define.
5587
5588 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
5589
5590 * configure.tgt (i[3456]86-*-openbsd*): Fold into
5591 i[3456]86-*-netbsd* case.
5592 * config/i386/tm-obsd.h: Removed.
5593 * config/i386/obsd.mt: Removed.
5594 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
5595 core-aout.o.
5596 (MH_CFLAGS): Add -DYYDEBUG=0.
5597
5598 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
5599 i386nbsd_sc_pc_offset on OpenBSD too.
5600
5601 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
5602 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
5603 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
5604 define.
5605 * i386bsd-tdep.c: Include "arch-utils.h".
5606 (i386bsd_aout_in_solib_call_trampoline): New function.
5607 (i386bsd_init_abi): Set in_solib_call_trampoline to
5608 i386bsd_aout_in_solib_call_trampoline.
5609 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
5610 in_solib_call_trampoline to generic_in_solib_call_trampoline.
5611
5612 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5613
5614 * macrotab.h: Do not include "obstack.h" or "bcache.h".
5615 (struct obstack, struct bcache): Add opaque declarations.
5616 * Makefile.in (macrotab_h): Update
5617
5618 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5619
5620 * blockframe.c (generic_find_dummy_frame): Change return type to
5621 ``struct regcache''.
5622 (struct dummy_frame): Replace field ``registers'' with regcache, a
5623 struct regcache object.
5624 (generic_find_dummy_frame): Update.
5625 (generic_push_dummy_frame): Update. Use regcache_xfree,
5626 regcache_xmalloc and regcache_cpy.
5627 (generic_pop_dummy_frame): Update. Use regcache_cpy and
5628 regcache_xfree.
5629 (deprecated_generic_find_dummy_frame): Update.
5630 (generic_read_register_dummy): Update. Use
5631 regcache_read_as_address.
5632 (generic_call_dummy_register_unwind): Update. Use regcache_read.
5633 (generic_get_saved_register): Update. Use regcache_read.
5634
5635 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5636
5637 * Makefile.in (objfiles_h): Add $(bcache_h).
5638 * objfiles.h: Include "bcache.h".
5639
5640 * Makefile.in (symtab_h): Remove $(bcache_h).
5641 * symtab.h: Do not include "bcache.h".
5642
5643 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5644
5645 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
5646 generic_func_frame_chain_valid.
5647
5648 2002-06-28 David O'Brien <obrien@FreeBSD.org>
5649
5650 * config/i386/nm-fbsd.h: Include <sys/param.h>.
5651 * config/i386/tm-fbsd.h: Likewise.
5652
5653 2002-06-28 Andrew Cagney <ac131313@redhat.com>
5654
5655 * rs6000-tdep.c (rs6000_gdbarch_init): Use
5656 generic_unwind_get_saved_register.
5657
5658 2002-06-27 Andrew Cagney <ac131313@redhat.com>
5659
5660 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
5661 * regcache.c (supply_register): Add missing argument to
5662 register_buffer call.
5663
5664 2002-06-27 Andrew Cagney <ac131313@redhat.com>
5665
5666 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
5667 Solaris /bin/grep does not not like it. From Peter Schauer.
5668
5669 2002-06-26 Tom Tromey <tromey@redhat.com>
5670
5671 * command.h (add_setshow_cmd): Declare.
5672 (add_setshow_cmd_full): Declare.
5673 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
5674 returns void. Use add_setshow_cmd_full.
5675 (add_setshow_cmd_full): New function.
5676 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
5677 (add_setshow_boolean_cmd): Likewise.
5678
5679 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5680
5681 * config/vax/tm-vax.h: Protect from multiple inclusion.
5682 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
5683 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
5684 * config/vax/tm-vaxbsd.h: ...here. New file.
5685 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
5686
5687 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5688
5689 * config/vax/tm-vax.h (BREAKPOINT): Remove.
5690 (BELIEVE_PCC_PROMOTION): Remove.
5691 (AP_REGNUM): Move to...
5692 * config/vax/nm-vax.h: ...here.
5693 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
5694 (vax_breakpoint_from_pc): New function.
5695 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
5696 and gdbarch_believe_pcc_promotion.
5697
5698 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5699
5700 * Makefile.in (vax_tdep_h): Define.
5701 (vax-tdep.o): Use $(vax_tdep_h).
5702 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
5703 (vax_dump_tdep): New function.
5704 (_initialize_vax_tdep): Register vax_dump_tdep.
5705 * vax-tdep.h: Include osabi.h.
5706 (struct gdbarch_tdep): New.
5707
5708 2002-06-26 Andrew Cagney <cagney@redhat.com>
5709
5710 * frame.h (deprecated_generic_find_dummy_frame): Rename
5711 generic_find_dummy_frame.
5712 * blockframe.c (generic_find_dummy_frame): Make static.
5713 (deprecated_generic_find_dummy_frame): New function.
5714 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
5715 generic_find_dummy_frame with deprecated_find_dummy_frame.
5716 (sh64_nofp_frame_init_saved_regs): Ditto.
5717 (sh_fp_frame_init_saved_regs): Ditto.
5718 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
5719 (s390_frame_chain): Ditto.
5720 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
5721
5722 2002-06-26 Grace Sainsbury <graces@redhat.com>
5723
5724 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
5725 gdbarch vector are at the top.
5726 (NUM_REGS): Remove.
5727 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
5728 (FRAME_ARGS_ADDRESS): Remove.
5729 (FRAME_LOCALS_ADDRESS): Remove.
5730 (FRAME_NUM_ARGS): Remove.
5731 (FRAME_ARGS_SKIP): Remove.
5732 * m68k-tdep.c (enum): Add eumeration of special register numbers.
5733 (m68k_gdbarch_init): Add gdbarch initializations for macros
5734 undefined in tm-m68k.h
5735
5736 2002-06-26 Grace Sainsbury <graces@redhat.com>
5737
5738 * monitor.h: Add the function regname to monitor_ops
5739 structure. This way NUM_REGS does not have to be a constant.
5740 * monitor.c (monitor_fetch_register): Added support for regname
5741 function. The function is called if the array regnames is NULL.
5742 (monitor_store_register): Same.
5743 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
5744 regnames array.
5745 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
5746 cpu32bug_cmds.regname to point to new function.
5747 * abug-rom.c (abug_regname): Same as above.
5748 (init_abug_cmds): Same.
5749 * dbug-rom.c (dbug_regname): Same as above.
5750 (init_dbug_cmds): Same.
5751 * remote-est.c (est_regname): Same.
5752 (init_est_cmds): Same.
5753 * rom68k-rom.c (rom68k_regname): Same.
5754 (init_rom68k_cmds): Same.
5755
5756 2002-06-25 Tom Tromey <tromey@redhat.com>
5757
5758 * breakpoint.c (delete_command): Don't repeat `delete' commands.
5759
5760 2002-06-25 Andrew Cagney <cagney@redhat.com>
5761
5762 * infrun.c (stop_registers): Change variable's type to ``struct
5763 regcache'''.
5764 (xmalloc_inferior_status): Delete function.
5765 (free_inferior_status): Delete function.
5766 (normal_stop): Use regcache_cpy.
5767 (struct inferior_status): Change type of fields ``stop_registers''
5768 and ``registers'' to ``struct regcache''.
5769 (write_inferior_status_register): Use regcache_write.
5770 (save_inferior_status): Instead of calling
5771 xmalloc_inferior_status, allocate the inf_status buffer directly.
5772 Use regcache_dup_no_passthrough and regcache_dup to save the
5773 buffers.
5774 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
5775 Replace the stop_registers regcache instead of overriding it. Use
5776 regcache_xfree. Instead of calling free_inferior_status, xfree
5777 the buffer directly.
5778 (discard_inferior_status): Use regcache_xfree. Instead of calling
5779 free_inferior_status, xfree the buffer directly.
5780 (build_infrun): Use regcache_xmalloc.
5781 (_initialize_infrun): Delete redundant call to build_infrun.
5782
5783 * Makefile.in (infcmd.o): Add $(regcache_h).
5784
5785 * infcmd.c: Include "regcache.h".
5786 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
5787 obtain the address of `stop_registers' register buffer.
5788 (print_return_value): Ditto.
5789
5790 * inferior.h (struct regcache): Add opaque declaration.
5791 (stop_registers): Change variable's declared type to ``struct
5792 regcache''.
5793
5794 2002-06-24 Tom Tromey <tromey@redhat.com>
5795
5796 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
5797 * target.c (initialize_targets): Fixed typo in
5798 trust-readonly-sections `show' documentation.
5799
5800 * main.c: Marked all strings with _().
5801
5802 2002-06-24 Don Howard <dhoward@redhat.com>
5803
5804 * memattr.c (create_mem_region): Treat hi == 0 as a special case
5805 that means max CORE_ADDR+1.
5806 (lookup_mem_region): Ditto.
5807 (mem_info_command): Ditto.
5808
5809 2002-06-24 Grace Sainsbury <graces@redhat.com>
5810
5811 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
5812 (REGISTER_BYTES_OK): Remove.
5813 (REGISTER_BYTES): Remove.
5814 (STORE_STRUCT_RETURN): Remove.
5815 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
5816 (STORE_RETURN_VALUE): Remove.
5817 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
5818 (FRAME_CHAIN): Remove.
5819 (FRAMELESS_FUNCTION_INVOCATION): Remove.
5820 (FRAME_SAVED_PC): Remove.
5821 * m68k-tdep.c (m68k_register_bytes_ok):Add.
5822 (m68k_store_struct_return): Add.
5823 (m68k_deprecated_extract_return_value): Add.
5824 (m68k_deprecated_extract_struct_value_address): Add.
5825 (m68k_store_return_value): Add.
5826 (m68k_frame_chain): Add.
5827 (m68k_frameless_function_invocation): Add.
5828 (m68k_frame_saved_pc): Add.
5829 (m68k_gdbarch_init): added set_gdbarch calls for new
5830 functions and deleted macros.
5831
5832 2002-06-23 Tom Tromey <tromey@redhat.com>
5833
5834 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
5835 (ALLDEPFILES): Likewise.
5836 (udiheaders): Removed.
5837 (udip2soc.o): Likewise.
5838 (udi2go32.o): Likewise.
5839 (udr.o): Likewise.
5840 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
5841
5842 2002-06-22 Andrew Cagney <ac131313@redhat.com>
5843
5844 * infrun.c (_initialize_infrun): Delete unnecessary call to
5845 build_infrun.
5846
5847 * regcache.h: Update comments describing the regcache_cpy family
5848 of functions.
5849 (regcache_save, regcache_restore): Delete declaration.
5850 (regcache_save_no_passthrough): Delete declaration.
5851 (regcache_restore_no_passthrough): Delete declaration.
5852 * regcache.c (regcache_save): Delete function.
5853 (regcache_save_no_passthrough): Delete function.
5854 (regcache_restore): Delete function.
5855 (regcache_restore_no_passthrough): Delete function.
5856
5857 2002-06-21 Andrew Cagney <ac131313@redhat.com>
5858
5859 * config/m68k/tm-m68k.h: Fix typo.
5860 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
5861 (m68k_frame_init_saved_regs): Declare.
5862
5863 2002-06-21 Jim Blandy <jimb@redhat.com>
5864
5865 Remove some vestiges of Harris 88k support.
5866 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
5867 register numbering quirk.
5868 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
5869 odd symbols occurring in Harris 88k ELF targets.
5870
5871 2002-06-21 Tom Tromey <tromey@redhat.com>
5872
5873 * gdb_locale.h: New file.
5874 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
5875 (defs_h): Added gdb_locale.h.
5876 * configure, config.in: Rebuilt.
5877 * configure.in (PACKAGE): Define.
5878 * defs.h: Include gdb_locale.h.
5879 * main.c (captured_main): Call setlocale, bindtextdomain,
5880 textdomain.
5881
5882 2002-06-21 Dave Brolley <brolley@redhat.com>
5883
5884 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
5885 * config/frv/frv.mt: New file.
5886 * config/frv/tm-frv.h: New file.
5887 * configure.tgt: Support frv-*-*.
5888 * Makefile.in (frv-tdep.o): New target.
5889 * frv-tdep.c: New file.
5890 * NEWS: Mention frv.
5891
5892 2002-06-21 Dave Brolley <brolley@redhat.com>
5893
5894 * MAINTAINERS: Add self to "Write After Approval" list.
5895
5896 2002-06-21 Grace Sainsbury <graces@redhat.com>
5897
5898 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
5899 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
5900 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
5901 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
5902 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
5903
5904 * m68k-tdep.c: Include arch-utils.h
5905 (m68k_register_raw_size): Add.
5906 (m68k_register_virtual_size): Add.
5907 (m68k_register_virtual_type): Add.
5908 (m68k_register_name): Add.
5909 (m68k_stack_align): Add.
5910 (m68k_register_byte): Add.
5911 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
5912 tm-m68k.h.
5913
5914 2002-06-21 Grace Sainsbury <graces@redhat.com>
5915
5916 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
5917 m68k_find_saved_regs.
5918 (m68k_pop_frame): Removed saved_regs structure, and replaced
5919 references to it with frame->saved_regs.
5920 (m68k_gdbarch_init): Added function calls to initialize the
5921 gdbarch structure.
5922 (m68k_fix_call_dummy): Add.
5923 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
5924 (CALL_DUMMY): Remove.
5925 (CALL_DUMMY_LENGTH): Remove.
5926 (CALL_DUMMY_START_OFFSET): Remove.
5927 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
5928 (FIX_CALL_DUMMY): Remove.
5929 (PUSH_DUMMY_FRAME): Remove.
5930 (POP_FRAME): Remove.
5931
5932 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
5933
5934 * parse.c (parse_fprintf): New function used to avoid calls to
5935 fprintf in bison parser generated debug code.
5936 * parser-defs.h: Declaration of new parse_fprintf function.
5937 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
5938 Set YYDEBUG to 1 by default.
5939 Set YYFPRINTF as parse_fprintf.
5940
5941 2002-06-21 Michal Ludvig <mludvig@suse.cz>
5942
5943 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
5944 encoding anymore.
5945 (pointer_encoding, enum ptr_encoding): New.
5946 (execute_cfa_program): Take care about pointer encoding.
5947 (dwarf2_build_frame_info): Only call parse_frame_info for
5948 .debug_frame and .eh_frame.
5949 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
5950 fixed augmentation handling, added relative addressing,
5951 ignore duplicate FDEs. Added comments.
5952 * dwarf2cfi.c: Reindented.
5953
5954 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
5955
5956 * event-top.c (command_handler): Don't use space_at_cmd_start
5957 unless there is sbrk() on the host. Assign time and space data
5958 to union fields of the appropriate length.
5959
5960 2002-06-20 Michal Ludvig <mludvig@suse.cz>
5961
5962 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
5963 x86_64_register_name. Return type changed to 'const char *'.
5964 (x86_64_register_name2nr): Rename to x86_64_register_number.
5965 (x86_64_gdbarch_init): Update to reflect the change.
5966 * x86-64-tdep.h: Ditto.
5967 * x86-64-linux-nat.c (x86_64_fxsave_offset)
5968 (supply_fpregset): Ditto.
5969
5970 2002-06-19 Andrew Cagney <cagney@redhat.com>
5971
5972 * regcache.h: Update copyright.
5973 (struct regcache, struct gdbarch): Add opaque declarations.
5974 (current_regcache): Declare global variable.
5975 (regcache_read, regcache_write): Add gdbarch parameter.
5976 (regcache_save, regcache_save_no_passthrough)
5977 (regcache_restore, regcache_restore_no_passthrough)
5978 (regcache_dup, regcache_dup_no_passthrough)
5979 (regcache_cpy, regcache_cpy_no_passthrough)
5980 (deprecated_grub_regcache_for_registers)
5981 (deprecated_grub_regcache_for_register_valid)
5982 (regcache_valid_p): Add function declarations.
5983
5984 * regcache.c: Update copyright.
5985 (regcache_descr_handle): New global variable.
5986 (struct regcache_descr): Define.
5987 (init_legacy_regcache_descr, init_regcache_descr): New functions.
5988 (regcache_descr, xfree_regcache_descr): New functions.
5989 (struct regcache): Define.
5990 (regcache_xmalloc, regcache_xfree): New functions.
5991 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
5992 (regcache_dup, regcache_dup_no_passthrough): New functions.
5993 (regcache_valid_p, regcache_read_as_address): New functions.
5994 (deprecated_grub_regcache_for_registers): New function.
5995 (deprecated_grub_regcache_for_register_valid): New function.
5996 (current_regcache): New global variable.
5997 (register_buffer): Add regcache parameter. Update calls.
5998 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
5999 (read_register_gen, write_register_gen): Update register_buffer
6000 call. Test for legacy_p instead of gdbarch_register_read_p or
6001 gdbarch_register_write_p.
6002 (regcache_collect): Update register_buffer call.
6003 (build_regcache): Rewrite. Use deprecated grub functions.
6004 (regcache_save, regcache_save_no_passthrough): New functions.
6005 (regcache_restore, regcache_restore_no_passthrough): New
6006 functions.
6007 (_initialize_regcache): Create the regcache_data_handle. Swap
6008 current_regcache global variable.
6009
6010 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
6011 parameter to regcache_read and regcache_write calls.
6012 (sh4_register_read): Ditto.
6013 (sh64_pseudo_register_read): Ditto.
6014 (sh64_register_read): Ditto.
6015 (sh_pseudo_register_write): Ditto.
6016 (sh4_register_write): Ditto.
6017 (sh64_pseudo_register_write): Ditto.
6018 (sh64_register_write): Ditto.
6019
6020 * defs.h (XCALLOC): Define.
6021
6022 2002-06-19 Grace Sainsbury <graces@redhat.com>
6023
6024 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
6025 * m68k-tdep.c (m68k_gdbarch_init): Added.
6026 (m68k_dump_tdep): Added.
6027
6028 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
6029
6030 * ada-lang.c (fill_in_ada_prototype): Update comment.
6031
6032 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
6033
6034 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
6035 MIPS_ABI_LAST.
6036 (mips_abi_string, mips_abi_strings): New.
6037 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
6038 (mips_gdbarch_init): Set tdep->found_abi. Don't set
6039 tdep->mips_abi_string. Honor mips_abi_string. Default to
6040 O32 if no ABI is found.
6041 (mips_dump_tdep): Use mips_abi_strings.
6042 (mips_abi_update): New function.
6043 (_initialize_mips_tdep): Initialize mips_abi_string. Add
6044 ``set mips abi'' and ``show mips abi''. Check the size of
6045 mips_abi_strings.
6046
6047 2002-06-19 Andrew Cagney <cagney@redhat.com>
6048
6049 * i386-linux-tdep.c (i386_linux_register_name): Make return type
6050 constant.
6051
6052 2002-06-18 Joel Brobecker <brobecker@gnat.com>
6053
6054 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
6055 current frame using only the first stack size adjustment. All
6056 subsequent size adjustments are not considered to be part of
6057 the "static" part of the current frame.
6058 Compute the address of the saved registers relative to the
6059 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
6060 in use in this frame.
6061
6062 2002-06-18 Don Howard <dhoward@redhat.com>
6063
6064 * valops.c (value_ind): Use value_at_lazy() when dereferencing
6065 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
6066 suggesting this solution.
6067
6068 2002-06-18 Andrew Cagney <ac131313@redhat.com>
6069
6070 * config/romp/xm-rtbsd.h: Delete file.
6071 * config/romp/rtbsd.mh: Delete file.
6072
6073 2002-06-18 Keith Seitz <keiths@redhat.com>
6074
6075 * breakpoint.c (condition_command): Post breakpoint_modify
6076 when a condition is added to an existing breakpoint.
6077 (commands_command): Likewise for commands.
6078 (set_ignore_count): Likewise for ignore counts.
6079 If no tty, do not simply return, still need to send event
6080 notification.
6081 (ignore_command): Only print a newline if the command came
6082 from a tty.
6083 Don't call breakpoints_changed, since this is now properly
6084 handled by set_ignore_count.
6085
6086 2002-06-18 Andrew Cagney <cagney@redhat.com>
6087
6088 * MAINTAINERS: Note that cris-elf target can be compiled with
6089 -Werror.
6090 * cris-tdep.c (cris_register_name): Make return type constant.
6091 (cris_breakpoint_from_pc): Ditto.
6092
6093 2002-06-18 Michal Ludvig <mludvig@suse.cz>
6094
6095 * frame.h (struct frame_info): Change type of context to
6096 'struct context'.
6097
6098 2002-06-17 Andrew Cagney <cagney@redhat.com>
6099
6100 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
6101 pointer.
6102 * gdbarch.h, gdbarch.c: Regenerate.
6103 * config/mips/tm-mips.h (mips_register_name): Update.
6104 * i386-tdep.h (i386_register_name): Update.
6105 * mips-tdep.c (mips_register_name): Update
6106 * alpha-tdep.c (alpha_register_name): Update.
6107 * arch-utils.c (legacy_register_name): Update.
6108 * arch-utils.h (legacy_register_name): Update.
6109 * avr-tdep.c (avr_register_name): Update.
6110 * ia64-tdep.c (ia64_register_name): Update.
6111 * i386-tdep.c (i386_register_name): Update.
6112 * sparc-tdep.c (sparc32_register_name): Update.
6113 (sparc64_register_name): Update.
6114 (sparclite_register_name): Update.
6115 (sparclet_register_name): Update.
6116 * sh-tdep.c (sh_generic_register_name): Update.
6117 (sh_sh_register_name): Update.
6118 (sh_sh3_register_name): Update.
6119 (sh_sh3e_register_name): Update.
6120 (sh_sh_dsp_register_name): Update.
6121 (sh_sh3_dsp_register_name): Update.
6122 (sh_sh4_register_name): Update.
6123 (sh_sh64_register_name): Update.
6124 * s390-tdep.c (s390_register_name): Update.
6125 * rs6000-tdep.c (rs6000_register_name): Update.
6126 * ns32k-tdep.c (ns32k_register_name_32082): Update.
6127 (ns32k_register_name_32382): Update.
6128 * d10v-tdep.c (d10v_ts2_register_name): Update.
6129 (d10v_ts3_register_name): Update.
6130 * xstormy16-tdep.c (xstormy16_register_name): Update.
6131 * vax-tdep.c (vax_register_name): Update.
6132 * v850-tdep.c (v850_register_name): Update.
6133 * m68hc11-tdep.c (m68hc11_register_name): Update.
6134 * mn10300-tdep.c (mn10300_generic_register_name): Update.
6135 (am33_register_name): Update.
6136
6137 2002-06-17 Grace Sainsbury <graces@redhat.com>
6138
6139 * m68k-tdep.c: Reindented.
6140
6141 2002-06-17 Andrew Cagney <ac131313@redhat.com>
6142
6143 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
6144 list of predefined types.
6145
6146 2002-06-16 Mark Kettenis <kettenis@gnu.org>
6147
6148 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
6149 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
6150 REGISTER_CONVERT_TO_RAW): Remove defines.
6151 (i386_register_virtual_type, i386_register_convertible,
6152 i386_register_convert_to_virtual, i386_register_convert_to_raw):
6153 Remove prototypes.
6154 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6155 macros mentioned above.
6156
6157 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
6158 (i386lynx_saved_pc_after_call): Remove prototype.
6159 * i386ly-tdep.c: Include "i386-tdep.h".
6160 (i386lynx_saved_pc_after_call): Make static. Use
6161 read_memory_nobpt instead of read_memory. Use
6162 read_memory_unsigned_integer instead of read_memory_integer.
6163 (i386lynx_init_abi): New function.
6164 (i386lynx_coff_osabi_sniffer): New function.
6165 (_initialize_i386bsd_tdep): New function.
6166
6167 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
6168 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
6169 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
6170 (i386_fix_call_dummy): Remove prototype.
6171 * i386-tdep.c (i386_call_dummy_words): New variable.
6172 (i386_gdbarch_init): Adjust for removal of the
6173 macros mentioned above.
6174
6175 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6176
6177 * command.h (add_setshow_auto_boolean_cmd): Replace
6178 add_set_auto_boolean_cmd.
6179 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
6180 add_set_auto_boolean_cmd.
6181 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
6182 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
6183 mask-address'' command.
6184 (show_mask_address): Add cmd parameter.
6185 * remote.c (add_packet_config_cmd): Update. Change type of
6186 set_func and show_func to cmd_sfunc_ftype.
6187 (_initialize_remote): Update `set remote Z-packet'
6188 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
6189 (show_remote_protocol_e_packet_cmd): Ditto.
6190 (show_remote_protocol_E_packet_cmd): Ditto.
6191 (show_remote_protocol_P_packet_cmd): Ditto.
6192 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
6193 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
6194 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
6195 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
6196 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
6197 (show_remote_protocol_Z_packet_cmd): Ditto.
6198 (show_remote_protocol_binary_download_cmd): Ditto.
6199 (show_remote_cmd): Pass NULL to all of above.
6200
6201 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6202
6203 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
6204 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
6205 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
6206 POP_FRAME): Remove defines.
6207 (i386_push_arguments, i386_store_struct_return,
6208 i386_extract_return_value, i386_store_return_value,
6209 i386_extract_struct_value_address, i386_push_dummy_frame,
6210 i386_pop_frame): Renove prototypes.
6211 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6212 macros mentioned above.
6213
6214 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6215
6216 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
6217 add_set_boolean_cmd.
6218 (add_setshow_cmd): New function.
6219 * command.h (add_setshow_boolean_cmd): Replace
6220 add_set_boolean_cmd.
6221 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
6222 and ``set rdiromatzero''.
6223 * maint.c (_initialize_maint_cmds): Update commented out code.
6224 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
6225 * target.c (initialize_targets): Update `set
6226 trust-readonly-sections'.
6227 * remote.c (_initialize_remote): Update `set remotebreak'.
6228
6229 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6230
6231 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
6232 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
6233 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
6234 fit into multi-arch framework.
6235 (i386_breakpoint_from_pc): New function.
6236 (i386_gdbarch_init): Adjust for removal of the macros mentioned
6237 above.
6238
6239 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
6240 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
6241 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
6242 (i386_frameless_function_invocation, i386_frame_num_args,
6243 i386_frame_init_saved_regs): Remove prototypes.
6244 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6245 macros mentioned above.
6246
6247 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6248
6249 * cli/cli-decode.c (set_cmd_cfunc): Update.
6250 (set_cmd_sfunc): Update.
6251 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
6252 (set_cmd_sfunc, set_cmd_cfunc): Update.
6253 * cli/cli-decode.h: Update.
6254
6255 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6256
6257 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
6258 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
6259
6260 2002-06-15 Andrew Cagney <ac131313@redhat.com>
6261
6262 * defs.h (auto_boolean): Declare enum.
6263 * command.h (cmd_auto_boolean): Delete enum.
6264 * mips-tdep.c (mask_address_var): Update.
6265 (mips_mask_address_p): Update.
6266 (show_mask_address): Update.
6267 * remote.c (struct packet_config): Update.
6268 (update_packet_config): Update.
6269 (show_packet_config_cmd): Update.
6270 (packet_ok): Update.
6271 (add_packet_config_cmd): Update.
6272 (_initialize_remote):
6273 * command.h: Update.
6274 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
6275 (do_setshow_command): Update.
6276 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
6277 * cli/cli-decode.h: Update.
6278
6279 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6280
6281 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
6282 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
6283 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
6284 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
6285 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
6286 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
6287
6288 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
6289 list of DJGPP COFF targets.
6290
6291 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
6292 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
6293 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
6294 (FP0_REGNUM): Remove define.
6295 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
6296 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
6297 (i386_register_virtual_size): Remove protoype.
6298 * i386-tdep.c (i386_register_virtual_size): Removed.
6299 (i386_extract_return_value, i386_store_return_value): Use
6300 FP0_REGNUM instead of NUM_FREGS to determine whether the
6301 floating-point registers are available.
6302 (i386_gdbarch_init): Tweak FIXME about FPU registers.
6303 Adjust for removal of macros mentioned above.
6304
6305 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6306
6307 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
6308 comments.
6309 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
6310 Remove prototypes.
6311 (supply_gregset, fill_gregset): Remove use of register keyword and
6312 remove declaration for regmap. Use I386_NUM_GREGS instead of
6313 NUM_REGS and NUM_FREGS.
6314 (FPREGSET_FSAVE_OFFSET): Remove.
6315 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
6316 NUM_FREGS to determine whether the floating-point registers are
6317 available.
6318
6319 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
6320 gnu_store_registers): Replace usage of NUM_GREGS with
6321 I386_NUM_GREGS.
6322
6323 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
6324 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
6325 usage of NUM_GREGS with I386_NUM_GREGS.
6326
6327 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
6328
6329 * i386bsd-nat.c: Include "i386-tdep.h".
6330 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
6331 I386_NUM_GREGS.
6332
6333 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
6334 and associated comment. They no longer make any sense, since we
6335 don't use this file anymore on Linux.
6336
6337 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
6338 * i386-tdep.c (i386_register_offset, i386_register_size): Use
6339 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
6340 elements in these arrays.
6341 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
6342 MAX_NUM_REGS.
6343
6344 2002-06-15 Mark Kettenis <kettenis@gnu.org>
6345
6346 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
6347 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
6348
6349 2002-06-14 Andrew Cagney <cagney@redhat.com>
6350
6351 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
6352 EXTRACT_RETURN_VALUE.
6353 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
6354 EXTRACT_STRUCT_VALUE_ADDRESS.
6355 * gdbarch.h, gdbarch.c: Regenerate.
6356
6357 * values.c (value_being_returned): Handle
6358 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
6359 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
6360
6361 * arm-linux-tdep.c (arm_linux_init_abi): Update.
6362 * arm-tdep.c (arm_gdbarch_init): Update.
6363 * avr-tdep.c (avr_gdbarch_init): Update.
6364 * cris-tdep.c (cris_gdbarch_init): Update.
6365 * d10v-tdep.c (d10v_gdbarch_init): Update.
6366 * ia64-tdep.c (ia64_gdbarch_init): Update.
6367 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
6368 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
6369 * s390-tdep.c (s390_gdbarch_init): Update.
6370 * sh-tdep.c (sh_gdbarch_init): Update.
6371 * s390-tdep.c (s390_gdbarch_init): Update.
6372 * sparc-tdep.c (sparc_gdbarch_init): Update.
6373 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
6374 * v850-tdep.c (v850_gdbarch_init): Update.
6375 * vax-tdep.c (vax_gdbarch_init): Update.
6376 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
6377 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
6378
6379 * config/arc/tm-arc.h: Update.
6380 * config/d30v/tm-d30v.h: Update.
6381 * config/fr30/tm-fr30.h: Update.
6382 * config/h8300/tm-h8300.h: Update.
6383 * config/h8500/tm-h8500.h: Update.
6384 * config/i386/tm-i386.h: Update.
6385 * config/i386/tm-ptx.h: Update.
6386 * config/i386/tm-symmetry.h: Update.
6387 * config/i960/tm-i960.h: Update.
6388 * config/m32r/tm-m32r.h: Update.
6389 * config/m68k/tm-delta68.h: Update.
6390 * config/m68k/tm-linux.h: Update.
6391 * config/m68k/tm-m68k.h: Update.
6392 * config/m88k/tm-m88k.h: Update.
6393 * config/mcore/tm-mcore.h: Update.
6394 * config/mips/tm-mips.h: Update.
6395 * config/mn10200/tm-mn10200.h: Update.
6396 * config/pa/tm-hppa.h: Update.
6397 * config/pa/tm-hppa64.h: Update.
6398 * config/sparc/tm-sp64.h: Update.
6399 * config/sparc/tm-sparc.h: Update.
6400 * config/sparc/tm-sparclet.h: Update.
6401 * config/z8k/tm-z8k.h: Update.
6402
6403 2002-06-14 Andrew Cagney <cagney@redhat.com>
6404
6405 * Makefile.in (i386_linux_tdep_h): Define.
6406 (i386_tdep_h, i387_tdep_h): Define.
6407 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
6408 $(i386_tdep_h) and $(i387_tdep_h).
6409 * i386-linux-nat.c: Include "i386-linux-tdep.h".
6410
6411 2002-06-14 Mark Kettenis <kettenis@gnu.org>
6412
6413 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
6414 Already covered by the default.
6415
6416 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
6417 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
6418 (i386_gdbarch_init): Initialize long_double_format and long_double
6419 bit.
6420
6421 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
6422 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
6423 Move these to ...
6424 * config/i386/i386sol2.mh: ... here.
6425 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
6426 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
6427 (SIGCONTEXT_PC_OFFSET): Remove define.
6428 (IN_SIGTRAMP): Remove define.
6429 * i386-sol2-tdep.c: New file.
6430
6431 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
6432 * config/i386/tm-i386nw.h: Removed.
6433
6434 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
6435 USE_STRUCT_CONVENTION): Remove defines.
6436 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6437 (get_longjmp_target): Remove prototype.
6438 (IN_SIGTRAMP): Remove define.
6439 (i386bsd_in_sigtramp): Remove prototype.
6440 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
6441 function. Update comment accordingly
6442 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
6443 (FRAME_SAVED_PC): Remove define.
6444 (i386bsd_frame_saved_pc): Remove prototype.
6445 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
6446 GET_LONGJMP_TARGET): Remove defines.
6447 (get_longjmp_target): Remove prototype.
6448 (IN_SIGTRAMP): Remove define.
6449 (i386bsd_in_sigtramp): Remove prototype.
6450 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
6451 function. Update comment accordingly
6452 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
6453 (FRAME_SAVED_PC): Remove define.
6454 (i386bsd_frame_saved_pc): Remove prototype.
6455 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
6456 Remove prototype.
6457 (USE_STRUCT_CONVENTION): Remove prototype.
6458 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
6459 declaration.
6460 (_initialize_i386bsd_nat): Revise logic to determine some
6461 constants at compile time when compiling a native GDB. Warn if
6462 things don't match up with what we expect.
6463 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
6464 Remove variables.
6465 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
6466 to use date stored in `struct gdbarch_tdep'.
6467 (i386bsd_sigcontext_offset): Remove varaible.
6468 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
6469 stored in `struct gdbarch_tdep'.
6470 (i386bsd_frame_saved_pc): Make static.
6471 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
6472 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
6473 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
6474 i386fbsd4_sc_pc_offset): New variables.
6475 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
6476 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
6477 functions.
6478 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
6479 functions.
6480 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
6481 Modify the value of i386fbsd_sigtramp_start and
6482 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
6483 i386fbsd_sigtramp_end.
6484 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
6485 function.
6486
6487 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
6488 define to i386-linux-tdep.h.
6489 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
6490 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
6491 defines.
6492 (i386_linux_register_name, i386_linux_register_byte,
6493 i386_linux_register_raw_size): Remove prototypes.
6494 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
6495 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
6496 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
6497 TARGET_WRITE_PC): Remove defines.
6498 (i386_linux_in_sigtramp, i386_linux_frame_chain,
6499 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
6500 i386_linux_write_pc): Remove prototypes.
6501 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6502 (get_longjmp_target): Remove prototype.
6503 * i386-linux-tdep.h: New file.
6504 * i386-linux-nat.c: Include "i386-linux-tdep.h".
6505 * i386-linux-tdep.c: Include "i386-tdep.h" and
6506 "i386-linux-tdep.h".
6507 (i386_linux_register_name, i386_linux_register_byte,
6508 i386_linux_register_raw_size, i386_linux_in_sigtramp,
6509 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
6510 Make static.
6511 (i386_linux_init_abi): New function.
6512 (_initialize_i386_linux_tdep): New function.
6513
6514 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
6515 (i386_saved_pc_after_call): Remove prototype.
6516 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
6517 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
6518 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
6519 (i386_register_name, i386_stab_reg_to_regnum,
6520 i386_dwarf_reg_to_regnum): Remove prototypes.
6521 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
6522 SIZEOF_SSE_REGS): Remove defines.
6523 (REGISTER_BYTES): Remove define.
6524 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
6525 (i386_register_byte, i386_register_raw_size): Remove prototypes.
6526 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
6527 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
6528 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
6529 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
6530 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
6531 (get_longjmp_target): Remove prototype.
6532 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
6533 (sigtramp_saved_pc): Remove define.
6534 (i386v4_sigtramp_saved_pc): Remove prototype.
6535 * config/i386/tm-go32.h (FRAME_CHAIN,
6536 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
6537 (i386go32_frame_saved_pc): Remove prototype.
6538 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6539 (get_longjmp_target): Remove prototype.
6540 * i386-tdep.h: Include "osabi.h".
6541 (enum i386_abi): Removed.
6542 (enum struct_return): New enum.
6543 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
6544 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
6545 sc_pc_offset members.
6546 (i386_gdbarch_register_os_abi): Remove prototype.
6547 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
6548 I386_SSE_NUM_REGS): New defines.
6549 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
6550 I386_SSE_SIZEOF_REGS): New defines.
6551 (i386_register_name, i386_register_byte, i386_register_raw_size):
6552 New prototypes.
6553 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
6554 (i386bsd_sigtramp_saved_pc): New prototype.
6555 * i386-tdep.c: Don't include "elf-bfd.h".
6556 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
6557 i386_frame_chain, i386_saved_pc_after_call): Make static.
6558 (i386_frame_saved_pc): Rewrite to call architecture dependent
6559 function to deal with signal handlers. Make static.
6560 (i386go32_frame_saved_pc): Removed.
6561 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
6562 Removed.
6563 (i386_get_longjmp_target): New function.
6564 (default_struct_convention, pcc_struct_convention,
6565 reg_struct_convention, valid_conventions, struct_convention): New
6566 variables.
6567 (i386_use_struct_convention): New function.
6568 (i386v4_sigtramp_saved_pc): Renamed to
6569 i386_svr4_sigtramp_saved_pc. Made static. Moved.
6570 (i386_pc_in_sigtramp): New function.
6571 (i386_abi_names): Removed.
6572 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
6573 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
6574 Removed.
6575 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
6576 i386_gdbarch_register_os_abi): Removed.
6577 (struct i386_abi_handler): Removed.
6578 (i386_abi_handler_list): Removed.
6579 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
6580 functions.
6581 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
6582 i386_nw_init_abi): New functions.
6583 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
6584 Use set_gdbarch_xxx() calls instead of relying on macros for a
6585 number of calls.
6586 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
6587 (_initialize_i386_tdep): Add new 'struct-convcention' command.
6588 Register the various architecture variants defined in this file.
6589
6590 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
6591
6592 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
6593 (struct main_type): Remove arg_types member. Update comments for
6594 struct field.
6595 (TYPE_ARG_TYPES): Remove.
6596 (TYPE_FN_FIELD_ARGS): Update.
6597 (smash_to_method_type): Update prototype.
6598
6599 * c-typeprint.c (cp_type_print_method_args): Take method type
6600 instead of argument list. Use new argument layout. Simplify.
6601 (c_type_print_args): Use new argument layout. Simplify.
6602 (c_type_print_base): Update call to cp_type_print_method_args.
6603 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
6604 argument; use die->type instead. Update call to
6605 smash_to_method_type.
6606 (read_structure_scope): Update call to dwarf2_add_member_fn.
6607 * gdbtypes.c (allocate_stub_method): Update comment.
6608 (smash_to_method_type): Take new NARGS and VARARGS arguments.
6609 Use new argument layout.
6610 (check_stub_method): Use new argument layout. Don't count
6611 void as an argument.
6612 (print_arg_types): Update comments. Use new argument layout.
6613 (recursive_dump_type): Don't print arg_types member.
6614 * hpread.c (hpread_read_struct_type): Use new argument layout.
6615 (fixup_class_method_type): Likewise.
6616 (hpread_type_lookup): Likewise.
6617 * stabsread.c (read_type): Update calls to read_args and
6618 smash_to_method_type.
6619 (read_args): Use new argument layout. Simplify.
6620 * valops.c (typecmp): Use new argument layout. Update parameters
6621 and comments. Simplify.
6622 (hand_function_call): Use new argument layout.
6623 (search_struct_method): Update call to typecmp.
6624 (find_overload_match): Use new argument layout.
6625
6626 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6627
6628 * NEWS: Mention multithreaded debug support for gdbserver.
6629
6630 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6631
6632 * MAINTAINERS: Mention NEWS.
6633
6634 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
6635
6636 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
6637 (struct mips_objfile_private, compare_pdr_entries): New.
6638 (non_heuristic_proc_desc): Read the ".pdr" section if it
6639 is present.
6640
6641 2002-06-12 Andrew Cagney <ac131313@redhat.com>
6642
6643 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
6644 (arm_debug): New static variable.
6645 (_initialize_arm_tdep): Add ``set debug arm'' command.
6646
6647 2002-06-12 Andrew Cagney <ac131313@redhat.com>
6648
6649 * Makefile.in (sim_arm_h): Define.
6650 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
6651 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
6652 (arm_register_sim_regno): New function, map an internal REGNUM
6653 onto a simulator register number.
6654 (arm_gdbarch_init): Set register_sim_regno.
6655
6656 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
6657
6658 * MAINTAINERS: Add self.
6659
6660 2002-06-11 Jim Blandy <jimb@redhat.com>
6661
6662 * source.c (source_info): Mention whether the symtab has
6663 information about preprocessor macros.
6664
6665 Call the command `info macro', not `show macro'.
6666 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
6667 Fix error message.
6668 (_initialize_macrocmd): Register `info_macro_command' in
6669 `infolist', not `showlist'.
6670
6671 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
6672
6673 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
6674 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
6675 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
6676 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
6677 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
6678 unconditionally.
6679 (set_mipsfpu_single_command, set_mipsfpu_double_command)
6680 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
6681 (_initialize_mips_tdep): Remove dead code.
6682 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
6683 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6684 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
6685 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6686 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
6687 MIPS_LAST_FP_ARG_REGNUM): Remove.
6688
6689 2002-06-11 Michal Ludvig <mludvig@suse.cz>
6690
6691 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
6692 (unwind_tmp_obstack_free, parse_frame_info)
6693 (update_context, cfi_read_fp, cfi_write_fp)
6694 (cfi_frame_chain, cfi_init_extra_frame_info)
6695 (cfi_virtual_frame_pointer): Use the above function.
6696 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
6697
6698 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
6699
6700 * v850-tdep.c (v850_type_is_scalar): New function.
6701 (v850_use_struct_convention): Match current gcc implementation
6702 as close as possible.
6703 (v850_push_arguments): Fix stack_offset handling. Don't write
6704 struct_addr into register. This is done by v850_store_struct_return.
6705 (v850_extract_return_value): Care for structs.
6706 (v850_store_return_value): Ditto.
6707 (v850_store_struct_return): Actually write address.
6708
6709 2002-06-11 Michal Ludvig <mludvig@suse.cz>
6710
6711 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
6712 without debug information too.
6713
6714 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6715
6716 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
6717 Make multi-arch pure.
6718 * gdbarch.h, gdbarch.c: Re-generate.
6719 * arm-tdep.c (arm_print_float_info): Update.
6720 * arch-utils.h (default_print_float_info): Update.
6721 * arch-utils.c (default_print_float_info): Update.
6722 * infcmd.c (float_info): Update call.
6723
6724 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6725
6726 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
6727 the front of the initialize list.
6728
6729 2002-06-10 Andrew Cagney <ac131313@redhat.com>
6730
6731 * infrun.c (struct inferior_status): Replace fields
6732 selected_frame_address and selected_level with field
6733 selected_frame_id.
6734 (save_inferior_status): Update. Use get_frame_id.
6735 (struct restore_selected_frame_args): Delete.
6736 (restore_selected_frame): Update. Use frame_find_by_id.
6737 (restore_inferior_status): Update.
6738
6739 * breakpoint.h (struct breakpoint): Change type of
6740 watchpoint_frame to frame_id.
6741 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
6742 call to get_current_frame.
6743 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
6744 get_current_frame.
6745 (watchpoint_check): Use frame_find_by_id.
6746
6747 * frame.h (record_selected_frame): Delete declaration.
6748 * stack.c (record_selected_frame): Delete function.
6749
6750 * frame.h (struct frame_id): Define.
6751 (get_frame_id): Declare.
6752 (frame_find_by_id): Declare.
6753 * frame.c (frame_find_by_id): New function.
6754 (get_frame_id): New function.
6755
6756 2002-06-10 Andrey Volkov <avolkov@transas.com>
6757
6758 * ser-e7kpc.c: Fix duplicated define and call of
6759 _initialize_ser_e7000pc
6760
6761 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
6762
6763 * signals/signals.c (target_signal_from_host): Fix #ifdef
6764 SIGRTMIN case.
6765 (do_target_signal_to_host): Likewise.
6766
6767 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
6768
6769 * mips-tdep.c (mips_find_abi_section): New function.
6770 (mips_gdbarch_init): Call it.
6771
6772 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6773
6774 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
6775 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
6776 after Andrew's 2002-06-08 gdbarch change.
6777
6778 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6779
6780 * i386-linux-nat.c (suppy_gregset): Don't supply
6781 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
6782 register cache.
6783 (fill_gregset): Don't fetch it under the same circumstances.
6784
6785 2002-06-09 Andrew Cagney <cagney@redhat.com>
6786
6787 * Makefile.in (callback_h): Define.
6788 (remote_sim_h): Update path to remote-sim.h.
6789 (remote-rdp.o): Add $(callback_h).
6790 (remote-sim.o): Use $(callback_h).
6791 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
6792 * remote-rdp.c: Include "gdb/callback.h".
6793
6794 2002-06-09 Mark Kettenis <kettenis@gnu.org>
6795
6796 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
6797 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
6798
6799 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6800
6801 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
6802 * rdi-share/serpardr.c: Ditto.
6803 * rdi-share/unixcomm.c: Ditto.
6804 * rdi-share/serdrv.c: Ditto.
6805 * rdi-share/hostchan.h: Ditto.
6806 * rdi-share/hostchan.c: Ditto.
6807 * rdi-share/host.h: Ditto.
6808 * rdi-share/devsw.c: Ditto.
6809
6810 * objfiles.h: Change type of obj_private to void pointer.
6811 * pa64solib.c: Update copyright. Don't include "assert.h", use
6812 strcmp instead of STREQ, use LONGEST, do not use PTR
6813 * somsolib.c: Ditto.
6814
6815 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
6816 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
6817 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
6818
6819 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6820
6821 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
6822 (default_get_saved_register): Delete function.
6823 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
6824 generic_unwind_get_saved_register.
6825 * gdbarch.h, gdbarch.c: Re-generate.
6826
6827 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6828
6829 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
6830 generic_func_frame_chain_valid.
6831 * gdbarch.h, gdbarch.c: Re-generate.
6832 * blockframe.c (generic_func_frame_chain_valid): Only check
6833 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
6834 passing FP to PC_IN_CALL_DUMMY.
6835 Fix PR gdb/360.
6836
6837 2002-06-08 Andrew Cagney <ac131313@redhat.com>
6838
6839 * gdbarch.sh (struct gdbarch_data): Add field init_p.
6840 (register_gdbarch_data): Initialize init_p.
6841 (gdbarch_data): Initialize data pointer using the init function.
6842 (init_gdbarch_data): Delete function.
6843 (gdbarch_update_p): Update.
6844 (initialize_non_multiarch): Update.
6845 (struct gdbarch): Add field initialized_p.
6846 * gdbarch.h, gdbarch.c: Re-generate.
6847
6848 2002-06-07 Michal Ludvig <mludvig@suse.cz>
6849
6850 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
6851 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
6852 better do the things actually here.
6853 * x86-64-tdep.c (x86_64_register_name2nr): New.
6854 (x86_64_register_name): Renamed to x86_64_register_nr2name.
6855 (x86_64_gdbarch_init): Respect the above change.
6856 * x86-64-tdep.h (x86_64_register_name2nr)
6857 (x86_64_register_nr2name): Add prototypes.
6858 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
6859
6860 2002-06-06 Michael Snyder <msnyder@redhat.com>
6861
6862 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
6863 Delete extra braces and re-indent.
6864 (d10v_store_return_value): Char return values
6865 must be shifted over by one byte in R0.
6866 (d10v_extract_return_value): Delete extra braces, re-indent.
6867
6868 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
6869
6870 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
6871 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
6872 (d10v_integer_to_address): Rewrite.
6873 (d10v_frame_init_saved_regs): When reading fp and sp registers use
6874 the d10v specific functions which take care of converting to the
6875 correct space.
6876
6877 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
6878
6879 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
6880 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
6881
6882 2002-06-02 Andrew Cagney <ac131313@redhat.com>
6883
6884 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
6885 includes.
6886 * config/tm-linux.h: Ditto.
6887 * config/alpha/tm-alphalinux.h: Ditto.
6888 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
6889 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
6890 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
6891 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
6892 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
6893 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
6894 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
6895 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
6896 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
6897 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
6898 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
6899 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
6900 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
6901 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
6902 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
6903 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
6904 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
6905 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
6906 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
6907 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
6908 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
6909 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
6910 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
6911 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
6912 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
6913 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
6914 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
6915 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
6916 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
6917 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
6918 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
6919 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
6920 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
6921 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
6922 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
6923 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
6924 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
6925
6926 2002-05-04 Aidan Skinner <aidan@velvet.net>
6927
6928 * ada-exp.tab.c: New file
6929 * ada-exp.y: New file
6930 * ada-lang.c: New file
6931 * ada-lang.h: New file
6932 * ada-lex.c: New file
6933 * ada-lex.l: New file
6934 * ada-tasks.c: New file
6935 * ada-typeprint.c: New file
6936 * ada-valprint.c: New file
6937
6938 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6939
6940 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
6941 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
6942
6943 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6944
6945 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
6946 insetead of ppc-linux-tdep.o.
6947 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
6948 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
6949
6950 2002-06-02 Andrew Cagney <ac131313@redhat.com>
6951
6952 2002-05-07 Christian Groessler <chris@groessler.org>
6953 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
6954 bit register contents for little endian hosts.
6955
6956 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6957
6958 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
6959 any maintainer.
6960
6961 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6962
6963 * gdbarch.h: Regenerate.
6964
6965 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6966
6967 * MAINTAINERS: Add everyone to write-after-approval list.
6968
6969 2002-06-01 Andrew Cagney <ac131313@redhat.com>
6970
6971 * stack.c (frame_info): Use frame_register_unwind instead of
6972 saved_regs. Mention when the SP is on the stack or in a register.
6973
6974 * frame.h (frame_register_unwind_ftype): Define. Document.
6975 (struct frame_info): Add field register_unwind and
6976 register_unwind_cache.
6977 (frame_register_unwind): Declare.
6978 (generic_unwind_get_saved_register): Declare.
6979
6980 * frame.c (frame_register_unwind): New function.
6981 (generic_unwind_get_saved_register): New function.
6982
6983 * blockframe.c (generic_call_dummy_register_unwind): New function.
6984 (frame_saved_regs_register_unwind): New function.
6985 (set_unwind_by_pc): New function.
6986 (create_new_frame): New function.
6987 (get_prev_frame): New function.
6988
6989 2002-05-30 Andrew Cagney <ac131313@redhat.com>
6990
6991 * a29k-share/: Delete directory.
6992 * remote-vx29k.c: Delete file.
6993
6994 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6995
6996 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
6997 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6998
6999 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
7000
7001 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
7002 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
7003 (sparc64nbsd-nat.o)
7004 (sparcnbsd-nat.o)
7005 (sparcnbsd-tdep.o): New dependency lists.
7006 * NEWS: Note new UltraSPARC NetBSD native configuration.
7007 * configure.host (sparc64-*-netbsd*): New host.
7008 * configure.tgt (sparc-*-netbsdelf*)
7009 (sparc-*-netbsd*): Set gdb_target to nbsd.
7010 (sparc64-*-netbsd*): New target.
7011 * sparc64nbsd-nat.c: New file.
7012 * sparcnbsd-nat.c: New file.
7013 * sparcnbsd-tdep.c: New file.
7014 * sparcnbsd-tdep.h: New file.
7015 * config/sparc/nbsd.mt: New file.
7016 * config/sparc/nbsd64.mh: New file.
7017 * config/sparc/nbsd64.mt: New file.
7018 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
7019 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
7020 (HOST_IPC): Remove.
7021 * config/sparc/nbsdaout.mt: Remove.
7022 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
7023 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
7024 (HOST_IPC): Remove.
7025 * config/sparc/nbsdelf.mt: Remove.
7026 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
7027 sparc-nat.c compatiblity defines.
7028 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
7029 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
7030 * config/sparc/tm-nbsd64.h: New file.
7031 * config/sparc/tm-nbsdaout.h: Remove.
7032 * config/sparc/xm-nbsd.h: Remove.
7033
7034 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
7035
7036 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
7037 * sparc-tdep.c: Include osabi.h.
7038 (gdbarch_tdep): Add osabi member.
7039 (_initialize_sparc_tdep): Use gdbarch_register.
7040 (sparc_gdbarch_init): Use generic OS ABI framework.
7041 (sparc_dump_tdep): New function.
7042
7043 2002-05-30 Kevin Buettner <kevinb@redhat.com>
7044
7045 * corefile.c (do_captured_read_memory_integer): Return non-zero
7046 result.
7047 (safe_read_memory_integer): Copy result of memory read when
7048 status is non-zero. Also, add comments.
7049
7050 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
7051
7052 * Makefile.in (ppc_tdep_h): Define.
7053 (ppc-linux-nat.o)
7054 (ppc-linux-tdep.o)
7055 (rs6000-tdep.o): Use $(ppc_tdep_h).
7056 (ppc-sysv-tdep.o)
7057 (ppcnbsd-nat.o)
7058 (ppcnbsd-tdep.o): New dependency lists.
7059 * ppc-tdep.h: Use generic OS ABI framework.
7060 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
7061 (ppc_linux_init_abi): New functions.
7062 (ppc_sysv_abi_broken_use_struct_convention)
7063 (ppc_sysv_abi_use_struct_convention)
7064 (ppc_sysv_abi_push_arguments): Move to...
7065 * ppc-sysv-tdep.c: ...here.
7066 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
7067 * rs6000-tdep.c (process_note_abi_tag_sections)
7068 (get_elfosabi): Remove.
7069 (rs6000_gdbarch_init): Use generic OS ABI framework.
7070 (rs6000_dump_tdep): New function.
7071 (_initialize_rs6000_tdep): Use gdbarch_register.
7072 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
7073 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
7074 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
7075 of ppc-linux-tdep.o.
7076 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
7077 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
7078 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
7079 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
7080 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
7081 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
7082
7083 2002-05-29 Jim Blandy <jimb@redhat.com>
7084
7085 * macroscope.c (default_macro_scope): Put `void' in empty argument
7086 list.
7087
7088 2002-05-29 Andrew Cagney <ac131313@redhat.com>
7089
7090 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
7091 * arch-utils.c: Include "sim-regno.h".
7092 * gdbarch.sh: Don't include "sim-regno.h".
7093 * gdbarch.h, gdbarch.c: Regenerate.
7094 * sim-regno.h (legacy_register_sim_regno): Move declaration from
7095 here.
7096 * arch-utils.h (legacy_register_sim_regno): To here.
7097 * remote-sim.c (legacy_register_sim_regno): Move function from
7098 here.
7099 * arch-utils.c (legacy_register_sim_regno): To here.
7100
7101 2002-05-28 Andrew Cagney <ac131313@redhat.com>
7102
7103 * sim-regno.h: New file.
7104 * Makefile.in (sim_regno_h): Define.
7105 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
7106 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
7107 (legacy_register_sim_regno): New function.
7108 (one2one_register_sim_regno): New function.
7109 (gdbsim_fetch_register): Rewrite.
7110 (gdbsim_store_register): Only store a register when
7111 REGISTER_SIM_REGNO is valid.
7112 * d10v-tdep.c: Include "sim-regno.h".
7113 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
7114 (d10v_ts3_register_sim_regno): Ditto.
7115 * gdbarch.sh: Include "sim-regno.h".
7116 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
7117 * gdbarch.h, gdbarch.c: Regenerate.
7118 * arch-utils.h (default_register_sim_regno): Delete declaration.
7119 * arch-utils.c (default_register_sim_regno): Delete function.
7120
7121 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
7122
7123 * ppcnbsd-nat.c: Rewrite.
7124 * ppcnbsd-tdep.c: New file.
7125 * ppcnbsd-tdep.h: New file.
7126 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
7127 solib.o, and solib-svr4.o.
7128 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
7129 nbsd-tdep.o, and corelow.o.
7130
7131 2002-05-28 Andrew Cagney <ac131313@redhat.com>
7132
7133 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
7134 `tr' and `sed'. Mention that `broken' targets are not expected to
7135 build.
7136
7137 2002-05-27 Michal Ludvig <mludvig@suse.cz>
7138
7139 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
7140 Let PC point right after the prologue before looking up symbols.
7141
7142 2002-05-27 Martin M. Hunt <hunt@redhat.com>
7143
7144 * i386-tdep.c (i386_register_virtual_type): Return
7145 builtin_type_vec128i for SSE registers.
7146
7147 * gdbtypes.h (builtin_type_vec128i): Declare.
7148
7149 * gdbtypes.c (build_builtin_type_vec128i): New function.
7150 (builtin_type_v2_double, builtin_type_v4_int64): New types.
7151 (builtin_type_vec128i): New type for SSE2 128-bit registers.
7152 (build_gdbtypes): Initialize new builtin vector types.
7153 (_initialize_gdbtypes): Register new vector types with gdbarch.
7154
7155 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7156
7157 * MAINTAINERS: ns32k is not longer an obsolete candidate,
7158 since it has been multi-arch'd.
7159 * NEWS: Note that ns32k-*-* is now partial multi-arch.
7160 Move Alpha and VAX multi-arch news entries to same section
7161 as other multi-arch news.
7162
7163 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7164
7165 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
7166 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
7167 static. Rename some register numbers to put them in ns32k-tdep
7168 private namespace.
7169 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
7170 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
7171 functions.
7172 (_initialize_ns32k_tdep): Use gdbarch_register.
7173 * ns32k-tdep.h: New file.
7174 * ns32knbsd-tdep.c: New file.
7175 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
7176 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
7177 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
7178 REGISTER_BYTES, REGISTER_BYTE): Remove.
7179 * config/ns32k/tm-ns32k.h: New file.
7180 * config/ns32k/tm-umax.h: Remove.
7181
7182 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7183
7184 * ns32k-tdep.c (ns32k_saved_pc_after_call,
7185 ns32k_store_struct_return, ns32k_extract_return_value,
7186 ns32k_store_return_value, ns32k_extract_struct_value_address): New
7187 functions.
7188 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
7189 ns32k_saved_pc_after_call.
7190 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
7191 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
7192 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
7193 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
7194 ns32k_extract_struct_value_address.
7195
7196 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7197
7198 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
7199 ns32k_fix_call_dummy): New.
7200 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
7201 ns32k_call_dummy_words.
7202 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
7203 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
7204 CALL_DUMMY_NARGS): Remove.
7205 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
7206
7207 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7208
7209 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
7210 ns32k_frame_saved_pc, ns32k_frame_args_address,
7211 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
7212 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
7213 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
7214 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
7215 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
7216 (BREAKPOINT): Remove..
7217 (FRAME_CHAIN): Define as ns32k_frame_chain.
7218 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
7219 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
7220 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
7221 (FRAME_FIND_SAVED_REGS): Remove.
7222 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
7223 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
7224 (POP_FRAME): Define as ns32k_pop_frame.
7225
7226 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7227
7228 * ns32k-tdep.c (ns32k_register_byte_32082,
7229 ns32k_register_byte_32382, ns32k_register_raw_size,
7230 ns32k_register_virtual_size, ns32k_register_virtual_type): New
7231 functions.
7232 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
7233 ns32k_register_byte_32382.
7234 * config/ns32k/tm-umax.h: Update copyright years.
7235 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
7236 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
7237 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
7238 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
7239 (ns32k_get_enter_addr): Fix prototype.
7240
7241 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7242
7243 * ns32k-tdep.c: Update copyright years.
7244 (ns32k_register_name_32082): New function.
7245 (ns32k_register_name_32382): Ditto.
7246 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
7247 (REGISTER_NAME): Define as ns32k_register_name_32382.
7248 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
7249 (REGISTER_NAME): Define as ns32k_register_name_32082.
7250
7251 2002-05-24 Jim Blandy <jimb@redhat.com>
7252
7253 * dwarf2read.c (free_line_header): Use xfree, not free.
7254
7255 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
7256
7257 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
7258 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
7259
7260 2002-05-23 Andrew Cagney <ac131313@redhat.com>
7261
7262 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
7263
7264 2002-05-23 Andrew Cagney <ac131313@redhat.com>
7265
7266 From Ross Alexander at NEC Europe:
7267 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
7268
7269 2002-05-23 Michael Snyder <msnyder@redhat.com>
7270
7271 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
7272 for input, rather than parse_and_eval_address.
7273
7274 2002-05-23 Andrew Cagney <ac131313@redhat.com>
7275
7276 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
7277 * Makefile.in (sim_d10v_h): Update definition.
7278
7279 2002-05-24 Andrew Cagney <cagney@redhat.com>
7280
7281 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
7282 change `2002-05-22 Michael Snyder' below.
7283 (d10v_push_arguments): Ditto.
7284 (d10v_extract_return_value): Ditto.
7285
7286 2002-05-23 Jim Blandy <jimb@redhat.com>
7287
7288 * macrotab.c (check_for_redefinition): Don't complain if the new
7289 definition is the same as the previous one. Take more arguments
7290 to allow the comparison.
7291 (macro_define_object, macro_define_function): Pass more arguments
7292 to check_for_redefinition.
7293
7294 2002-05-22 Michael Snyder <msnyder@redhat.com>
7295
7296 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
7297 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
7298 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
7299 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
7300 Don't bail if return_pc is PC_IN_CALL_DUMMY.
7301 Add a temp variable to save a call (and a memory read).
7302 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
7303 if possible (so that PC_IN_CALL_DUMMY will work).
7304
7305 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
7306
7307 * MAINTAINERS: Remove status `OBSOLETE' from v850.
7308
7309 2002-05-22 Michal Ludvig <mludvig@suse.cz>
7310
7311 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
7312 fde->cie_ptr.
7313 (dwarf2_build_frame_info): Corrected handling of eh_frame.
7314 (dwarf2_build_frame_info): Add offset to fde->initial_location
7315 so that frames of shared libraries are mapped correctly.
7316 (execute_stack_op): Change type of 'result' from ULONGEST to
7317 CORE_ADDR.
7318
7319 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7320
7321 * config/alpha/tm-nbsd.h: Include solib.h.
7322
7323 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7324
7325 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
7326 assumptions about the host's byte order.
7327
7328 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7329
7330 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
7331 to dependency list.
7332 * alphanbsd-tdep.c: Include solib-svr4.h.
7333 * shnbsd-tdep.c: Ditto.
7334
7335 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7336
7337 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
7338 nbsd-tdep.h to dependency list.
7339 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
7340 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
7341 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
7342 nbsdaout.mh and nbsdelf.mh consistently.
7343 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
7344 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
7345 nbsdaout.mt and nbsdelf.mh consistently.
7346 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
7347 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
7348 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
7349 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
7350 a.out shared library stuff from here...
7351 * config/nm-nbsdaout.h: ...to here.
7352 * config/tm-nbsd.h: Remove.
7353 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
7354 * config/arm/nbsd.mh: Remove.
7355 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
7356 nbsd-tdep.o.
7357 * config/arm/nbsdaout.mh: New file.
7358 * config/arm/nbsdelf.mh: New file.
7359 * config/arm/nm-nbsdaout.h: New file.
7360 * config/i386/nbsd.mh: Remove.
7361 * config/i386/nbsd.mt: Remove.
7362 * config/i386/nbsdaout.mh: New file.
7363 * config/i386/nbsdaout.mt: New file.
7364 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
7365 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
7366 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
7367 i386_register_u_addr): Remove.
7368 * config/i386/nm-nbsdaout.h: New file.
7369 * config/i386/nm-nbsdelf.h: Remove.
7370 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
7371 (USE_STRUCT_CONVENTION): Remove.
7372 * config/i386/tm-nbsdaout.h: New file.
7373 * config/i386/tm-nbsdelf.h: Remove.
7374 * config/m68k/nbsd.mh: Remove.
7375 * config/m68k/nbsd.mt: Remove.
7376 * config/m68k/nbsdaout.mh: New file.
7377 * config/m68k/nbsdaout.mt: New file.
7378 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
7379 * config/m68k/nm-nbsdaout.h: New file.
7380 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
7381 (IN_SOLIB_CALL_TRAMPOLINE): Define.
7382 * config/ns32k/nbsd.mh: Remove.
7383 * config/ns32k/nbsd.mt: Remove.
7384 * config/ns32k/nbsdaout.mh: New file.
7385 * config/ns32k/nbsdaout.mt: New file.
7386 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
7387 * config/ns32k/nm-nbsdaout.h: New file.
7388 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
7389 (IN_SOLIB_CALL_TRAMPOLINE): Define.
7390 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
7391 (SVR4_SHARED_LIBS): Remove.
7392 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
7393 * config/sparc/nbsd.mh: Remove.
7394 * config/sparc/nbsd.mt: Remove.
7395 * config/sparc/nbsdaout.mh: New file.
7396 * config/sparc/nbsdaout.mt: New file.
7397 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
7398 * config/sparc/nbsdelf.mt: New file.
7399 * config/sparc/nm-nbsdaout.h: New file.
7400 * config/sparc/nm-nbsdelf.h: Remove.
7401 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
7402 * config/sparc/tm-nbsdaout.h: New file.
7403
7404 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7405
7406 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
7407 mipsnbsd-tdep.c
7408 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
7409
7410 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7411
7412 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
7413 shnbsd-nat.c.
7414 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
7415
7416 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7417
7418 * NEWS: Note new MIPS NetBSD native configuration.
7419 * configure.host (mips*-*-netbsd*): New host.
7420 * configure.tgt (mips*-*-netbsd*): New target.
7421 * mipsnbsd-nat.c: New file.
7422 * mipsnbsd-tdep.c: New file.
7423 * mipsnbsd-tdep.h: New file.
7424 * config/mips/nbsd.mh: New file.
7425 * config/mips/nbsd.mt: New file.
7426 * config/mips/nm-nbsd.h: New file.
7427 * config/mips/tm-nbsd.h: New file.
7428
7429 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7430
7431 * Makefile.in (SFILES): Add osabi.c.
7432 (COMMON_OBS): Add osabi.o.
7433 (osabi.o): New dependency list.
7434 * osabi.c: New file.
7435 * osabi.h: New file.
7436 * doc/gdbint.texinfo: Document new generic OS ABI framework.
7437
7438 * Makefile.in (alpha_tdep_h): Define and use instead of
7439 alpha-tdep.h.
7440 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
7441 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
7442 Remove.
7443 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
7444 * alpha-tdep.h: Include osabi.h.
7445 (alpha_abi): Remove.
7446 (gdbarch_tdep): Use generic OS ABI framework.
7447 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
7448 gdbarch_register_osabi.
7449 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
7450 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
7451 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
7452
7453 * Makefile.in (sh_tdep_h): Add osabi.h.
7454 * sh-tdep.h (sh_osabi): Remove.
7455 (gdbarch_tdep): Use generic OS ABI framework.
7456 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
7457 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
7458 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
7459 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
7460
7461 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
7462 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
7463 gdbarch_register_osabi.
7464 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
7465 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
7466 (get_elfosabi): Rename to...
7467 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
7468 ABI framework support routines.
7469 (arm_gdbarch_init): Use generic OS ABI framework.
7470 (arm_dump_tdep): Likewise.
7471 (_initialize_arm_tdep): Likewise.
7472 * arm-tdep.h: Include osabi.h.
7473 (arm_abi): Remove.
7474 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
7475 osabi member.
7476 (arm_gdbarch_register_os_abi): Remove prototype.
7477 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
7478 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
7479
7480 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
7481 * mips-tdep.c: Include osabi.h.
7482 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
7483 OS ABI framework.
7484
7485 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
7486
7487 * h8300-tdep.c: Fix formatting.
7488
7489 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
7490
7491 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
7492 printing vector registers.
7493
7494 2002-05-19 Andrew Cagney <ac131313@redhat.com>
7495
7496 From Fernando Nasser:
7497 * remote.c (remote_async_open_1): Re-throw the exception when the
7498 connection fails.
7499 (remote_cisco_open): Ditto.
7500 (remote_open_1): Ditto.
7501
7502 2002-05-19 Andrew Cagney <ac131313@redhat.com>
7503
7504 * remote.c (remote_start_remote_dummy): Add uiout parameter.
7505 (remote_start_remote): Add uiout parameter. Pass through to
7506 remote_start_remote_dummy.
7507 (remote_open_1): Use catch_exception instead of catch_errors.
7508 (remote_async_open_1): Ditto.
7509 (remote_cisco_open): Ditto.
7510
7511 2002-05-19 Andrew Cagney <ac131313@redhat.com>
7512
7513 * remote.c (remote_start_remote): Replace PTR with void pointer.
7514 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
7515 static.
7516
7517 2002-05-18 Andrew Cagney <ac131313@redhat.com>
7518
7519 * gdb_indent.sh: Allow the script to be run in the sim directory.
7520
7521 2002-05-18 Mark Kettenis <kettenis@gnu.org>
7522
7523 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
7524 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
7525
7526 * corelow.c (core_open): Only call set_gdbarch_from_file if
7527 exec_bfd is NULL.
7528
7529 2002-05-17 Andrey Volkov <avolkov@transas.com>
7530
7531 * h8300-tdep.c: Add support of EXR register
7532 * config/h8300/tm-h8300.h: Ditto.
7533
7534 2002-05-17 Andrey Volkov <avolkov@transas.com>
7535
7536 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
7537
7538 2002-05-17 Andrey Volkov <avolkov@transas.com>
7539
7540 * h8300-tdep.c: Change literal regnums to REGNO.
7541
7542 2002-05-17 Jim Blandy <jimb@redhat.com>
7543
7544 * NEWS: Note addition of macro support.
7545
7546 Expand preprocessor macros in C expressions.
7547 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
7548 (scan_macro_expansion, scanning_macro_expansion,
7549 finished_macro_expansion): New function declarations.
7550 (expression_macro_lookup_func, expression_macro_lookup_baton): New
7551 variable declarations.
7552 * parser-defs.h (expression_context_pc): New declaration.
7553 * parse.c (expression_context_pc): New variable.
7554 (parse_exp_1): Set expression_context_pc, as well as
7555 expression_context_block.
7556 * c-exp.y (yylex): If we're not already reading the result of a
7557 macro expansion, try to macro-expand the next token. When we're
7558 done scanning a macro expansion, switch back to the mainline text.
7559 Commas and `if's in a macro's expansion don't terminate the input.
7560 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
7561 (macro_original_text, macro_expanded_text,
7562 expression_macro_lookup_func, expression_macro_lookup_baton): New
7563 variables.
7564 (scan_macro_expansion, scanning_macro_expansion,
7565 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
7566 c_preprocess_and_parse): New functions.
7567 (c_language_defn, cplus_language_defn, asm_language_defn): Call
7568 c_preprocess_and_parse, instead of c_parse.
7569 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
7570 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
7571
7572 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
7573
7574 * sh-tdep.c (gdb_print_insn_sh64): Delete.
7575 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
7576 (sh_gdbarch_init): Always use gdb_print_insn_sh.
7577
7578 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
7579
7580 * NEWS: Add section for multi-arched targets. Add v850 to that section.
7581
7582 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
7583
7584 * Makefile.in (sh_tdep_h): Define and use.
7585 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
7586 register enum): Move to...
7587 * * sh-tdep.h: ...here.
7588 * sh-tdep.c: Include sh-tdep.h.
7589 * sh3-rom.c: Likewise.
7590 * shnbsd-tdep.c: Likewise.
7591
7592 2002-05-16 Michael Snyder <msnyder@redhat.com>
7593
7594 * arm-tdep.c: Spelling fix in comment.
7595
7596 2002-05-16 Jim Blandy <jimb@redhat.com>
7597
7598 Add commands for manually expanding macros and showing their
7599 definitions.
7600 * macrocmd.c, macroscope.c, macroscope.h: New files.
7601 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
7602 (macroscope_h): New variable.
7603 (HFILES_NO_SRCDIR): Add macroscope.h.
7604 (COMMON_OBS): Add macrocmd.o, macroscope.o.
7605 (macroscope.o, macrocmd.o): New rules.
7606
7607 Teach the Dwarf 2 reader to read macro information.
7608 * dwarf2read.c: #include "macrotab.h".
7609 (dwarf_macinfo_buffer): New variable.
7610 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
7611 dwarf_macinfo_size.
7612 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
7613 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
7614 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
7615 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
7616 dwarf2_macro_spaces_in_definition): New complaints.
7617 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
7618 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
7619 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
7620 the partial symbol table.
7621 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
7622 from what's recorded in the partial symbol table.
7623 (read_file_scope): If the compilation unit has a
7624 `DW_AT_macro_info' attribute, read its macro information.
7625 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
7626
7627 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
7628
7629 Fix PR gdb/546
7630 * ser-tcp.c: Don't include <netinet/udp.h>.
7631
7632 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
7633
7634 * MAINTAINERS: Update my email address.
7635
7636 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
7637
7638 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
7639 include file of the same name.
7640
7641 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7642
7643 * configure.tgt: Mark v850 as multi-arched.
7644 * config/v850/tm-v850.h: Remove file.
7645 * config/v850/v850.mt: Eliminate TM_FILE.
7646
7647 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7648
7649 * v850-tdep.c: Full multi-arch.
7650 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
7651 Define GDB_MULTI_ARCH to 2.
7652
7653 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
7654
7655 * p-exp.y (current_type): New static variable.
7656 Carries the type of the expression at the position that is parsed.
7657 (push_current_type, pop_current_type): Two new functions. Used
7658 to store/restore current_type in expression on specific tokens.
7659 (search_field): New static variable. Set to one after parsing a point
7660 as at that point only a FIELDNAME token should be searched.
7661 (FIELDNAME): New token. After a point only a token belonging to
7662 current_type type definition is allowed.
7663 (all over token rules): reset and change current_type according
7664 to rules.
7665 (exp '[' rule): insert implicit array index field if
7666 exp is a pascal string type.
7667
7668 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7669
7670 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
7671 frame info. Use frame_info's saved_regs instead of matching member
7672 in extra_frame_info throughout.
7673 (v850_frame_init_saved_regs): New function.
7674 (v850_init_extra_frame_info): Move most functionality into
7675 v850_frame_init_saved_regs().
7676 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
7677 (v850_frame_find_saved_regs): Remove declaration.
7678 (FRAME_FIND_SAVED_REGS): Remove definition.
7679 (v850_frame_init_saved_regs): Add declaration.
7680 (FRAME_INIT_SAVED_REGS): Add definition.
7681
7682 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
7683
7684 * v850-tdep.c: Begin multi-arch'ing v850.
7685 (v850_target_architecture_hook): Remove function.
7686 (v850_gdbarch_init): New function. Add code previously in
7687 v850_target_architecture_hook().
7688 (_initialize_v850_tdep): Don't set target_architecture_hook.
7689 Call register_gdbarch_init() instead.
7690
7691 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
7692
7693 * gdbtypes.h (struct cplus_struct_type): Remove args field.
7694 * hpread.c (hpread_read_struct_type): Remove assignments to args.
7695 (fixup_class_method_type): Likewise.
7696
7697 2002-05-15 Jim Blandy <jimb@redhat.com>
7698
7699 Add macro structures to GDB's symbol tables. Nobody puts anything
7700 in them yet.
7701 * symtab.h (struct symtab): New member: `macro_table'.
7702 * buildsym.h (pending_macros): New global variable.
7703 * buildsym.c: #include "macrotab.h".
7704 (buildsym_init): Initialize `pending_macros'.
7705 (end_symtab): If we found macro information while reading a CU's
7706 debugging info, do build a symtab structure for it. Make the
7707 symtab point to the macro information, and clear the
7708 `pending_macros' pointer which held it while we were reading the
7709 debug info.
7710 (really_free_pendings): Free any pending macro table.
7711 * objfiles.h (struct objfile): New member: `macro_cache'.
7712 * objfiles.c (allocate_objfile): Set allocate and free functions
7713 for the macro cache's objstack.
7714 (free_objfile): Empty the macro cache's obstack.
7715 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
7716 set new allocate and free functions for it.
7717 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
7718 free functions for the macro cache's objstack. (Why is this
7719 function building its own objfile?)
7720 * symmisc.c (print_objfile_statistics): Print statistics on the
7721 macro bcache.
7722 * Makefile.in: Note that buildsym.o depends on macrotab.h.
7723
7724 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
7725
7726 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
7727 (REGISTER_U_ADDR): Delete definition.
7728 (arm_register_u_addr): Delete declaration.
7729
7730 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
7731
7732 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
7733 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
7734
7735 2002-05-14 Andrew Cagney <ac131313@redhat.com>
7736
7737 * regcache.c (register_valid): Revise comments refering to "Not
7738 available" and "unavailable".
7739 * frame.c (frame_register_read): Ditto.
7740 * findvar.c (value_of_register): Ditto.
7741
7742 2002-05-15 Andrew Cagney <cagney@redhat.com>
7743
7744 * Makefile.in (remote_sim_h): Replace remote-sim_h.
7745 (remote-sim.o): Update dependencies.
7746 (d10v-tdep.o): Specify dependencies.
7747 (sim_d10v_h): Define.
7748
7749 2002-05-14 Jim Blandy <jimb@redhat.com>
7750
7751 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
7752 * macrotab.c (macro_lookup_inclusion, find_definition,
7753 new_macro_table): Same.
7754
7755 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
7756 not `! strcmp ()'. This is a dubious improvement.
7757 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
7758
7759 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
7760 although it's not necessary, to avoid a warning.
7761
7762 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
7763
7764 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
7765 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
7766 TYPE_INSTANCE_FLAGS.
7767 (struct main_type): New.
7768 (struct type): Move most members to struct main_type. Change
7769 cv_type and as_type to new type_chain member. Add instance_flags.
7770 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
7771 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
7772 (finish_cv_type): Remove prototype.
7773 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
7774 Set TYPE_CHAIN.
7775 (alloc_type_instance): New function.
7776 (smash_type): New function.
7777 (make_pointer_type, make_reference_type, make_function_type)
7778 (smash_to_member_type, smash_to_method_type): Call smash_type.
7779 (make_qualified_type): New function.
7780 (make_type_with_address_space): Call make_qualified_type.
7781 (make_cv_type): Likewise.
7782 (finish_cv_type): Remove unnecessary function.
7783 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
7784 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
7785 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
7786 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
7787 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
7788 * hpread.c (hpread_read_struct_type): Likewise.
7789 * stabsread.c (read_struct_type): Likewise.
7790
7791 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
7792
7793 * configure.tgt: Add a catch all sh* target, for cases like
7794 sh[2,3,4]-elf and sh-hms.
7795
7796 2002-05-14 Keith Seitz <keiths@redhat.com>
7797
7798 * event-loop.c (create_file_handler): Don't do anything but
7799 update data when we are given a fd which we are already
7800 monitoring.
7801
7802 2002-05-14 Michal Ludvig <mludvig@suse.cz>
7803
7804 * dwarf2cfi.c (context_cpy): Copy registers correctly.
7805 (update_context): Use __func__ in warnings.
7806
7807 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
7808
7809 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
7810 and tcp_close to net_open and net_close.
7811 (net_open): Accept "udp:" and "tcp:" specifications. Connect
7812 using UDP if requested. Don't try to disable Nagle on UDP
7813 sockets.
7814 * remote.c (remote_serial_open): New function. Warn about UDP.
7815 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
7816
7817 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
7818
7819 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
7820
7821 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
7822
7823 * configure.tgt: Remove sh-hms target.
7824 * MAINTAINERS: Don't list sh-hms as a separate target.
7825
7826 2002-05-13 Jim Blandy <jimb@redhat.com>
7827
7828 Add first preprocessor macro-expansion files.
7829 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7830 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7831 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7832 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7833 (COMMON_OBS): Add macrotab.o, macroexp.o.
7834 (macroexp.o, macrotab.o): New rules.
7835
7836 2002-05-13 Andrew Cagney <ac131313@redhat.com>
7837
7838 * config/m88k/tm-m88k.h: Update copyright.
7839 (m88k_target_write_pc): Declare
7840 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
7841 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
7842 (SHIFT_INST_REGS): Update definition.
7843 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
7844 using old definition of TARGET_WRITE_PC.
7845 * regcache.c (generic_target_write_pc): Delete code handling
7846 NNPC_REGNUM.
7847 * gdbarch.sh (NNPC_REGNUM): Delete.
7848 * gdbarch.h, gdbarch.c: Regenerate.
7849
7850 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
7851
7852 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
7853 builtin reg number.
7854
7855 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
7856
7857 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
7858 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
7859 (gen_address_of, gen_struct_ref, gen_repeat): Use type
7860 access macros.
7861 * c-typeprint.c (cp_type_print_method_args): Likewise.
7862 (c_type_print_args): Likewise.
7863 * d10v-tdep.c (d10v_push_arguments): Likewise.
7864 (d10v_extract_return_value): Likewise.
7865 * expprint.c (print_subexp): Likewise.
7866 * gdbtypes.c (lookup_primitive_typename): Likewise.
7867 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
7868 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
7869 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
7870 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
7871 (TYPE_VECTOR): Likewise.
7872 * hpread.c (hpread_read_struct_type)
7873 (fix_static_member_physnames, fixup_class_method_type)
7874 (hpread_type_lookup): Likewise.
7875 * mdebugread.c (parse_symbol, parse_type): Likewise.
7876 * p-lang.c (is_pascal_string_type): Likewise.
7877 * valops.c (hand_function_call): Likewise.
7878 * x86-64-tdep.c (classify_argument): Likewise.
7879
7880 * hpread.c (hpread_read_function_type)
7881 (hpread_read_doc_function_type): Call replace_type.
7882 * dstread.c (create_new_type): Delete.
7883 (decode_dst_structure, process_dst_function): Call alloc_type.
7884 Use type access macros.
7885
7886 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7887
7888 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
7889 the're not supported by the current architecture.
7890 (i387_fill_fxsave): Likewise.
7891
7892 2002-05-12 Fred Fish <fnf@redhat.com>
7893
7894 * symfile.c (default_symfile_offsets): Arrange for uninitialized
7895 sect_index_xxx members to index the first slot in section_offsets
7896 if all of the section_offsets are zero.
7897
7898 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7899
7900 * configure.tgt (sparc-*openbsd): Remove entry accidentially
7901 checked in with last change.
7902
7903 2002-05-12 Mark Kettenis <kettenis@gnu.org>
7904
7905 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
7906 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
7907 config.sub.
7908
7909 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
7910
7911 * Makefile.in: Update dependencies.
7912
7913 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7914
7915 * language.c (local_hex_string_custom): Simplify. Do not depend
7916 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
7917
7918 * memattr.c (mem_info_command): Replace calls to
7919 longest_local_hex_string and longest_local_hex_string_custom.
7920 * buildsym.c (make_blockvector): Ditto.
7921 * solib.c (info_sharedlibrary_command): Ditto.
7922 * tracepoint.c (tracepoints_info): Ditto.
7923 * symtab.c (print_msymbol_info): Ditto.
7924
7925 * language.c (local_hex_string): Delete.
7926 (local_hex_string_custom): Delete.
7927 (longest_local_hex_string): Rename to local_hex_string.
7928 (longest_local_hex_string_custom): Rename to
7929 local_hex_string_custom.
7930 * language.h (local_hex_string): Change parameter type to LONGEST.
7931 (local_hex_string_custom): Ditto.
7932 (longest_local_hex_string): Delete declaration.
7933 (longest_local_hex_string_custom): Ditto.
7934
7935 * solib.c: Update copyright.
7936 * memattr.c: Update copyright.
7937
7938 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7939
7940 * arch-utils.h (legacy_register_to_value): Declare.
7941 (legacy_value_to_register): Declare.
7942 (legacy_convert_register_p): Declare.
7943 * arch-utils.c (legacy_register_to_value): New function.
7944 (legacy_value_to_register): New function.
7945 (legacy_convert_register_p): New function.
7946
7947 * gdbarch.sh (REGISTER_TO_VALUE): Define.
7948 (VALUE_TO_REGISTER): Define.
7949 (CONVERT_REGISTER_P): Define.
7950 * gdbarch.h, gdbarch.c: Regenerate.
7951
7952 * valops.c (value_assign): Use CONVERT_REGISTER_P and
7953 VALUE_TO_REGISTER.
7954 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
7955 CONVERT_REGISTER_P.
7956
7957 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
7958 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7959
7960 * Makefile.in: Update dependencies for valops.c.
7961 * valops.c: Include "gdb_assert.h".
7962 (typecmp): Skip THIS parameter to methods.
7963 (find_method_list): Remove static_memfuncp argument,
7964 update callers. Check for stub methods.
7965 (find_value_oload_method_list): Don't set *static_memfuncp.
7966 (find_overload_match): Don't check for stub methods. Assert
7967 that methods are not stubbed. Handle static methods.
7968 (value_find_oload_method_list): Remove static_memfuncp argument.
7969 * gdbtypes.c (check_stub_method): Do not add THIS pointer
7970 to the argument list for static stub methods.
7971 * value.h (value_find_oload_method_list): Update prototype.
7972
7973 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7974
7975 * arch-utils.h (generic_register_size): Declare.
7976 (generic_register_raw_size, generic_register_virtual_size): Delete
7977 declarations.
7978 * arch-utils.c (generic_register_raw_size): Delete.
7979 (generic_register_size): New function.
7980 (generic_register_virtual_size): Delete.
7981
7982 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
7983 default generic_register_size.
7984 * gdbarch.h, gdbarch.c: Re-generate.
7985
7986 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
7987 register_virtual_size.
7988 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
7989 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
7990
7991 2002-05-11 Andrew Cagney <ac131313@redhat.com>
7992
7993 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
7994 * gdbarch.h, gdbarch.c: Regenerate.
7995 * gnu-v3-abi.c: Update copyright.
7996 (vtable_address_point_offset): Update.
7997 (gnuv3_rtti_type): Update.
7998 (gnuv3_baseclass_offset): Update.
7999 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
8000 (init_fetch_link_map_offsets): Update.
8001 * remote.c (get_remote_state): Update.
8002
8003 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
8004
8005 * TODO: Remove value_headof/value_from_vtable_info comment.
8006 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
8007 * values.c (value_headof, value_from_vtable_info): Delete.
8008 * value.h (value_from_vtable_info): Delete prototype.
8009
8010 2002-05-11 Andrew Cagney <ac131313@redhat.com>
8011
8012 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
8013 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
8014 $(gdb_regex_h).
8015 (gdb_assert_h): Define.
8016 (gdb_wait_h): Define.
8017 (gdb_regex_h): Define.
8018
8019 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
8020
8021 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
8022 * linespec.c (find_methods): Handle GCC 3.x template constructors.
8023
8024 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8025
8026 * nbsd-tdep.c: Fix comment.
8027
8028 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8029
8030 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
8031 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
8032 (nbsd-tdep.o): New dependency list.
8033 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
8034 nbsd-tdep.h.
8035 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
8036 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
8037 * nbsd-tdep.c: New file.
8038 * nbsd-tdep.h: New file.
8039 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
8040 nbsd-tdep.h.
8041 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
8042 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
8043 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
8044 * config/sh/nbsd.mt (TDEPFILES): Ditto.
8045
8046 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8047
8048 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
8049 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
8050 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
8051 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
8052 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
8053 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
8054
8055 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8056
8057 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
8058 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8059 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
8060 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
8061 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
8062 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
8063 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
8064
8065 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8066
8067 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
8068 fetch_elfcore_registers to...
8069 * i386nbsd-tdep.c: ...here.
8070 (i386nbsd_use_struct_convention): Rename to...
8071 (i386nbsd_aout_use_struct_convention): ...this.
8072 (i386nbsd_supply_reg): New function.
8073 (i386nbsd_fill_reg): New function.
8074 (fetch_core_registers): Use i386nbsd_supply_reg.
8075 (fetch_elfcore_registers): Likewise.
8076 (_initialize_i386nbsd_tdep): New function.
8077 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
8078 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8079 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
8080 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
8081 (i386nbsd_aout_use_struct_convention): ...this.
8082
8083 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8084
8085 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
8086 (store_inferior_registers): Use shnbsd_fill_reg.
8087 * shnbsd-tdep.c (sh_nbsd_supply_registers,
8088 sh_nbsd_supply_register): Collapse into...
8089 (shnbsd_supply_reg): ...this.
8090 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
8091 (shnbsd_fill_reg): ...this.
8092 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
8093 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
8094 (fetch_core_registers): Use shnbsd_supply_reg.
8095 (fetch_elfcore_registers): Use shnbsd_supply_reg.
8096 (sh_nbsd_core_fns): Rename to...
8097 (shnbsd_core_fns): ...this.
8098 (sh_nbsd_elfcore_fns): Rename to...
8099 (shnbsd_elfcore_fns): ...this.
8100 (sh_nbsd_init_abi): Rename to...
8101 (shnbsd_init_abi): ...this.
8102 (_initialize_sh_nbsd_tdep): Rename to...
8103 (_initialize_shnbsd_tdep): ...this.
8104 * shnbsd-tdep.h (sh_nbsd_supply_registers,
8105 sh_nbsd_supply_register, sh_nbsd_fill_registers,
8106 sh_nbsd_fill_register): Remove prototypes.
8107 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
8108
8109 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8110
8111 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
8112 (i387-nat.o): Delete dependency list.
8113 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
8114 (x86-64-linux-nat.o): Likewise.
8115 * i387-nat.c: Delete file, moving contents to...
8116 * i387-tdep.c: ...here.
8117 * i387-nat.h: Rename...
8118 * i387-tdep.h: ...to this.
8119 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
8120 * i386-linux-nat.c: Likewise.
8121 * i386bsd-nat.c: Likewise.
8122 * i386gnu-nat.c: Likewise.
8123 * i386nbsd-nat.c: Likewise.
8124 * i386v4-nat.c: Likewise.
8125 * x86-64-linux-nat.c: Likewise.
8126 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
8127 * config/i386/go32.mh (NATDEPFILES): Likewise.
8128 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
8129 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
8130 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
8131 * config/i386/linux.mh (NATDEPFILES): Likewise.
8132 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
8133 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8134 * config/i386/obsd.mh (NATDEPFILES): Likewise.
8135 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
8136
8137 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8138
8139 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
8140 (alphanbsd-nat.o): Remove dependency list.
8141 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
8142 * alphanbsd-nat.c: Delete. Contents moved to...
8143 * alphanbsd-tdep.c: ...here.
8144 (_initialize_alphanbsd_tdep): Register core functions.
8145 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
8146
8147 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8148
8149 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
8150 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
8151 (alphanbsd-nat.o): Likewise.
8152 (alphabsd-tdep.o): New dependency list.
8153 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
8154 (fill_gregset): Use alphabsd_fill_reg.
8155 (supply_fpregset): Use alphabsd_supply_fpreg.
8156 (fill_fpregset): Use alphabsd_fill_fpreg.
8157 (fetch_inferior_registers): Use struct reg and struct fpreg
8158 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
8159 and alphabsd_supply_fpreg.
8160 (store_inferior_registers): Use struct reg and struct fpreg
8161 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
8162 and alphabsd_fill_fpreg.
8163 * alphabsd-tdep.c: New file.
8164 * alphabsd-tdep.h: New file.
8165 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
8166 (fetch_elfcore_registers): Use alphabsd_supply_reg and
8167 alphabsd_supply_fpreg.
8168 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
8169 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
8170
8171 2002-05-11 Eric Christopher <echristo@redhat.com>
8172
8173 * mips-tdep.c (mips_double_register_type): Fix thinko.
8174 (mips_single_register_type): Ditto.
8175 * MAINTAINERS: Add self.
8176
8177 2002-05-11 Mark Kettenis <kettenis@gnu.org>
8178
8179 * i387-nat.c (i387_supply_register, i387_fill_fsave,
8180 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
8181 right thing on architectures with different endianness and/or
8182 integer sizes.
8183
8184 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
8185
8186 From Christian Limpach <chris@Pin.LU>
8187 * configure.in: Change sed expression which comments out
8188 NATDEPFILES to also comment out continuation lines.
8189 * configure: Regenerate.
8190
8191 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8192
8193 * sh-tdep.c: Clean up code erroneously reintroduced by previous
8194 big patch.
8195
8196 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8197
8198 * sh-tdep.c: Include correct file.
8199
8200 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8201
8202 New support for sh64-elf (sh5) target.
8203
8204 * configure.tgt: For sh64-elf target, default to sh-elf.
8205
8206 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
8207 (struct gdbarch_tdep): Add new fields for new registers and ABI
8208 info.
8209
8210 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
8211 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
8212 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
8213 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
8214 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
8215 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
8216 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
8217 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
8218 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
8219 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
8220 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
8221 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
8222 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
8223 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
8224 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
8225 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
8226 sh64_get_gdb_regnum, sh64_media_reg_base_num,
8227 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
8228 sign_extend, sh64_nofp_frame_init_saved_regs,
8229 sh64_init_extra_frame_info, sh64_get_saved_register,
8230 sh64_extract_struct_value_address, sh64_pop_frame,
8231 sh64_push_arguments, sh64_extract_return_value,
8232 sh64_store_return_value, sh64_show_media_regs,
8233 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
8234 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
8235 sh_sh64_register_virtual_type,
8236 sh_sh64_register_convert_to_virtual,
8237 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
8238 sh64_register_read, sh64_pseudo_register_write,
8239 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
8240 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
8241 sh64_do_pseudo_register, sh_compact_do_registers_info,
8242 sh64_do_registers_info, sh_gdbarch_init): New functions.
8243
8244 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
8245
8246 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
8247
8248 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
8249
8250 * linespec.c (decode_line_1): Check for a double quote after
8251 a filename correctly.
8252
8253 2002-05-10 Jim Blandy <jimb@redhat.com>
8254
8255 Properly track the size of the current objfile's .debug_line section.
8256 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
8257 (DWARF_LINE_SIZE): New macro.
8258 (dwarf2_build_psymtabs_hard): Record the line section's size in
8259 the partial symbol table.
8260 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
8261 symbol table.
8262
8263 2002-05-10 Petr Sorfa <petrs@caldera.com>
8264
8265 * ia64-tdep.c: Handle breakpoints on L instruction type
8266 in MLX instruction bundle by moving the breakpoint to
8267 the third slot (X instruction type) as L holds only data.
8268
8269 2002-05-10 Kevin Buettner <kevinb@redhat.com>
8270
8271 * dbxread.c (discarding_local_symbols_complaint): New complaint.
8272 (process_one_symbol): Complain about discarding local symbols
8273 due to a misplaced N_LBRAC entry.
8274
8275 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
8276
8277 From Daniel Berlin <dan@cgsoftware.com>
8278 * linespec.c (find_toplevel_char): '<' and '>' also increase and
8279 decrease the depth we are at, in the case of templates.
8280
8281 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
8282
8283 * mips-tdep.c (mips_float_register_type): New function.
8284 (mips_double_register_type): New function.
8285 (mips_print_register): Use them.
8286 (do_fp_register_row): Likewise.
8287
8288 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
8289
8290 * signals/signals.c (signals): Remove conditional compilation around
8291 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
8292 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
8293
8294 2002-05-09 Michael Snyder <msnyder@redhat.com>
8295
8296 * remote-rdp.c (remote_rdp_can_run): Remove.
8297
8298 2002-05-09 Tom Tromey <tromey@redhat.com>
8299
8300 * jv-valprint.c (java_val_print): Handle `char' as a special case
8301 of TYPE_CODE_INT.
8302
8303 2002-05-09 Michael Snyder <msnyder@redhat.com>
8304
8305 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
8306 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
8307 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
8308 str r(0123),[sp,#nn].
8309 (arm_skip_prologue): Ditto. Also make disassembly
8310 order-independent by placing it in a loop.
8311
8312 2002-05-06 Michael Snyder <msnyder@redhat.com>
8313
8314 * stabsread.c (read_type): Add recognition for new attribute:
8315 "@V;" means that an array type is actually a vector.
8316 This is analogous to the vector flag that's been added to dwarf2.
8317
8318 2002-05-09 Mark Kettenis <kettenis@gnu.org>
8319
8320 * i386-tdep.h (i386_abi): New enum.
8321 (struct gdbarch_tdep): Replace os_ident member with abi.
8322 (i386_gdbarch_register_os_abi): New prototype.
8323 * i386-tdep.c (i386_abi_names): New array.
8324 (process_note_abi_tag_sections): Removed.
8325 (process_note_sections): New function.
8326 (i386_elf_abi_from_note, i386_elf_abi): New functions.
8327 (struct i386_abi_handler): New struct.
8328 (i386_abi_handler_list): New variable.
8329 (i386_gdbarch_register_os_abi): New function.
8330 (i386_gdbarch_init): Adapt for the changes given above.
8331
8332 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
8333
8334 * gregset.h: Say "GNU/Linux".
8335
8336 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
8337
8338 * gdbtypes.c : Add new builtin type for 64 bit vectors.
8339 (build_gdbtypes): Build builtin_type_v2_float.
8340 (_initialize_gdbtypes): Register new builtin type.
8341
8342 2002-05-08 Andrew Cagney <ac131313@redhat.com>
8343
8344 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
8345 (clear_gdbarch_swap): New function.
8346 (initialize_non_multiarch): Call.
8347 (gdbarch_update_p): Before calling init(), swap out and clear the
8348 existing architecture.
8349 * gdbarch.c: Regenerate.
8350
8351 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8352
8353 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
8354 alphanbsd-tdep.c.
8355
8356 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8357
8358 * sh-nbsd-nat.c: Rename to...
8359 * shnbsd-nat.c: ...this.
8360 * sh-nbsd-tdep.c: Rename to...
8361 * shnbsd-tdep.c: ...this.
8362 * sh-nbsd-tdep.h: Rename to...
8363 * shnbsd-tdep.h: ...this.
8364 * config/sh/nbsd.mh: Use shnbsd-nat.o.
8365 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
8366
8367 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
8368
8369 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
8370 concatenation for command help messages.
8371
8372 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8373
8374 * NEWS: Note new sh*-*-netbsdelf* configuration.
8375 * configure.host: Set gdb_host_cpu to sh for all sh*.
8376 (sh*-*-netbsdelf*): New host.
8377 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
8378 (sh*-*-netbsdelf*): New target.
8379 * sh-nbsd-nat.c: New file.
8380 * sh-nbsd-tdep.c: New file.
8381 * sh-nbsd-tdep.h: New file.
8382 * config/sh/nbsd.mh: New file.
8383 * config/sh/nbsd.mt: New file.
8384 * config/sh/nm-nbsd.h: New file.
8385 * config/sh/tm-nbsd.h: New file.
8386
8387 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8388
8389 * sh-tdep.c (sh_osabi_names): Declare.
8390 (process_note_abi_tag_sections): New function.
8391 (get_elfosabi): Ditto.
8392 (sh_gdbarch_register_os_abi): Ditto.
8393 (sh_dump_tdep): Ditto.
8394 _initialize_sh_tdep): Use gdbarch_register to register
8395 sh_gdbarch_init and sh_dump_tdep.
8396 * config/sh/tm-sh.h (sh_osabi): Declare.
8397 (gdbarch_tdep): Add sh_osabi and osabi_name members.
8398
8399 2002-05-07 Andrew Cagney <ac131313@redhat.com>
8400
8401 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
8402 (thumb_scan_prologue): Ditto.
8403 (arm_find_callers_reg): Ditto.
8404 (arm_frame_chain): Ditto.
8405 (arm_init_extra_frame_info): Ditto.
8406 (arm_frame_saved_pc): Ditto.
8407 (arm_pop_frame): Ditto.
8408 (arm_push_return_address): New function.
8409 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
8410 call_dummy_location, call_dummy_breakpoint_offset_p,
8411 call_dummy_breakpoint_offset, call_dummy_p,
8412 call_dummy_stack_adjust_p, call_dummy_words,
8413 sizeof_call_dummy_words, call_dummy_start_offset,
8414 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
8415 call_dummy_address, push_return_address and push_dummy_frame for
8416 generic dummy frames.
8417
8418 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
8419
8420 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
8421 size computation for alloca.
8422 (sh_fp_frame_init_saved_regs): Likewise.
8423
8424 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
8425
8426 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
8427 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
8428 * arm-tdep.c (arm_store_return_value): Use them.
8429 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
8430 * remote-rdp.c (remote_rdp_fetch_register): Use
8431 ARM_MAX_REGISTER_RAW_SIZE.
8432 (remote_rdp_store_register): Likewise.
8433
8434 2002-05-07 Michal Ludvig <mludvig@suse.cz>
8435
8436 * dwarf2cfi.c: Code cleanup, removed unused variables,
8437 added default labels to switch {} statements.
8438 * x86-64-tdep.c: Ditto.
8439 * x86-64-linux-nat.c: Ditto.
8440
8441 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
8442
8443 * solib.h: Protect against multiple inclusion.
8444
8445 2002-05-06 Jim Blandy <jimb@redhat.com>
8446
8447 Add first preprocessor macro-expansion files.
8448 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
8449 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
8450 (splay_tree_h, macroexp_h, macrotab_h): New variable.
8451 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
8452 (COMMON_OBS): Add macrotab.o, macroexp.o.
8453 (macroexp.o, macrotab.o): New rules.
8454
8455 Separate the job of reading the line number info statement program
8456 header (...expialidocious) out into its own function.
8457 * dwarf2read.c (struct line_head, struct filenames, struct
8458 directories): Replace with...
8459 (struct line_header): New structure, containing the full
8460 contents of the statement program header, including the
8461 include directory and file name tables.
8462 (read_file_scope): If we have line number info, instead of just
8463 calling dwarf_decode_lines to do all the work, call
8464 dwarf_decode_line_header first to get a `struct line_header'
8465 containing the data in the statement program header, and then
8466 pass that to dwarf_decode_lines, which will pick up where that
8467 left off. Be sure to clean up the `struct line_header' object.
8468 (dwarf_decode_line_header, free_line_header, add_include_dir,
8469 add_file_name): New functions.
8470 (dwarf_decode_lines): Move all the code to read the statement
8471 program header into dwarf_decode_line_header. Take the line
8472 header it built as the first argument, instead of the offset to
8473 the compilation unit's line number info. Use the new `struct
8474 line_header' type instead of the old structures. No need to do
8475 cleanups here now, since we don't allocate anything.
8476 (dwarf2_statement_list_fits_in_line_number_section,
8477 dwarf2_line_header_too_long): New complaints.
8478
8479 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
8480
8481 * gdbtypes.c (init_vector_type): New function.
8482 (build_builtin_type_vec128): Simplify the representation of SIMD
8483 registers.
8484 (build_gdbtypes): Initialize new builtin vector types.
8485 (_initialize_gdbtypes): Register new vector types with gdbarch.
8486 (builtin_type_v4_float, builtin_type_v4_int32,
8487 builtin_type_v8_int16, builtin_type_v16_int8,
8488 builtin_type_v2_int32, builtin_type_v4_int16,
8489 builtin_type_v8_int8): New (renamed) SIMD types.
8490
8491 2002-05-06 Mark Kettenis <kettenis@gnu.org>
8492
8493 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
8494 (i387_fill_fxsave): Likewise.
8495
8496 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
8497
8498 * alpha-tdep.c (alpha_extract_return_value): Don't use
8499 non-constant array size in prototype.
8500
8501 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8502
8503 From Brian Taylor <briant at model dot com>:
8504 * ui-out.c (ui_out_field_core_addr): Use the function
8505 longest_local_hex_string_custom'to format addresses > 32 bits
8506 wide.
8507
8508 * ui-out.c (ui_out_field_core_addr): Update comment.
8509
8510 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8511
8512 * stack.c (select_and_print_frame): Make static. Delete the
8513 parameter `level'.
8514 (func_command): Update call.
8515 (select_frame_command): Delete code computing the frame level.
8516 * frame.h (select_and_print_frame): Delete declaration.
8517
8518 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8519
8520 * sparc-tdep.c (sparc_get_saved_register): Comment why
8521 get_prev_frame call is safe.
8522
8523 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8524
8525 * frame.h (select_frame): Delete level parameter.
8526 * stack.c (select_frame): Update. Use frame_relative_level to
8527 obtain the frame's level.
8528 (select_and_print_frame): Update call.
8529 (select_frame_command): Ditto.
8530 (up_silently_base): Ditto.
8531 (down_silently_base): Ditto.
8532 * ocd.c (ocd_start_remote): Ditto.
8533 * remote-rdp.c (remote_rdp_open): Ditto.
8534 * remote-mips.c (mips_initialize): Ditto.
8535 (common_open): Ditto.
8536 * remote-e7000.c (e7000_start_remote): Ditto.
8537 * m3-nat.c (select_thread): Ditto.
8538 * hppa-tdep.c (child_get_current_exception_event): Ditto.
8539 (child_get_current_exception_event): Ditto.
8540 * varobj.c (varobj_create): Ditto.
8541 (varobj_update): Ditto.
8542 (c_value_of_root): Ditto.
8543 * tracepoint.c (finish_tfind_command): Ditto.
8544 * corelow.c (core_open): Ditto.
8545 * arch-utils.c (generic_prepare_to_proceed): Ditto.
8546 * thread.c (info_threads_command): Ditto.
8547 (switch_to_thread): Ditto.
8548 * infrun.c (normal_stop): Ditto.
8549 (restore_selected_frame): Ditto.
8550 (restore_inferior_status): Ditto.
8551 * breakpoint.c (insert_breakpoints): Ditto.
8552 (watchpoint_check): Ditto.
8553 (bpstat_stop_status): Ditto.
8554 (do_enable_breakpoint): Ditto.
8555 * blockframe.c (flush_cached_frames): Ditto.
8556 (reinit_frame_cache): Ditto.
8557
8558 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8559
8560 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
8561 maintainer.
8562
8563 2002-05-04 Jim Blandy <jimb@redhat.com>
8564
8565 * gdbtypes.c (replace_type): Doc fix.
8566
8567 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8568
8569 * valprint.c (strcat_longest): Delete commented out function.
8570 Update copyright.
8571
8572 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8573
8574 * MAINTAINERS: Mark a29k as deleted.
8575 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
8576 Move new configurations to the top.
8577 * configure.tgt: Remove a29k.
8578 * config/a29k/tm-vx29k.h: Delete.
8579 * config/a29k/vx29k.mt: Delete.
8580 * config/a29k/tm-a29k.h: Delete.
8581 * config/a29k/a29k-udi.mt: Delete.
8582 * config/a29k/a29k.mt: Delete.
8583 * a29k-tdep.c: Delete.
8584 * remote-udi.c: Delete.
8585 * remote-mm.c: Delete.
8586 * remote-eb.c: Delete.
8587 * remote-adapt.c: Delete.
8588 * Makefile.in: Remove obsolete code.
8589 * config/s390/s390x.mt: Ditto.
8590 * config/s390/s390.mt: Ditto.
8591 * config/sparc/sparclynx.mh: Ditto.
8592 * config/sparc/linux.mh: Ditto.
8593 * config/pa/hppaosf.mh: Ditto.
8594 * config/pa/hppabsd.mh: Ditto.
8595 * config/ns32k/nbsd.mt: Ditto.
8596 * config/mips/vr5000.mt: Ditto.
8597 * config/m68k/sun3os4.mh: Ditto.
8598 * config/m68k/nbsd.mt: Ditto.
8599 * config/m68k/m68klynx.mh: Ditto.
8600 * config/m32r/m32r.mt: Ditto.
8601 * config/i386/x86-64linux.mt: Ditto.
8602 * config/i386/nbsdelf.mt: Ditto.
8603 * config/i386/nbsd.mt: Ditto.
8604 * config/i386/i386lynx.mh: Ditto.
8605
8606 2002-05-04 Andrew Cagney <ac131313@redhat.com>
8607
8608 * target.c (debug_print_register): New function. Handle oversize
8609 registers.
8610 (debug_to_fetch_registers): Call.
8611 (debug_to_store_registers): Call.
8612
8613 2002-05-03 Jim Blandy <jimb@redhat.com>
8614
8615 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
8616 (read_type): Doc fix.
8617 * gdbtypes.c (replace_type): Doc fix.
8618
8619 * stabsread.c (multiply_defined_struct): New complaint.
8620 (read_struct_type): If the type we were passed isn't empty, or
8621 incomplete, don't read the new struct type into it; complain,
8622 and return the original type unchanged. Take a new `type_code'
8623 argument, which is the type code for the new type.
8624 (read_type): Rather than storing the type's type code here, pass
8625 it as an argument to read_struct_type, and let that take care of
8626 storing it. That way, we don't overwrite the original type code,
8627 so read_struct_type can use it to decide whether we're overwriting
8628 something we shouldn't.
8629 (complain_about_struct_wipeout): New function.
8630
8631 2002-05-03 Andrew Cagney <ac131313@redhat.com>
8632
8633 * gdbarch.sh: Assert that gdbarch is non-NULL.
8634 * gdbarch.c: Regenerate.
8635
8636 2002-05-03 Jason Merrill <jason@redhat.com>
8637
8638 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
8639 and return NULL.
8640
8641 2002-05-03 Michal Ludvig <mludvig@suse.cz>
8642
8643 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
8644 (x86_64_dwarf2gdb_regno_map_length),
8645 (x86_64_dwarf2_reg_to_regnum): Added.
8646 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
8647 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
8648 (_initialize_x86_64_tdep): Synced with the change above.
8649 (x86_64_skip_prologue): Reformulated message.
8650
8651 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
8652
8653 * f-exp.y: Also use new prev_lexptr variable
8654 to improve error reporting. Based on Michael Snyder
8655 2002-04-24 dated patch to c-exp.y.
8656 * jv-exp.y: Likewise.
8657 * m2-exp.y: Likewise.
8658
8659 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
8660
8661 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
8662 we are dealing with vectors.
8663
8664 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8665
8666 * config/m68k/tm-nbsd.h: Obvious fix,
8667 correct machine name.
8668
8669 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8670
8671 * p-typeprint.c (pascal_type_print_base): Add support
8672 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
8673
8674 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8675
8676 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
8677 for fondamental pascal 'char' type.
8678
8679 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8680
8681 * p-lang.h (is_pascal_string_type): Declaration changed,
8682 new sixth argument of type char ** added.
8683 * p-lang.c (is_pascal_string_type): Implementation
8684 changed. Args length_pos, length_size, string_pos, char_size
8685 can now be NULL. New argument arrayname set to the field
8686 name of the char array. Return value set to char array
8687 field index plus one.
8688 * p-valprint.c (pascal_val_print): Adapt to new declaration of
8689 is_pascal_string_type function.
8690
8691 2002-05-02 Andrew Cagney <cagney@redhat.com>
8692
8693 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
8694 <cagney@redhat.com> change.
8695 * gdbarch.c: Regenerate.
8696
8697 2002-05-02 Andrew Cagney <cagney@redhat.com>
8698
8699 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
8700 before probing for a new one. Detect errorenous gdbarch_init
8701 functions.
8702 * gdbarch.c: Regenerate.
8703
8704 2002-05-01 Andrew Cagney <cagney@redhat.com>
8705
8706 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
8707 * config/mcore/tm-mcore.h: Ditto. Update copyright.
8708 * config/v850/tm-v850.h: Ditto. Update copyright.
8709
8710 2002-04-30 Andrew Cagney <ac131313@redhat.com>
8711
8712 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
8713 current_gdbarch.
8714
8715 2002-04-30 Michael Snyder <msnyder@redhat.com>
8716
8717 * arm-tdep.c: Whitespace clean-ups.
8718 (arm_skip_prologue): Fix thinko; two lines
8719 should have been removed as part of 4/24 change.
8720
8721 2002-04-30 Kevin Buettner <kevinb@redhat.com>
8722
8723 * rs6000-tdep.c: Added comment describing how fpscr register
8724 numbers were chosen.
8725
8726 2002-04-30 Michael Snyder <msnyder@redhat.com>
8727
8728 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
8729
8730 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
8731
8732 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
8733 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
8734 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
8735
8736 2002-04-29 Kevin Buettner <kevinb@redhat.com>
8737
8738 From Louis Hamilton <hamilton@redhat.com>:
8739 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
8740 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
8741 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
8742 not bfd-private xcoff data, to determine wordsize.
8743 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
8744
8745 2002-04-29 Andrew Cagney <ac131313@redhat.com>
8746
8747 GDB 5.2 released from 5.2 branch.
8748
8749 2002-04-29 Michal Ludvig <mludvig@suse.cz>
8750
8751 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
8752 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
8753 (x86_64_register_info_table): Added comments with register numbers.
8754
8755 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
8756
8757 * rs6000-tdep.c (rs6000_extract_return_value,
8758 rs6000_store_return_value): Handle returning vectors.
8759 (rs6000_gdbarch_init): Use
8760 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
8761 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
8762 New function.
8763 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
8764 vectors.
8765 (ppc_sysv_abi_push_arguments): Handle vector parameters.
8766 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
8767
8768 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8769
8770 * hpread.c (hpread_psymtab_to_symtab_1,
8771 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
8772 with fprintf_unfiltered (gdb_stderr,...).
8773
8774 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8775
8776 * remote-array.c (printf_monitor, write_monitor,
8777 array_insert_breakpoint, array_remove_breakpoint ):
8778 Replace fprintf (stderr,...
8779 with fprintf_unfiltered (gdb_stderr,....
8780 * remote-es.c: Likewise.
8781 * remote-os9k.c: Likewise.
8782 * remote-st.c: Likewise.
8783
8784 2002-04-28 Andreas Schwab <schwab@suse.de>
8785
8786 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
8787 linux-proc.o and gcore.o.
8788
8789 2002-04-26 Michal Ludvig <mludvig@suse.cz>
8790
8791 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
8792 code without frame pointers.
8793
8794 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8795
8796 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
8797 ON_STACK is needed.
8798
8799 2002-04-26 Ben Elliston <bje@redhat.com>
8800
8801 * target.c (do_xfer_memory): Correct reference to the new option
8802 "trust-readonly-sections".
8803
8804 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
8805
8806 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
8807 * gdbtypes.c (recursive_dump_type): Output the vector flag.
8808 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
8809 vectors.
8810 (read_array_type): Record the fact that this array type is really a
8811 vector (i.e. are passed in by value).
8812
8813 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
8814
8815 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
8816 * alpha-tdep.c (alpha_sigcontext_addr): New function.
8817 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
8818 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
8819 * alpha-linux-tdep.c: Include frame.h.
8820 (alpha_linux_sigcontext_addr): New function.
8821 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
8822 alpha_linux_sigcontext_addr.
8823 * alpha-osf1-tdep.c: Include gdbcore.h.
8824 (alpha_osf1_sigcontext_addr): New function.
8825 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
8826 alpha_osf1_sigcontext_addr.
8827 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
8828 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
8829
8830 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8831
8832 * stack.c (selected_frame_level):
8833 (select_frame): Do not set selected_frame_level.
8834 * frame.h (selected_frame_level): Delete declaration.
8835
8836 2002-04-26 Andrew Cagney <ac131313@redhat.com>
8837
8838 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
8839 convert_from_func_ptr-addr when AIX / PowerOpen.
8840
8841 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8842
8843 * valops.c (hand_function_call): Call
8844 generic_save_call_dummy_addr.
8845 * frame.h (generic_save_call_dummy_addr): Declare.
8846 * blockframe.c (struct dummy_frame): Add fields call_lo and
8847 call_hi.
8848 (generic_find_dummy_frame): Check for PC in range call_lo to
8849 call_hi instead of entry_point_address.
8850 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
8851 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
8852 (generic_save_call_dummy_addr): New function.
8853
8854 2002-04-24 David S. Miller <davem@redhat.com>
8855
8856 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
8857 sparc_skip_prologue.
8858 (sparc_skip_prologue): Kill frameless_p arg, and use line number
8859 information to find prologue when possible.
8860 (sparc_prologue_frameless_p): Call examine_prologue directly.
8861 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
8862 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
8863 second argument.
8864 (SKIP_PROLOGUE): Likewise.
8865
8866 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8867
8868 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
8869 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
8870 indicate that the condition it was testing is always true.
8871 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
8872 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8873 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8874
8875 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8876
8877 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
8878 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
8879 tdep->jb_pc and tdep->jb_elt_size.
8880 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
8881 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
8882 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
8883 * alpha-nat.c (get_longjmp_target): Remove.
8884 (JB_ELEMENT_SIZE): Ditto.
8885 (JB_PC): Ditto.
8886 * alpha-tdep.c (alpha_get_longjmp_target): New function.
8887 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
8888 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
8889 to alpha_get_longjmp_target.
8890 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
8891 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
8892 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
8893
8894 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8895
8896 * README: Update to GDB 5.2.
8897
8898 2002-04-25 Andrew Cagney <ac131313@redhat.com>
8899
8900 * gdbarch.sh (LC_ALL): Set to `c'.
8901
8902 2002-04-25 Theodore A. Roth <troth@verinet.com>
8903
8904 * avr-tdep.c: Ran through gdb_indent.sh.
8905
8906 2002-04-25 Theodore A. Roth <troth@verinet.com>
8907
8908 * MAINTAINERS: Add myself as AVR maintainer.
8909 * NEWS: Note new target avr.
8910
8911 2002-04-25 Theodore A. Roth <troth@verinet.com>
8912
8913 * Makefile.in: Add support for AVR target.
8914 * configure.tgt: Add support for AVR target.
8915 * avr-tdep.c: New file
8916 * config/avr/avr.mt: New file.
8917
8918 2002-04-25 Theodore A. Roth <troth@verinet.com>
8919
8920 * MAINTAINERS: Add myself to write-after-approval.
8921
8922 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
8923
8924 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
8925 with fprintf_unfiltered (gdb_stderr,....
8926
8927 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8928
8929 Fix PR gdb/508.
8930 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
8931
8932 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8933
8934 * p-exp.y: Also use new prev_lexptr variable
8935 to improve error reporting. Based on Michael Snyder
8936 2002-04-24 dated patch to c-exp.y.
8937
8938 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8939
8940 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
8941 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
8942 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
8943 to 0.
8944 * config/alpha/tm-alpha.h: Remove forward decls of struct type
8945 and struct value.
8946 (FUNCTION_START_OFFSET): Remove.
8947 (BREAKPOINT): Ditto.
8948
8949 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8950
8951 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
8952 * NEWS: Ditto.
8953
8954 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8955
8956 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
8957 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
8958 alpha_linux_pc_in_sigtramp.
8959 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
8960 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
8961 alpha_osf1_pc_in_sigtramp.
8962 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
8963 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
8964 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8965 alphafbsd_pc_in_sigtramp.
8966 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
8967 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8968 alphanbsd_pc_in_sigtramp.
8969 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
8970 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
8971
8972 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8973
8974 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
8975
8976 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8977
8978 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
8979 alphanbsd-tdep.c.
8980 (alphanbsd-nat.o): New dependency list.
8981 (alphanbsd-tdep.o): Ditto.
8982 * NEWS: Note new native NetBSD/alpha configuration.
8983 * alphanbsd-nat.c: New file.
8984 * alphanbsd-tdep.c: Ditto.
8985 * configure.host (alpha*-*-netbsd*): New host.
8986 * configure.tgt (alpha*-*-netbsd*): New target.
8987 * config/alpha/nbsd.mh: New file.
8988 * config/alpha/nbsd.mt: Ditto.
8989 * config/alpha/nm-nbsd.h: Ditto.
8990 * config/alpha/tm-nbsd.h: Ditto.
8991
8992 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8993
8994 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
8995 (alpha-osf1-tdep.o): New dependency list.
8996 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
8997 and skip_sigtramp_frame members.
8998 * alpha-linux-tdep.c: Include gdbcore.h.
8999 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
9000 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
9001 * alpha-osf1-tdep.c: New file.
9002 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
9003 alpha-osf1-dep.c.
9004 (alpha_frame_past_sigtramp_frame): New function.
9005 (alpha_dynamic_sigtramp_offset): Ditto.
9006 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
9007 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
9008 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
9009 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
9010 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
9011 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
9012 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
9013 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
9014 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
9015 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
9016 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
9017 to find_solib_trampoline_target.
9018 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
9019 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
9020 (SKIP_TRAMPOLINE_CODE): Remove.
9021 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9022 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9023 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
9024 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
9025 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
9026 (PROC_SIGTRAMP_MAGIC): Ditto.
9027 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9028 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9029 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
9030 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
9031 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
9032
9033 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
9034
9035 * NEWS: Note that Alpha targets are now multi-arch.
9036
9037 2002-04-24 Michael Snyder <msnyder@redhat.com>
9038
9039 * parser-defs.h (prev_lexptr): New external variable.
9040 * parse.c (parse_exp_1): Set prev_lexptr to null before
9041 calling the language-specific parser.
9042 * c-exp.y (yylex): Set prev_lexptr to start of current token.
9043 (yyerror): Use prev_lexptr in error reporting.
9044
9045 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
9046
9047 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
9048 * gregset.h: If FILL_FPXREGSET is defined, provide
9049 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
9050 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
9051 is defined, call fill_fpxregset.
9052
9053 2002-04-24 Roland McGrath <roland@frob.com>
9054
9055 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
9056 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
9057 (supply_gregset, supply_fpregset): New functions.
9058
9059 * gnu-nat.c (gnu_find_memory_regions): New function.
9060 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
9061 (gnu_xfer_memory): Add a cast.
9062
9063 2002-04-24 Michael Snyder <msnyder@redhat.com>
9064
9065 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
9066 loop. Add handling for "str lr, [sp, #-4]!" and for saves
9067 of argument regs ("str r(0123), [r11, #-nn"]).
9068 (arm_skip_prologue): Better handling for frameless functions.
9069 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
9070 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
9071
9072 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
9073
9074 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
9075 NUM_PSEUDO_REGS can be used.
9076
9077 2002-04-24 Andrew Cagney <ac131313@redhat.com>
9078
9079 * arch-utils.h: Update copyright.
9080
9081 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
9082 * gdbarch.h, gdbarch.c: Re-generate.
9083
9084 * inferior.h (IN_SIGTRAMP): Delete definition.
9085 * arch-utils.c (legacy_pc_in_sigtramp): New function.
9086 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
9087
9088 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
9089 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
9090 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
9091 (find_proc_framesize): Ditto.
9092 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
9093 (alpha_init_extra_frame_info): Ditto.
9094 * infrun.c (handle_inferior_event): Ditto.
9095 (handle_inferior_event): Ditto.
9096 (check_sigtramp2): Ditto.
9097 * blockframe.c (create_new_frame): Ditto.
9098 (get_prev_frame): Ditto.
9099 * ppc-linux-tdep.c: Update comments.
9100 * i386-linux-tdep.c: Update comments.
9101 * breakpoint.c (bpstat_what): Update comment.
9102
9103 2002-04-24 David S. Miller <davem@redhat.com>
9104
9105 * i960-tdep.c (register_in_window_p): New function.
9106 (i960_find_saved_register): Use it instead of
9107 REGISTER_IN_WINDOW_P.
9108 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
9109
9110 * symtab.h (find_stab_function_addr): Kill extern.
9111 * minsyms.c (find_stab_function_addr): Remove from here...
9112 * dbxread.c: ... to here, and mark it static.
9113
9114 2002-04-20 David S. Miller <davem@redhat.com>
9115
9116 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
9117 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
9118
9119 2002-04-21 David S. Miller <davem@redhat.com>
9120
9121 * remote-vxsparc.c (vx_read_register): Fix typo, we want
9122 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
9123 (vx_write_register): Likewise.
9124
9125 2002-04-23 J. Brobecker <brobecker@gnat.com>
9126
9127 * source.c (is_regular_file): New function.
9128 (openp): Check wether file to open is a regular file
9129 to avoid opening directories.
9130
9131 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9132
9133 * findvar.c (extract_signed_integer): Cast printf argument
9134 to suppress format warning.
9135 (extract_unsigned_integer): Likewise.
9136 * infcmd.c (registers_info): Likewise.
9137 * top.c (get_prompt_1): Likewise.
9138 * valops.c (value_assign): Likewise.
9139 * valprint.c (print_decimal): Likewise.
9140
9141 2002-04-22 H.J. Lu (hjl@gnu.org)
9142
9143 * c-exp.y (typebase): Support
9144
9145 [long|long long|short] [signed|unsigned] [int|]
9146
9147 and
9148
9149 signed [long|long long|short] int
9150
9151 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9152
9153 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
9154 and vax-tdep.h.
9155 * vax-tdep.h: New file.
9156 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
9157 Make several routines static.
9158 (vax_get_saved_register): New function.
9159 (vax_gdbarch_init): New function.
9160 (_initialize_vax_tdep): Register vax_gdbarch_init.
9161 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
9162 Remove macros now under the control of gdbarch.
9163
9164 2002-04-22 Michael Snyder <msnyder@redhat.com>
9165
9166 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
9167 Some whitespace and coding standards tweaks.
9168
9169 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9170
9171 * vax-tdep.c: Include regcache.h.
9172 (vax_call_dummy_words): New.
9173 (sizeof_vax_call_dummy_words): New.
9174 (vax_fix_call_dummy): New function.
9175 (vax_saved_pc_after_call): Ditto.
9176 * config/vax/tm-vax.h: Don't include regcache.h.
9177 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
9178 (CALL_DUMMY): Remove.
9179 (CALL_DUMMY_WORDS): Define.
9180 (SIZEOF_CALL_DUMMY_WORDS): Define.
9181 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
9182
9183 2002-04-18 Michael Snyder <msnyder@redhat.com>
9184
9185 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
9186
9187 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9188
9189 * vax-tdep.c (vax_frame_chain): New function.
9190 (vax_push_dummy_frame): Ditto.
9191 (vax_pop_frame): Ditto.
9192 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
9193 (FRAMELESS_FUNCTION_INVOCATION): Use
9194 generic_frameless_function_invocation_not.
9195 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
9196 (POP_FRAME): Use vax_pop_frame.
9197
9198 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9199
9200 * vax-tdep.c (vax_store_struct_return): New function.
9201 (vax_extract_return_value): Ditto.
9202 (vax_store_return_value): Ditto.
9203 (vax_extract_struct_value_address): Ditto.
9204 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
9205 vax_store_struct_return.
9206 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
9207 (STORE_RETURN_VALUE): Use vax_store_return_value.
9208 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
9209
9210 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9211
9212 * vax-tdep.c (vax_frame_saved_pc): New function.
9213 (vax_frame_args_address_correct): Ditto.
9214 (vax_frame_args_address): Ditto.
9215 (vax_frame_locals_address): Ditto.
9216 (vax_frame_num_args): Move code to be in proximity to
9217 other frame-related functions.
9218 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
9219 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
9220 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
9221 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
9222 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
9223
9224 2002-04-22 H.J. Lu (hjl@gnu.org)
9225
9226 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
9227 includedir.
9228
9229 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9230
9231 * vax-tdep.c (vax_frame_init_saved_regs): New function.
9232 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
9233 (FRAME_INIT_SAVED_REGS): New macro.
9234
9235 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9236
9237 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
9238
9239 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9240
9241 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
9242 where needed.
9243 (fetch_osf_core_registers): Likewise.
9244 (supply_gregset): Likewise.
9245
9246 2002-04-22 J. Brobecker <brobecker@gnat.com>
9247
9248 * symfile.h (get_section_index): Define.
9249 * symfile.c (get_section_index): New function.
9250 * mdebugread.c (SC_IS_SBSS): New macro.
9251 (SC_IS_BSS): Return true for the scBss storage class only, as
9252 the scSBss storage class refers to the .sbss section.
9253 (parse_partial_symbols): Discard the symbols which associated
9254 section does not exist.
9255 Make sure to use the .sbss section index for symbols which
9256 storage class is scBss, rather than using the .bss section index.
9257
9258 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9259
9260 * vax-tdep.c: Update copyright years.
9261 (vax_register_name): New function.
9262 (vax_register_byte): Ditto.
9263 (vax_register_raw_size): Ditto.
9264 (vax_register_virtual_size): Ditto.
9265 (vax_register_virtual_type): Ditto.
9266 * config/vax/tm-vax.h: Update copyright years.
9267 (REGISTER_NAMES): Remove.
9268 (REGISTER_NAME): Define.
9269 (REGISTER_BYTE): Use vax_register_byte.
9270 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
9271 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
9272 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
9273
9274 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9275
9276 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
9277 declaration
9278 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
9279
9280 2002-04-21 David S. Miller <davem@redhat.com>
9281
9282 * arch-utils.c (generic_prologue_frameless_p): Kill
9283 SKIP_PROLOGUE_FRAMELESS_P code.
9284 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
9285 references.
9286 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
9287 * arc-tdep.c (arc_prologue_frameless_p): Implement.
9288 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
9289 references.
9290 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
9291 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
9292 (sparc_gdbarch_init): Pass it to
9293 set_gdbarch_prologue_frameless_p.
9294
9295 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9296
9297 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
9298 (alphabsd-nat.o): New dependency list.
9299
9300 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9301
9302 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
9303 alphafbsd-tdep.c.
9304 (alpha-linux-tdep.o): New dependency list.
9305 (alphafbsd-tdep.o): Likewise.
9306
9307 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9308
9309 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
9310 to here...
9311 * alpha-tdep.c: ...from here.
9312 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
9313
9314 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9315
9316 * config/alpha/tm-alpha.h: Move alpha_software_single_step
9317 prototype from here...
9318 * alpha-tdep.h: ...to here.
9319
9320 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9321
9322 * frame.h (selected_frame_level): Document as deprecated.
9323 (frame_relative_level): Declare.
9324 * stack.c (frame_relative_level): New function.
9325 (selected_frame_level): Document as deprecated.
9326 (select_frame): Do not set the selected_frame_level.
9327
9328 * stack.c (frame_info, record_selected_frame): Update.
9329 (frame_command, current_frame_command): Update.
9330 (up_silently_base, up_command, down_silently_base): Update.
9331 (down_command): Update.
9332 * inflow.c (kill_command): Update.
9333 * tracepoint.c (finish_tfind_command): Update.
9334 * corelow.c (core_open): Update.
9335 * thread.c (info_threads_command): Update.
9336 (do_captured_thread_select): Update.
9337 * infcmd.c (finish_command): Update.
9338 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
9339
9340 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9341
9342 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
9343
9344 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9345
9346 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
9347 type const.
9348
9349 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9350
9351 * alphafbsd-tdep.c: Update copyright years. Include
9352 alpha-tdep.h.
9353 (alphafbsd_use_struct_convention): Make static.
9354 (alphafbsd_init_abi): New function.
9355 (_initialize_alphafbsd_tdep): New function.
9356 * config/alpha/tm-fbsd.h: Update copyright years.
9357 (USE_STRUCT_CONVENTION): Remove.
9358
9359 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9360
9361 * alpha-tdep.c (alpha_abi_handler): New structure to describe
9362 an Alpha ABI variant.
9363 (alpha_abi_handler_list): Declare.
9364 (alpha_gdbarch_register_os_abi): New function.
9365 (alpha_gdbarch_init): Give registered ABI variant handlers a
9366 chance to tweak the gdbarch once we have set up defaults.
9367 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
9368
9369 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9370
9371 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
9372 to standard_coerce_float_to_double.
9373 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
9374
9375 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9376
9377 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
9378 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
9379 from gdbarch_tdep rather than a constant.
9380 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
9381 the default text address for all Alpha Unix ABIs.
9382 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
9383 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
9384
9385 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9386
9387 * alpha-tdep.h: New file. Includes several Alpha target constants
9388 taken from...
9389 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
9390 let gdbarch deal with.
9391 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
9392 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
9393 to dependency list.
9394 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
9395 Alpha target register names.
9396 * alphabsd-nat.c: Likewise.
9397 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
9398 Alpha target register names. Make serveral routines static.
9399 (alpha_get_saved_register): New function.
9400 (alpha_abi_names): New.
9401 (process_note_abi_tag_sections): New function.
9402 (get_elfosabi): New function.
9403 (alpha_gdbarch_init): New function.
9404 (alpha_dump_tdep): New function.
9405 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
9406
9407 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9408
9409 * frame.c (find_saved_register): Delete #ifdef
9410 HAVE_REGISTER_WINDOWS code.
9411 * config/sparc/tm-sparc.h: Update comments.
9412 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
9413
9414 2002-04-21 Andrew Cagney <ac131313@redhat.com>
9415
9416 * i960-tdep.c (i960_find_saved_register): New function.
9417 (i960_get_saved_register): New function.
9418 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
9419 (i960_get_saved_register): Declare.
9420 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
9421
9422 2002-04-20 David S. Miller <davem@redhat.com>
9423
9424 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
9425
9426 2002-04-20 Andrew Cagney <ac131313@redhat.com>
9427
9428 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
9429 instead of NUM_PSEUDO_REGS.
9430
9431 2002-04-20 David S. Miller <davem@redhat.com>
9432
9433 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
9434 GDB_MULTI_ARCH_PARTIAL
9435 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
9436 define, let tm-sp64.h do it.
9437
9438 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
9439
9440 * frame.c (find_saved_register): Avoid a NULL pointer
9441 dereference and actually walk the frame list.
9442
9443 2002-04-20 Andrew Cagney <ac131313@redhat.com>
9444
9445 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
9446 sorted in most most-recent-used order. Document.
9447 * gdbarch.h, gdbarch.c: Regenerate.
9448
9449 2002-04-19 Andrew Cagney <ac131313@redhat.com>
9450
9451 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
9452 instead of ->prev.
9453 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
9454 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
9455 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
9456 instead of ->prev.
9457
9458 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
9459
9460 Fix PR gdb/471.
9461 * gdbtypes.c (init_simd_type): Rewrite using new functions.
9462 (build_builtin_type_vec128): Ditto.
9463 (append_composite_type_field): Fix calculation of type length in
9464 union case.
9465
9466 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
9467
9468 * config/djgpp/README: Update.
9469
9470 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
9471 compiler warnings.
9472
9473 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
9474
9475 * alpha-tdep.c (setup_arbitrary_frame): Rename...
9476 (alpha_setup_arbitrary_frame): ...to this.
9477 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
9478 for alpha_setup_arbitrary_frame.
9479
9480 2002-04-18 Andrew Cagney <cagney@redhat.com>
9481
9482 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
9483 * gdbarch.h, gdbarch.c: Regenerate.
9484
9485 * defs.h (breakpoint_from_pc_fn): Delete type definition.
9486 * target.h (memory_breakpoint_from_pc): Update declaration.
9487 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
9488
9489 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
9490 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
9491 * mem-break.c (memory_breakpoint_from_pc): Ditto.
9492 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
9493 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
9494 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
9495 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
9496 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
9497 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
9498 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
9499 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
9500 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
9501
9502 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
9503 const pointer.
9504 * monitor.c (monitor_insert_breakpoint): Ditto.
9505 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
9506
9507 * config/mcore/tm-mcore.h: Update copyright.
9508 * mem-break.c: Ditto.
9509 * xstormy16-tdep.c: Ditto.
9510
9511 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
9512
9513 * p-exp.y: Add precedence rule for '^' token.
9514 This removes the shift/reduce conflicts.
9515 Remove the comment concerning these shift/reduce conflicts.
9516
9517 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
9518
9519 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
9520 (registers_powerpc_nofp): New register set for processors
9521 without floating point unit.
9522
9523 2002-04-18 David S. Miller <davem@redhat.com>
9524
9525 * MAINTAINERS: Add myself to write-after-approval.
9526
9527 2002-04-17 Michael Snyder <msnyder@redhat.com>
9528
9529 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
9530
9531 2002-04-17 Andrew Cagney <ac131313@redhat.com>
9532
9533 * rs6000-tdep.c (frame_initial_stack_address): Use
9534 frame_register_read to read the alloca_reg.
9535
9536 2002-04-17 Andrew Cagney <ac131313@redhat.com>
9537
9538 * frame.c (find_saved_register): Find saved registers in the next
9539 not prev frame.
9540 Fix PR gdb/365.
9541
9542 2002-04-17 Andrew Cagney <ac131313@redhat.com>
9543
9544 * gdbarch.sh (LANG): Set to ``c''.
9545
9546 2002-04-15 Andrew Cagney <ac131313@redhat.com>
9547
9548 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
9549
9550 2002-04-15 Andrew Cagney <ac131313@redhat.com>
9551
9552 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
9553 Update copyright.
9554
9555 * hpread.c (hpread_get_lntt): Add declaration.
9556 Also fix PR gdb/391.
9557
9558 2002-04-14 Andrew Cagney <ac131313@redhat.com>
9559
9560 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
9561 * aclocal.m4, configure: Re-generate.
9562 Fix PR gdb/391.
9563
9564 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
9565
9566 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
9567 instead of tm_print_insn.
9568
9569 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
9570
9571 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
9572
9573 2002-04-14 Andrew Cagney <ac131313@redhat.com>
9574
9575 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
9576 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
9577 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
9578
9579 2002-04-12 Don Howard <dhoward@redhat.com>
9580
9581 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
9582 max_user_call_depth.
9583 (init_cmd_lists): Initialize the new value;
9584 * cli/cli-script.c (execute_user_command): Limit the call depth of
9585 user defined commands. This avoids a core-dump when user commands
9586 are infinitly recursive.
9587
9588 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9589
9590 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
9591 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
9592 from tdep struct instead of DEFAULT_LR_SAVE.
9593 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
9594 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
9595 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
9596
9597 2002-04-12 Michael Snyder <msnyder@redhat.com>
9598
9599 * Remote.c: Spelling fix.
9600 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
9601 If no symbol found for "sbrk", try "_sbrk".
9602 (make_output_phdrs): Use bfd_section_name.
9603 (gcore_copy_callback): Use bfd_section_name.
9604 * eval.c: Indentation fix-ups.
9605 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
9606 in case it gets applied to an address that is already
9607 in the instruction space.
9608 * cli/cli-decode.c (help_list): Allow long lines to wrap.
9609 * symfile.c: Fix indentation, long lines.
9610 * source.c: White space fix-up.
9611
9612 2002-04-12 Andrew Cagney <cagney@redhat.com>
9613
9614 * defs.h (read_relative_register_raw_bytes): Delete declaration.
9615 * frame.c (frame_register_read): New function. Return non-zero on
9616 success.
9617 (read_relative_register_raw_bytes_for_frame): Delete.
9618 (read_relative_register_raw_bytes): Delete.
9619 * frame.h (frame_register_read): Declare.
9620 * d30v-tdep.c: Update Copyright. Use frame_register_read.
9621 * sh-tdep.c: Ditto.
9622 * infcmd.c (do_registers_info): Ditto.
9623 * hppa-tdep.c: Ditto.
9624 * rs6000-tdep.c: Ditto.
9625 * h8500-tdep.c: Ditto.
9626 * mips-tdep.c: Ditto.
9627 * h8300-tdep.c: Ditto.
9628 * z8k-tdep.c: Ditto.
9629
9630 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9631
9632 From Jimi X <jimix@watson.ibm.com>:
9633 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
9634 64-bit SysV ABI.
9635
9636 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9637
9638 From Jimi X <jimix@watson.ibm.com>:
9639 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
9640 bfd info.
9641
9642 2002-04-12 Kevin Buettner <kevinb@redhat.com>
9643
9644 From Jimi X <jimix@watson.ibm.com>:
9645 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
9646 register sets for these processor variants.
9647
9648 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
9649
9650 * regformats/reg-ppc.dat: Support FPSCR.
9651
9652 2002-04-11 Kevin Buettner <kevinb@redhat.com>
9653
9654 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
9655 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
9656 Add fpscr as an invalid/unfetchable register.
9657 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
9658 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
9659 (fill_fpregset): Add support for register fpscr.
9660 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
9661 (fill_gregset): Account for the fact that register ``mq'' might
9662 not exist.
9663 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
9664 (registers_power): Add fpscr to register set at slot 71.
9665 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
9666 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
9667
9668 2002-04-11 Michael Snyder <msnyder@redhat.com>
9669
9670 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
9671 * configure: Regenerate.
9672 * config.in: Regenerate.
9673 * acconfig.h: Add define for _SYSCALL32.
9674 * core-sol2.c: Remove #define _SYSCALL32.
9675 * solib-legacy.c: Remove #define _SYSCALL32.
9676
9677 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9678
9679 * stack.c (select_frame): Cleanup internal error message, do not
9680 use %p.
9681
9682 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9683
9684 * stack.c (select_frame): Check that selected_frame and the
9685 specified level are as expected.
9686 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
9687 Update copyright.
9688 * frame.h (struct frame_info): Add field `level'. Update
9689 copyright.
9690 Work-in-progress PR gdb/464.
9691
9692 2002-04-10 Andrew Cagney <ac131313@redhat.com>
9693
9694 * maint.c (maint_print_section_info): Rename print_section_info.
9695 (print_bfd_section_info, print_objfile_section_info): Update.
9696 * inferior.h (struct gdbarch): Add opaque declaration.
9697 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
9698 * gdbarch.h: Regenerate.
9699
9700 2002-04-10 Michal Ludvig <mludvig@suse.cz>
9701
9702 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
9703 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
9704 (kernel_u_size): Added.
9705 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
9706 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
9707
9708 2002-04-04 Jim Ingham <jingham@apple.com>
9709
9710 * valarith.c (find_size_for_pointer_math): New function, either returns
9711 the size for a pointer's target, returns 1 for void *, or errors for
9712 incomplete types.
9713 (value_add, value_sub): use find_size_for_pointer_math.
9714
9715 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
9716
9717 * linux-low.c (linux_look_up_symbols): New hook.
9718 (linux_target_ops): Add linux_look_up_symbols.
9719 * remote-utils.c (decode_address): New function.
9720 (look_up_one_symbol): New function.
9721 * server.c (handle_query): Call target look_up_symbols hook.
9722 * server.h (look_up_one_symbol): Add prototype.
9723 * target.h (struct target_ops): Add look_up_symbols hook.
9724
9725 2002-04-09 Andrew Cagney <ac131313@redhat.com>
9726
9727 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
9728 override FP_REGNUM with frame->fp. Update copyright.
9729 * parse.c (num_std_regs, std_regs): Delete.
9730 (target_map_name_to_register): Do not search std_regs. Update
9731 function description.
9732 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
9733 declarations. Update copyright.
9734 Fix PR gdb/251.
9735
9736 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
9737
9738 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
9739 after the last symbol in a block.
9740
9741 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
9742
9743 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
9744 is non zero as a found symbol.
9745
9746 2002-04-08 Andrew Cagney <ac131313@redhat.com>
9747
9748 * findvar.c: Include "builtin-regs.h".
9749 (value_of_register): Call value_of_builtin_reg when applicable.
9750 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
9751 (target_map_name_to_register): Call
9752 builtin_reg_map_name_to_regnum.
9753 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
9754 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
9755 (builtin_regs_h): Define.
9756 (builtin-regs.o): New target.
9757 (findvar.o): Add $(builtin_regs_h).
9758 * builtin-regs.c, builtin-regs.h: New files.
9759 * std-regs.c: New file.
9760 Partial fix for PR gdb/251.
9761
9762 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9763
9764 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
9765 it's no longer required.
9766
9767 2002-04-08 Andrew Cagney <ac131313@redhat.com>
9768
9769 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
9770
9771 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9772
9773 From Jimi X <jimix@watson.ibm.com>:
9774 * rs6000-tdep.c (rs6000_software_single_step): Use
9775 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
9776 and size. Use target_insert_breakpoint() and
9777 target_remove_breakpoint() to insert and remove breakpoints
9778 instead of explicit memory reads and writes.
9779
9780 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9781
9782 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
9783 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
9784 ELF_OBJECT_FORMAT ifdef.
9785
9786 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9787
9788 From Jimi X <jimix@watson.ibm.com>:
9789 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
9790
9791 2002-04-08 Kevin Buettner <kevinb@redhat.com>
9792
9793 From Jimi X <jimix@watson.ibm.com>:
9794 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
9795 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
9796
9797 2002-04-07 Mark Kettenis <kettenis@gnu.org>
9798
9799 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
9800 s/asprintf/xasprintf/.
9801 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
9802
9803 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9804
9805 I believe Jeff Law denies responsability for this one:
9806 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
9807 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
9808 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
9809 Work-around for PR gdb/366.
9810
9811 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
9812
9813 * remote-e7000.c (write_small, e7000_read_inferior_memory,
9814 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
9815 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
9816
9817 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
9818
9819 * sh-tdep.c (sh_fp_frame_init_saved_regs,
9820 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
9821 information.
9822
9823 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9824
9825 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
9826 maintainer.
9827
9828 2002-04-07 Andrew Cagney <ac131313@redhat.com>
9829
9830 * README (Reporting Bugs in GDB): Document the bug web page as the
9831 prefered way of submitting bugs.
9832 Fix PR gdb/402.
9833
9834 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9835
9836 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
9837 -1. Update comment.
9838 * gdbarch.h, gdbarch.c: Re-generate.
9839
9840 2002-04-07 Andreas Schwab <schwab@suse.de>
9841
9842 * m68klinux-nat.c (fill_fpregset): Properly pass address of
9843 buffer to regcache_collect.
9844
9845 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9846
9847 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
9848 * gdbarch.c, gdbarch.h: Re-generate.
9849
9850 2002-04-06 Andrew Cagney <ac131313@redhat.com>
9851
9852 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
9853 declaration. Fix -Werror.
9854
9855 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
9856
9857 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
9858 * gdbarch.c: Regenerate.
9859
9860 2002-04-05 Michael Snyder <msnyder@redhat.com>
9861
9862 * breakpoint.c (clear_command): Rewrite middle section to
9863 combine two loops with identical control conditions.
9864 Add a cleanup to eliminate a memory leak.
9865 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
9866
9867 2002-04-05 H.J. Lu (hjl@gnu.org)
9868
9869 * solib-svr4.c (bkpt_names): Add "__start".
9870
9871 2002-04-04 Andrew Cagney <ac131313@redhat.com>
9872
9873 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
9874 as test for 64 bit target.
9875
9876 2002-04-05 Andrew Cagney <ac131313@redhat.com>
9877
9878 * h8500-tdep.c (h8500_write_fp): Delete function.
9879 * dwarf2cfi.c (cfi_write_fp): Document as not used.
9880 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
9881 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
9882 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
9883 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
9884 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
9885 (s390_write_fp):
9886 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
9887 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
9888 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
9889 (d10v_write_fp): Delete function.
9890 * inferior.h (write_fp, generic_target_write_fp): Delete
9891 declarations.
9892 * regcache.c (generic_target_write_fp): Delete function.
9893 (write_fp): Delete function.
9894 * gdbarch.sh (TARGET_WRITE_FP): Delete.
9895 * gdbarch.h, gdbarch.c: Regenerate.
9896 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
9897 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
9898 (sparc64_write_fp): Delete declaration.
9899 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
9900 (h8500_write_fp): Delete declaration.
9901
9902 2002-04-04 Andrew Cagney <ac131313@redhat.com>
9903
9904 * sparc-tdep.c (sparc64_write_fp): Delete.
9905 (sparc_push_dummy_frame): Replace write_fp call with code to store
9906 the FP directly.
9907 (sparc_gdbarch_init): Do not initialize write_fp.
9908
9909 2002-04-05 Kevin Buettner <kevinb@redhat.com>
9910
9911 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
9912 clause.
9913
9914 2002-03-29 Jim Blandy <jimb@redhat.com>
9915
9916 * stack.c (get_selected_block): Add new argument `addr_in_block',
9917 used to return the exact code address we used to select the block,
9918 not just the block.
9919 * blockframe.c (get_frame_block, get_current_block): Same.
9920 * frame.h (get_frame_block, get_current_block,
9921 get_selected_block): Update declarations.
9922 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
9923 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
9924
9925 2002-04-05 Michael Snyder <msnyder@redhat.com>
9926
9927 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
9928 warning message.
9929
9930 2002-04-05 J. Brobecker <brobecker@gnat.com>
9931
9932 * utils.c (xfullpath): New function.
9933 * defs.h (xfullpath): Add declaration.
9934 * source.c (openp): Use xfullpath in place of gdb_realpath to
9935 avoid resolving the basename part of filenames when the
9936 associated file is a symbolic link. This fixes a potential
9937 inconsistency between the filenames known to GDB and the
9938 filenames it prints in the annotations.
9939 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
9940 to be able to match a filename with either the real filename, or
9941 the name of any symbolic link to this file.
9942 (lookup_partial_symtab): Ditto.
9943
9944 2002-04-04 Michael Snyder <msnyder@redhat.com>
9945
9946 * breakpoint.c: Add support for hardware breakpoints in overlays.
9947 (overlay_events_enabled): New state variable.
9948 (insert_breakpoints): Use overlay_events_enabled to decide
9949 whether to attempt to set a breakpoint at the overlay load addr.
9950 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9951 (remove_breakpoint): Use overlay_events_enabled to decide
9952 whether breakpoints need to be removed from overlay load addr.
9953 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9954 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
9955 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
9956 disable_overlay_breakpoints): Update overlay_events_enabled.
9957
9958 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
9959
9960 * dwarf2read.c (struct function_range): New.
9961 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
9962 (check_cu_functions): New.
9963 (read_file_scope): Initialize global function lists.
9964 Call dwarf_decode_line after processing children.
9965 (read_func_scope): Add to global function list.
9966 (dwarf_decode_lines): Call check_cu_functions everywhere
9967 record_line is called. Call record_line with a linenumber
9968 of 0 to mark sequence ends.
9969
9970 2002-04-04 Michal Ludvig <mludvig@suse.cz>
9971
9972 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
9973 change sync with glibc.
9974
9975 2002-04-03 Jim Blandy <jimb@redhat.com>
9976
9977 * configure.in: Call AC_C_INLINE.
9978 * configure: Regenerated.
9979
9980 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
9981
9982 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
9983 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
9984
9985 2002-03-31 Mark Kettenis <kettenis@gnu.org>
9986
9987 * NEWS: Mention gcore support on FreeBSD/i386.
9988
9989 * fbsd-proc.c: New file.
9990 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
9991 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
9992
9993 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
9994 while statement.
9995
9996 2002-03-29 Jim Blandy <jimb@redhat.com>
9997
9998 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
9999 unescaped newlines in string literals, but newer ones don't. So
10000 escape them.
10001
10002 2002-03-26 Michael Snyder <msnyder@redhat.com>
10003 Andrew Cagney <cagney@redhat.com>
10004
10005 * cli/cli-dump.c: New file. Dump memory to file,
10006 restore file to memory.
10007 * cli/cli-dump.h: New file.
10008 * Makefile.in: Add rules, dependencies for cli-dump.o.
10009 * NEWS: Mention new commands.
10010
10011 2002-03-28 Michael Snyder <msnyder@redhat.com>
10012
10013 * symfile.c (symbol_file_add): Move test for null symbols to later.
10014
10015 2002-03-27 Andrew Cagney <ac131313@redhat.com>
10016
10017 From veksler at il.ibm.com:
10018 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
10019 the xstrduped original path.
10020 Fix PR gdb/417.
10021
10022 2002-03-27 Michael Snyder <msnyder@redhat.com>
10023
10024 * breakpoint.c (_initialize_breakpoint): Clean up help string.
10025 * infcmd.c (_initialize_infcmd): Ditto.
10026 * language.c (_initialize_language): Ditto.
10027 * symfile.c (_initialize_symfile): Ditto.
10028 * top.c (_init_main): Ditto.
10029 * cli/cli-cmds.c (init_cli_cmds): Ditto.
10030
10031 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
10032
10033 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
10034 vector registers handling.
10035 (skip_prologue): Handle new AltiVec instructions. Fill in new
10036 fields of frame data.
10037 (frame_get_saved_regs): Fill in information for AltiVec registers.
10038
10039 2002-03-27 Jim Blandy <jimb@redhat.com>
10040
10041 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
10042 a function; leave this macro here to invoke that function.
10043 (symbol_init_mangled_name): Declaration for that function.
10044 * symtab.c (symbol_init_mangled_name): New function.
10045
10046 2002-03-27 Andrew Cagney <ac131313@redhat.com>
10047
10048 * valarith.c: Replace strerror with safe_strerror.
10049 * tracepoint.c: Ditto.
10050 * lin-lwp.c: Ditto.
10051 * go32-nat.c: Ditto.
10052 * inflow.c: Ditto.
10053 * gnu-nat.c: Ditto.
10054
10055 2002-03-27 Andreas Schwab <schwab@suse.de>
10056
10057 * event-top.c (command_line_handler): Remove useless if.
10058
10059 2002-03-27 Andreas Jaeger <aj@suse.de>
10060
10061 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
10062 comment.
10063
10064 2002-03-27 Michal Ludvig <mludvig@suse.cz>
10065
10066 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
10067 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
10068 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
10069 (x86_64_linux_dr_get_status, supply_gregset),
10070 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
10071 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
10072 (x86_64_register_info_table): Add.
10073 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
10074 (x86_64_register_raw_size, x86_64_register_virtual_type),
10075 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
10076 general x86_64_register_info_table.
10077 (i386_gdbarch_init): gdbarch_register_bytes is now set
10078 dynamicaly during initialization.
10079 * regformats/reg-x86-64.dat: Synced with changes to registers above.
10080 * gdbserver/linux-x86-64-low.c: Ditto.
10081
10082 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
10083
10084 * gdbserver/server.c (main): Call target_signal_to_host_p
10085 and target_signal_to_host on signals received from the remote.
10086 * gdbserver/remote-utils.c (prepare_resume_reply): Call
10087 target_signal_from_host on signals sent to the remote.
10088 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
10089 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
10090
10091 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
10092
10093 * signals/signals.c: Include "server.h" in gdbserver build.
10094 (target_signal_from_name): Don't use STREQ.
10095 (_initialize_signals): Likewise. Don't include function in
10096 gdbserver build.
10097
10098 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
10099
10100 * signals.c: Moved to...
10101 * signals/signals.c: Here.
10102 * Makefile (signals.o): Update.
10103
10104 2002-03-26 Jeff Law (law@redhat.com)
10105
10106 * somread.c (som_symtab_read): Remove some commented out code and
10107 updated related comments. Do not set the minimal symbol table to
10108 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
10109 in a dynamic executable.
10110 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
10111 where we are unable to find the minimal symbol for the given
10112 PC value.
10113
10114 2002-03-25 Jeff Law (law@redhat.com)
10115
10116 * linux-proc.c (read_mapping): Scan up to end of line for filename.
10117
10118 2002-03-25 Michal Ludvig <mludvig@suse.cz>
10119
10120 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
10121
10122 2002-03-23 Andrew Cagney <ac131313@redhat.com>
10123
10124 * command.h: Update copyright.
10125 (struct cmd_list_element): Replace definition with opaque
10126 declaration.
10127 (enum cmd_types): Document that it will eventually be moved to
10128 cli/cli-decode.h
10129 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
10130 (MALLOCED_REPLACEMENT): Delete macro.
10131 * Makefile.in (cli_decode_h): Add $(command_h).
10132 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
10133 * top.c: Include "cli/cli-decode.h".
10134 * completer.c: Include "cli/cli-decode.h".
10135 * maint.c: Include "cli/cli-decode.h".
10136 * cli/cli-decode.h: Include "command.h".
10137 (enum command_class): Delete.
10138 (enum cmd_types): Comment out.
10139 (enum cmd_auto_boolean): Delete.
10140 (enum var_types): Delete.
10141
10142 2002-03-23 Andrew Cagney <ac131313@redhat.com>
10143
10144 * cli/cli-decode.c: Include "gdb_assert.h".
10145 (add_set_or_show_cmd): New static function.
10146 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
10147 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
10148 all fields, such as func, from the set command.
10149
10150 2002-03-23 Andrew Cagney <ac131313@redhat.com>
10151
10152 * MAINTAINERS (sh-elf): Change warning flag to -w.
10153
10154 2002-03-23 Andrew Cagney <cagney@redhat.com>
10155
10156 * defs.h (error): Add printf format attribute.
10157 * thread-db.c (thread_from_lwp): Fix error format string.
10158 * stack.c (parse_frame_specification): Ditto.
10159 * cli/cli-decode.c (undef_cmd_error): Ditto.
10160 * scm-lang.c (scm_lookup_name): Ditto.
10161 * tracepoint.c (trace_error): Ditto.
10162 * remote-utils.c (usage): Ditto.
10163 * remote.c (compare_sections_command): Ditto.
10164 Fix PR gdb/328.
10165
10166 2002-03-22 Andrew Cagney <ac131313@redhat.com>
10167
10168 * gdbtypes.c (append_composite_type_field): New function.
10169 (init_composite_type): New function.
10170 * gdbtypes.h (append_composite_type_field): Declare.
10171 (init_composite_type): Ditto.
10172
10173 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
10174
10175 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
10176 function.
10177 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
10178 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
10179 structure returning convention for SYSV ABI case, but not
10180 for GNU/Linux, FreeBSD, or NetBSD.
10181
10182 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
10183
10184 * symtab.h (lookup_block_symbol): Add mangled_name argument
10185 to prototype.
10186
10187 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
10188 with new mangled_name argument.
10189 * linespec.c (decode_line_1): Likewise.
10190 * valops (value_of_this): Likewise.
10191 * symtab.c (lookup_transparent_type): Likewise.
10192 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
10193 (lookup_symbol): If we are given a mangled name, pass it down
10194 to lookup_symbol_aux.
10195 (lookup_block_symbol): If we are given a mangled name to check
10196 against, only return symbols which match it.
10197
10198 2002-03-22 Christopher Faylor <cgf@redhat.com>
10199
10200 * win32-nat.c (child_create_inferior): Check for proper shell to use
10201 here, in case the user changes it on the fly.
10202 (_initialize_inftarg): Remove shell path considerations.
10203
10204 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
10205
10206 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
10207 for gdbarch_max_register_raw_size and max_register_virtual_size.
10208 Adjust copyright year.
10209
10210 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
10211
10212 * dbxread.c (process_one_symbol): Extend the first N_SLINE
10213 in a function to cover the entire beginning of the function
10214 as well if it does not already.
10215
10216 2002-03-21 Tom Rix <trix@redhat.com>
10217
10218 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
10219 (rs6000_ptrace64): Renamed from ptrace64.
10220
10221 2002-03-20 Martin M. Hunt <hunt@redhat.com>
10222
10223 * gdbserver/remote-utils.c (remote_open): Don't call
10224 getprotobyname, we're all using TCP here so just use
10225 IPPROTO_TCP.
10226 * gdbserver/gdbreplay.c (remote_open): Ditto.
10227
10228 2002-03-20 Martin M. Hunt <hunt@redhat.com>
10229
10230 * regcache.c (_initialize_regcache): No need to call
10231 build_regcache() at this time; it gets called whenever
10232 the gdbarch changes.
10233
10234 2002-03-20 David O'Brien <obrien@FreeBSD.org>
10235
10236 * sparc-nat.c: Include sys/param.h where possible.
10237
10238 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
10239
10240 Fix PR gdb/422.
10241 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
10242 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
10243 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
10244 complex types.
10245 * stabsread.c (rs6000_builtin_type): Likewise.
10246 (read_sun_floating_type): Likewise.
10247
10248 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10249
10250 * stabsread.c (read_member_functions): Remove skip code for duplicate
10251 constructor/destructor methods. Use standard parsing for these
10252 methods and just do not chain them to the list of methods after
10253 parsing.
10254
10255 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
10256
10257 * coffread.c: Remove redundant static declarations. Replace
10258 occurrences of `PTR' with `void *'.
10259 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
10260 * top.h (quit_cover): Likewise.
10261 * defs.h (catch_errors): Likewise.
10262
10263 2002-03-18 Andrew Cagney <ac131313@redhat.com>
10264
10265 * defs.h (XMALLOC): Define.
10266 * gdb-events.sh (XMALLOC): Delete macro.
10267 * gdb-events.c, gdb-events.h: Regenerate.
10268 * gdbarch.sh (XMALLOC): Delete macro.
10269 * gdbarch.c: Regenerate.
10270 * serial.c (XMALLOC): Delete macro.
10271 * ui-file.c (XMALLOC): Ditto.
10272 * ser-unix.h (XMALLOC): Ditto.
10273 * sh-tdep.c (XMALLOC): Ditto.
10274 * ui-out.c (XMALLOC): Ditto.
10275 * utils.c (XMALLOC): Ditto.
10276 * i386-tdep.c (XMALLOC): Ditto.
10277 * gdb-events.c (XMALLOC): Ditto.
10278 * d10v-tdep.c (XMALLOC): Ditto.
10279 * cli-out.c (XMALLOC): Ditto.
10280
10281 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
10282 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
10283 * ui-file.c, ui-out.c: Ditto.
10284
10285 2002-03-18 Andrew Cagney <ac131313@redhat.com>
10286
10287 * command.h (struct cmd_list_element): Add field context.
10288 (set_cmd_context, get_cmd_context): Declare.
10289 * cli/cli-decode.h: Ditto.
10290 * cli/cli-decode.c (get_cmd_context): New function.
10291 (set_cmd_context): New function.
10292 (add_cmd): Initialize context.
10293 Part of fixing PR gdb/145 and PR gdb/146.
10294
10295 2002-03-17 Andrew Cagney <ac131313@redhat.com>
10296
10297 * cli/cli-decode.c (cmd_type): New function.
10298 * command.h (cmd_type): Declare.
10299 * infrun.c (set_schedlock_func): Call function cmd_type.
10300 * kod.c (kod_set_os): Call cmd_type.
10301 * cris-tdep.c (cris_version_update): Use function cmd_type.
10302 (cris_mode_update, cris_abi_update): Ditto.
10303
10304 * command.h: (execute_cmd_post_hook): Declare.
10305 (execute_cmd_pre_hook): Declare.
10306 * cli/cli-script.c (clear_hook_in_cleanup): New function.
10307 (execute_cmd_post_hook, execute_cmd_pre_hook): New
10308 functions. Execute pre/post hook while ensuring that afterwords
10309 hook_in is cleared.
10310 * top.c (execute_command): Use execute_cmd_post_hook, and
10311 execute_cmd_pre_hook to execute pre/post commands.
10312 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
10313 hook_stop_stub.
10314 (hook_stop_stub): Call execute_cmd_pre_hook.
10315
10316 2002-03-17 Andrew Cagney <ac131313@redhat.com>
10317
10318 * kod.c (kod_set_os): Revert previous change. Is called by ``info
10319 set'' and this leads to a core dump. Move xstrdup of
10320 operating_system to after check that it is not NULL.
10321
10322 2002-03-17 Andrew Cagney <ac131313@redhat.com>
10323
10324 * kod.c (kod_set_os): Remove unnecessary check that
10325 ``command->type'' is set_cmd.
10326
10327 * valprint.c (set_input_radix): Use input_radix.
10328 (set_output_radix): Use output_radix.
10329 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
10330 isn't reverted.
10331
10332 2002-03-16 Andrew Cagney <ac131313@redhat.com>
10333
10334 * value.h (struct value): Delete field ``substring_addr''. Change
10335 aligner fields to force_doublest_align, force_longest_align,
10336 force_core_addr_align and force_pointer_aligh.
10337
10338 * value.h (struct value): Fix typo in above change.
10339
10340 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10341
10342 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
10343 to fix internal_error from ``maintenance print architecture''.
10344
10345 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10346
10347 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
10348 for gcc versions after gcc-2.8.1.
10349
10350 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10351
10352 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
10353 for method resolution. Restore adjustment of ``this'' pointer after
10354 calling value_struct_elt, which was accidentally removed during the
10355 HP merge.
10356
10357 2002-03-15 Andrew Cagney <ac131313@redhat.com>
10358
10359 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
10360 value_of_register.
10361 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
10362 get_saved_register.
10363 * value.h (value_of_register): Update.
10364
10365 2002-03-14 Richard Henderson <rth@redhat.com>
10366
10367 * configure.in: Detect declaration for canonicalize_file_name.
10368 * utils.c (canonicalize_file_name): Declare, if needed.
10369 (gdb_realpath): Prefer realpath if available and usable.
10370 * config.in, configure: Rebuild.
10371
10372 2002-03-14 Richard Henderson <rth@redhat.com>
10373
10374 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
10375 a constant array bound.
10376
10377 * MAINTAINERS: Add myself to write-after-approval.
10378
10379 2002-03-14 Michael Snyder <msnyder@redhat.com>
10380
10381 * symfile.c (syms_from_objfile): Return immediately if no syms.
10382 (symbol_file_add): Return immediately if no syms.
10383 (find_sym_fns): Return immediately if no syms.
10384
10385 2002-03-13 Michal Ludvig <mludvig@suse.cz>
10386
10387 * gdbserver/remote-util.c (remote_open): Print remote-side's
10388 IP address when remote debugging over the network.
10389
10390 2002-03-12 David O'Brien <obrien@FreeBSD.org>
10391
10392 * config/sparc/fbsd.mh: Fix copyright.
10393 * config/sparc/fbsd.mt: Likewise.
10394
10395 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
10396
10397 * MAINTAINERS: Fix typo in name of gdb warnings option.
10398 (x86-64): Fix formating so that this can be parsed by awk.
10399
10400 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
10401
10402 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
10403 * defs.h: Include "gdb/signals.h".
10404 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
10405
10406 2002-03-10 Michal Ludvig <mludvig@suse.cz>
10407
10408 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
10409 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
10410 from x86-64-tdep.h
10411
10412 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
10413 Don Howard <dhoward@redhat.com>
10414
10415 * mips-tdep.c (ST0_FR): Define.
10416 (mips2_fp_compat): New function, temporarily disabled.
10417 (mips_read_fp_register_single): New function.
10418 (mips_read_fp_register_double): New function.
10419 (mips_print_register): Use them.
10420 (do_fp_register_row): Likewise.
10421
10422 2002-03-09 Andrew Cagney <ac131313@redhat.com>
10423
10424 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
10425 approval''.
10426
10427 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10428
10429 * stabsread.c (read_member_functions): Fix is_stub test for
10430 static member functions, improve comment.
10431
10432 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
10433
10434 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
10435 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
10436 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
10437 commands that set boolean values.
10438 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
10439 (arm_rdi_resume): Always initialize PC.
10440 (arm_rdi_open): Don't use rslt as a boolean.
10441 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
10442 (arm_rdi_fetch_registers, arm_rdi_store_registers)
10443 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
10444 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
10445
10446 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
10447
10448 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
10449 * configure: Rebuilt.
10450
10451 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
10452
10453 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
10454 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
10455
10456 2002-03-06 Andrew Cagney <ac131313@redhat.com>
10457
10458 * cli/cli-decode.c (set_cmd_completer): New function.
10459 * command.h (set_cmd_completer): Declare.
10460 * cli/cli-decode.h (set_cmd_completer): Ditto.
10461
10462 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
10463 * cli/cli-cmds.c (init_cli_cmds): Ditto.
10464 * win32-nat.c (_initialize_inftarg): Ditto.
10465 * remote-rdi.c (_initialize_remote_rdi): Ditto.
10466 * proc-api.c (_initialize_proc_api): Ditto.
10467 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
10468 * source.c (_initialize_source): Ditto.
10469 * exec.c (_initialize_exec): Ditto.
10470 * solib.c (_initialize_solib): Ditto.
10471 * top.c (init_main): Ditto.
10472 * tracepoint.c (_initialize_tracepoint): Ditto.
10473 * symfile.c (_initialize_symfile): Ditto.
10474 * printcmd.c (_initialize_printcmd): Ditto.
10475 * infcmd.c (_initialize_infcmd): Ditto.
10476 * corefile.c (_initialize_core): Ditto.
10477
10478 2002-03-05 Andrew Cagney <ac131313@redhat.com>
10479
10480 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
10481
10482 2002-03-05 Andrew Cagney <ac131313@redhat.com>
10483
10484 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
10485
10486 2002-03-05 Andrew Cagney <ac131313@redhat.com>
10487
10488 * NEWS: Update headings, 5.2 has branched.
10489
10490 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
10491
10492 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
10493 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
10494 (register_addr, REGISTER_RAW_SIZE): Likewise.
10495 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
10496 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
10497
10498 2002-03-03 Michal Ludvig <mludvig@suse.cz>
10499
10500 * MAINTAINERS (x86-64): Add myself.
10501 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
10502 changed value_ptr -> struct value *
10503
10504 2002-03-01 David O'Brien <obrien@FreeBSD.org>
10505
10506 * configure.host (sparc64-*-freebsd): Add.
10507 * configure.tgt: Likewise.
10508 * config/sparc/fbsd.mh: New file.
10509 * config/sparc/fbsd.mt: Likewise.
10510 * config/sparc/nm-fbsd.h: Likewise.
10511 * config/sparc/tm-fbsd.h: Likewise.
10512
10513 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
10514
10515 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
10516 regformats/reg-s390x.dat.
10517
10518 2002-03-01 Andrew Cagney <ac131313@redhat.com>
10519
10520 * utils.c: Add FIXME explaining true/false problem.
10521
10522 2002-02-28 Andrew Cagney <ac131313@redhat.com>
10523
10524 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
10525
10526 2002-02-28 Michael Chastain <mec@shout.net>
10527
10528 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
10529
10530 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
10531
10532 * gdbserver/linux-s390-low.c: New file.
10533 * regformats/reg-s390.dat: New file.
10534 * regformats/reg-s390x.dat: New file.
10535 * gdbserver/configure.srv: Add S/390.
10536 * gdbserver/Makefile.in: Add S/390.
10537 * configure.tgt: Enable gdbserver for S/390.
10538
10539 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
10540
10541 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
10542 first line of the doc string for "info dos", except at the end of
10543 the sentence, since the short help stops at the first period.
10544
10545 2002-02-28 Jason Merrill <jason@redhat.com>
10546
10547 * dwarf2read.c (dwarf_cfi_name): Add new codes.
10548
10549 2002-02-27 Fred Fish <fnf@redhat.com>
10550
10551 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
10552 comment (dumy -> dummy).
10553
10554 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10555
10556 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
10557
10558 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
10559
10560 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
10561
10562 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10563
10564 * gdbserver/acconfig.h: New file.
10565 * gdbserver/i387-fp.c: New file.
10566 * gdbserver/i387-fp.h: New file.
10567 * gdbserver/linux-x86-64.c: New file.
10568 * regformats/reg-x86-64.dat: New file.
10569 * configure.tgt: Add x86_64-*-linux* gdbserver support.
10570 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
10571 * gdbserver/configure.in: Add support for regsets.
10572 * gdbserver/config.in: Regenerate.
10573 * gdbserver/configure: Regenerate.
10574 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
10575 * gdbserver/linux-low.h: New file.
10576 * gdbserver/linux-low.c: Include "linux-low.h". Add support
10577 for regsets.
10578 * gdbserver/linux-arm-low.c: Include "linux-low.h".
10579 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
10580 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
10581 * gdbserver/linux-mips-low.c: Include "linux-low.h".
10582 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
10583 * gdbserver/linux-sh-low.c: Include "linux-low.h".
10584 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
10585 "i387-fp.h". Add PTRACE_GETREGS and friends.
10586 * gdbserver/regcache.c (supply_register): New function.
10587 (supply_register_by_name): New function.
10588 (collect_register): New function.
10589 (collect_register_by_name): New function.
10590
10591 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10592
10593 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
10594 (config.status): Add configure.srv dependency.
10595 (server_h): Add config.h dependency.
10596
10597 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
10598
10599 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
10600 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
10601 * gdbserver/configure.srv: Change i386-*-linux* to use
10602 reg-i386-linux.o.
10603
10604 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10605
10606 * x86-64-tdep.c: Re-indent. Update copyright date.
10607
10608 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10609
10610 From Michal Ludvig <mludvig@suse.cz>:
10611 * x86-64-tdep.c (value.h): Delete.
10612 (gdb_assert.h): Include.
10613 (x86_64_register_convert_to_virtual,
10614 x86_64_register_convert_to_raw ): Add check which lets only
10615 floating-point values to be converted.
10616 (value_push): Delete.
10617 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
10618 (i386_gdbarch_init): Number of register_bytes fixed.
10619
10620 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10621
10622 * MAINTAINERS: Add x86-64 target.
10623
10624 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10625
10626 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
10627 * osfsolib.c (solib_map_sections): Ditto.
10628 * irix5-nat.c (solib_map_sections): Ditto.
10629 * corelow.c (gdb_check_format): Ditto.
10630 * symfile.c (symfile_bfd_open): Ditto.
10631 * solib.c (solib_map_sections): Ditto.
10632 Fix PR gdb/354.
10633
10634 2002-02-26 Andrew Cagney <ac131313@redhat.com>
10635
10636 * remote.c (_initialize_remote): By default, disable ``e'' and
10637 ``E'' step out-of-range packets.
10638
10639 2002-02-26 Andreas Schwab <schwab@suse.de>
10640
10641 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
10642 m68k_linux_frame_saved_pc.
10643 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
10644 in_sigtramp.
10645 (SIGCONTEXT_PC_OFFSET): Remove.
10646 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
10647 m68k_linux_sigtramp_saved_pc): New functions.
10648 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
10649 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
10650 (UCONTEXT_PC_OFFSET): Define.
10651 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
10652 non-RT and RT signal trampolines.
10653
10654 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
10655
10656 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
10657 (TARGET_NBPG, STACK_END_ADDR): Delete
10658 (VARIABLES_INSIDE_BLOCK): Delete.
10659
10660 2002-02-25 Andrew Cagney <ac131313@redhat.com>
10661
10662 * utils.c (perror_with_name): Make string parameter constant.
10663 (print_sys_errmsg): Ditto.
10664 (query): Ditto.
10665 * defs.h (perror_with_name): Update.
10666 (print_sys_errmsg): Update.
10667 (query): Update.
10668
10669 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
10670
10671 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
10672 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
10673
10674 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10675
10676 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
10677 if it already matches the current architecture from the exec file.
10678 Include arch-utils.h for gdbarch_info_init prototype.
10679 * Makefile.in (rs6000-nat.o): Update dependencies.
10680
10681 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
10682
10683 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
10684 list of exported variables.
10685
10686 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
10687
10688 * gdbserver/configure.srv: New file.
10689 * gdbserver/configure.in: Use configure.srv instead
10690 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
10691 from it.
10692 * gdbserver/configure: Regenerated.
10693 * gdbserver/terminal.h: New file.
10694 * gdbserver/Makefile.in: Update for configure changes. Remove
10695 more unneeded include paths.
10696
10697 2002-02-24 Andrew Cagney <ac131313@redhat.com>
10698
10699 From wiz at danbala:
10700 * config/sparc/tm-sp64.h: Fix grammar and typos.
10701 Fix PR gdb/287.
10702
10703 2002-02-24 Andrew Cagney <ac131313@redhat.com>
10704
10705 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
10706 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
10707 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
10708 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
10709 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
10710 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
10711 * s390-tdep.c: Ditto.
10712 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
10713 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
10714 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
10715 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
10716 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
10717 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
10718 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
10719 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
10720 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
10721 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
10722 Fix PR gdb/378.
10723
10724 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10725
10726 * lin-thread.c: Delete file.
10727 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
10728 to gdb_proc_service.h.
10729 * configure: Re-generate.
10730
10731 * ocd.c (ocd_open): Do not try to open the "ocd" device.
10732 * serial.c (serial_open): Delete check for "ocd".
10733 Fix PR gdb/349.
10734
10735 * Makefile.in (linux-thread.o): Delete target.
10736 * linux-thread.c: Delete file.
10737
10738 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
10739 renamed SH files to be consistent.
10740
10741 * symtab.c (sort_search_symbols): Use xfree.
10742
10743 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10744
10745 * arm-linux-tdep.c (arm_linux_init_abi): Register
10746 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
10747 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
10748 definition with undef, since we don't want the sysvr4 definition.
10749 (SKIP_TRAMPOLINE_CODE): Likewise.
10750
10751 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10752
10753 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
10754
10755 * configure.in: (AC_CHECK_FUNCS) Added test for
10756 canonicalize_file_name Regenerated.
10757 * config.in, configure: Regenerated.
10758 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
10759 defined use canonicalize_file_name.
10760
10761 2002-02-23 Michael Chastain <mec@shout.net>
10762
10763 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
10764
10765 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10766
10767 * README: Remove references to cygnus.com.
10768 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
10769 dot com'' form. Remove references to cygnus.com and sourceware.
10770
10771 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10772
10773 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
10774 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
10775 1003.1-2001 no longer allows "head -1".
10776 * gdb/Makefile.in (version.c): Likewise.
10777 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
10778 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
10779 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
10780
10781 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10782
10783 * cli/cli-decode.c (cmd_cfunc_eq): New function.
10784 * command.h (cmd_cfunc_eq): Declare.
10785 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
10786
10787 * cli/cli-cmds.h (is_complete_command): Change parameter to a
10788 ``struct cmd_list_element *''.
10789 * cli/cli-cmds.c (is_complete_command): Update. Use
10790 cmd_cfunc_eq.
10791 * top.c (execute_command): Pass the command to
10792 is_complete_command.
10793 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
10794
10795 2002-02-23 Andrew Cagney <ac131313@redhat.com>
10796
10797 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
10798 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
10799 architecture defines.
10800 * s390-tdep.c (s390_gdbarch_init): Likewise.
10801
10802 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10803
10804 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
10805 (arm_linux_push_arguments): Likewise.
10806 (arm_linux_init_abi): Register them. Also register linux-specific
10807 call_dummy_words.
10808 (find_minsym_and_objfile): Use strcmp, not STREQ.
10809 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
10810 (arm_linux_call_dummy_words): Delete declaration.
10811 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
10812 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
10813 declarations.
10814 (LOWEST_PC): Delete.
10815
10816 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10817
10818 * maint.c (print_section_info): Do not prepend `0x' to filepos
10819 output, it will be handled by local_hex_string_custom.
10820
10821 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
10822
10823 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
10824 (store_newfpe_double, store_newfpe_extended, store_fpregister)
10825 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
10826
10827 2002-02-22 Jim Blandy <jimb@redhat.com>
10828
10829 Indicate that the bcache functions don't change the strings
10830 they're passed.
10831 * bcache.h (bcache, hash): Add `const' keywords to declarations.
10832 * bcache.c (bcache, hash): Add `const' keywords to definitions.
10833
10834 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
10835
10836 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
10837
10838 2002-02-21 Christopher Faylor <cgf@redhat.com>
10839
10840 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
10841 find the complete path to a loaded DLL.
10842
10843 2002-02-21 Fred Fish <fnf@redhat.com>
10844
10845 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
10846 that marks the end of the range of a function, enter a line number
10847 entry that has a line number of zero and a PC offset that matches
10848 the end of the function. This starts a range of PC's for which no
10849 line number information is known.
10850 * symtab.c (find_pc_sect_line): If our best fit is in a range of
10851 PC's for which no line number info is found (line number is zero)
10852 then we didn't find any valid line information.
10853 * symtab.h: Document use of zero line number entry.
10854
10855 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
10856
10857 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
10858 (have_ptrace_getvrregs): Define for run time checks.
10859 (gdb_vrregset_t): New type for Altivec register handling.
10860 (fetch_register, store_register): Fetch/store altivec register
10861 when needed.
10862 (fetch_altivec_register, store_altivec_register): New functions.
10863 (supply_vrregset, fill_vrregset): New functions.
10864 (fetch_altivec_registers, store_altivec_registers): New functions.
10865 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
10866 registers as well.
10867
10868 2002-02-21 Jiri Smid <smid@suse.cz>
10869
10870 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
10871
10872 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
10873
10874 * Makefile.in (armnbsd-nat.o): Update dependencies.
10875 * armnbsd-nat.c (supply_gregset): New function. Common code to
10876 supply the integer register set.
10877 (supply_fparegset): New function. Similar for FPA registers.
10878 (fetch_regs, fetch_fp_regs): Use them.
10879 (fetch_core_registers): Likewise.
10880 (fetch_elfcore_registers): New function.
10881 (arm_netbsd_elfcore_fns): New core-file type specification.
10882 (_initialize_arm_netbsd_nat): Register it.
10883
10884 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
10885
10886 * armnbsd-nat.c: Include gdbcore.h.
10887 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
10888 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
10889 'void' to declaration, to shut up ARI.
10890 (fetch_core_registers): Make static. Rewrite using supply_register.
10891 (arm_netbsd_core_fns): New core-file type specification.
10892 (_initialize_arm_netbsd_nat): New function.
10893
10894 2002-02-21 Christopher Faylor <cgf@redhat.com>
10895
10896 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
10897 value.
10898
10899 2002-02-20 Christopher Faylor <cgf@redhat.com>
10900
10901 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
10902 fails.
10903
10904 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10905
10906 * jv-exp.y (parse_number): Change type of implicit longs
10907 to builtin_type_uint64.
10908
10909 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10910
10911 * gdbserver/linux-low.c (mywait): Change argument to waitpid
10912 to be an integer instead of a `union wait'.
10913
10914 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10915
10916 * mips-linux-nat.c: Call the operating system GNU/Linux.
10917 * mips-linux-tdep.c: Likewise.
10918 * mips-tdep.c: Likewise.
10919
10920 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10921
10922 Fix PR gdb/265.
10923 * jv-exp.y (parse_number): Handle 64-bit integers.
10924
10925 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
10926
10927 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
10928 AC_STDC_HEADERS to AC_HEADER_STDC.
10929 * gdbserver/configure: Regenerated.
10930
10931 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
10932
10933 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
10934 is defined.
10935 * sparc-tdep.c (get_longjmp_target): Likewise.
10936
10937 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
10938
10939 * News: Add news about ARM and Multi-arch. Mention the new target
10940 arm*-*-netbsd*.
10941
10942 2002-02-19 Jim Blandy <jimb@redhat.com>
10943
10944 * stabsread.c (error_type_complaint): Improve error message.
10945
10946 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
10947
10948 * gdbserver/README: Update documentation.
10949 * gdbserver/configure.in: Update configury to match documentation.
10950 * gdbserver/Makefile.in: Likewise.
10951 * gdbserver/configure: Regenerated.
10952 * gdbserver/aclocal.m4: New file, generated by aclocal.
10953 * gdbserver/config.in: New file, generated by autoheader.
10954
10955 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10956
10957 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
10958 armnbsd-nat.c.
10959
10960 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10961
10962 * arm-tdep.h (enum arm_float_model): New enum.
10963 (struct gdbarch_tdep): Add fp_model.
10964 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
10965 up floating-point conversions until we know the floating-point model
10966 in use by the inferior. Don't complain about being unable to
10967 determine the ABI of the inferior when we don't have one.
10968 (arm_extract_return_value): Support different floating-point models.
10969 (arm_store_return_value): Likewise.
10970 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
10971 ARM_FLOAT_SOFT.
10972 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
10973
10974 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10975
10976 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
10977 of ``current_gdbarch''.
10978
10979 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10980
10981 * armnbsd-nat.c : ANSIfy all function declarations.
10982 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
10983 (fetch_inferior_registers): Re-implement in terms of above.
10984 (store_register, store_regs, store_fp_register, store_fp_regs): New.
10985 (store_inferior_registers): Re-implement in terms of above.
10986
10987 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10988
10989 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
10990 kernel.
10991 * arm-linux-tdep.c: Likewise.
10992 * config/arm/tm-linux.h: Likewise.
10993
10994 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
10995
10996 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
10997 * config/arm/nbsd.mt (TM_FILE): Delete.
10998 * config/arm/tm-nbsd.h: Delete.
10999
11000 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
11001
11002 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
11003 Initialize CALL_DUMMY_LENGTH.
11004
11005 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
11006
11007 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
11008 function.
11009 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
11010 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
11011 defines one thing and that is incorrect for this port.
11012 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
11013
11014 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
11015
11016 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
11017
11018 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
11019
11020 * win32-nat.c (display_selector): New function. Displays information
11021 about the information returned by GetThreadSelectorEntry API function.
11022 (display_selectors): New function. Displays the infomation of
11023 the selector given as argument, or of CS, DS ans FS selectors
11024 if no argument is given.
11025 ( _initialize_inftarg): Add "w32" as info prefix command.
11026 Add "info w32 selector" as command calling display_selectors.
11027
11028 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
11029
11030 * i386-tdep.c (get_longjmp_target): Fix compilation failure
11031 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
11032 if not defined.
11033
11034 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11035
11036 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
11037
11038 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11039
11040 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
11041 (arm_fix_call_dummy): Call it.
11042 (arm_call_dummy_breakpoint_offset): Delete.
11043 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
11044 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
11045
11046 2002-02-18 Andrew Cagney <ac131313@redhat.com>
11047
11048 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
11049 Default to func_frame_chain_valid.
11050 * gdbarch.h, gdbarch.c: Re-generate.
11051 * frame.h (FRAME_CHAIN_VALID): Delete definition.
11052
11053 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
11054
11055 * ppc-linux-nat.c: Update copyright.
11056 (fetch_register, store_register): Add tid parameter, don't compute
11057 tid here.
11058 (fetch_ppc_registers, store_ppc_registers): Add tid
11059 parameter. Pass it along to callees.
11060 (fetch_inferior_registers, store_inferior_registers): Compute tid
11061 here, and pass it to calleed functions.
11062 (fill_gregset, supply_fpregset): Clean up formatting.
11063
11064 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11065
11066 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
11067 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
11068
11069 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
11070
11071 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
11072 * gdbarch.c gdbarch.h: Regenerate.
11073 * breakpoint.c (create_longjmp_breakpoint): Always compile this
11074 function.
11075 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
11076 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
11077 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
11078
11079 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
11080 * arm-tdep.c (arm_get_longjmp_target): New function.
11081 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
11082 this to a positive value register arm_get_longjmp_target as the
11083 longjmp handler.
11084 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
11085 (arm_linux_init_abi): Set up longjmp description in tdep.
11086 * armnbsd-nat.c (get_longjmp_target): Delete.
11087 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
11088 description in tdep.
11089 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
11090 (get_longjmp_target): Delete declaration.
11091 (GET_LONGJMP_TARGET): Delete.
11092 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
11093 (GET_LONGJMP_TARGET): Delete.
11094
11095 2002-02-17 Kevin Buettner <kevinb@redhat.com>
11096
11097 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
11098 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
11099 of ``current_gdbarch''.
11100
11101 2002-02-17 Tom Tromey <tromey@redhat.com>
11102
11103 * cli/cli-cmds.c (compare_strings): New function.
11104 (complete_command): Only print each unique item once.
11105 * completer.h (complete_line): Declare.
11106 * completer.c (complete_line): New function.
11107 (line_completion_function): Use it.
11108
11109 2002-02-16 Andrew Cagney <ac131313@redhat.com>
11110
11111 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
11112 * gdbarch.h, gdbarch.c: Re-generate.
11113
11114 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
11115
11116 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
11117
11118 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
11119
11120 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
11121 * valops.c (value_arg_coerce): Don't take the address of a reference
11122 to convert an argument to a reference.
11123
11124 2002-02-15 Christopher Faylor <cgf@redhat.com>
11125
11126 * win32-nat.c (get_image_name): New function.
11127 (handle_load_dll): Use get_image_name function.
11128 (get_child_debug_event): Avoid registering debug events until possibly
11129 execed process is started.
11130 (child_create_inferior): Allow invocation via shell so that command
11131 line redirection, etc. works ok.
11132 (_initialize_inftarg): Add new command: "set shell" to control whether
11133 a shell is used to start a process.
11134
11135 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
11136
11137 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
11138 instead of find_register_by_number.
11139 (cannot_store_register): Likewise.
11140
11141 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
11142
11143 * dwarf2read.c: Replace fprintf (stderr, ...) by
11144 fprintf_unfiltered (gdb_stderr, ...).
11145
11146 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
11147
11148 * gdbserver/gdbserver.1: Document --attach.
11149
11150 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
11151
11152 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
11153 descriptions.
11154 * arm-tdep.c (arm_default_arm_le_breakpoint)
11155 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
11156 (arm_default_thumb_be_breakpoint): New. Initialize them from
11157 traditional breakpoint defines.
11158 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
11159 (arm_gdbarch_init): Initialize new breakpoint variables.
11160 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
11161 (arm_linux_init_abi): Initialize linux-specific breakpoint.
11162 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
11163 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
11164 code out to ...
11165 (arm_netbsd_init_abi_common): ... here; new function.
11166 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
11167 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
11168 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
11169 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
11170
11171 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
11172
11173 * arm-tdep.h (enum arm_abi): New enum.
11174 (struct gdbarch_tdep): New structure.
11175 (LOWEST_PC): Provide a default.
11176 (arm_gdbarch_register_os_abi): Declare new function.
11177 * arm-tdep.c (arm_abi_names): New array.
11178 (process_note_abi_tag_sections): New function.
11179 (get_elfosabi): New function.
11180 (arm_gdbarch_register_os_abi): New function.
11181 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
11182 support for that ABI has been built in, then call the appropriate
11183 configuration routine. Use gdbarch_num_regs() to get the number
11184 of registers.
11185 (arm_dump_tdep): New function.
11186 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
11187 place-holder functions.
11188 (_initialize_arm_tdep): Register them.
11189 * config/arm/tm-arm.h (LOWEST_PC): Delete.
11190
11191 * armnbsd-tdep.c: New file.
11192 * Makefile.in (armnbsd-tdep.o): Add dependencies.
11193 * config/arm/nbsd.mt (TDEPFILES): Add it.
11194 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
11195
11196 * armnbsd-nat.c: Include regcache.h.
11197 * Makefile.in (armnbsd-nat.o): Update dependency list.
11198
11199 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
11200
11201 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11202
11203 * gdbserver/Makefile.in: Fix typos in target rules.
11204
11205 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11206
11207 Fix part of PR gdb/267.
11208 * linespec.c (find_methods): Handle constructors specially for now.
11209
11210 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
11211
11212 * arm-tdep.c (arm_push_arguments): Eliminate special float type
11213 handling.
11214 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
11215 standard_coerce_float_to_double().
11216
11217 2002-02-14 Christopher Faylor <cgf@redhat.com>
11218
11219 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
11220 GDBINIT_FILENAME.
11221
11222 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
11223
11224 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
11225 find_variant_by_name, because it confuses the multiarch
11226 framework. Return NULL if there isn't an architecture with the
11227 user supplied name, instead of forcing a different one without
11228 recording the change with the multiarch machinery.
11229 (find_variant_by_name): Delete.
11230
11231 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11232
11233 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
11234 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
11235
11236 2002-02-13 Martin M. Hunt <hunt@redhat.com>
11237
11238 * stack.c (print_frame_info_base): When calling
11239 print_frame_info_listing_hook, set current_source_symtab.
11240
11241 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11242
11243 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
11244 and remove unused $(INCLUDE_DIR).
11245 Add regcache.c to OBS.
11246 Add generated register protocol files to clean target.
11247 Update dependencies for new objects, obsolete old target code.
11248
11249 * gdbserver/linux-low.c: Remove all platform-specific code to
11250 new files. Remove various dead code. Update to use regcache
11251 functionality.
11252 * gdbserver/remote-utils.c (fromhex): Add return statement
11253 to quiet warning.
11254 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
11255 constant.
11256 (input_interrupt): Add integer parameter to match prototype
11257 of a signal handler.
11258 (outreg): Use register_data ().
11259 (prepare_resume_reply): Use gdbserver_expedite_regs.
11260 * gdbserver/server.c (main): Dynamically allocate own_buf because
11261 PBUFSIZ is no longer constant. Use registers_to_string () and
11262 registers_from_string ().
11263 * gdbserver/server.h: No longer include "defs.h". Add prototypes
11264 for error (), fatal (), and warning (). Update definition of
11265 PBUFSIZ to use regcache functionality. Add include guard.
11266 * gdbserver/utils.c (fatal): Add missing ``const''.
11267 (warning): New function.
11268
11269 * regformats/regdat.sh: Include "regcache.h" in generated files.
11270 Provide init_registers () function.
11271 * regformats/regdef.h: Add prototype for set_register_cache ().
11272 Add include guard.
11273
11274 * gdbserver/linux-arm-low.c: New file.
11275 * gdbserver/linux-i386-low.c: New file.
11276 * gdbserver/linux-ia64-low.c: New file.
11277 * gdbserver/linux-m68k-low.c: New file.
11278 * gdbserver/linux-mips-low.c: New file.
11279 * gdbserver/linux-ppc-low.c: New file.
11280 * gdbserver/linux-sh-low.c: New file.
11281
11282 * gdbserver/regcache.c: New file.
11283 * gdbserver/regcache.h: New file.
11284
11285 * gdbserver/low-linux.c: Removed obsolete file.
11286
11287 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11288
11289 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
11290 * config/i386/linux.mt: Likewise.
11291 * config/ia64/linux.mt: Likewise.
11292 * config/m68k/linux.mh: Likewise.
11293 * config/powerpc/linux.mh: Likewise.
11294 * config/mips/linux.mt: Likewise.
11295
11296 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
11297
11298 * config/i386/i386lynx.mh: Mark gdbserver variables
11299 as (currently) obsolete for this target.
11300 * config/i386/nbsd.mt: Likewise.
11301 * config/i386/nbsdelf.mt: Likewise.
11302 * config/m32r/m32r.mt: Likewise.
11303 * config/m68k/m68klynx.mh: Likewise.
11304 * config/m68k/nbsd.mt: Likewise.
11305 * config/m68k/sun3os4.mh: Likewise.
11306 * config/mips/vr5000.mt: Likewise.
11307 * config/ns32k/nbsd.mt: Likewise.
11308 * config/pa/hppabsd.mh: Likewise.
11309 * config/pa/hppaosf.mh: Likewise.
11310 * config/powerpc/nbsd.mt: Likewise.
11311 * config/rs6000/rs6000lynx.mh: Likewise.
11312 * config/s390/s390.mt: Likewise.
11313 * config/s390/s390x.mt: Likewise.
11314 * config/sparc/sparclynx.mh: Likewise.
11315 * config/sparc/sun4os4.mh: Likewise.
11316 * config/i386/x86-64linux.mt: Likewise.
11317 * config/sparc/linux.mh: Likewise.
11318
11319 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
11320
11321 * configure.tgt: Configure gdbserver only for known working
11322 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
11323 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
11324 SUBDIRS if it is configured. Update comment for ${nativefile}.
11325 * configure: Regenerated.
11326
11327 2002-02-13 Michael Snyder <msnyder@redhat.com>
11328
11329 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
11330
11331 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
11332 (default_gcore_mach): Just return 0, work around a problem in bfd.
11333 (default_gcore_target): OK to return NULL if exec_bfd is null.
11334 (make_mem_sec): Use a cast, avoid a warning.
11335
11336 * procfs.c (find_memory_regions_callback): Use a cast instead of
11337 calling host_pointer_to_address (which complains if
11338 sizeof (host pointer) != sizeof (target pointer)).
11339 (procfs_make_note_section): Avoid overflow in psargs string.
11340
11341 * procfs.c (procfs_make_note_section): Make the default
11342 implementation return an error.
11343
11344 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
11345
11346 * procfs.c (procfs_make_note_section): Provide a default definition
11347 (for alpha-dec-osf4.0f). Fix typos.
11348
11349 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
11350
11351 * linux-proc.c: Add include of regcache.h.
11352 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
11353
11354 2002-02-13 Andrew Cagney <ac131313@redhat.com>
11355
11356 From 2002-01-18 Greg McGary <greg@mcgary.org>:
11357 * memattr.c (create_mem_region): Disallow useless empty region.
11358 Regions are half-open intervals, so allow [A..B) [B..C) as
11359 non-overlapping.
11360
11361 2002-02-13 Michael Chastain <mec@shout.net>
11362
11363 * defs.h: Kill CONST_PTR.
11364 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
11365 * c-lang.c (c_builtin_types): Likewise.
11366 * ch-lang.c (ch_builtin_types): Likewise.
11367 * f-lang.c (f_builtin_types): Likewise.
11368 * language.c (unknown_builtin_types): Likewise.
11369 * m2-lang.c (m2_builtin_types): Likewise.
11370 * p-lang.c (pascal_builtin_types): Likewise.
11371 * scm-lang.c (c_builtin_types): Likewise.
11372
11373 2002-02-13 Keith Seitz <keiths@redhat.com>
11374
11375 * arm-tdep.h (arm_get_next_pc): Add declaration.
11376
11377 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
11378
11379 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
11380 with other related struct-returning functions.
11381 (arm_extract_struct_value_address): New function.
11382 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
11383 initialize float_format, double_format and long_double_format as
11384 appropriate to the endianness of the target.
11385 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
11386 (arm_use_struct_convention): Delete declaration.
11387 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
11388
11389 2002-02-13 Keith Seitz <keiths@redhat.com>
11390
11391 * defs.h (core_addr_to_string_nz): New function.
11392
11393 2002-02-13 Mark Kettenis <kettenis@gnu.org>
11394
11395 Apply missing bits of 2002-01-15 patch.
11396 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
11397 (fill_fpregset): Use i387_fill_fsave.
11398
11399 2002-02-12 Keith Seitz <keiths@redhat.com>
11400
11401 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
11402 (core_addr_to_string_nz): New function.
11403
11404 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
11405
11406 * arm-linux-nat.c: Really include arm-tdep.h.
11407 * config/arm/tm-linux.h (struct type, struct value): Declare.
11408
11409 2002-02-11 Michael Snyder <msnyder@redhat.com>
11410
11411 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
11412 (gcore section): Ifdef for Solaris and Unixware only.
11413 (procfs_do_thread_registers): Unixware needs one lwpstatus
11414 per thread (not one prstatus or pstatus).
11415 (procfs_make_note_section): Iterate only over kernel threads (lwps),
11416 not over all gdb threads. For unixware, call elfcore_write_pstatus
11417 once before iterating over threads.
11418
11419 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
11420
11421 * arm-tdep.h: New file.
11422 * arm-tdep.c: Include arm-tdep.h.
11423 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
11424 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
11425 (arm_print_float_info, arm_register_type, convert_to_extended)
11426 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
11427 (arm_extract_return_value, arm_register_name): Make static.
11428 (arm_software_single_step): Similarly. Fix types in declaration.
11429 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
11430 (arm_store_return_value, arm_store_struct_return): New functions.
11431 (arm_gdbarch_init): Register the above functions. Also register
11432 call_dummy_start_offset, sizeof_call_dummy_words,
11433 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
11434 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
11435 max_register_virtual_size, register_size. Set up
11436 prologue_cache.saved_regs here, rather than ...
11437 (_initialize_arm_tdep): ... here.
11438 * config/arm/tm-arm.h (struct type, struct value): Delete forward
11439 declarations.
11440 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
11441 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
11442 (arm_print_float_info, arm_register_type, convert_to_extended)
11443 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
11444 (arm_extract_return_value, arm_register_name): Delete declarations.
11445 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
11446 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
11447 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
11448 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
11449 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
11450 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
11451 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
11452 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
11453 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
11454 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
11455 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
11456 (arm_get_next_pc): No-longer static -- these are needed by the RDI
11457 interface.
11458 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
11459 * remote-rdi.c remote-rdp.c: Likewise.
11460 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
11461 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
11462 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
11463 definition.
11464
11465 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
11466 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
11467 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
11468 from non-ARM_ prefixed definitions.
11469 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
11470 all uses of above.
11471 * remote-rdi.c remote-rdp.c: Likewise.
11472 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
11473
11474 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
11475
11476 * arm-tdep.c (arm_frameless_function_invocation)
11477 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
11478 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
11479 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
11480 (arm_pop_frame, arm_get_next_pc): Make static.
11481 (arm_gdbarch_init): Register above in gdbarch structure.
11482 (arm_read_fp): Renamed from arm_target_read_fp.
11483 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
11484 * config/arm/tm-arm.h (arm_frameless_function_invocation)
11485 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
11486 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
11487 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
11488 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
11489 (arm_pc_is_thumb_dummy): Delete declarations.
11490 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
11491 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
11492 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
11493 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
11494
11495 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
11496
11497 * symtab.c (compare_search_syms): New function.
11498 (sort_search_symbols): New function.
11499 (search_symbols): Sort symbols after searching rather than
11500 before.
11501
11502 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11503
11504 * NEWS: Linux -> GNU/Linux.
11505
11506 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11507
11508 * gdbarch.sh: For for level one methods, disallow a definition
11509 when partially multi-arched. Add comments explaining rationale.
11510 * gdbarch.h: Re-generate.
11511
11512 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11513
11514 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
11515 multi-arch partial.
11516
11517 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11518
11519 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
11520 field. Use diff -u.
11521 * gdbarch.c: Re-generate.
11522
11523 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11524
11525 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
11526 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
11527 partial.
11528
11529 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11530
11531 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
11532 multi-arch partial.
11533 (PUSH_ARGUMENTS): Switch to using predefault.
11534 * gdbarch.c: Regenerate.
11535
11536 2002-02-10 Andrew Cagney <ac131313@redhat.com>
11537
11538 * valops.c (PUSH_ARGUMENTS): Delete definition.
11539 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
11540 partial. Default to default_push_arguments.
11541 * gdbarch.h, gdbarch.c: Regenerate.
11542
11543 2002-02-09 Andrew Cagney <ac131313@redhat.com>
11544
11545 * defs.h (throw_exception): Rename return_to_top_level. Update
11546 comments.
11547 * utils.c (error_stream, internal_verror, quit): Ditto.
11548 * top.c (throw_exception, catcher): Ditto.
11549 * sparclet-rom.c (sparclet_load): Ditto.
11550 * remote.c (interrupt_query, minitelnet): Ditto.
11551 * remote-sds.c (interrupt_query): Ditto.
11552 * remote-mips.c (mips_error, mips_kill): Ditto.
11553 * ocd.c (interrupt_query): Ditto.
11554 * monitor.c (monitor_interrupt_query): Ditto.
11555 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
11556 * target.h: Update comment.
11557
11558 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
11559
11560 2002-02-09 Andrew Cagney <ac131313@redhat.com>
11561
11562 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
11563 default_double_format.
11564 * gdbarch.h, gdbarch.c: Re-generate.
11565 * findvar.c (floatformat_unknown): Delete variable definition.
11566 * doublest.h (floatformat_unknown): Delete variable declaration.
11567
11568 2002-02-09 Jim Blandy <jimb@redhat.com>
11569
11570 * stabsread.c (read_type): Add code to parse Sun's syntax for
11571 prototyped function types.
11572
11573 2002-02-09 Andrew Cagney <ac131313@redhat.com>
11574
11575 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
11576 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
11577
11578 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11579
11580 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
11581 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
11582 now _initialize_xcoffsolib gets called again and overrides the
11583 commands from solib.c in a native configuration.
11584
11585 2002-02-09 Mark Kettenis <kettenis@gnu.org>
11586
11587 * doublest.c (store_typed_floating): Don't try to return a value.
11588 Fixes PR gdb/290.
11589
11590 2002-02-08 Jim Blandy <jimb@redhat.com>
11591
11592 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
11593 is prototyped and has no arguments, print its argument list as
11594 `(void)'.
11595
11596 2002-02-08 Chris Demetriou <cgd@broadcom.com>
11597
11598 * MAINTAINERS (write-after-approval): Add myself.
11599 (paper-trail): I've escaped!
11600
11601 2002-02-08 Christopher Faylor <cgf@redhat.com>
11602
11603 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
11604 changes.
11605 (_initialize_check_for_gdb_ini): Ditto.
11606
11607 2002-02-08 Martin M. Hunt <hunt@redhat.com>
11608
11609 * win32-nat.c (cygwin_pid_to_str): Fix typo.
11610 xaprintf -> xasprintf.
11611
11612 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
11613
11614 * win32-nat.c: Remove use of printf and sprintf functions.
11615
11616 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
11617
11618 * arm-tdep.c (arm_frame_chain_valid): Make static.
11619 (arm_push_arguments): Likewise.
11620 (arm_gdbarch_init): New function.
11621 (_initialize_arm_tdep): Call it.
11622 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
11623 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
11624 (FRAME_CHAIN_VALID): Delete.
11625 (arm_frame_chain_valid): Delete declaration.
11626 (PUSH_ARGUMENTS): Delete.
11627 (arm_push_arguments): Delete declaration.
11628 (CALL_DUMMY_P): Delete.
11629
11630 2002-02-08 Andrew Cagney <ac131313@redhat.com>
11631 Corinna Vinschen <vinschen@redhat.com>
11632
11633 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
11634 on builtin float types.
11635
11636 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
11637
11638 * utils.c: Include <curses.h> before "bfd.h".
11639 * tui/tui-hooks.c: Likewise.
11640 * tui/tui.c: Likewise.
11641 * tui/tuiCommand.c: Likewise.
11642 * tui/tuiData.c: Likewise.
11643 * tui/tuiDataWin.c: Likewise.
11644 * tui/tuiDisassem.c: Likewise.
11645 * tui/tuiGeneralWin.c: Likewise.
11646 * tui/tuiIO.c: Likewise.
11647 * tui/tuiLayout.c: Likewise.
11648 * tui/tuiRegs.c: Likewise.
11649 * tui/tuiSource.c: Likewise.
11650 * tui/tuiSourceWin.c: Likewise.
11651 * tui/tuiStack.c: Likewise.
11652 * tui/tuiWin.c: Likewise.
11653
11654 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
11655
11656 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
11657 to include space for pseudoregs as well. Update loops accordingly.
11658 (sh_fp_frame_init_saved_regs): Ditto.
11659 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
11660
11661 2002-02-07 Andrew Cagney <ac131313@redhat.com>
11662
11663 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
11664 Add Richard Earnshaw to Arm maintainers.
11665
11666 2002-02-07 Andrew Cagney <ac131313@redhat.com>
11667
11668 * defs.h (warning_begin): Delete declaration.
11669
11670 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
11671 Delete macro.
11672
11673 2002-02-07 Michael Snyder <msnyder@redhat.com>
11674
11675 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
11676 Logic bug, remove misplaced else.
11677
11678 2002-02-07 Klee Dienes <klee@apple.com>
11679
11680 * fork-inferior.c (fork_inferior): Add '!' to the list of
11681 characters that need to be quoted when building a string for the
11682 shell. Quote '!' specifically with a backslash, since CSH chokes
11683 when trying to evaluate "str!str".
11684
11685 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
11686
11687 * rdi-share/host.h: Only provide a typedef for bool if it is not
11688 defined.
11689
11690 2002-02-04 Michael Snyder <msnyder@redhat.com>
11691
11692 * breakpoint.h (enum bptype): Add new overlay event bp type.
11693 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
11694
11695 * breakpoint.c (create_internal_breakpoint): New function.
11696 (internal_breakpoint_number): Moved into create_internal_breakpoint.
11697 (create_longjmp_breakpoint): Use create_internal_breakpoint.
11698 (create_thread_event_breakpoint): Ditto.
11699 (create_solib_event_breakpoint): Ditto.
11700 (create_overlay_event_breakpoint): New function.
11701 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
11702 (update_breakpoints_after_exec): Delete and re-initialize
11703 overlay event breakpoints after an exec. Add FIXME comment
11704 about longjmp breakpoint.
11705 (print_it_typical): Ignore overlay event breakpoints.
11706 (print_one_breakpoint): Ditto.
11707 (mention): Ditto.
11708 (bpstat_what): Do not stop for overlay event breakpoints.
11709 (delete_breakpoint): Don't delete overlay event breakpoints.
11710 (breakpoint_re_set_one): Delete the overlay event breakpoint.
11711 (breakpoint_re_set): Re-create overlay event breakpoint.
11712
11713 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
11714 (overlay_manual_command): Disable overlay breakpoints.
11715 (overlay_off_command): Disable overlay breakpoints.
11716
11717 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11718
11719 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
11720 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
11721 to here from config/tm-arm.h.
11722 (coff_sym_is_thumb): Make static.
11723 (arm_elf_make_msymbol_special): New function.
11724 (arm_coff_make_msymbol_special): New function.
11725 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
11726 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
11727 (coff_sym_is_thumb): Delete declaration.
11728 (arm_elf_make_msymbol_special): Declare.
11729 (arm_coff_make_msymbol_special): Declare.
11730 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
11731 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
11732
11733 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11734
11735 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
11736
11737 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
11738
11739 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
11740 * gdbarch.c gdbarch.h: Regenerate.
11741 * arch-utils.c (default_print_float_info): New function.
11742 * arch-utils.h (default_print_float_info): Prototype it.
11743 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
11744 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
11745 (PRINT_FLOAT_INFO): Document it.
11746
11747 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
11748 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
11749 (PRINT_FLOAT_INFO): Define.
11750
11751 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
11752
11753 * win32-nat.c (_initialize_check_for_gdb_ini):
11754 Add typecast to sprintf argument to suppress a warning.
11755
11756 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
11757
11758 * win32-nat.c (last_sig): Changed type of variable to target_signal,
11759 to allow easier handling of pass state.
11760 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
11761 that gives exception name and address.
11762 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
11763 and set last_sig value to ourstatus->value.sig. Some missing
11764 exceptions added.
11765 (child_continue): Correctly report continue_status.
11766 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
11767 TARGET_SIGNAL_0 (new default value).
11768 (child_resume): consider sig argument passed to decide if
11769 the exception should be passed to debuggee or not.
11770
11771 2002-02-05 Michael Snyder <msnyder@redhat.com>
11772
11773 * regcache.c (fetch_register): Call target_fetch_register
11774 only if we don't call FETCH_PSEUDO_REGISTER.
11775 (store_register): Call target_store_register only if we
11776 don't call STORE_PSEUDO_REGISTER.
11777
11778 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
11779
11780 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
11781 ELF_MAKE_MSYMBOL_SPECIAL.
11782 * gdbarch.c, gdbarch.h: Regenerate.
11783 * arch-utils.c (default_make_msymbol_special): New function.
11784 * arch-utils.h (default_make_msymbol_special): Export.
11785 * elfread.c (elf_symtab_read): Compile use of
11786 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
11787 multiarched.
11788 * coffread.c (coff_symtab_read): Ditto, for
11789 COFF_MAKE_MSYMBOL_SPECIAL.
11790
11791 2002-02-05 Jim Blandy <jimb@redhat.com>
11792
11793 * solib-svr4.c (svr4_truncate_ptr): New function.
11794 (svr4_relocate_section_addresses): Do the address arithmetic with
11795 the appropriate truncation for target addresses, even when
11796 CORE_ADDR is larger than a target address.
11797
11798 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11799
11800 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
11801 to (int *).
11802
11803 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11804
11805 * gdbserver/linux-low.c (kill_inferior): Remove commented out
11806 code.
11807
11808 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11809
11810 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
11811
11812 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11813
11814 * gdbserver/linux-low.c: Remove unused include files.
11815
11816 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11817
11818 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
11819 (read_inferior_memory): Use it.
11820 (write_inferior_memory): Likewise.
11821
11822 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11823
11824 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
11825 grubbing through sys_errlist.
11826
11827 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
11828
11829 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
11830
11831 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11832 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
11833
11834 2002-02-04 Andrew Cagney <ac131313@redhat.com>
11835
11836 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
11837 (do_sfunc, set_cmd_sfunc): New functions.
11838
11839 * command.h (struct cmd_list_element): Add field func.
11840 * cli/cli-decode.h (struct cmd_list_element): Ditto.
11841 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
11842 * cli/cli-decode.h: Ditto.
11843
11844 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
11845 (help_all, help_cmd_list): Ditto.
11846 (find_cmd, complete_on_cmdlist): Ditto.
11847 * top.c (execute_command): Ditto.
11848
11849 * cli/cli-setshow.c (do_setshow_command): Call func instead of
11850 function.sfunc.
11851
11852 * infcmd.c (notice_args_read): Fix function signature.
11853
11854 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
11855 * cli/cli-decode.c (add_set_cmd): Ditto.
11856 * utils.c (initialize_utils): Ditto.
11857 * maint.c (_initialize_maint_cmds): Ditto.
11858 * infrun.c (_initialize_infrun): Ditto.
11859 * demangle.c (_initialize_demangler): Ditto.
11860 * remote.c (add_packet_config_cmd): Ditto.
11861 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11862 * cris-tdep.c (_initialize_cris_tdep): Ditto.
11863 * proc-api.c (_initialize_proc_api): Ditto.
11864 * kod.c (_initialize_kod): Ditto.
11865 * valprint.c (_initialize_valprint): Ditto.
11866 * top.c (init_main): Ditto.
11867 * infcmd.c (_initialize_infcmd): Ditto.
11868 * corefile.c (_initialize_core): Ditto.
11869 * arm-tdep.c (_initialize_arm_tdep): Ditto.
11870 * arch-utils.c (initialize_current_architecture): Ditto.
11871 (_initialize_gdbarch_utils): Ditto.
11872 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
11873
11874 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
11875 * wince.c (_initialize_inftarg): Ditto.
11876 * symfile.c (_initialize_symfile): Ditto.
11877 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11878 * language.c (_initialize_language): Ditto.
11879 * arc-tdep.c (_initialize_arc_tdep): Ditto.
11880
11881 2002-02-04 Michael Snyder <msnyder@redhat.com>
11882
11883 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
11884
11885 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11886
11887 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
11888 Add rules for building the register data files.
11889
11890 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11891
11892 * regformats/regdat.sh: Add braces to the definition of
11893 expedite_regs_${arch}.
11894
11895 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
11896
11897 * regformats/regdef.h (struct reg): Add comment describing the
11898 requirements for offset and size fields.
11899
11900 2002-02-04 Andreas Schwab <schwab@suse.de>
11901
11902 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
11903 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
11904
11905 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
11906
11907 * gdbarch.sh (copyright): Update years in generated header.
11908 (SMASH_TEXT_ADDRESS): Add rule.
11909 * gdbarch.h, gdbarch.c: Re-generate.
11910 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
11911 * dbxread.c: Likewise.
11912 * dwarfread.c: Likewise.
11913 * elfread.c: Likewise.
11914 * somread.c: Likewise.
11915
11916 * arm-tdep.c (arm_smash_text_address): New function.
11917 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
11918
11919 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11920
11921 Add support for hardware watchpoints on win32 native.
11922 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
11923 CONTEXT_DEBUG_REGISTERS.
11924 (dr variable): New variable. Static array containing a local copy
11925 of debug registers.
11926 (debug_registers_changed): New variable. Reflects when debug registers
11927 are changed and need to be written to inferior.
11928 (debug_registers_used): New variable. Reflects when any debug register
11929 was set, used when new threads are created.
11930 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
11931 i386-nat code.
11932 (thread_rec): Set dr array if id is the thread of current_event .
11933 (child_continue, child_resume): Change the debug registers for all
11934 threads if debug_registers_changed.
11935 (child_add_thread): Change the debug registers if debug_registers_used.
11936 * config/i386/cygwin.mh: Add use of i386-nat.o file.
11937 Link nm.h to new nm-cygwin.h file.
11938 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
11939 of hardware registers.
11940
11941 2002-02-03 Andrew Cagney <ac131313@redhat.com>
11942
11943 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
11944 Restore behavour broken by 2002-01-20 Andrew Cagney
11945 <ac131313@redhat.com> IEEE_FLOAT removal.
11946
11947 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11948
11949 * c-valprint.c (c_val_print): Pass a proper valaddr to
11950 cp_print_class_method.
11951 * valops.c (search_struct_method): If there is only one method
11952 and args is NULL, return that method.
11953
11954 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11955
11956 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
11957 accessing tag_name directly.
11958
11959 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11960
11961 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
11962 of accessing tag_name directly.
11963
11964 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
11965
11966 PR gdb/280
11967 * gdbtypes.c (replace_type): New function.
11968 * gdbtypes.h (replace_type): Add prototype.
11969 * stabsread.c (read_type): Use replace_type.
11970
11971 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
11972
11973 * Makefile.in (memattr.o): Add missing dependencies rule.
11974
11975 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11976
11977 * breakpoint.c (break_at_finish_command): Really export.
11978 (break_at_finish_at_depth_command): Ditto.
11979 (tbreak_at_finish_command): Ditto.
11980 * hppa-tdep.c: Include completer.h.
11981 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
11982 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
11983
11984 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11985
11986 * utils.c (do_write): New function.
11987 (error_stream): Rewrite combining the code from error_begin and
11988 verror.
11989 (verror): Rewrite using error_stream.
11990 (error_begin): Delete function.
11991
11992 2002-02-01 Andrew Cagney <ac131313@redhat.com>
11993
11994 * utils.c (error_begin): Make static.
11995 * defs.h (error_begin): Delete declaration.
11996
11997 * linespec.c (cplusplus_error): Replace cplusplus_hint.
11998 (decode_line_1): Use cplusplus_error instead of error_begin,
11999 cplusplus_hint and return_to_top_level.
12000 * coffread.c (coff_symfile_read): Use error instead of error_begin
12001 and return_to_top_level.
12002 * infrun.c (default_skip_permanent_breakpoint): Ditto.
12003
12004 2002-02-01 Andrew Cagney <ac131313@redhat.com>
12005
12006 * language.h (type_error, range_error): Make string parameter
12007 constant.
12008 * language.c (warning_pre_print): Delete extern declaration.
12009 * dwarfread.c (warning_pre_print): Ditto.
12010 * language.c (type_error, range_error): Rewrite to use verror and
12011 vwarning instead of warning_begin.
12012
12013 2002-02-01 Michael Snyder <msnyder@redhat.com>
12014
12015 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
12016 (set_ignore_count): Move misplaced comment back where it belongs.
12017
12018 2002-02-01 Andrew Cagney <ac131313@redhat.com>
12019
12020 * command.h (NO_FUNCTION): Delete macro.
12021 * cli/cli-decode.h (NO_FUNCTION): Ditto.
12022 * top.c (execute_command): Replace NO_FUNCTION with NULL.
12023 * tracepoint.c (_initialize_tracepoint): Ditto.
12024 * cli/cli-decode.c (add_set_cmd): Ditto.
12025 * cli/cli-cmds.c (init_cli_cmds): Ditto.
12026
12027 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
12028
12029 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
12030 Update ``this'' pointer when calling virtual functions.
12031
12032 2002-02-01 Michael Snyder <msnyder@redhat.com>
12033
12034 * breakpoint.c (create_temp_exception_breakpoint): Delete.
12035 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
12036
12037 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
12038
12039 * regformats/reg-arm.dat: New file.
12040 * regformats/reg-i386.dat: New file.
12041 * regformats/reg-ia64.dat: New file.
12042 * regformats/reg-m68k.dat: New file.
12043 * regformats/reg-mips.dat: New file.
12044 * regformats/reg-ppc.dat: New file.
12045 * regformats/reg-sh.dat: New file.
12046 * regformats/regdef.h: New file.
12047 * regformats/regdat.sh: New file.
12048
12049 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
12050
12051 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
12052 (arm_frame_args_address, arm_frame_locals_address): New functions.
12053 (arm_frame_num_args): New function.
12054 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
12055 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
12056 (FRMA_NUM_ARGS): Call arm_frame_num_args.
12057
12058 2002-01-31 Michael Snyder <msnyder@redhat.com>
12059
12060 * breakpoint.c (break_at_finish_command): Export.
12061 (break_at_finish_at_depth_command): Export.
12062 (tbreak_at_finish_command): Export.
12063 (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
12064 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
12065 "txbreak" commands, which are HPPA specific.
12066
12067 * printcmd.c (disassemble_command): Remove an ancient
12068 artifact of an old merge.
12069
12070 * symfile.h (enum overlay_debugging_state):
12071 Define enum constant values for overlay mode.
12072 * symfile.c (overlay_debugging): Use enums instead of literals.
12073 (overlay_is_mapped, overlay_auto_command,
12074 overlay_manual_command): Ditto.
12075
12076 * breakpoint.c (insert_breakpoints, remove_breakpoint,
12077 breakpoint_here_p, breakpoint_inserted_here_p,
12078 breakpoint_thread_match, bpstat_stop_status,
12079 describe_other_breakpoints, check_duplicates, clear_command):
12080 Coding standard fixes.
12081
12082 * target.c (target_xfer_memory): Add spaces, coding standard.
12083 (do_xfer_memory): Add missing line to trust-readonly
12084 code: check bfd SEC_READONLY flag for section.
12085
12086 2002-01-31 Andrew Cagney <ac131313@redhat.com>
12087
12088 * PROBLEMS: Fix typo, 5.1->5.1.1.
12089
12090 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
12091
12092 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
12093 data symbols, since we search based on textlow and texthigh.
12094 (find_pc_sect_symtab): Likewise.
12095
12096 2002-01-30 Andrew Cagney <ac131313@redhat.com>
12097
12098 * defs.h (vwarning): Declare.
12099 * utils.c (vwarning): New function.
12100 (warning): Call vwarning.
12101 (warning_begin): Delete function.
12102
12103 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
12104 the warning message.
12105 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
12106 warning_begin.
12107
12108 2002-01-30 Michael Snyder <msnyder@redhat.com>
12109
12110 * NEWS: Mention "set trust-readonly-sections" command.
12111 Mention generate-core-file command.
12112
12113 2002-01-15 Michael Snyder <msnyder@redhat.com>
12114
12115 * target.c: New command, "set trust-readonly-sections on".
12116 (do_xfer_memory): Honor the suggestion to trust readonly sections
12117 by reading them from the object file instead of from the target.
12118 (initialize_targets): Register command "set trust-readonly-sections".
12119
12120 2002-01-29 Andrew Cagney <ac131313@redhat.com>
12121
12122 * parse.c (target_map_name_to_register): Simplify, search regs and
12123 pseudo-regs using a single loop.
12124
12125 2002-01-30 Andrew Cagney <ac131313@redhat.com>
12126
12127 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
12128
12129 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
12130
12131 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
12132 * config/i386/i386v42mp.mh: Add i387-nat.o .
12133 * i386v4-nat.c: Include i387-nat.h.
12134 (supply_fpregset): Use i387_supply_fsave.
12135 (fill_fpregset): Use i387_fill_fsave.
12136
12137 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
12138
12139 * arm-tdep.c (arm_call_dummy_words): Define.
12140 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
12141 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
12142 (CALL_DUMMY_WORDS): Define.
12143 (arm_call_dummy_words): Declare.
12144 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
12145 (arm_linux_call_dummy_words): Declare.
12146
12147 2002-01-30 Andreas Schwab <schwab@suse.de>
12148
12149 * m68klinux-nat.c: Fix last change to use regcache_collect
12150 instead of referencing registers[] directly.
12151
12152 2002-01-29 Andrew Cagney <ac131313@redhat.com>
12153
12154 * parse.c (target_map_name_to_register): Delete code wrapped in
12155 #ifdef REGISTER_NAME_ALIAS_HOOK.
12156
12157 2002-01-28 Michael Snyder <msnyder@redhat.com>
12158
12159 * regcache.c (legacy_read_register_gen): Need to be able to
12160 read pseudo-register as well as real register.
12161 (legacy_write_register_gen): Ditto.
12162
12163 2002-01-28 Andrew Cagney <ac131313@redhat.com>
12164
12165 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
12166 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
12167 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
12168 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
12169 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
12170 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
12171 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
12172 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
12173 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
12174 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
12175 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
12176 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
12177 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
12178 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
12179 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
12180 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
12181 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
12182 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
12183 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
12184 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
12185
12186 2002-01-28 Andrew Cagney <ac131313@redhat.com>
12187
12188 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
12189 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
12190 (initialize_current_architecture): Update target_byte_order using
12191 information from BFD.
12192 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
12193 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
12194
12195 2002-01-28 Andrew Cagney <ac131313@redhat.com>
12196
12197 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
12198 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
12199
12200 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
12201 #ifdef INVALID_FLOAT.
12202 * infcmd.c (do_registers_info): Ditto.
12203 * values.c (unpack_double): Ditto. Add comment.
12204
12205 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
12206 already commented out.
12207
12208 2002-01-26 Andreas Schwab <schwab@suse.de>
12209
12210 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
12211 * m68klinux-nat.c: Update ptrace interface for fetching/storing
12212 registers and add support for PTRACE_GETREGS.
12213
12214 2002-01-24 Andrew Cagney <ac131313@redhat.com>
12215
12216 GDB 5.1.1 released from 5.1 branch.
12217 * NEWS: Add 5.1.1 news.
12218 * README: Sync with 5.1 branch.
12219
12220 2002-01-23 Fred Fish <fnf@redhat.com>
12221
12222 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
12223 stabstring on initial malloc. Reallocing will copy it for us,
12224 if necessary.
12225
12226 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
12227
12228 * Makefile.in (hpread_h): Delete.
12229 (HFILES_NO_SRCDIR): Remove hpread.h.
12230 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
12231 (hpread.o): Update dependencies.
12232 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
12233
12234 * hp-psymtab-read.c: Remove file.
12235 * hp-symtab-read.c: Remove file.
12236 * hpread.h: Remove file.
12237
12238 * hpread.c: Merge all contents of hp-psymtab-read.c,
12239 hp-symtab-read.c and hpread.h into this file, as it was prior to
12240 January 1999.
12241
12242 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
12243 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
12244 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
12245 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
12246
12247 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
12248
12249 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
12250 fill_gregset): Call gdbarch_tdep() just once, assign result to
12251 variable and use that, instead of calling the function several
12252 times.
12253
12254 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
12255
12256 * configure.host: Accept sparcv9 as alias for sparc64.
12257 * configure.tgt: Likewise.
12258
12259 2002-01-22 Kevin Buettner <kevinb@redhat.com>
12260
12261 * solib-aix5.c (build_so_list_from_mapfile)
12262 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
12263 arguments is not reversed.
12264 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
12265 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
12266
12267 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
12268
12269 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
12270 modified version of obsolete sh_fetch_pseudo_register.
12271 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
12272 (sh4_register_read): New function.
12273 (sh_pseudo_register_write): New function. Renamed and modified
12274 version of obsolete sh_store_pseudo_register.
12275 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
12276 (sh4_register_write): New function.
12277 (sh_gdbarch_init): Remove setting of gdbarch function
12278 fetch_pseudo_register and store_pseudo_register. Remove setting of
12279 register_convert_to_raw, register_convert_to_virtual,
12280 register_convertible.
12281 (sh_sh4_register_convertible): Delete. No longer needed. All is
12282 taken care by architecture specific functions
12283 register_read/register_write.
12284 (sh_sh4_register_convert_to_virtual): Make static.
12285 (sh_sh4_register_convert_to_raw): Ditto.
12286
12287 2002-01-22 Andrew Cagney <ac131313@redhat.com>
12288
12289 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
12290 (floatformat_is_nan, floatformat_mantissa): Ditto.
12291
12292 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
12293 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
12294 builtin_type_ieee_double_little,
12295 builtin_type_ieee_double_littlebyte_bigword,
12296 builtin_type_m68881_ext, builtin_type_i960_ext,
12297 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
12298 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
12299 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
12300 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
12301
12302 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
12303
12304 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
12305 parameter. Set frameless flag if it exists and depended of
12306 whether the scanned function is frameless or not.
12307 (xstormy16_skip_prologue): If function is frameless, return
12308 result of xstormy16_scan_prologue().
12309 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
12310 call.
12311
12312 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
12313
12314 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
12315 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
12316 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
12317 sh_sh4_register_byte, sh_sh4_register_raw_size,
12318 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
12319 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
12320 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
12321 sh_store_pseudo_register, sh_do_pseudo_register): Call
12322 gdbarch_tdep() just once, assign result to variable and use that,
12323 instead of calling the function several times.
12324
12325 2002-01-20 Mark Kettenis <kettenis@gnu.org>
12326
12327 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
12328 macros instead of LAST_FPU_CTRL_REGNUM.
12329 (store_register): Likewise.
12330
12331 2002-01-21 Jim Blandy <jimb@redhat.com>
12332
12333 * infcmd.c (run_command): Check that the `exec' target layer's BFD
12334 is up-to-date before running the program, not just when a program
12335 exits.
12336
12337 2002-01-21 Fred Fish <fnf@redhat.com>
12338
12339 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
12340 when we have found all instructions we are looking for.
12341
12342 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
12343
12344 * arm-tdep.c (arm_register_name): New function.
12345 (arm_registers_names): Make static.
12346 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
12347 (arm_register_name): Declare.
12348 (REGISTER_NAME): Use it.
12349
12350 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
12351 Kevin Buettner <kevinb@redhat.com>
12352
12353 Convert arm targets to new FRAME interface.
12354 * arm-tdep.c (struct frame_extra_info): Remove fsr.
12355 (arm_frame_find_save_regs): Delete.
12356 (arm_frame_init_saved_regs): New.
12357 (arm_init_extra_frame_info): Alloacte saved_regs as required.
12358 Allocate extra_info as required. Convert all uses of fsr.regs
12359 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
12360 to use extra_info.
12361 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
12362 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
12363 (check_prologue_cache, save_prologue_cache): Likewise.
12364 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
12365 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
12366 (FRAME_FIND_SAVED_REGS): Delete.
12367 (arm_frame_find_saved_regs): Delete prototype.
12368 (arm_frame_init_saved_regs): New prototype.
12369 (FRAME_INIT_SAVED_REGS): Define.
12370
12371 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12372
12373 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
12374
12375 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12376
12377 From Jeff Law <law@redhat.com>:
12378 * infttrace.c: Include <sys/pstat.h>.
12379 (child_pid_to_exec_file): Revamp. Use pstat call to get the
12380 exec file if the ttrace equivalent fails.
12381
12382 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12383
12384 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
12385 (closeLogFile): Ditto.
12386
12387 2002-01-20 Michael Chastain <mec@shout.net>
12388
12389 * top.c (print_gdb_version): Bump copyright year to 2002.
12390
12391 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12392
12393 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
12394 Zannoni and Eli Zaretskii.
12395
12396 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
12397
12398 * buildsym.c: Update copyright years.
12399 * c-typeprint.c: Likewise.
12400 * dwarf2read.c: Likewise.
12401 * f-typeprint.c: Likewise.
12402 * gdbtypes.c: Likewise.
12403 * gdbtypes.h: Likewise.
12404 * hp-symtab-read.c: Likewise.
12405 * hpread.c: Likewise.
12406 * mdebugread.c: Likewise.
12407 * p-typeprint.c: Likewise.
12408
12409 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12410
12411 * remote-sim.c (gdbsim_open): Simplify code testing the macro
12412 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
12413 byte-order selectable.
12414 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
12415 * arch-utils.c: Ditto.
12416 (set_endian): Ditto.
12417 (set_endian_from_file): Ditto.
12418 * gdbserver/low-sim.c (create_inferior): Ditto.
12419 * gdbarch.sh: Ditto.
12420 * gdbarch.h: Re-generate.
12421 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12422 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
12423 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
12424 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12425 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12426 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12427 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
12428 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
12429 macro definition.
12430 * config/mips/tm-wince.h: Remove #undef of macro
12431 TARGET_BYTE_ORDER_SELECTABLE.
12432 * config/sh/tm-wince.h: Ditto.
12433
12434 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
12435
12436 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
12437 member function fields. Add accessor macro
12438 TYPE_FN_FIELD_ARTIFICIAL.
12439 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
12440 * c-typeprint.c (c_type_print_base): Skip artificial member
12441 functions.
12442
12443 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
12444
12445 * f-typeprint.c: Delete unused function f_type_print_args.
12446 * p-typeprint.c: Delete unused function pascal_type_print_args.
12447
12448 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
12449
12450 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
12451 comment. Add ``artificial'' to ``union field_location''.
12452
12453 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
12454
12455 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
12456 * mdebugread.c (parse_symbol): Likewise.
12457 * stabsread.c (define_symbol): Likewise.
12458 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
12459 initializing TYPE_FIELD_BITPOS to n (obsolete).
12460 (hpread_doc_function_type): Likewise.
12461 * hpread.c (hpread_function_type): Likewise.
12462
12463 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12464
12465 * configure.in (host_makefile_frag): Only require a host makefile
12466 fragment when a native build.
12467 * configure: Re-generate.
12468
12469 2002-01-20 Andrew Cagney <ac131313@redhat.com>
12470
12471 * doublest.h (floatformat_from_type): Declare.
12472 * doublest.c (floatformat_from_type): New function.
12473 (convert_typed_floating): Use.
12474
12475 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
12476 call to function floatformat_from_type.
12477
12478 * gdbarch.sh (IEEE_FLOAT): Delete.
12479 * gdbarch.h, gdbarch.c: Re-generate.
12480 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
12481 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
12482 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
12483 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
12484 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
12485 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
12486 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
12487 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
12488 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
12489 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
12490 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
12491 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
12492
12493 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
12494 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
12495 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
12496 * sh-tdep.c (sh_gdbarch_init): Ditto.
12497 * mips-tdep.c (mips_gdbarch_init): Ditto.
12498 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
12499 * cris-tdep.c (cris_gdbarch_init): Ditto.
12500
12501 2002-01-20 Jiri Smid <smid@suse.cz>
12502
12503 * configure.host, configure.tgt: Support x86-64.
12504 * NEWS: Note new target x86-64.
12505
12506 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
12507 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
12508 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
12509 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
12510 x86-64-linux-nat.o): Fix dependencies.
12511
12512 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12513
12514 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
12515 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
12516 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
12517 * config/sparc/xm-sun4os4.h: Delete file.
12518 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
12519
12520 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12521
12522 * config/sparc/sparclynx.mh (XM_FILE): Delete.
12523 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
12524 * config/m68k/m68klynx.mh (XM_FILE): Delete.
12525 * config/i386/i386lynx.mh (XM_FILE): Delete.
12526 * config/rs6000/xm-rs6000ly.h: Delete file.
12527 * config/sparc/xm-sparclynx.h: Delete file.
12528 * config/m68k/xm-m68klynx.h: Delete file.
12529 * config/i386/xm-i386lynx.h: Delete file.
12530 * config/xm-lynx.h: Delete file.
12531 * config/djgpp/fnchange.lst: Update.
12532
12533 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12534
12535 * alpha-tdep.c (alpha_register_byte): New function.
12536 (alpha_register_raw_size): Ditto.
12537 (alpha_register_virtual_size): Ditto.
12538 (alpha_skip_prologue_internal): Renamed from
12539 alpha_skip_prologue.
12540 (alpha_skip_prologue): New version that calls
12541 alpha_skip_prologue_internal.
12542 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
12543 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
12544 second argument from alpha_skip_prologue.
12545 (REGISTER_BYTE): Use alpha_register_byte.
12546 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
12547 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
12548 (FRAMELESS_FUNCTION_INVOCATION): Use
12549 generic_frameless_function_invocation_not.
12550 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
12551 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
12552
12553 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12554
12555 * config/mips/xm-news-mips.h: Delete file.
12556 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
12557
12558 * config/m88k/xm-m88k.h: Delete file.
12559 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
12560 * config/m88k/xm-delta88v4.h: Ditto.
12561 * config/m88k/xm-delta88.h: Ditto.
12562
12563 * config/alpha/xm-fbsd.h: Delete file.
12564 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
12565
12566 * config/sparc/xm-sparc.h: Delete file.
12567 * Makefile.in (xm-sun4os4.h): Delete dependency.
12568 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
12569 * config/sparc/xm-sun4os4.h: Ditto.
12570 * config/sparc/xm-linux.h: Ditto.
12571
12572 * config/i386/xm-windows.h: Delete file.
12573
12574 2002-01-19 Andrew Cagney <ac131313@redhat.com>
12575
12576 * utils.c: Include <sys/param.h> for MAXPATHLEN.
12577 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
12578
12579 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12580
12581 * alpha-tdep.c (alpha_call_dummy_words): New.
12582 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
12583 (CALL_DUMMY_P): Define.
12584 (CALL_DUMMY_WORDS): Define.
12585 (SIZEOF_CALL_DUMMY_WORDS): Define.
12586
12587 2002-01-19 Per Bothner <per@bothner.com>
12588
12589 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
12590 isn't NULL, which can happen with some gcj-3.x-produced code.
12591
12592 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12593
12594 * alpha-tdep.c (alpha_register_virtual_type): New function.
12595 (alpha_init_frame_pc_first): Ditto.
12596 (alpha_fix_call_dummy): Ditto.
12597 (alpha_store_struct_return): Ditto.
12598 (alpha_extract_struct_value_address): Ditto.
12599 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
12600 alpha_register_virtual_type.
12601 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
12602 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
12603 alpha_extract_struct_value_address.
12604 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
12605 (INIT_FRAME_PC): Use init_frame_pc_noop.
12606 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
12607
12608 2002-01-19 Mark Kettenis <kettenis@gnu.org>
12609
12610 * i386gnu-nat.c: Include "i386-tdep.h".
12611 (fetch_fpregs): Simplify code dealing with uninitialized floating
12612 point states such that it doesn't require FP7_REGNUM.
12613
12614 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12615
12616 * alpha-tdep.c (frame_extra_info): New.
12617 (alpha_find_saved_regs): Make static. Use
12618 frame->extra_info.
12619 (alpha_frame_init_saved_regs): New function.
12620 (alpha_frame_saved_pc): Use frame->extra_info.
12621 (temp_saved_regs): Don't declare as struct frame_saved_regs.
12622 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
12623 (init_extra_frame_info): Rename to...
12624 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
12625 (alpha_print_extra_frame_info): New function.
12626 (alpha_frame_locals_address): Ditto.
12627 (alpha_frame_args_address): Ditto.
12628 (alpha_pop_frame): Use frame->extra_info.
12629 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
12630 alpha_frame_args_address.
12631 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
12632 (alpha_find_saved_regs): Remove prototype.
12633 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
12634 (EXTRA_FRAME_INFO): Remove.
12635 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
12636 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
12637
12638 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12639
12640 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
12641 (alpha_cannot_fetch_register): Ditto.
12642 (alpha_cannot_store_register): Ditto.
12643 (alpha_register_convertible): Ditto.
12644 (alpha_use_struct_convention): Ditto.
12645 * config/alpha/tm-alpha.h: Update copyright years.
12646 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
12647 (INNER_THAN): Use core_addr_lessthan.
12648 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
12649 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
12650 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
12651 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
12652 (FRAME_CHAIN): Remove unnecessary cast.
12653
12654 2002-01-18 Andrew Cagney <ac131313@redhat.com>
12655
12656 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
12657 obsolete.
12658
12659 2002-01-18 Andrew Cagney <ac131313@redhat.com>
12660
12661 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
12662 * monitor.c, remote-array.c, remote-bug.c: Ditto.
12663 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
12664 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
12665 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
12666 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
12667 * x86-64-linux-nat.c: Ditto.
12668
12669 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12670
12671 * alpha-tdep.c (alpha_register_name): New function.
12672 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
12673 (REGISTER_NAME): Define.
12674
12675 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12676
12677 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
12678
12679 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12680
12681 * alpha-tdep.c: Update copyright years.
12682 (alpha_next_pc): New function.
12683 (alpha_software_single_step): Ditto.
12684 * config/alpha/tm-alpha.h: Add prototype for
12685 alpha_software_single_step.
12686
12687 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12688
12689 * alphabsd-nat.c: Update copyright years.
12690 (fill_gregset): Use regcache_collect.
12691 (fill_fpregset): Likewise.
12692 (fetch_inferior_registers): Only fetch integer registers
12693 if requested to do so.
12694 (store_inferior_registers): Only store integer registers
12695 if requested to do so.
12696
12697 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12698
12699 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
12700 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
12701 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
12702 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
12703 * config/alpha/fbsd.mh (XDEPFILES): Delete.
12704 * config/arm/linux.mh (XDEPFILES): Delete.
12705 * config/arm/nbsd.mh (XDEPFILES): Delete.
12706 * config/i386/i386dgux.mh (XDEPFILES): Delete.
12707 * config/i386/i386sol2.mh (XDEPFILES): Delete.
12708 * config/i386/i386m3.mh (XDEPFILES): Delete.
12709 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
12710 * config/i386/i386gnu.mh (XDEPFILES): Delete.
12711 * config/i386/fbsd.mh (XDEPFILES): Delete.
12712 * config/i386/i386bsd.mh (XDEPFILES): Delete.
12713 * config/i386/i386sco5.mh (XDEPFILES): Delete.
12714 * config/i386/i386v4.mh (XDEPFILES): Delete.
12715 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
12716 * config/i386/i386sco4.mh (XDEPFILES): Delete.
12717 * config/i386/i386aix.mh (XDEPFILES): Delete.
12718 * config/i386/go32.mh (XDEPFILES): Delete.
12719 * config/i386/cygwin.mh (XDEPFILES): Delete.
12720 * config/i386/i386lynx.mh (XDEPFILES): Delete.
12721 * config/i386/i386mach.mh (XDEPFILES): Delete.
12722 * config/i386/i386v32.mh (XDEPFILES): Delete.
12723 * config/i386/linux.mh (XDEPFILES): Delete.
12724 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
12725 * config/i386/ncr3000.mh (XDEPFILES): Delete.
12726 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
12727 * config/i386/i386sco.mh (XDEPFILES): Delete.
12728 * config/i386/i386v.mh (XDEPFILES): Delete.
12729 * config/i386/nbsd.mh (XDEPFILES): Delete.
12730 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
12731 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
12732 * config/i386/symmetry.mh (XDEPFILES): Delete.
12733 * config/i386/obsd.mh (XDEPFILES): Delete.
12734 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
12735 * config/ia64/linux.mh (XDEPFILES): Delete.
12736 * config/ia64/aix.mh (XDEPFILES): Delete.
12737 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
12738 * config/m68k/dpx2.mh (XDEPFILES): Delete.
12739 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
12740 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
12741 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
12742 * config/m68k/linux.mh (XDEPFILES): Delete.
12743 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
12744 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
12745 * config/m68k/nbsd.mh (XDEPFILES): Delete.
12746 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
12747 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
12748 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
12749 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
12750 * config/m88k/delta88.mh (XDEPFILES): Delete.
12751 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
12752 * config/m88k/m88k.mh (XDEPFILES): Delete.
12753 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
12754 * config/mips/linux.mh (XDEPFILES): Delete.
12755 * config/mips/irix6.mh (XDEPFILES): Delete.
12756 * config/mips/irix5.mh (XDEPFILES): Delete.
12757 * config/mips/irix4.mh (XDEPFILES): Delete.
12758 * config/mips/irix3.mh (XDEPFILES): Delete.
12759 * config/mips/decstation.mh (XDEPFILES): Delete.
12760 * config/mips/mipsm3.mh (XDEPFILES): Delete.
12761 (NATDEPFILES): Move core-aout.o to here.
12762 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
12763 * config/pa/hpux1020.mh (XDEPFILES): Delete.
12764 * config/pa/hppabsd.mh (XDEPFILES): Delete.
12765 * config/pa/hppahpux.mh (XDEPFILES): Delete.
12766 * config/pa/hpux11w.mh (XDEPFILES): Delete.
12767 * config/pa/hppaosf.mh (XDEPFILES): Delete.
12768 * config/pa/hpux11.mh (XDEPFILES): Delete.
12769 * config/powerpc/aix.mh (XDEPFILES): Delete.
12770 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
12771 * config/powerpc/linux.mh (XDEPFILES): Delete.
12772 * config/romp/rtbsd.mh: Rename XDEPFILES.
12773 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
12774 * config/rs6000/aix4.mh (XDEPFILES): Delete.
12775 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
12776 * config/s390/s390.mh (XDEPFILES): Delete.
12777 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
12778 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
12779 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
12780 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
12781 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
12782 * config/sparc/nbsd.mh (XDEPFILES): Delete.
12783 * config/sparc/linux.mh (XDEPFILES): Delete.
12784 * config/vax/vaxult.mh (XDEPFILES): Delete.
12785 * config/vax/vaxult2.mh (XDEPFILES): Delete.
12786 * Makefile.in (DEPFILES): Remove XDEPFILES.
12787
12788 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12789
12790 * utils.c (internal_verror): Fix comments, default is yes not no.
12791 Update queries to match. Default to quit and dump core.
12792
12793 2002-01-17 Andrew Cagney <ac131313@redhat.com>
12794
12795 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
12796 copyright.
12797 * defs.h, event-top.c, gdbcmd.h: Ditto.
12798 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
12799 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
12800 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
12801 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
12802 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
12803 * mi/mi-main.c:Ditto.
12804
12805 * stack.c, symfile.c: Update copyright.
12806
12807 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
12808
12809 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
12810 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
12811 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
12812 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
12813
12814 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
12815
12816 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
12817 * gdbserver/low-lynx.c (myattach): Likewise.
12818 * gdbserver/low-nbsd.c (myattach): Likewise.
12819 * gdbserver/low-sim.c (myattach): Likewise.
12820 * gdbserver/low-sparc.c (myattach): Likewise.
12821 * gdbserver/low-sun3.c (myattach): Likewise.
12822
12823 * gdbserver/low-linux.c (myattach): New function.
12824
12825 * gdbserver/server.c (attach_inferior): New function.
12826 (main): Handle "--attach".
12827
12828 2002-01-16 Andrew Cagney <ac131313@redhat.com>
12829
12830 * MAINTAINERS (language support): Daniel Jacobwitz is C++
12831 maintainer.
12832
12833 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
12834
12835 * c-typeprint.c (is_type_conversion_operator): Add additional
12836 check for non-conversion operators.
12837
12838 2002-01-15 Michael Snyder <msnyder@redhat.com>
12839
12840 * linux-proc.c: Add "info proc" command, a la procfs.c.
12841 (read_mapping): New function, abstract and re-use code.
12842 (linux_find_memory_regions): Use new func read_mapping.
12843 (linux_info_proc_cmd): New function, implement "info proc".
12844 (_initialize_linux_proc): Add new command "info proc".
12845
12846 2002-01-15 Michael Snyder <msnyder@redhat.com>
12847
12848 * symfile.c (generic_load): Use bfd_map_over_sections method
12849 instead of manipulating bfd structure members directly.
12850 (add_section_size_callback): New function, bfd sections callback
12851 used by generic_load.
12852 (load_sections_callback): New function, bfd sections callback
12853 used by generic_load.
12854
12855 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
12856
12857 [Based on work by Jim Blandy]
12858 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
12859 (builtin_type_vec128): Export.
12860 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
12861 types.
12862 (builtin_type_vec128): New builtin type for 128 bit vector
12863 registers.
12864 (build_gdbtypes): Initialize builtin_type_v16qi and
12865 builtin_type_v8hi. Create the vec128 register builtin type
12866 structure.
12867 (build_builtin_type_vec128): New function.
12868 (_initialize_gdbtypes): Register builtin_type_v16qi and
12869 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
12870 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
12871 AltiVec register to new builtin type.
12872
12873 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
12874
12875 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
12876 to make_cv_type.
12877
12878 2002-01-14 Andrew Cagney <ac131313@redhat.com>
12879
12880 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
12881 CLEAN_UP_REGISTER_VALUE.
12882 * regcache.c (supply_register): Update only call.
12883
12884 2002-01-14 Andrew Cagney <ac131313@redhat.com>
12885
12886 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12887 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12888 a29k-*-vxworks* targets as obsolete.
12889
12890 2002-01-14 Michael Snyder <msnyder@redhat.com>
12891
12892 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
12893 until we can resolve portability issues.
12894 * gregset.h: Remove references to fpxregs.
12895 * gcore.c (gcore_command): Initialize note_sec to NULL.
12896
12897 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12898
12899 * signals.c (target_signal_to_name): Rewrite. Only use
12900 signals[].name when in bounds and non-NULL.
12901
12902 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12903
12904 From Petr Ledvina <ledvinap@kae.zcu.cz>:
12905 * signals.c (target_signal_to_name): Verify that SIG is within the
12906 bounds of the signals array.
12907
12908 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12909
12910 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
12911
12912 2002-01-13 Keith Seitz <keiths@redhat.com>
12913
12914 * stack.c (print_frame_info_base): Print the frame's pc
12915 only if when print_frame_info_listing_hook is not defined.
12916
12917 2002-01-13 Keith Seitz <keiths@redhat.com>
12918
12919 * varobj.c (varobj_set_value): Make sure that there were no
12920 errors evaluating the object before attempting to set its
12921 value.
12922 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
12923 so this offset adjustment is no longer necessary.
12924 (create_child): Don't set the error flag if the child is
12925 a CPLUS_FAKE_CHILD.
12926 (value_of_child): If value_fetch_lazy fails, return NULL
12927 so that callers will be notified that an error occurred.
12928 (c_value_of_variable): Delay check of variable's validity
12929 until later. We actually want all structs and unions to have
12930 the value "{...}".
12931 Do not return "???" for variables which could not be evaluated.
12932 This error condition must be returned to the caller so that it
12933 can get the error condition from gdb.
12934 (cplus_name_of_child): Adjust index for vptr before figuring
12935 out the name of the child.
12936 (cplus_value_of_child): If a child's (real) parent is not valid,
12937 don't even bother trying to give a value for it. Just return
12938 an error. Change all instances in this function.
12939 (cplus_type_of_child): If our parent is one of the "fake"
12940 parents, we need to get at the type of the real parent, and
12941 derive the child's true type using this information.
12942
12943 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12944
12945 From 2002-01-09 John Marshall <johnm@falch.net>:
12946 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
12947 sources.redhat.com, and tweak some related URLs which had
12948 suffered from linkrot.
12949
12950 2002-01-13 Andrew Cagney <ac131313@redhat.com>
12951
12952 From Jeff law:
12953 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
12954 structures passed in registers.
12955
12956 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
12957
12958 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
12959 white space which prevented compilation. Reported by DSK
12960 <dsk@student.unsw.edu.au>.
12961
12962 2002-01-11 Michael Snyder <msnyder@redhat.com>
12963
12964 * symfile.c (build_section_addr_info_from_section_tab):
12965 Use bfd access method instead of manipulating bfd directly.
12966 (syms_from_objfile): Ditto.
12967 (simple_overlay_update_1): Ditto.
12968 (simple_overlay_update): Ditto.
12969 (generic_load): Ditto.
12970 (overlay_unmapped_address): FIXME comment, bfd access methods.
12971 (sections_overlap): FIXME comment, bfd access methods.
12972 (pc_in_mapped_range): FIXME comment, bfd access methods.
12973 (pc_in_unmapped_range): FIXME comment, bfd access methods.
12974 (section_is_mapped): FIXME comment, bfd access methods.
12975 (section_is_overlay): FIXME comment, bfd access methods.
12976
12977 * symfile.c (generic_load): Whitespace and long line cleanups.
12978 Remove duplicate variable, change several local variables to
12979 more appropriate data types.
12980 (print_transfer_performance): Use %lu instead of %ld for ulongs.
12981
12982 2002-01-12 Andrew Cagney <ac131313@redhat.com>
12983
12984 From Peter Schauer:
12985 * language.c (longest_local_hex_string_custom): Use phex_nz to
12986 convert NUM to a hex string.
12987
12988 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
12989
12990 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
12991 the function.
12992 Update Copyright year.
12993
12994 2002-01-12 Andrew Cagney <ac131313@redhat.com>
12995
12996 * language.c (longest_raw_hex_string): Delete unused function.
12997
12998 2002-01-11 Petr Sorfa <petrs@caldera.com>
12999
13000 * MAINTAINERS (write-after-approval): Add myself.
13001 * dwarf2read.c (read_tag_string_type): Handling of
13002 DW_AT_byte_size.
13003 (read_tag_string_type): FORTRAN fix to prevent propagation of
13004 first string size.
13005 (set_cu_language): Handling of DW_LANG_Fortran95
13006
13007 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
13008
13009 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
13010 GETPID(inferior_ptid).
13011 (store_inferior_registers): Likewise.
13012
13013 2002-01-10 Jason Merrill <jason@redhat.com>
13014
13015 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
13016 Fix DW_OP_minus.
13017
13018 2002-01-10 Andrew Cagney <ac131313@redhat.com>
13019
13020 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
13021 and bfd/elf32-sh-nbsd.c.
13022
13023 2002-01-10 Michael Snyder <msnyder@redhat.com>
13024
13025 * NEWS: Mention --pid and corefile/proc-id behavior change.
13026
13027 * Makefile.in: Add rules for gcore.o and linux-proc.o.
13028 * gcore.c: Include cli/cli-decode.h instead of command.h.
13029
13030 * main.c (captured_main): Add new command line option "--pid".
13031 If the second command line argument (following the symbol-file)
13032 begins with a digit, try to attach to it before trying to open
13033 it as a corefile.
13034 (print_gdb_help): Document the "--pid" argument.
13035
13036 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
13037
13038 * completer.c (command_completer): New function.
13039
13040 * completer.h <command_completer>: Add prototype.
13041
13042 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
13043 completer for the "help" command.
13044
13045 2002-01-09 Jason Merrill <jason@redhat.com>
13046
13047 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
13048
13049 2002-01-09 Michael Snyder <msnyder@redhat.com>
13050
13051 * i386-linux-nat.c (fill_fpxregset): Make global.
13052 (store_fpxregset): Ditto.
13053
13054 * gregset.h (gdb_fpxregset_t): Define.
13055 (supply_fpxregset): Prototype.
13056 (fill_fpxregset): Prototype.
13057
13058 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
13059
13060 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
13061
13062 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
13063 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
13064 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
13065
13066 2002-01-09 Andrew Cagney <ac131313@redhat.com>
13067
13068 * MAINTAINERS: Update target maintainer rules so that any
13069 Maintainer can approve a tested patch for a maintenance-only
13070 target.
13071
13072 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
13073
13074 * MAINTAINERS (write-after-approval): Add myself.
13075
13076 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
13077 IN_SIGTRAMP.
13078
13079 2002-01-08 Michael Snyder <msnyder@redhat.com>
13080
13081 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
13082 real name of the executable, rather than the /proc name.
13083
13084 2002-01-03 Michael Snyder <msnyder@redhat.com>
13085
13086 Implement a "generate-core-file" command in gdb, save target state.
13087 * gcore.c: New file. Implement new command 'generate-core-file'.
13088 Save a corefile image of the current state of the inferior.
13089 * linux-proc.c: Add linux-specific code for saving corefiles.
13090 * target.h (struct target_ops): Add new target vectors for saving
13091 corefiles; to_find_memory_regions and to_make_corefile_notes.
13092 (target_find_memory_regions): New macro.
13093 (target_make_corefile_notes): New macro.
13094 * target.c (update_current_target): Inherit new target methods.
13095 (dummy_find_memory_regions): New place-holder method.
13096 (dummy_make_corefile_notes): New place-holder method.
13097 (init_dummy_target): Initialize new dummy target vectors.
13098 * exec.c (exec_set_find_memory_regions): New function.
13099 Allow the exec_ops vector for memory regions to be taken over.
13100 (exec_make_note_section): New function, target vector method.
13101 * defs.h (exec_set_find_memory_regions): Export prototype.
13102 * procfs.c (proc_find_memory_regions): New function, corefile method.
13103 (procfs_make_note_section): New function, corefile method.
13104 (init_procfs_ops): Set new target vector pointers.
13105 (find_memory_regions_callback): New function.
13106 (procfs_do_thread_registers): New function.
13107 (procfs_corefile_thread_callback): New function.
13108 * sol-thread.c (sol_find_memory_regions): New function.
13109 (sol_make_note_section): New function.
13110 (init_sol_thread_ops): Initialize new target vectors.
13111 * inftarg.c (inftarg_set_find_memory_regions): New function.
13112 Allow to_find_memory_regions vector to be taken over.
13113 (inftarg_set_make_corefile_notes): New function.
13114 Allow to_make_corefile_notes vector to be taken over.
13115 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
13116 interface layer if not target_has_execution (may be a corefile).
13117 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
13118 * config/sparc/sun4sol2.mh: Ditto.
13119 * config/alpha/alpha-linux.mh: Ditto.
13120 * config/arm/linux.mh: Ditto.
13121 * config/i386/x86-64linux.mh: Ditto.
13122 * config/ia64/linux.mh: Ditto.
13123 * config/m68k/linux.mh: Ditto.
13124 * config/mips/linux.mh: Ditto.
13125 * config/powerpc/linux.mh: Ditto.
13126 * config/sparc/linux.mh: Ditto.
13127
13128 2002-01-07 Michael Snyder <msnyder@redhat.com>
13129
13130 * arm-linux-nat.c: Remove references to regcache.c internal data
13131 (registers[] and register_valid[]).
13132
13133 2002-01-07 Michael Snyder <msnyder@redhat.com>
13134
13135 * linux-proc.c: New file. Implement child_pid_to_exec_file,
13136 so that attaching to a pid will automatically read the process's
13137 symbol file and shlibs.
13138 * Makefile.in: Add rule for linux-proc.o.
13139 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
13140 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
13141 * config/arm/linux.mh: Ditto.
13142 * config/i386/linux.mh: Ditto.
13143 * config/i386/x86-64linux.mh: Ditto.
13144 * config/ia64/linux.mh: Ditto.
13145 * config/m68k/linux.mh: Ditto.
13146 * config/mips/linux.mh: Ditto.
13147 * config/powerpc/linux.mh: Ditto.
13148 * config/sparc/linux.mh: Ditto.
13149
13150 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
13151
13152 * win32-nat.c: Add i386-tdep.h dependency.
13153
13154 2002-01-07 Michael Snyder <msnyder@redhat.com>
13155
13156 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
13157 instead of bfd_get_arch_size. Don't bail out just because
13158 there's no exec_bfd.
13159
13160 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
13161 * p-valprint.c (pascal_object_print_value): Ditto.
13162 * somread.c (som_symtab_read): Ditto.
13163 * symfile.c (simple_free_overlay_region_table): Ditto.
13164 * valops.c (value_assign): Ditto.
13165
13166 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
13167 use tilde_expand and strerror for opening save-tracepoints file.
13168
13169 * thread-db.c (thread_db_new_objfile): Indendation fix.
13170
13171 * infptrace.c (GDB_MAX_ALLOCA): New define.
13172 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
13173 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
13174 can be overridden with whatever value is appropriate to the host).
13175 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
13176 alloca to allocate potentially large buffer.
13177 * rs6000-nat.c (child_xfer_memory): Ditto.
13178 * symm-nat.c (child_xfer_memory): Ditto.
13179 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
13180
13181 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
13182
13183 From Nick Clifton <nickc@redhat.com>
13184 * d10v-tdep.c: Set STACK_START to 0x200bffe.
13185
13186 2002-01-07 Michael Snyder <msnyder@redhat.com>
13187
13188 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
13189 Don't use exec_bfd if it's NULL.
13190
13191 2002-01-06 Mark Kettenis <kettenis@gnu.org>
13192
13193 * valops.c (value_arg_coerce): Fix formatting.
13194
13195 2002-01-06 Andrew Cagney <ac131313@redhat.com>
13196
13197 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
13198 * gnu-nat.c: Ditto.
13199
13200 2002-01-06 Andrew Cagney <ac131313@redhat.com>
13201
13202 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
13203 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
13204 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
13205 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
13206 z8k-coff have not been multi-arched. Update z8k-coff build
13207 status.
13208
13209 2002-01-06 Andrew Cagney <ac131313@redhat.com>
13210
13211 * MAINTAINERS: Mark a29k target as obsolete.
13212 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
13213 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
13214 comments.
13215 * NEWS: Note that a29k targets are obsolete.
13216 * a29k-tdep.c: Mark as obsolete.
13217 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
13218 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
13219 a29k-*-vxworks* targets as obsolete.
13220 * remote-adapt.c: Obsolete.
13221 * remote-eb.c: Obsolete.
13222 * remote-mm.c: Obsolete.
13223 * remote-udi.c: Obsolete.
13224 * config/a29k/a29k-udi.mt: Obsolete.
13225 * config/a29k/a29k.mt: Obsolete.
13226 * config/a29k/tm-a29k.h: Obsolete.
13227 * config/a29k/tm-vx29k.h: Obsolete.
13228 * config/a29k/vx29k.mt: Obsolete.
13229
13230 2002-01-05 Andrew Cagney <ac131313@redhat.com>
13231
13232 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
13233 with BFD_ENDIAN_BIG.
13234
13235 2002-01-05 Andrew Cagney <ac131313@redhat.com>
13236
13237 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
13238 * configure, config.in: Re-generate.
13239 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
13240 * defs.h: Do not include <endian.h>.
13241
13242 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
13243
13244 * acconfig.h (HAVE_PT_GETXMMREGS): New.
13245 * config.in: Regenerate.
13246 * configure.in: Update copyright years.
13247 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
13248 * configure: Regenerate.
13249 * i386bsd-nat.c: Update copyright years.
13250 (fill_gregset): Use regcache_collect.
13251 (fetch_inferior_registers): Only fetch integer registers
13252 if requested to do so. Add support for XMM registers
13253 using PT_GETXMMREGS.
13254 (store_inferior_registers): Only store integer registers
13255 if requested to do so. Add support for XMM registers
13256 using PT_SETXMMREGS.
13257 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
13258 (store_inferior_registers): Remove.
13259 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
13260 (fetch_elfcore_registers): New function.
13261 (i386nbsd_elfcore_fns): New.
13262 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
13263 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
13264 i386bsd-nat.o.
13265 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
13266 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
13267 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
13268 * config/i386/tm-nbsd.h: Update copyright years.
13269 (HAVE_SSE_REGS): Define.
13270 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
13271 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
13272 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
13273 (SIGCONTEXT_PC_OFFSET): Remove.
13274 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
13275
13276 2002-01-05 Andrew Cagney <ac131313@redhat.com>
13277
13278 * configure.tgt: Remove powerpc-*-macos* target.
13279 * config/m68k/xm-mpw.h: Delete file.
13280 * config/xm-mpw.h: Delete file.
13281 * ser-mac.c: Delete file.
13282 * mpw-make.sed: Delete file.
13283 * mpw-config.in: Delete file.
13284 * mac-xdep.c: Delete file.
13285 * mac-gdb.r: Delete file.
13286 * mac-defs.h: Delete file.
13287 * mac-nat.c: Delete file.
13288 * config/powerpc/macos.mh: Delete file.
13289 * config/powerpc/macos.mt: Delete file.
13290 * config/powerpc/nm-macos.h: Delete file.
13291 * config/powerpc/tm-macos.h: Delete file.
13292 * source.c (openp, open_source_file): Remove obsolete code.
13293 * top.c (gdb_readline): Ditto.
13294 * utils.c (query): Ditto.
13295 * event-top.c (display_gdb_prompt): Ditto.
13296 * Makefile.in (ser-mac.o): Delete obsolete target.
13297 * NEWS: Update.
13298
13299 2002-01-04 Andrew Cagney <ac131313@redhat.com>
13300
13301 * defs.h (BIG_ENDIAN): Delete macro definition.
13302 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
13303 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
13304 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
13305 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
13306 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
13307 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
13308 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
13309 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
13310 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
13311 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
13312 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
13313 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
13314 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
13315 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
13316 * gdbarch.c: Re-generate.
13317
13318 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13319
13320 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
13321 for core files.
13322
13323 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
13324
13325 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
13326
13327 2002-01-04 Andrew Cagney <ac131313@redhat.com>
13328
13329 * value.h (value_ptr): Delete typedef.
13330
13331 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
13332
13333 * i386nbsd-nat.c: Update copyright years.
13334 Include i386-tdep.h.
13335
13336 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
13337
13338 * stabsread.c: Update copyright years.
13339
13340 From Debashis Mahata <debashis.mahata@wipro.com>:
13341 (read_struct_fields): Deal with Sun C compiler erroneous stab
13342 output for structs and unions.
13343 Fix PR gdb/269.
13344
13345 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13346
13347 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
13348 prototype.
13349
13350 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13351
13352 * cp-abi.c: Fix whitespace.
13353 (baseclass_offset): New wrapper function.
13354 * cp-abi.h (baseclass_offset): Add prototype.
13355 (struct cp_abi_ops): Add baseclass_offset pointer.
13356
13357 * valops.c (vb_match): Move to...
13358 * gnu-v2-abi.c (vb_match): here.
13359 * valops.c (baseclass_offset): Move to...
13360 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
13361
13362 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
13363
13364 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
13365 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
13366 * hpacc-abi.c (init_hpacc_ops): Likewise.
13367
13368 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
13369
13370 * valops.c (find_overload_match): Accept obj as a
13371 reference parameter. Update it before returning.
13372 * value.h (find_overload_match): Update prototype.
13373 * eval.c (evaluate_subexp_standard): Pass object to
13374 find_overload_match by reference.
13375
13376 2002-01-03 Andrew Cagney <ac131313@redhat.com>
13377
13378 * valarith.c: Replace value_ptr with struct value pointer. Remove
13379 register attribute from value declarations.
13380 * valops.c: Ditto.
13381 * value.h: Ditto.
13382 * scm-lang.c (scm_lookup_name): Ditto.
13383
13384 2002-01-03 Michael Snyder <msnyder@redhat.com>
13385
13386 Abstract the functionality of iterating over mapped memory
13387 regions into a general purpose iterator function.
13388 * procfs.c (iterate_over_mappings): New function, general purpose
13389 iterator for memory sections.
13390 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
13391 (solib_mappings_callback): New function, callback for above.
13392 (info_proc_mappings): Reimpliment using iterate_over_mappings.
13393 (info_mappings_callback): New function, callback for above.
13394
13395 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
13396
13397 2002-01-01 Mark Kettenis <kettenis@gnu.org>
13398
13399 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
13400 * i386-tdep.c: Include "elf-bfd.h".
13401 (process_note_abi_tag_sections): New function.
13402 (i386_gdbarch_init): Add code to recognize various OS/ABI
13403 combinations.
13404
13405 * maint.c (_initialize_maint_cmds): Add missing \ in
13406 string-literal.
13407
13408 For older changes see ChangeLog-2001
13409 \f
13410 Local Variables:
13411 mode: change-log
13412 left-margin: 8
13413 fill-column: 74
13414 version-control: never
13415 End:
This page took 0.279832 seconds and 5 git commands to generate.