2002-11-18 Klee Dienes <kdienes@apple.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
bf4ae8b2
KD
12002-11-18 Klee Dienes <kdienes@apple.com>
2
3 * Makefile.in (buildsym.o): Add dependency for gdb_assert.h.
4
a672ef13
KD
52002-11-18 Klee Dienes <kdienes@apple.com>
6
7 * buildsym.c (pop_context): Add comment.
8
0c5e171a
KD
92002-11-18 Klee Dienes <kdienes@apple.com>
10
11 * buildsym.h (pop_context): Convert to function, defined in
12 buildsym.c.
13 * buildsym.c: Include gdb_assert.h.
14 (pop_context): Implement as C function. Add check for stack
15 underflow.
16 * dbxread.c (process_one_symbol): Complain and stop processing
17 that symbol if we are already at the top of the context stack for
18 a function-end N_FUN (this would imply an umatched RBRAC). Ditto
19 when processing N_RBRAC.
20
8a1f4c4c
DJ
212002-11-16 Daniel Jacobowitz <drow@mvista.com>
22
23 * config/pa/nm-hppah.h (CHILD_POST_FOLLOW_INFERIOR_BY_CLONE): Don't
24 define.
25 (struct target_waitstatus): Add opaque definition.
26 * corelow.c (init_core_ops): Don't set to_clone_and_follow_inferior.
27 * exec.c (init_exec_ops): Likewise.
28 * fork-child.c (clone_and_follow_inferior): Remove.
29 * hppah-nat.c (child_post_follow_inferior_by_clone): Remove.
30 * inferior.h (clone_and_follow_inferior): Remove prototype.
31 * infrun.c (follow_fork_mode_both): Remove.
32 (follow_fork_mode_kind_names): Remove commented out "both".
33 (follow_inferior_fork): Remove follow_fork_mode_both support.
34 * inftarg.c (child_clone_and_follow_inferior): Remove.
35 (child_post_follow_inferior_by_clone): Remove.
36 (init_child_ops): Don't set to_clone_and_follow_inferior
37 or to_post_follow_inferior_by_clone.
38 * target.c (default_clone_and_follow_inferior): Remove.
39 (cleanup_target): Don't set to_clone_and_follow_inferior
40 or to_post_follow_inferior_by_clone.
41 (find_default_clone_and_follow_inferior): Remove.
42 (init_dummy_target): Don't set to_clone_and_follow_inferior.
43 (debug_to_clone_and_follow_inferior): Remove.
44 (debug_to_post_follow_inferior_by_clone): Remove.
45 (setup_target_debug): Don't set to_clone_and_follow_inferior
46 or to_post_follow_inferior_by_clone.
47 * target.h (struct target_ops): Remove to_clone_and_follow_inferior
48 and to_post_follow_inferior_by_clone.
49 (child_clone_and_follow_inferior): Remove prototype.
50 (child_post_follow_inferior_by_clone): Remove prototype.
51 (target_clone_and_follow_inferior): Remove macro.
52 (target_post_follow_inferior_by_clone): Remove macro.
53 (find_default_clone_and_follow_inferior): Remove prototype.
54
47932f85
DJ
552002-11-16 Daniel Jacobowitz <drow@mvista.com>
56
57 * breakpoint.c (bpstat_stop_status): Call inferior_has_forked,
58 inferior_has_vforked, and inferior_has_execd instead of
59 target_has_forked, target_has_vforked, and target_has_execd.
60 * config/pa/nm-hppah.h (CHILD_HAS_FORKED, CHILD_HAS_VFORKED)
61 (CHILD_HAS_EXECD, CHILD_HAS_SYSCALL_EVENT): Don't define.
62 (CHILD_WAIT): Define.
63 (child_wait): Add prototype.
64 * hppah-nat.c (hpux_has_forked): Rename from child_has_forked.
65 Add prototype.
66 (hpux_has_vforked): Likewise, from child_has_vforked.
67 (hpux_has_execd): Likewise, from child_has_execd.
68 (hpux_has_syscall_event): Likewise, from child_has_syscall_event.
69 (not_same_real_pid, child_wait): New, copied from inftarg.c.
70 Call hpux_has_forked, hpux_has_vforked, hpux_has_execd,
71 and hpux_has_syscall_event instead of the target hooks.
72 * infrun.c (inferior_has_forked, inferior_has_vforked)
73 (inferior_has_execd): New functions.
74 * inftarg.c (not_same_real_pid): Remove.
75 (child_wait): Remove references to not_same_real_pid,
76 target_has_forked, target_has_vforked, target_has_execd,
77 and target_has_syscall_event.
78 (child_has_forked, child_has_vforked, child_has_execd)
79 (child_has_syscall_event): Remove.
80 (init_child_ops): Remove references to child_has_forked,
81 child_has_vforked, child_has_execd, and child_has_syscall_event.
82 * infttrace.c (hpux_has_forked): Rename from child_has_forked.
83 (hpux_has_vforked): Likewise, from child_has_vforked.
84 (hpux_has_execd): Likewise, from child_has_execd.
85 (hpux_has_syscall_event): Likewise, from child_has_syscall_event.
86 * target.c (cleanup_target): Remove references to
87 to_has_forked, to_has_vforked, to_has_execd, and
88 to_has_syscall_event.
89 (update_current_target): Likewise.
90 (setup_target_debug): Likewise.
91 (debug_to_has_forked): Remove.
92 (debug_to_has_vforked): Remove.
93 (debug_to_has_execd): Remove.
94 (debug_to_has_syscall_event): Remove.
95 * target.h (struct target_ops): Remove to_has_forked.
96 to_has_vforked, to_has_execd, and to_has_syscall_event.
97 (child_has_forked, child_has_vforked, child_has_execd)
98 (child_has_syscall_event): Remove prototypes.
99 (inferior_has_forked, inferior_has_vforked, inferior_has_execd): Add
100 prototypes.
101 (target_has_forked, target_has_vforked, target_has_execd)
102 (target_has_syscall_event): Remove macros.
103
4088142a
DJ
1042002-11-16 Daniel Jacobowitz <drow@mvista.com>
105
106 * hppah-nat.c (child_can_follow_vfork_prior_to_exec): Remove.
107 * inftarg.c (child_can_follow_vfork_prior_to_exec): Remove.
108 (init_child_ops): Don't initialize to_can_follow_vfork_prior_to_exec.
109 * infttrace.c (child_can_follow_vfork_prior_to_exec): Remove.
110 * target.c (cleanup_target): Remove reference to
111 to_can_follow_vfork_prior_to_exec.
112 (update_current_target): Likewise.
113 (debug_to_can_follow_vfork_prior_to_exec): Remove.
114 (setup_target_debug): Remove reference to
115 to_can_follow_vfork_prior_to_exec.
116 * target.h (struct target_ops): Remove
117 to_can_follow_vfork_prior_to_exec.
118 (child_can_follow_vfork_prior_to_exec): Remove prototype.
119 (target_can_follow_vfork_prior_to_exec): Remove definition.
120 * config/pa/nm-hppah.h (CHILD_CAN_FOLLOW_VFORK_PRIOR_TO_EXEC): Don't
121 define.
122 * infrun.c (follow_vfork_when_exec): Remove.
123 (follow_inferior_fork): Remove references to follow_vfork_when_exec.
124 (follow_exec): Likewise.
125 (handle_inferior_event): Likewise.
126 (keep_going): Likewise.
127
18cde8d5
AC
1282002-11-15 Andrew Cagney <cagney@redhat.com>
129
130 * frame.c (generic_unwind_get_saved_register): Make static.
131 * frame.h (generic_unwind_get_saved_register): Delete declaration.
132 * avr-tdep.c (avr_gdbarch_init): Do not set get_saved_register,
133 defaults to generic_unwind_get_saved_register.
134 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
135 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
136 * frv-tdep.c (frv_gdbarch_init): Ditto.
137 * i386-tdep.c (i386_gdbarch_init): Ditto.
138 * s390-tdep.c (s390_gdbarch_init): Ditto.
139 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
140 * v850-tdep.c (v850_gdbarch_init): Ditto.
141 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
142 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
143 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Delete macro.
144
a6b063af
AC
1452002-11-15 Andrew Cagney <cagney@redhat.com>
146
147 * x86-64-linux-nat.c (i386_sse_regnum_p): New function. Copy from
148 i386-tdep.c.
149
f407986f
AC
1502002-11-15 Andrew Cagney <cagney@redhat.com>
151
152 * frame.h (sigtramp_saved_pc): Delete declaration.
153 * blockframe.c (sigtramp_saved_pc): Delete function.
154 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): New function.
155 (ns32k_frame_saved_pc): Call ns32k_sigtramp_saved_pc.
156 * vax-tdep.c (vax_sigtramp_saved_pc): New function.
157 (vax_frame_saved_pc): Call vax_sigtramp_saved_pc.
158
f18c5a73
AC
1592002-11-15 Andrew Cagney <ac131313@redhat.com>
160
161 * frame.c (frame_pc_unwind): New function.
162 (frame_saved_regs_pc_unwind): New function.
163 (frame_register_unwind): Pass unwind_cache instead of
164 register_unwind_cache.
165 (set_unwind_by_pc): Add unwind_pc parameter, set.
166 (create_new_frame): Pass frame->pc_unwind to set_unwind_by_pc.
167 (get_prev_frame): Ditto.
168 * frame.h (frame_pc_unwind_ftype): Declare.
169 (struct frame_info): Add pc_unwind, pc_unwind_cache_p and
170 pc_unwind_cache. Rename register_unwind_cache to unwind_cache.
171 (frame_pc_unwind): Declare.
172 * dummy-frame.c (dummy_frame_pc_unwind): New function.
173 (struct dummy_frame): Add comment mentioning that values are for
174 previous frame.
175 * dummy-frame.h (dummy_frame_pc_unwind): Declare.
176 * blockframe.c (file_frame_chain_valid): Use frame_pc_unwind.
177 (generic_file_frame_chain_valid): Ditto.
178 * stack.c (frame_info): Ditto.
179
d9285969 1802002-11-15 David Carlton <carlton@math.stanford.edu>
0960f083
DC
181
182 * linespec.c (locate_first_half): New function.
183 (decode_line_1): Move code into locate_first_half.
184
d741b867
AC
1852002-11-15 Andrew Cagney <ac131313@redhat.com>
186
187 * complaints.h: Add comment explaining how to eliminate a
188 deprecated_complain call.
24382c5c 189 * complaints.h: Fix spelling errors.
d741b867 190
82d03c99
DC
1912002-11-15 David Carlton <carlton@math.stanford.edu>
192
193 * printcmd.c: Remove #include "disasm.h".
194
c97eb5d9
AC
1952002-11-14 Andrew Cagney <ac131313@redhat.com>
196
197 * frame.h: Move the most relevant interface functions to the start
198 of the file.
199
524d7c18
AC
2002002-11-14 Andrew Cagney <ac131313@redhat.com>
201
202 * regcache.h (deprecated_registers): Rename registers.
203 * a68v-nat.c, alpha-nat.c, arch-utils.c, core-sol2.c: Update.
204 * hp300ux-nat.c, hppab-nat.c, hppah-nat.c: Update.
205 * hppam3-nat.c, hpux-thread.c, i386gnu-nat.c: Update.
206 * ia64-aix-nat.c, ia64-linux-nat.c, ia64-tdep.c: Update.
207 * irix4-nat.c, irix5-nat.c, lynx-nat.c, m68k-tdep.c: Update.
208 * m68knbsd-nat.c, mips-linux-tdep.c, mipsm3-nat.c: Update.
209 * mipsv4-nat.c, ns32knbsd-nat.c, ppc-bdm.c: Update.
210 * ppc-sysv-tdep.c, ptx4-nat.c, regcache.c, remote-es.c: Update.
211 * remote-sds.c, remote-vx68.c, remote-vxmips.c: Update.
212 * remote-vxsparc.c, rs6000-tdep.c, sol-thread.c: Update.
213 * sparc-nat.c, sparc-tdep.c, sun3-nat.c, symm-nat.c: Update.
214 * v850ice.c: Update.
215
6411e720
AC
216Wed Nov 13 19:51:05 2002 Andrew Cagney <cagney@redhat.com>
217
218 * utils.c (gdb_realpath): Add comment mentioning realpath with a
219 NULL buffer.
220
73937e03
AC
2212002-11-13 Andrew Cagney <cagney@redhat.com>
222
223 * regcache.h (deprecated_read_register_bytes): Rename
224 read_register_bytes.
225 (deprecated_write_register_bytes): Rename write_register_bytes.
226 * alpha-tdep.c, arm-tdep.c, cris-tdep.c, d10v-tdep.c: Update.
227 * dwarf2cfi.c, frv-tdep.c, hppa-tdep.c, ia64-tdep.c: Update.
228 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10300-tdep.c: Update.
229 * ns32k-tdep.c, regcache.c, remote-sds.c, remote-vx.c: Update.
230 * remote.c, rs6000-tdep.c, s390-tdep.c, sh-tdep.c: Update.
231 * sparc-tdep.c, v850-tdep.c, vax-tdep.c, x86-64-tdep.c: Update.
232 * xstormy16-tdep.c, z8k-tdep.c, config/nm-gnu.h: Update.
233 * config/nm-m3.h, config/h8500/tm-h8500.h: Update.
234 * config/i386/nm-ptx4.h, config/i386/nm-symmetry.h: Update.
235 * config/m32r/tm-m32r.h, config/m68k/nm-sun3.h: Update.
236 * config/m68k/tm-delta68.h, config/m68k/tm-linux.h: Update.
237 * config/mn10200/tm-mn10200.h, config/pa/tm-hppa64.h: Update.
238 * config/sparc/nm-nbsd.h, config/sparc/nm-sun4os4.h: Update.
239 * config/sparc/nm-sun4sol2.h, config/sparc/tm-sparclet.h: Update.
240
fb0cd46e
JB
2412002-11-13 Jim Blandy <jimb@redhat.com>
242
243 * findvar.c (read_var_value): Doc fix.
244
2d28509a
AC
2452002-11-13 Andrew Cagney <cagney@redhat.com>
246
247 * regcache.c (struct regcache): Replace passthough_p with
248 readonly_p.
249 (regcache_xmalloc): Initialize readonly_p.
250 (build_regcache): Initialize readonly_p.
251 (regcache_save): New function.
252 (regcache_restore): New function.
253 (regcache_cpy): Re-implement using regcache_save and
254 regcache_restore.
255 (regcache_raw_read): Update.
256 (regcache_cooked_read): When a read-only cache, checked for cached
257 pseudo register values.
258 (regcache_raw_write): Assert that the cache is not read-only.
259 Remove code handling a non-passthrough cache.
260 * regcache.h (regcache_save): Declare.
261 (regcache_restore): Declare.
262
067df2e5
AC
2632002-11-13 Andrew Cagney <cagney@redhat.com>
264
265 * regcache.c (struct regcache_descr): Add fields
266 sizeof_cooked_registers and sizeof_cooked_register_valid_p.
267 (init_legacy_regcache_descr): Compute the size of a cooked
268 register cache and then assign that to sizeof_raw_registers. Set
269 sizeof_raw_register_valid_p to sizeof_cooked_register_valid_p
270 (init_legacy_regcache_descr): Ditto.
271
51b1fe4e
AC
2722002-11-13 Andrew Cagney <cagney@redhat.com>
273
274 * regcache.c (register_buffer): Move to near start of file, update
275 description.
276 (regcache_raw_read): Use.
277 (regcache_raw_write): Use.
278 (struct regcache): Rename raw_registers to registers and
279 raw_register_valid_p to register_valid_p.
280 (regcache_xmalloc): Update.
281 (regcache_xfree): Update.
282 (register_buffer): Update.
283 (regcache_cpy): Update.
284 (regcache_cpy_no_passthrough): Update.
285 (regcache_valid_p): Update.
286 (deprecated_grub_regcache_for_registers): Update.
287 (deprecated_grub_regcache_for_register_valid): Update.
288 (set_register_cached): Update.
289 (regcache_raw_write): Update.
290
80b4c677
PM
2912002-11-13 Pierre Muller <muller@ics.u-strasbg.fr>
292
293 * p-exp.y (name_not_typename): Use copy_name to
294 set current_type variable for fields of THIS.
295
0f3fafde
DJ
2962002-11-12 Daniel Jacobowitz <drow@mvista.com>
297
298 * gnu-nat.c (init_gnu_ops): Remove NULL initializations.
299 * monitor.c (init_base_monitor_ops): Likewise.
300 * ppc-bdm.c (init_bdm_ppc_ops): Likewise.
301 * remote-array.c (init_array_ops): Likewise.
302 * remote-e7000.c (init_e7000_ops): Likewise.
303 * remote-es.c (init_es1800_ops): Likewise.
304 (init_es1800_child_ops): Likewise.
305 * remote-rdp.c (init_remote_rdp_ops): Likewise.
306 * remote-sim.c (init_gdbsim_ops): Likewise.
307 * remote-st.c (init_st2000_ops): Likewise.
308 * sol-thread.c (init_sol_core_ops): Likewise.
309 (init_sol_thread_ops): Likewise.
310 * v850ice.c (init_850ice_ops): Likewise.
311 * win32-nat.c (init_child_ops): Likewise.
312 * wince.c (init_child_ops): Likewise.
313
82c0260e
AC
3142002-11-12 Andrew Cagney <ac131313@redhat.com>
315
316 * utils.c (gdb_realpath): Make rp a constant pointer.
317
70d35819
AC
3182002-11-12 Andrew Cagney <ac131313@redhat.com>
319
320 * utils.c (gdb_realpath): Rewrite. Try, in order: realpath() with
321 a constant buffer; cannonicalize_file_name(); realpath() with a
322 pathconf() defined buffer, xstrdup().
323
9835a8b0
AC
3242002-11-12 Andrew Cagney <ac131313@redhat.com>
325
326 * config/djgpp/fnchange.lst: Fix typo, hang1.c to hang1.C; hang2.c
327 to hang2.C; hang3.c to hang3.C.
328
3f47be5c
EZ
3292002-11-11 Elena Zannoni <ezannoni@redhat.com>
330
331 * findvar.c (read_var_value): Reenable TLS code.
332
3332002-11-11 Elena Zannoni <ezannoni@redhat.com>
334 Jim Blandy <jimb@redhat.com>
335
336 * gdb_thread_db.h (enum): Add TD_NOTALLOC.
337 * target.c (update_current_target): Add
338 to_get_thread_local_address.
339 * target.h (to_get_thread_local_address): Export.
340 (target_get_thread_local_address): Define.
341 (target_get_thread_local_address_p): Define.
342 * thread-db.c: Include solib-svr4.h.
343 (td_thr_tls_get_addr_p): Define.
344 (thread_db_load): Get a pointer to td_thr_tls_get_addr.
345 (thread_db_get_thread_local_address): New function.
346 (init_thread_db_ops): Initialize to_get_thread_local_address.
347 * configure.in: Add test for TD_NOTALLOC in thread_db.h.
348 * configure: Regenerate.
349 * config.in: Regenerate.
350
636b1a6d
DC
3512002-11-11 David Carlton <carlton@math.stanford.edu>
352
353 * linespec.c (set_flags): New function.
354 (decode_line_1): Move code into set_flags.
355
44fe14ab
DC
3562002-11-11 David Carlton <carlton@math.stanford.edu>
357
358 * linespec.c (decode_line_1): Move chunks of code to separate
359 functions.
360 (initialize_defaults): New function.
361 (decode_indirect): New function.
362
e6f181f5
AC
3632002-11-11 Andrew Cagney <ac131313@redhat.com>
364
8971b011
AC
365 * blockframe.c (sigtramp_saved_pc): Fix tipo. void_func_ptr
366 instead of void_code_ptr.
367 (sigtramp_saved_pc): Ditto.
368
e6f181f5
AC
369 * x86-64-tdep.c (i386_fp_regnum_p): Copy i386-tdep.c's
370 i386_fp_regnum_p.
371
01ad7f36
DJ
3722002-11-10 Daniel Jacobowitz <drow@mvista.com>
373
374 * gdbtypes.h (struct main_type): Move artificial flag out of
375 loc. New member of ``struct field'' named static_kind. Reduce
376 overloaded meaning of bitsize.
377 (FIELD_ARTIFICIAL, SET_FIELD_PHYSNAME, SET_FIELD_PHYSADDR)
378 (TYPE_FIELD_STATIC, TYPE_FIELD_STATIC_HAS_ADDR): Likewise.
379 (FIELD_STATIC_KIND, TYPE_FIELD_STATIC_KIND): New macros.
380
381 * ada-lang.c (fill_in_ada_prototype): Initialize static_kind for
382 new fields.
383 (template_to_fixed_record_type, template_to_static_fixed_type)
384 (to_record_with_fixed_variant_part): Likewise.
385 * coffread.c (coff_read_struct_type, coff_read_enum_type): Likewise.
386 * dwarf2read.c (dwarf2_add_field, read_enumeration): Likewise.
387 * dwarfread.c (struct_type, enum_type): Likewise.
388 * hpread.c (hpread_read_enum_type)
389 (hpread_read_function_type, hpread_read_doc_function_type)
390 (hpread_read_struct_type): Likewise.
391 * mdebugread.c (parse_symbol): Likewise.
392
bf1e52be
AC
3932002-11-10 Andrew Cagney <ac131313@redhat.com>
394
395 * breakpoint.h (deprecated_frame_in_dummy): Rename frame_in_dummy.
396 * stack.c (print_frame_info_base): Update.
397 (print_frame_info_base, frame_info): Update.
398 * sparc-tdep.c (sparc_init_extra_frame_info): Update.
399 (sparc_frame_saved_pc): Update.
400 * ada-lang.c (find_printable_frame): Update.
401 * breakpoint.c (deprecated_frame_in_dummy): Update.
402
ce556f85
MK
4032002-11-09 Mark Kettenis <kettenis@gnu.org>
404
405 * i386-linux-nat.c (ORIG_EAX): Define to -1 if not already
406 defined.
407 (regmap): Extend to cover all registers.
408 (PT_READ_U, PT_WRITE_U, PTRACE_XFER_TYPE,
409 OLD_CANNOT_FETCH_REGISTERS, OLD_CANNOT_STORE_REGISTERS): Remove
410 definitions.
411 (fetch_register, sore_register): Simplify.
412 (old_fetch_inferior_registers, old_store_inferior_registers):
413 Remove functions.
414 (cannot_fetch_register, cannot_store_register): Change
415 implementation to use regmap array to decide which registers
416 cannot be fetched/stored. This removes $orig_eax from the
417 registers that cannot be fetched/stored.
418 (fetch_inferior_registers): Call fetch_register directly instead
419 of calling old_fetch_inferior_registers.
420 (store_inferior_registers): Call store_register directly instead
421 of calling old_store_inferior_registers.
422 (i386_linux_dr_get): Replace PT_READ_U with PTRACE_PEEKUSER.
423 (i386_linux_dr_set): Replace PT_WRITE_U with PTRACE_POKEUSER.
424 * config/i386/nm-linux.h (U_REGS_OFFSET): Remove definition.
425
932bb524
KD
4262002-11-09 Klee Dienes <kdienes@apple.com>
427
428 * i387-tdep.c (i387_supply_register): When called with NULL as a
429 buffer, mark the register as not provided (to mirror the behavior
430 of supply_register).
431 (i387_supply_fxsave): Ditto.
432 (i387_supply_fsave): Ditto (inherits the behavior from
433 i387_supply_register).
434
ebe68b27
KD
4352002-11-09 Klee Dienes <kdienes@apple.com>
436
437 * blockframe.c (sigtramp_saved_pc): Use
438 builtin_type_void_code_ptr, not builtin_type_void_data_ptr (we are
439 extracting the PC). Use TYPE_LENGTH (builtin_type_void_code_ptr)
440 instead of (TARGET_PTR_BIT / TARGET_CHAR_BIT).
441
15220c65
AC
4422002-11-09 Andrew Cagney <ac131313@redhat.com>
443
444 * frame.c (get_prev_frame): Test prev_p to identify a previously
445 unwound frame. Initialize prev_p.
446 * frame.h (struct frame_info): Add field prev_p. Expand prev/next
447 comment.
448
95adb866
AC
4492002-11-09 Andrew Cagney <ac131313@redhat.com>
450
451 * frame.c (get_prev_frame): Cleanups. Eliminate redundant tests
452 for a NULL NEXT_FRAME. Simplify fromleaf initialization. Add
453 more comments. Zap dead code.
454
e71ecd70
MK
4552002-11-09 Mark Kettenis <kettenis@gnu.org>
456
457 * infcmd.c (print_vector_info, print_float_info): Move code that
458 checks whether the target has any registers and whether there is a
459 selected frame up, such that it is also used if a target provides
460 multi-arch definitions of these functions.
461
c525330d
AC
4622002-11-08 Andrew Cagney <ac131313@redhat.com>
463
72bdd927
AC
464 * Makefile.in (DESTDIR): Define.
465 (install-only, install-gdbtk, uninstall-gdbtk): Add $(DESTDIR)
466 prefix.
467
c525330d
AC
468 * config/djgpp/fnchange.lst: 8.3 proof i386obsd-nat.c and
469 i386obsd-tdep.c. Rename to "gdb.cxx", paths containing "gdb.c++".
470
38c968cf
AC
4712002-11-08 Andrew Cagney <ac131313@redhat.com>
472
473 * i386-linux-tdep.c: Include "reggroups.h".
474 (i386_linux_register_reggroup_p): New function.
475 (i386_linux_init_abi): Set register_reggroup_p to
476 i386_linux_register_reggroup_p.
477 * i386-tdep.h (i386_register_reggroup_p): Declare.
478 * i386-tdep.c: Include "reggroups.h".
479 (i386_init_reggroups): New function.
480 (i386_add_reggroups): New function.
481 (i386_register_reggroup_p): New function.
482 (i386_sse_reggroup, i386_mmx_reggroup): New variables.
483 (_initialize_i386_tdep): Call i386_init_reggroups.
484 (i386_gdbarch_init): Set register_reggroup_p and add in the i386
485 specific reggroups.
486
19e33363
MK
4872002-11-09 Mark Kettenis <kettenis@gnu.org>
488
371a6e84
MK
489 * infptrace.c (child_xfer_memory): Make use of the new PT_IO
490 request that's available in *BSD.
491
94ba925a
MK
492 * i386-tdep.h (IS_FPU_CTRL_REGNUM): Remove.
493
19e33363
MK
494 * i387-tdep.c (i387_fill_fxsave): Use FOOFF_REGNUM instead of
495 FDOFF_REGNUM.
496
8779790c
AC
4972002-11-08 Andrew Cagney <ac131313@redhat.com>
498
499 * frame.c (set_unwind_by_pc): Use dummy_frame_register_unwind.
500 * dummy-frame.c (find_dummy_frame): Rename
501 generic_find_dummy_frame, make static. Return the dummy frame
502 instead of the regcache.
503 (generic_find_dummy_frame): Re-implement using find_dummy_frame,
504 (cached_find_dummy_frame): New function. Use find_dummy_frame.
505 (dummy_frame_register_unwind): Rename
506 generic_call_dummy_register_unwind. Use cached_find_dummy_frame.
507 * dummy-frame.h (dummy_frame_register_unwind): Rename
508 generic_call_dummy_register_unwind.
509
8674b74f
MK
5102002-11-08 Mark Kettenis <kettenis@gnu.org>
511
512 * config/i386/tm-i386v42mp.h: Remove file. Move its contents,
513 except the inclusion of "i386/tm-i386.h", to...
514 * config/i386/nm-i386v42mp.h: ...here.
515 * config/i386/i386v42mp.mt (TM_FILE): Set to tm-i386.h.
516
4c1e7e9d
AC
5172002-11-08 Andrew Cagney <ac131313@redhat.com>
518
519 * Makefile.in (frame.o): Update dependencies.
520 * blockframe.c (current_frame, frame_obstack_alloc)
521 (frame_saved_regs_zalloc, get_current_frame)
522 (set_current_frame, create_new_frame)
523 (set_unwind_by_pc, get_next_frame)
524 (flush_cached_frames, reinit_frame_cache)
525 (frame_saved_regs_register_unwind)
526 (deprecated_generic_get_saved_register)
527 (get_prev_frame, get_frame_pc, get_frame_saved_regs)
528 (_initialize_blockframe): Move frame code from here...
529 * frame.c: ...to here. Include "gdb_obstack.h", "gdbcore.h",
530 "annotate.h" and "dummy-frame.h".
531 (_initialize_frame): New function.
532
921e78cf
JB
5332002-11-08 Jim Blandy <jimb@redhat.com>
534
535 * dwarf2read.c (read_func_scope): Restore list_in_scope properly
536 when we finish a function a context.
537 * buildsym.h (outermost_context_p): New macro.
538 (Bug analyzed by David Edelsohn.)
539
9c1412c1
AC
5402002-11-08 Andrew Cagney <ac131313@redhat.com>
541
542 * blockframe.c: Include "dummy-frame.h".
543 (struct dummy_frame, dummy_frame_stack)
544 (generic_find_dummy_frame, deprecated_generic_find_dummy_frame)
545 (generic_pc_in_call_dummy, deprecated_read_register_dummy)
546 (generic_push_dummy_frame, generic_save_dummy_frame_tos)
547 (generic_save_call_dummy_addr, generic_pop_current_frame)
548 (generic_pop_dummy_frame, generic_fix_call_dummy)
549 (generic_fix_call_dummy, generic_call_dummy_register_unwind): Move
550 dummy frame code from here...
551 * dummy-frame.c: ...to here. New file.
552 * dummy-frame.h: New file.
553 (generic_call_dummy_register_unwind): Declare.
554 (generic_find_dummy_frame): Declare.
555 * Makefile.in (SFILES): Add dummy-frame.c.
556 (dummy-frame.o): Specify dependencies.
557 (dummy_frame_h): Define.
558 (COMMON_OBS): Add dummy-frame.o.
559 (blockframe.o): Update dependencies.
560
208d8187
JB
5612002-11-08 Jim Blandy <jimb@redhat.com>
562
563 * dwarf2read.c (read_func_scope): Restore local_symbols and
564 param_symbols after we finish the function context. (Based on a
565 patch from David Edelsohn.)
566
413dad4d
DC
5672002-11-08 David Carlton <carlton@math.stanford.edu>
568
569 * linespec.c (symbol_found): New function.
570 (minsym_found): New function.
571 (decode_line_1): Separate out some code into separate functions.
572
5512c44a
JB
5732002-11-08 Joel Brobecker <brobecker@gnat.com>
574
575 * i386-tdep.c (i386_frameless_signal_p): Make non static for
576 the benefit of the interix target.
577 * i386-tdep.h (i386_frameless_signal_p): Declare.
578
1b33ef47
AC
5792002-11-08 Andrew Cagney <ac131313@redhat.com>
580
581 * i386-tdep.h (i386_linux_orig_eax_regnum_p): Delete stray
582 declaration that snuck in from change below.
583
23a34459
AC
5842002-11-06 Andrew Cagney <cagney@redhat.com>
585
586 * i386-tdep.c (i386_mmx_regnum_p): Rename mmx_regnum_p. Update
587 all callers.
588 (i386_fp_regnum_p): New function. Use instead of FP_REGNUM_P.
589 (i386_fpc_regnum_p): New function. Use instead of FPC_REGNUM_P.
590 (i386_sse_regnum_p): New function. Use instead of SSE_REGNUM_P.
591 (i386_mxcsr_regnum_p): new function. Use instead of
592 MXCSR_REGNUM_P.
593 * i386-tdep.h (SSE_REGNUM_P): Delete macro.
594 (i386_sse_regnum_p): Declare.
595 (i386_mxcsr_regnum_p): Declare.
596 (FP_REGNUM_P, FPC_REGNUM_P): Delete macros.
597 (i386_fp_regnum_p, i386_fpc_regnum_p): Declare.
598 (IS_FP_REGNUM): Update definition.
599 (IS_FPU_CTRL_REGNUM): Update definition..
600 (IS_SSE_REGNUM): Update definition..
601 * i386v-nat.c (register_u_addr): Update.
602 * go32-nat.c (fetch_register): Update.
603 (store_register): Update.
604
d709c020
JB
6052002-11-07 Joel Brobecker <brobecker@gnat.com>
606
607 Preparation work to convert the hppa targets to multiarch partial.
608
609 * hppa-tdep.c: Add new functions replacing macro bodies from
610 config/pa/tm-hppa.h. These function will be used to initialize
611 the gdbarch structure. Import some comments from tm-hppa.h,
612 and place them where appropriate, to avoid loosing them when
613 we cleanup this file.
614 (hppa_reg_struct_has_addr): New function.
615 (hppa_inner_than): New function.
616 (hppa_stack_align): New function.
617 (hppa_pc_requires_run_before_use): New function.
618 (hppa_instruction_nullified): New function.
619 (hppa_register_byte): New function.
620 (hppa_register_virtual_type): New function.
621 (hppa_store_struct_return): New function.
622 (hppa_cannot_store_register): New function.
623 (hppa_frame_args_address): New function.
624 (hppa_frame_locals_address): New function.
625 (hppa_smash_text_address): New function.
626 (hppa_coerce_float_to_double): New function. Requires the inclusion
627 of "language.h".
628
629 * Makefile.in (hppa-tdep.o): Add dependency on language.h.
630
631 * tm-hppa.h (REG_STRUCT_HAS_ADDR): Change the definition of this
632 gdbarch-eligible macro to a call to the new associated function
633 created in hppa-tdep.c.
634 (INNER_THAN): Likewise.
635 (STACK_ALIGN): Likewise.
636 (PC_REQUIRES_RUN_BEFORE_USE): Likewise.
637 (INSTRUCTION_NULLIFIED): Likewise.
638 (REGISTER_BYTE): Likewise.
639 (REGISTER_VIRTUAL_TYPE): Likewise.
640 (STORE_STRUCT_RETURN): Likewise.
641 (CANNOT_STORE_REGISTER): Likewise.
642 (FRAME_ARGS_ADDRESS): Likewise.
643 (FRAME_LOCALS_ADDRESS): Likewise.
644 (SMASH_TEXT_ADDRESS): Likewise.
645 (COERCE_FLOAT_TO_DOUBLE): Likewise.
646 (ABOUT_TO_RETURN): Delete, as no longer used.
647
83c31e7d
FN
6482002-11-07 Fernando Nasser <fnasser@redhat.com>
649
650 * printcmd.c (disassemble_command): Remove obsolete function.
651 (_initialize_printcmd): Do not create disassemble command here.
652 * cli/cli-cmds.c (disassemble_command): New function. Implements
653 disassemble command.
654 (init_cli_cmds): Create disassemble command here instead.
655
0ec30a36
AC
6562002-11-07 Andrew Cagney <ac131313@redhat.com>
657
658 * MAINTAINERS: Add Daniel Jacobowitz to global maintainers list.
659
e600bd34
AC
6602002-11-07 Andrew Cagney <ac131313@redhat.com>
661
662 * regcache.h (regcache_cooked_read_using_offset_hack)
663 (regcache_cooked_write_using_offset_hack): Delete declarations.
664 (register_changed): Delete declaration.
665 * regcache.c (regcache_cooked_read_using_offset_hack)
666 (regcache_cooked_write_using_offset_hack): Delete functions.
667 (cooked_xfer_using_offset_hack): Delete function.
668 (register_changed): Delete function.
669
568f8739
JB
6702002-11-07 Jim Blandy <jimb@redhat.com>
671
672 * macroscope.c: #include "complaints.h".
673 (sal_macro_scope): Cope with filenames that appear in the symtabs,
674 but not in the macro table.
675 * Makefile.in (macroscope.o): Record dependency.
676
b0718b7b
JB
6772002-11-07 Joel Brobecker <brobecker@gnat.com>
678
679 * PROBLEMS: Document gdb/816 (unable to read core file on alpha-osf).
680
2b9e5f3f
AC
6812002-11-07 Andrew Cagney <ac131313@redhat.com>
682
683 * regcache.c (deprecated_registers_fetched): Update.
684 * regcache.h (deprecated_registers_fetched): Rename
685 registers_fetched.
686 * remote-vxsparc.c (vx_read_register): Update.
687 * remote-vxmips.c (vx_read_register): Update.
688 * remote-vx68.c (vx_read_register): Update.
689 * irix5-nat.c (fetch_core_registers): Update.
690 * mipsm3-nat.c (fetch_inferior_registers): Update.
691 * sun3-nat.c (fetch_inferior_registers): Update.
692 * symm-nat.c (fetch_inferior_registers): Update.
693 * ns32knbsd-nat.c (fetch_inferior_registers): Update.
694 (fetch_core_registers): Update.
695 (fetch_kcore_registers): Update.
696 * mips-nat.c (fetch_inferior_registers): Update.
697 * corelow.c (get_core_registers): Update.
698 * a68v-nat.c (fetch_inferior_registers): Update.
699
e6e68f1f
JB
7002002-11-06 Joel Brobecker <brobecker@gnat.com>
701
702 Put in place the framework necessary for multiarching the hppa targets.
703 * hppa-tdep.c (hppa_gdbarch_init): New function.
704 (hppa_dump_tdep): New function.
705 (_initialize_hppa_tdep): Register the hppa gdbarch init function and
706 tdep structure dumper.
707 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): New macro, defined to 0
708 until the multi-arching conversion has partially been completed.
709
492254e9
AC
7102002-11-06 Andrew Cagney <ac131313@redhat.com>
711
712 * valops.c (value_assign): Merge lval_register case into
713 lval_reg_frame_relative. Use frame_register and
714 regcache_cooked_write instead of get_saved_register and
715 write_register_bytes. After flushing the register cache, try to
716 re-select the selected frame.
717
8262ee23
AC
7182002-11-06 Andrew Cagney <ac131313@redhat.com>
719
720 * regcache.h (deprecated_register_valid): Rename register_valid.
721 * regcache.c: Update.
722 * ia64-aix-nat.c: Update.
723 * i386gnu-nat.c: Update.
724 * alpha-nat.c: Update.
725 * sparc-nat.c: Update.
726 * lynx-nat.c: Update.
727 * remote-mips.c: Update.
728
4facf7e8
JB
7292002-11-06 Joel Brobecker <brobecker@gnat.com>
730
731 * hppa-tdep.c (_initialize_hppa_tdep): Move function body
732 to end of file, to be more consistent with the pratice followed
733 by other targets.
734
f9418c0f
AC
7352002-11-06 Andrew Cagney <ac131313@redhat.com>
736
737 * infcmd.c: Include "reggroups.h" and <ctype.h>.
738 (print_float_info): Print registers in float_reggroup.
739 (print_vector_info): Print registers in vector_reggroup.
740 (default_print_registers_info): When all, print registers in
741 all_reggroup. Otherwize, print registers in general_reggroup.
742 (registers_info): Rewrite. Add support for register groups.
743 Eliminate a goto.
744
3fe235a7
EZ
7452002-11-06 Elena Zannoni <ezannoni@redhat.com>
746
747 * symtab.c (methods_info): Delete. It has been ifdeffed out for
748 ages.
749 (symtab_symbol_info): Remove eons old ifdeffed out code.
750 (_initialize_symtab): Remove prehistoric disabled 'info methods'
751 command.
752
ef944135
TR
7532002-11-06 Theodore A. Roth <troth@openavr.org>
754
755 * c-exp.y: Add missing semi-colons.
756 * f-exp.y: Add missing semi-colons.
757 * m2-exp.y: Add missing semi-colons.
758 * p-exp.y: Add missing semi-colons.
759 Add empty action to start rule to avoid a type clash error when
760 building with bison >= 1.50.
761
f8302a57
JB
7622002-11-06 Jim Blandy <jimb@redhat.com>
763
764 * macrotab.h (struct macro_source_file): Doc fix.
765
6e382aa3
JJ
7662002-11-05 Jeff Johnston <jjohnstn@redhat.com>
767
768 * varobj.c (child_exists, cplus_number_of_children): Change
769 STREQ macro references to strcmp.
770 (cplus_name_of_child): Change code to handle the fact that
771 fields are not necessarily contiguous with regards to their
772 access control. This is a fix for PR gdb/792.
773
a216a322
AC
7742002-11-05 Andrew Cagney <ac131313@redhat.com>
775
776 * gdbarch.sh (GET_SAVED_REGISTER): Change to a predicate function.
777 * gdbarch.h, gdbarch.c: Regnerate.
778 * frame.h (frame_register): Declare.
779 * frame.c (frame_register): New function.
780 (get_saved_register): Test GET_SAVED_REGISTER_P before calling
781 GET_SAVED_REGISTER, otherwize call
782 generic_unwind_get_saved_register.
783 (frame_register_read): Use frame_register instead of
784 get_saved_register.
785
7d5b6fdd
EZ
7862002-11-05 Elena Zannoni <ezannoni@redhat.com>
787
788 From Jim Ingham <jingham@apple.com>:
789 * event-top.c (gdb_disable_readline): New function.
790 (_initialize_event_loop): Move comment.
791
b7c64260
EZ
7922002-11-05 Elena Zannoni <ezannoni@redhat.com>
793
794 * event-loop.c (start_event_loop): Add comment.
795 Update copyright.
796
c2e1b8f2
AC
7972002-11-05 Andrew Cagney <ac131313@redhat.com>
798
799 * infcmd.c (default_print_registers_info): Do not call
800 PRINT_REGISTER_HOOK.
801
87647bb0
AC
8022002-11-05 Andrew Cagney <ac131313@redhat.com>
803
804 * sparc-tdep.c (sparc_print_register_hook): Make static.
805 (sparc_print_registers_info): New function.
806 (sparc_do_registers_info): New function.
807 (sparclet_print_registers_info): New function.
808 (sparclet_do_registers_info): New function.
809 (do_sparc_print_registers_info): New function.
810 (sparc_print_registers): New static function, clone of infcmd.c's
811 default_print_registers_info.
812 * config/sparc/tm-sparclet.h (PRINT_REGISTER_HOOK): Delete macro.
813 (sparclet_do_registers_info): Declare.
814 (DEPRECATED_DO_REGISTERS_INFO): Re-define.
815 * config/sparc/tm-sparc.h (DEPRECATED_DO_REGISTERS_INFO):
816 Re-define.
817 (sparc_do_registers_info): Declare.
818 (PRINT_REGISTER_HOOK): Delete macro.
819 (sparc_print_register_hook): Delete declaration.
820
8155455b
DC
8212002-11-05 David Carlton <carlton@math.stanford.edu>
822
823 * symtab.c (lookup_symbol_aux): Move chunks of code into separate
824 functions.
825 (lookup_symbol_aux_local): New function.
826 (lookup_symbol_aux_symtabs): New function.
827 (lookup_symbol_aux_psymtabs): New function.
828
29924310
DC
8292002-11-05 David Carlton <carlton@math.stanford.edu>
830
831 * symtab.c (lookup_symbol_aux): In minsym sections, don't use the
832 previous values of 'objfile' and 'block'.
833
cc303028
PM
8342002-11-05 Pierre Muller <muller@ics.u-strasbg.fr>
835
836 * values.c (value_change_enclosing_type): Set
837 enclosing_type field correctly also for the case where
838 more memory needs to be allocated.
839
1d70089a
MK
8402002-11-03 Mark Kettenis <kettenis@gnu.org>
841
f16a25ae
MK
842 * i387-tdep.c (i387_print_float_info): Call fputs_filtered instead
843 of puts_filtered.
844
1d70089a
MK
845 * i387-tdep.c (i387_print_float_info): Replace calls to
846 register_read and deprecated_read_register_gen with calls to
847 frame_register_read, and make the necessary adjustments to the
848 surrounding code.
849
7e20f3fb
AC
8502002-11-02 Andrew Cagney <ac131313@redhat.com>
851
852 * gdbarch.sh (register_reggroup_p): Allow default value.
853 * gdbarch.h, gdbarch.c: Regenerate.
854
192dbe33
AC
8552002-11-02 Andrew Cagney <ac131313@redhat.com>
856
857 * regcache.h: Add coment indicating replacements for deprecated
858 functions.
859
b59ff9d5
AC
8602002-11-02 Andrew Cagney <cagney@redhat.com>
861
862 * reggroups.h, reggroups.c: New files.
863 * regcache.c: Include "reggroups.h".
864 (enum regcache_dump_what): Add `regcache_dump_groups'.
865 (regcache_dump): Contract size of the "Type" column. When
866 specified, dump the register's groups.
867 (maintenance_print_register_groups): New function.
868 (_initialize_regcache): Add command `maint print register-groups'.
869 * Makefile.in (COMMON_OBS): Add reggroups.o
870 (SFILES): Add reggroups.c.
871 (reggroups_h): Define.
872 (regcache.o, gdbarch.o): Update dependencies.
873 (reggroups.o): Specify dependencies.
874 * gdbarch.sh (register_reggroup_p): Add pure multi-arch method.
875 Add opaque declaration for `struct reggroup' in generated .h file.
876 Include "reggroups.h" in generated .c file.
877 gdbarch.h, gdbarch.c: Re-generate.
878
4caf0990
AC
8792002-11-02 Andrew Cagney <cagney@redhat.com>
880
881 * regcache.h (deprecated_read_register_gen): Rename
882 read_register_gen.
883 (deprecated_write_register_gen): Rename write_register_gen.
884 * i387-tdep.c: Update.
885 * x86-64-linux-nat.c: Update
886 * wince.c: Update.
887 * thread-db.c: Update.
888 * win32-nat.c: Update.
889 * mips-tdep.c: Update.
890 * d10v-tdep.c: Update.
891 * cris-tdep.c: Update.
892 * remote-sim.c: Update.
893 * remote-rdi.c: Update.
894 * remote-rdp.c: Update.
895 * frame.c: Update.
896 * target.c: Update.
897 * blockframe.c: Update.
898 * x86-64-tdep.c: Update.
899 * xstormy16-tdep.c: Update.
900 * sh-tdep.c: Update.
901 * s390-tdep.c: Update.
902 * rs6000-tdep.c: Update.
903 * sparc-tdep.c: Update.
904 * i386-tdep.c: Update.
905 * dwarf2cfi.c: Update.
906 * regcache.c: Update.
907
7a7adcdf
JB
9082002-11-01 Joel Brobecker <brobecker@gnat.com>
909
910 New interix-specific files:
911 * config/i386/nm-interix.h: New file.
912 * config/i386/interix.mh: New file.
913 * config/i386/interix.mt: New file.
914 * i386-interix-nat.c: New file.
915 * i386-interix-tdep.c: New file.
916
bdcdd535
AC
9172002-11-01 Andrew Cagney <cagney@redhat.com>
918
919 * frame.h (deprecated_generic_get_saved_register): Rename
920 generic_get_saved_register.
921 * blockframe.c (deprecated_generic_get_saved_register): Update.
922 * xstormy16-tdep.c (xstormy16_get_saved_register): Update.
923 (xstormy16_frame_saved_register): Update.
924 * sh-tdep.c (sh_gdbarch_init): Update.
925 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
926 * ia64-tdep.c (ia64_get_saved_register): Update.
927 * cris-tdep.c (cris_gdbarch_init): Update.
928 * config/m32r/tm-m32r.h (GET_SAVED_REGISTER): Update.
929 * arm-tdep.c (arm_gdbarch_init): Update.
930
2a4b7c45
DJ
9312002-10-31 Daniel Jacobowitz <drow@mvista.com>
932
933 * lin-lwp.c (lin_lwp_resume): Remove resume_all test for !step.
934
ef17e74b
DJ
9352002-10-31 Daniel Jacobowitz <drow@mvista.com>
936
937 * i386-linux-tdep.c (i386_linux_pc_in_sigtramp): Check for
938 trampolines in sigaction.
939
4904ba5b
AC
9402002-10-31 Andrew Cagney <cagney@redhat.com>
941
942 * h8300-tdep.c: Include "gdb_assert.h".
943 (h8300_print_register): Add gdbarch, file and frame parameters.
944 Use frame_read_unsigned_register to read the register's value.
945 Use fprintf_filtered to display output.
946 (h8300_print_registers_info): Replace h8300_do_registers_info.
947 (h8300_gdbarch_init): Set print_registers_info.
948
f908a0eb
AC
9492002-10-31 Andrew Cagney <cagney@redhat.com>
950
951 * frame.c (frame_read_unsigned_register): New function.
952 (frame_read_signed_register): New function.
953 * frame.h (frame_read_unsigned_register): Declare.
954 (frame_read_signed_register): Declare.
955
c5646e11
AC
9562002-10-31 Andrew Cagney <cagney@redhat.com>
957
958 * h8500-tdep.c (h8500_print_registers_info): New static function,
959 clone of infcmd.c's default_print_registers_info.
960 (h8500_do_registers_info): New funtion.
961 (h8500_print_register_hook): Rename print_register_hook, make
962 static.
963
964 * config/h8500/tm-h8500.h: Update copyright.
965 (DEPRECATED_DO_REGISTERS_INFO): Define.
966 (h8500_do_registers_info: Declare.
967 (PRINT_REGISTER_HOOK): Delete macro.
968 (print_register_hook): Delete function.
969
0bdd672b
AC
9702002-10-31 Andrew Cagney <cagney@redhat.com>
971
972 * z8k-tdep.c (z8k_print_register_hook): Make static.
973 (z8k_print_registers_info): New static function, clone of
974 infcmd.c's default_print_registers_info.
975 (z8k_do_registers_info): New function. Wrap
976 z8k_print_registers_info.
977 * config/z8k/tm-z8k.h: Update copyright.
978 (PRINT_REGISTER_HOOK): Delete macro.
979 (z8k_print_register_hook): Delete declaration.
980 (DEPRECATED_DO_REGISTERS_INFO): Define.
981 (z8k_do_registers_info): Declare.
982
bf9c25dc
JB
9832002-10-30 Joel Brobecker <brobecker@gnat.com>
984
985 * hppa-tdep.c (find_function_in_inferior): Remove this extern,
986 as this is already provided by value.h, and was actually causing
987 a compilation error because of a conflict in parameter type
988 declaration due to a missing const keyword.
989 (low_text_segment_addres): Fix a compilation warning.
990
2c665b51
DJ
9912002-10-29 Daniel Jacobowitz <drow@mvista.com>
992
993 * mips-linux-nat.c (mips_linux_cannot_fetch_register): Don't fetch
994 registers without a name.
995 (mips_linux_cannot_store_register): Don't store registers without
996 a name.
997
e70ea697
DC
9982002-10-28 David Carlton <carlton@math.stanford.edu>
999
1000 * symtab.c (find_addr_symbol): Delete. (It was already commented
1001 out.)
1002 * symtab.h: Delete prototype for find_addr_symbol.
1003
903ad3a6
AC
10042002-10-26 Andrew Cagney <cagney@redhat.com>
1005
1006 * gdbarch.sh (DEPRECATED_DO_REGISTERS_INFO): Rename
1007 DO_REGISTERS_INFO.
1008 gdbarch.h, gdbarch.c: Re-generate.
1009 * infcmd.c (default_print_registers_info): Update reference.
1010 * mips-tdep.c (mips_gdbarch_init): Set deprecated_do_registers_info.
1011 (mips_dump_tdep): Do not print DO_REGISTERS_INFO.
1012 * sh-tdep.c (sh_gdbarch_init): Ditto.
1013 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1014 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1015
ab91194c
MK
10162002-10-26 Mark Kettenis <kettenis@gnu.org>
1017
e3033f15
MK
1018 * x86-64-tdep.c (x86_64_init_abi): Set init_extra_frame_info to
1019 cfi_init_extra_frame_info.
1020 * x86-64-tdep.h (x86_64_init_extra_frame_info): Remove prototype.
1021 * x86-64-linux-tdep.c (x86_64_init_extra_frame_info): Remove function.
1022
b83b026c
MK
1023 * x86-64-tdep.c (x86_64_init_abi): Add calls to override the i386
1024 target where necessary. Add more comments and remove the ones
1025 that don't provide any useful information.
1026
267bf4bb
MK
1027 * i386-tdep.c (i386_frame_saved_pc): Replace call to
1028 deprecated_read_register_dummy with
1029 frame_unwind_unsigned_register.
1030
751f1375
MK
1031 * i386-tdep.c (i386_extract_struct_value_address): Use
1032 regcache_raw_read_unsigned instead of
1033 regcache_cooked_read_unsigned since we know that the register
1034 we're reading isn't a pseudo register. Rename variable 'val' into
1035 the more descriptive 'addr'.
1036
26abbdc4
MK
1037 * x86-64-tdep.c: Fix some formatting problems, mostly in comments.
1038 (x86_64_push_return_address): Add comment.
1039 (x86_64_pop_frame): Make static.
1040 (examine_argument): Clarify comment.
1041 (x86_64_skip_prologue): Make prolog_expact variable static.
1042
9f1549cc
MK
1043 * dwarf2cfi.c: Fix some formatting problems.
1044 (context_cpy, read_encoded_pointer): Clarify comments.
1045
ab91194c
MK
1046 * x86-64-tdep.c (x86_64_breakpoint_from_pc): Constify.
1047 (x86_64_init_abi): Move set_gdbarch_* calls that overlap with the
1048 i386 target back into x86_64_gdbarch_init. Add some comments and
1049 remove meaningless ones.
1050
72367fb4
AC
10512002-10-25 Andrew Cagney <cagney@redhat.com>
1052
1053 * complaints.h (struct deprecated_complaint): Rename `struct
1054 complaint'.
1055 * complaints.c (complain): Update.
1056 * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete
1057 incorrect comment indicating that "symfile.h" was being included
1058 for the `struct complaint' definition.
1059 * remote-vx.c: Update.
1060 * objc-lang.c: Update.
1061 * xcoffread.c: Update.
1062 * hpread.c: Update.
1063 * mdebugread.c: Update.
1064 * stabsread.c: Update.
1065 * dwarf2read.c: Update.
1066 * dwarfread.c: Update.
1067 * elfread.c: Update.
1068 * coffread.c: Update.
1069 * stabsread.h: Update.
1070 * dbxread.c: Update.
1071 * buildsym.c: Update.
1072 * gdbtypes.c: Update.
1073 * macrotab.c: Update.
1074
1f2baacc
MK
10752002-10-25 Mark Kettenis <kettenis@gnu.org>
1076
0c1a73d6
MK
1077 * x86-64-tdep.c (x86_64_gdbarch_init): Make a bit more similar to
1078 the version in i386-tdep.c. Move set_gdbarch_* calls out into...
1079 (x86_64_init_abi): ...new function.
1080
6aee4d54 1081 * Makefile.in (i386v-nat.o): Add $(i386_tdep_h).
1f2baacc
MK
1082 * i386v-nat.c: Include "i386-tdep.h".
1083
8f9cbe01
AC
10842002-10-25 Andrew Cagney <cagney@redhat.com>
1085
5f11f355
AC
1086 * gdbtypes.c (address_space_name_to_int): Update.
1087 (address_space_int_to_name): Update.
1088 * gdbarch.sh (address_class_type_flags_to_name): Change to a pure
1089 multi-arch predicate.
1090 (address_class_name_to_type_flags): Ditto.
1091 * gdbarch.h, gdbarch.c: Re-generate.
1092
8f9cbe01
AC
1093 * MAINTAINERS: Check all warnings when h8300hms and alpha-elf.
1094
e8d96a5d
MH
10952002-10-24 Martin M. Hunt <hunt@redhat.com>
1096
1097 * utils.c (string_to_core_addr): Revert patch from 11 Oct.
1098
fe39c653
EZ
10992002-10-24 Elena Zannoni <ezannoni@redhat.com>
1100
1101 * symtab.h (INIT_SAL): Delete macro.
1102 (init_sal): Export.
1103 * symtab.c (init_sal): New function.
1104
1105 * ada-lang.c (ada_finish_decode_line_1): Change INIT_SAL macro
1106 to init_sal function call.
1107 (find_sal_from_funcs_and_line): Ditto.
1108 (all_sals_for_line): Ditto.
1109 * breakpoint.c (create_internal_breakpoint): Ditto.
1110 (create_fork_vfork_event_catchpoint): Ditto.
1111 (create_exec_event_catchpoint): Ditto.
1112 (parse_breakpoint_sals): Ditto.
1113 (watch_command_1): Ditto.
1114 (handle_gnu_4_16_catch_command): Ditto.
1115 (clear_command): Ditto.
1116 * hppa-tdep.c (child_enable_exception_callback): Ditto.
1117 * infcmd.c (run_stack_dummy): Ditto.
1118 * infrun.c (process_event_stop_test): Ditto.
1119 (check_sigtramp2): Ditto.
1120 (step_over_function): Ditto.
1121 * linespec.c (decode_line_2): Ditto.
1122 (decode_line_1): Ditto.
1123 * source.c (line_info): Ditto.
1124 * symtab.c (find_pc_sect_line): Ditto.
1125
baed091b
ML
11262002-10-24 Michal Ludvig <mludvig@suse.cz>
1127
1128 * dwarf2cfi.c (struct context)
1129 (struct context_reg): Moved to dwarf2cfi.h
1130 (context_alloc, frame_state_alloc, context_cpy):
1131 Made extern instead of static, removed prototypes.
1132 * dwarf2cfi.h (struct context)
1133 (struct context_reg): New, moved from dwarf2cfi.c
1134 (context_alloc, frame_state_alloc, context_cpy):
1135 New prototypes.
1136 * x86-64-linux-tdep.c (x86_64_linux_sigtramp_saved_pc):
1137 Changed from static to extern.
1138 (LINUX_SIGINFO_SIZE, LINUX_SIGCONTEXT_PC_OFFSET)
1139 (LINUX_SIGCONTEXT_FP_OFFSET)
1140 (LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Adjusted.
1141 (x86_64_linux_in_sigtramp, x86_64_linux_frame_chain)
1142 (x86_64_init_frame_pc, x86_64_init_extra_frame_info): New.
1143 * x86-64-tdep.c (x86_64_gdbarch_init): Several
1144 set_gdbarch_*() calls now use x86-64 specific functions
1145 instead of DWARF2 CFI ones.
1146 * x86-64-tdep.h (x86_64_linux_in_sigtramp)
1147 (x86_64_linux_frame_chain, x86_64_init_frame_pc)
1148 (x86_64_init_extra_frame_info): New prototypes.
1149
c38da1af
DC
11502002-10-23 David Carlton <carlton@math.stanford.edu>
1151
1152 * linespec.c: #include "parser-defs.h".
1153 Delete prototype for find_template_name_end.
1154 * Makefile.in (linespec.o): Depend on $(parser_defs_h).
1155
fb9b6b35
JJ
11562002-10-23 Jeff Johnston <jjohnstn@redhat.com>
1157
1158 * NEWS: add recent mi fixes.
1159 * varobj.c (struct varobj): Add new "updated" flag.
1160 (new_variable): Default "updated" flag to 0.
1161 (varobj_set_value): Set "updated" flag to 1 if value
1162 changes.
1163 (varobj_update): Check varobj "updated" flag before
1164 comparing old and refreshed values. Fix for
1165 PR gdb/702.
1166
8da065d5
DC
11672002-10-23 David Carlton <carlton@math.stanford.edu>
1168
1169 * parse.c (parse_exp_1): Use BLOCK_START.
1170 * x86-64-tdep.c (x86_64_skip_prologue): Use BLOCK_END,
1171 SYMBOL_BLOCK_VALUE.
1172 * objc-lang.c (find_methods): Use BLOCK_START, BLOCK_END.
1173
87f2f08c
DC
11742002-10-23 David Carlton <carlton@math.stanford.edu>
1175
1176 * symtab.c: Delete cplusplus_hint.
1177 Delete prototype for find_template_name_end.
1178
88cda038
EZ
11792002-10-23 Elena Zannoni <ezannoni@redhat.com>
1180
1181 * symtab.h: Update comment.
1182
2625d86c
MS
11832002-10-23 Michael Snyder <msnyder@redhat.com>
1184
1185 * printcmd.c (address_info): Restore quotes in output.
1186 * valops.c (value_of_local): Restore quotes in error message.
1187
9cc0d196
EZ
11882002-10-23 Elena Zannoni <ezannoni@redhat.com>
1189
1190 * symtab.c (symbol_demangled_name): New function.
1191 * symtab.h (SYMBOL_DEMANGLED_NAME): Simplify macro, by
1192 turning most of it into a function.
1193 (symbol_demangled_name): Export.
1194
19de93d0
MS
11952002-10-23 Michael Snyder <msnyder@redhat.com>
1196
1197 * valops.c (value_of_local): Restore quotes in error message.
1198
89aad1f9
EZ
11992002-10-23 Elena Zannoni <ezannoni@redhat.com>
1200
1201 * symtab.c (symbol_init_language_specific): New function.
1202 * symtab.h (SYMBOL_INIT_LANGUAGE_SPECIFIC): Simplify macro, by
1203 turning most of it into a function.
1204 (symbol_init_language_specific): Export.
1205
d9fa45fe
DC
12062002-10-23 David Carlton <carlton@math.stanford.edu>
1207
1208 * dwarf2read.c (dwarf_tag_name): Add DWARF 3 names.
1209 (dwarf_attr_name): Ditto.
1210 (dwarf_type_encoding_name): Ditto.
1211 (scan_partial_symbols): Descend into DW_TAG_namespace entries.
1212 (process_die): Handle DW_TAG_namespace,
1213 DW_TAG_imported_declaration, DW_TAG_imported_module.
1214 (read_namespace): New function.
1215
1045b512
JB
12162002-10-22 Joel Brobecker <brobecker@gnat.com>
1217
1218 * configure.in: Define NEW_PROC_API on Interix too.
1219 * configure: Regenerate.
1220
12212002-10-21 Joel Brobecker <brobecker@gnat.com>
8ec41317
JB
1222
1223 * configure: Regenerate using the proper version of autoconf.
1224
3987b9d4
EZ
12252002-10-21 Elena Zannoni <ezannoni@redhat.com>
1226
1227 * findvar.c (read_var_value): Temporarily disable TLS code, until
1228 complete TLS support is added.
1229
9d774e44
EZ
12302002-10-21 Jim Blandy <jimb@redhat.com>
1231 Elena Zannoni <ezannoni@redhat.com>
1232
1233 * symtab.h (address_class): Re-add LOC_THREAD_LOCAL_STATIC
1234 for thread local storage locations.
1235 (struct symbol): Add objfile field.
1236 (SYMBOL_OBJFILE): Define.
1237 * dwarf2read.c (is_thread_local): New static variable.
1238 (new_symbol): If variable is in thread local fill in address class
1239 and objfile appropriately.
1240 (decode_locdesc): Recognize and handle DW_OP_GNU_push_tls_address
1241 stack operation.
1242 * printcmd.c (address_info): Print the information for thread
1243 local storage variable.
1244 * findvar.c (read_var_value): In case of thread local variable,
1245 defer to the target vector code to compute address.
1246
bc4a16ae
EZ
12472002-10-21 Elena Zannoni <ezannoni@redhat.com>
1248
1249 * solib-svr4.c (svr4_fetch_objfile_link_map): New function.
1250 * solib-svr4.h (svr4_fetch_objfile_link_map): Export.
1251
407caf07
EZ
12522002-10-21 Elena Zannoni <ezannoni@redhat.com>
1253
1254 * symtab.h (address_class): Rename
1255 LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC.
1256 * hpread.c (hpread_process_one_debug_symbol): Ditto.
1257 * printcmd.c (address_info): Ditto.
1258 * findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
1259
005328e3
MK
12602002-10-20 Mark Kettenis <kettenis@gnu.org>
1261
afdb036a
MK
1262 * i386bsd-nat.c (i386bsd_dr_set, i386bsd_dr_get_status): Use
1263 DBREG_DRX macro to acces debug registers.
1264
ca02e098
MK
1265 * Makefile.in (i386obsd-tdep.o): New target.
1266
03cc47f7
MK
1267 * solib-sunos.c: Include "bcache.h" and "regcache.h".
1268 * Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h).
1269
005328e3
MK
1270 * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds.
1271 * config/i386/obsd.mt: New file.
1272 * i386bsd-nat.c (_initialize_i386bsd_nat): Introduce
1273 i386obsd_sc_pc_offset and i386obsd_sc_sp_offset;
1274 * i386obsd-nat.c (_initialize_i386obsd_nat): Set
1275 i386obsd_sigtramp_start and i386obsd_sigtramp_end instead of
1276 i386nbsd_sigtramp_start and i386nbsd_sigtramp_end.
1277 * i386obsd-tdep.c: New file.
1278
9c96f9f2
AF
12792002-10-19 Adam Fedor <fedor@gnu.org>
1280
1281 * objc-exp.y (name_not_typename): Fix invalid comment.
1282
ce1ed485
MK
12832002-10-20 Mark Kettenis <kettenis@gnu.org>
1284
1285 * solib-sunos.c (allocate_rt_common_objfile): Use bcache_xmalloc
1286 to allocate partial syms and macro byte caches.
1287
1efc7aaa
DC
12882002-10-18 David Carlton <carlton@math.stanford.edu>
1289
1290 * symtab.h: Delete 'struct source' and 'struct sourcevector'.
1291
7e1d63ec
AF
12922002-10-18 Adam Fedor <fedor@gnu.org>
1293
1294 * stabsread.c (find_name_end): New function.
1295 (define_symbol): Use it.
1296
6e8d29a9
DJ
12972002-10-18 Daniel Jacobowitz <drow@mvista.com>
1298
1299 * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1300 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1301 * config/alpha/nm-nbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1302 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Define to 1.
1303
1efc7aaa 13042002-10-17 David Carlton <carlton@math.stanford.edu>
63ca651f
DC
1305
1306 * symfile.h: Add opaque declaration for struct obstack.
1307 Declare obsavestring to take a const char *.
1308 * symfile.c (obsavestring): Make first argument a const char *.
1309
1aeae86e
AF
13102002-10-16 Adam Fedor <fedor@gnu.org>
1311
1312 * breakpoint.c (parse_breakpoint_sals): Ignore ObjC method
1313 names when matching breakpoints in current file.
1314
8b2dbe47
KB
13152002-10-16 Kevin Buettner <kevinb@redhat.com>
1316
1317 * dwarf2read.c (dwarf2_invalid_pointer_size): New complaint.
1318 (read_tag_pointer_type): Add address class support.
1319 * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS)
1320 (ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_NAME_TO_TYPE_FLAGS):
1321 New methods.
1322 * gdbarch.h, gdbarch.c: Regenerate.
1323 * gdbtypes.c (address_space_name_to_int, address_space_int_to_name)
1324 (make_type_with_address_space, recursive_type_dump): Add address
1325 class support.
1326 * gdbtypes.h (TYPE_FLAG_ADDRESS_CLASS_1, TYPE_FLAG_ADDRESS_CLASS_2)
1327 (TYPE_FLAG_ADDRESS_CLASS_ALL, TYPE_ADDRESS_CLASS_1)
1328 (TYPE_ADDRESS_CLASS_2, TYPE_ADDRESS_CLASS_ALL): New defines
1329
74451869
KD
13302002-10-16 Klee Dienes <kdienes@apple.com>
1331
1332 * stabsread.c (read_tilde_fields): Use name[sizeof(vptr_name)-2]
1333 to get the last character of a char[] buffer, not
1334 name[sizeof(vptr_name)-1].
1335
ff4cb3e8
AF
13362002-10-14 Adam Fedor <fedor@gnu.org>
1337
1338 * symtab.h: New objc_specific struct.
1339 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Handle ObjC.
1340 (SYMBOL_DEMANGLED_NAME): Likewise.
1341
da2cf7e0
AF
13422002-10-14 Adam Fedor <fedor@gnu.org>
1343
1344 * symfile.c (init_filename_language_table): Add ObjC file extension.
1345
4a351cef
AF
13462002-10-14 Adam Fedor <fedor@gnu.org>
1347
1348 * utils.c (puts_filtered_tabular): New function.
1349 (fprintf_symbol_filtered): Get ObjC demangled name.
1350 * defs.h (puts_filtered_tabular): Declared.
1351
9750e763
KB
13522002-10-14 Kevin Buettner <kevinb@redhat.com>
1353
1354 * c-lang.h (c_type_print_varspec_prefix): Delete.
1355 * c-typeprint.c (c_type_print_varspec_prefix): Make static. Add
1356 ``need_post_space'' parameter. Adjust all callers.
1357
eee771c1
DJ
13582002-10-14 Daniel Jacobowitz <drow@mvista.com>
1359
1360 * config/mips/nm-irix4.h (HAVE_NONSTEPPABLE_WATCHPOINT): Define to 1.
1361 * config/mips/nm-irix5.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1362 * config/mips/tm-embed.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1363 * config/pa/nm-hppah.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
1364
46c82446
AF
13652002-10-13 Adam Fedor <fedor@gnu.org>
1366
1367 * source.c (print_source_lines): Update comments.
1368
d069f99d
AF
13692002-10-13 Adam Fedor <fedor@gnu.org>
1370
1371 * valops.c (value_of_local): New function.
1372 (value_of_this): Use it.
1373 * value.h (value_of_local): Declared.
1374
53c551b7
AF
13752002-10-13 Adam Fedor <fedor@gnu.org>
1376
1377 * parse.c: (length_of_subexp, prefixify_subexp): Handle
1378 OP_MSGCALL, OP_SELECTOR, OP_NSSTRING, and OP_SELF.
1379
eb392fbf
AF
13802002-10-12 Adam Fedor <fedor@gnu.org>
1381
1382 * language.c (binop_result_type): Add language_objc to case.
1383 (integral_type): Likewise.
1384 (character_type): Likewise.
1385 (string_type): Likewise.
1386 (boolean_type): Likewise.
1387 (structured_type): Likewise.
1388 (binop_type_check): Likewise.
1389
e2b23ee9
AF
13902002-10-11 Adam Fedor <fedor@gnu.org>
1391
1392 * printcmd.c (address_info): Print 'self' for ObjC.
1393
b01ab485
AF
13942002-10-11 Adam Fedor <fedor@gnu.org>
1395
1396 * expression.h: New ops OP_NSSTRING, OP_SELECTOR, OP_MSGCALL, and
1397 OP_SELF.
1398
806e6073
AF
13992002-10-11 Adam Fedor <fedor@gnu.org>
1400
1401 * language.h (CAST_IS_CONVERSION): Add language_objc.
1402
50f85cdf
AF
14032002-10-11 Adam Fedor <fedor@gnu.org>
1404
1405 * defs.h (enum language): Add language_objc.
1406
0d540cdf
KD
14072002-10-11 Klee Dienes <kdienes@apple.com>
1408
69266111 1409 * corefile.c (read_memory_typed_address): New function.
0d540cdf
KD
1410 * gdbcore.h (read_memory_typed_address): Add prototype.
1411 * blockframe.c (sigtramp_saved_pc): Use read_memory_typed_address
1412 to read a value destined for a CORE_ADDR, not read_memory_integer.
1413 * f-valprint.c (f77_get_dynamic_upperbound): Ditto.
1414 (f77_get_dynamic_lowerbound): Ditto.
1415
d5dc7960
MH
14162002-10-11 Martin M. Hunt <hunt@redhat.com>
1417
1418 * utils.c (string_to_core_addr): After turning string into
1419 a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS
1420 which will do necessary sign-extension, etc.
1421
8343f86c
DJ
14222002-10-11 Daniel Jacobowitz <drow@mvista.com>
1423
1424 * c-exp.y (THIS): Delete token and grammar rule.
1425 (yylex): Don't return THIS.
1426 * cp-valprint.c (vtbl_ptr_name_old): Delete.
1427 (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
1428 * demangle.c (cplus_markers): Update comment. Put '$'
1429 first. Remove CPLUS_MARKER.
1430 (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
1431 * jv-exp.y (THIS): Delete token and grammar rule.
1432 (yylex): Don't return THIS.
1433 * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
1434 * objc-exp.y (THIS): Delete token and grammar rule.
1435 (yylex): Don't return THIS.
1436 * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
1437 * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
1438 (read_member_functions): Likewise for opname.
1439 (read_tilde_fields): Use is_cplus_marker.
1440
1441 * defs.h (CPLUS_MARKER): Don't define.
1442 * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
1443 * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
1444 * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
1445 * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
1446 * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
1447
1448 * config/i386/tm-i386v4.h: Delete file.
1449 * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
1450 * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
1451 * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
1452 * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
1453 * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
1454 * config/i386/i386sco5.mt (TM_FILE): Likewise.
1455 * config/i386/i386v4.mt (TM_FILE): Likewise.
1456 * config/i386/ncr3000.mt (TM_FILE): Likewise.
1457
967c0d83
MM
14582002-10-10 Marko Mlinar <markom@opencores.org>
1459
1460 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
1461 accidentially not commited 2002-10-09
1462 * gdbarch.h, gdbarch.c: Re-generate.
1463
f74fa174
MM
14642002-10-09 Marko Mlinar <markom@opencores.org>
1465
1466 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
1467 * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
1468 * gdbarch.h, gdbarch.c: Re-generate.
1469
57349743
JB
14702002-10-08 Petr Sorfa <petrs@caldera.com>
1471
1472 Revised and re-submitted by John Wolfe <jlw@caldera.com>
1473
1474 Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
1475 so we can work on more than one compilation unit at a time. This
1476 helps prepare GDB to handle inter-CU die references.
1477 * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
1478 the code to be defined before struct comp_unit_head.
1479 (comp_unit_head): Added new members - offset, cu_head,
1480 begin_die, next and dwarf2_abbrevs.
1481 (dwarf2_abbrevs): Removed single static var; now member of
1482 struct comp_unit_head.
1483 dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
1484 members.
1485 (psymtab_to_symtab_1): Changed to work with the new
1486 struct comp_unit_head.
1487 (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
1488 constructs the dwarf2_abbrevs[] inside the cu_header.
1489 (dwarf2_empty_abbrev_table): Now expects a ptr to a
1490 dwarf2_abbrev table to clean up.
1491 (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
1492 handling of dwarf2_abbrevs inside the cu_header.
1493 (read_partial_die): Now supports the call to the new
1494 dwarf2_lookup_abbrev.
1495 (read_full_die): Now supports the call to the new
1496 dwarf2_lookup_abbrev.
1497
4092aadb
CF
14982002-10-06 Christopher Faylor <cgf@redhat.com>
1499
1500 * Makefile.in (install-gdbtk): Add missing continuation backslash to
1501 insure that shell variables, such as "transformed_name" are propagated
1502 to later shell statements in rule.
1503
af0b2512
MK
15042002-10-06 Mark Kettenis <kettenis@gnu.org>
1505
1506 * config/i386/nm-i386sco.h: Add protection against
1507 multiple-inclusion. Include "i386/nm-i386v.h".
1508 (REGISTER_U_ADDR): Remove define.
1509 (i386_register_u_addr): Remove prototype.
1510
d6020d45
MS
15112002-10-04 Michael Snyder <msnyder@redhat.com>
1512
1513 * m32r-stub.c (handle_exception): Make sure exception is "trap"
1514 before treating it as a single-step event.
1515
7248f48e
AF
15162002-10-03 Adam Fedor <fedor@gnu.org>
1517
1518 * objc-lang.c: ARI fixes. Change string.h to gdb_string.h.
1519 (objc_demangle): Remove assignment in if statements, Replace
1520 free with xfree.
1521 (add_msglist): Likewise.
1522 (end_msglist): Likewise.
1523 (complare_selectors): Likewise.
1524 (selectors_info): Likewise.
1525 (compare_classes): Likewise.
1526 (classes_info): Likewise.
1527 (print_object_command): Likewise.
1528 (find_objc_msgcall_submethod): Replace PTR with void *.
1529 * objc-lang.h: Remove check for __STDC__.
1530
52c6a6ac
JJ
15312002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1532
1533 * ui-out.h (ui_out_field_fmt_int): New prototype.
1534 * ui-out.c (ui_out_field_fmt_int): New function allowing specification
1535 of field width and alignment.
1536 * stack.c (print_frame_info_base): When printing frame level, use
1537 ui_out_field_fmt_int with a width of 2 and left alignment. Fix for
1538 PR gdb/192
1539
7e3cec17
JJ
15402002-10-03 Jeff Johnston <jjohnstn@redhat.com>
1541
1542 * MAINTAINERS: Add self to Write After Approval list.
1543
a58dd373
EZ
15442002-10-02 Elena Zannoni <ezannoni@redhat.com>
1545
1546 * infcmd.c (interrupt_target_command_wrapper): Delete.
1547 (interrupt_target_command): Make non static.
1548 (nofp_registers_info): Make static.
1549 * stack.c (return_command_wrapper): Delete.
1550 (return_command): Make non static.
1551
cee6ddeb
EZ
15522002-10-02 Elena Zannoni <ezannoni@redhat.com>
1553
1554 * event-top.c (gdb_setup_readline): New function. Code moved from
1555 _initialize_event_loop().
1556 (_initialize_event_loop): Call gdb_setup_readline().
1557
c4ed33b9
AC
15582002-10-02 Andrew Cagney <ac131313@redhat.com>
1559
1560 * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
1561 * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
1562 * gdbarch.h, gdbarch.c: Re-generate.
1563
cef4f5dd
DJ
15642002-10-02 Daniel Jacobowitz <drow@mvista.com>
1565
1566 Fix PR gdb/778
1567 * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
1568 before recursing.
1569 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
1570 of fill_in_vptr_fieldno.
1571
36dc181b 15722002-10-02 Elena Zannoni <ezannoni@redhat.com>
cee6ddeb 1573
36dc181b
EZ
1574 * inferior.h (registers_info, stepi_command, nexti_command,
1575 continue_command, interrupt_target_command): Export from infcmd.c.
1576 * frame.h (args_info, selected_frame_level_changed_hook,
1577 return_command): Export from stack.c.
1578 * v850ice.c (stepi_command, nexti_command, continue_command): use
1579 prototypes from inferior.h.
1580 * tracepoint.c (registers_info, args_info, locals_info): Use
1581 prototypes from frame.h and inferior.h.
1582 * Makefile.in (mi-main.o): Add dependency on frame.h.
1583
6f99cb26
AC
15842002-10-02 Andrew Cagney <ac131313@redhat.com>
1585
da3eff49
AC
1586 * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
1587 value in register 3 adjusted by ppc_gp0_regnum.
1588
6f99cb26
AC
1589 * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
1590
da615bee
MM
15912002-10-02 Marko Mlinar <markom@opencores.org>
1592
1593 * MAINTAINERS: Add myself to the Write After Approval list.
1594
d154bee2
AO
15952002-10-01 Alexandre Oliva <aoliva@redhat.com>
1596
62a49b2c
AO
1597 * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
1598 of the section for the N64 ABI, fixed.
1599
d154bee2
AO
1600 * config/mips/tm-irix6.h: Include solib.h.
1601
ed348acc
EZ
16022002-10-01 Elena Zannoni <ezannoni@redhat.com>
1603
1604 * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
1605 GNU operators.
1606
da0f9dcd
AC
16072002-10-01 Andrew Cagney <ac131313@redhat.com>
1608
1609 * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
1610 and that "mi0" syntax has been removed.
1611
bdf64bac
DC
16122002-09-30 David Carlton <carlton@math.stanford.edu>
1613
1614 * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
1615 * ppc-sysv-tdep.c: #include "gdb_string.h".
1616 * remote-sds.c (getmessage): Add semicolon after 'retry' label to
1617 pacify GCC.
1618
54c2a1e6
AC
16192002-10-01 Andrew Cagney <ac131313@redhat.com>
1620
1621 * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
1622 "vrsave"'s register number.
1623
cedea778
AC
16242002-09-30 Andrew Cagney <ac131313@redhat.com>
1625
1626 * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
1627 use frame_unwind_signed_register to obtain the PC.
1628 (mips_frame_chain): Handle a generic dummy frame.
1629 (mips_init_extra_frame_info): When a generic dummy frame, don't
1630 re-compute the frame base.
1631 (mips_pop_frame): Handle generic dummy frames.
1632 (mips_gdbarch_init): When generic dummy frames, set
1633 use_generic_dummy_frames, push_dummy_frame to
1634 generic_push_dummy_frame, pc_in_call_dummy to
1635 generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
1636 generic_save_dummy_frame_tos.
1637
68315eb8
AC
16382002-09-30 Andrew Cagney <ac131313@redhat.com>
1639
1640 * blockframe.c (generic_find_dummy_frame): Rewrite. Only test
1641 against TOP when TOP was explictly set.
1642 (generic_push_dummy_frame): Set TOP to zero.
1643
3b8630c3
EZ
16442002-09-30 Elena Zannoni <ezannoni@redhat.com>
1645
1646 * event-loop.c (start_event_loop): Rename variable 'result' to
1647 'gdb_result', to avoid conflicts with upcoming intepreters changes.
1648
28ee05e9
KS
16492002-09-30 Keith Seitz <keiths@redhat.com>
1650
1651 * gdb-events.sh (selected_thread_changed): New event.
1652 * gdb-events.c: Regenerated.
1653 * gdb-events.h: Regenerated.
1654
6eecb1c8
HPN
16552002-09-30 Hans-Peter Nilsson <hp@bitrange.com>
1656
1657 * MAINTAINERS: Add self to Write After Approval list.
1658
92df71f0
FN
16592002-09-30 Fernando Nasser <fnasser@redhat.com>
1660
3b8630c3
EZ
1661 * disasm.c: New file.
1662 * disasm.h: New file.
92df71f0
FN
1663 * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
1664 (compare_lines): Ditto.
1665 (dump_insns): Ditto.
3b8630c3
EZ
1666 (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
1667 argument.
92df71f0 1668 (do_assembly_only): Ditto.
3b8630c3
EZ
1669 (do_disassembly): Renamed to gdb_disassembly and moved to
1670 disasm.c. Sdded uiout argument.
1671 * Makefile.in: Add new files. Reorder SFILES list. Update
1672 dependencies. Include libgdb.a later in the insight executable.
92df71f0 1673
0c22854d
AC
16742002-09-29 Andrew Cagney <ac131313@redhat.com>
1675
1676 * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
1677 bfd/elf64-alpha-fbsd.c.
1678
e67f2023
AC
16792002-09-29 Andrew Cagney <ac131313@redhat.com>
1680
1681 * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
1682 i386gnu-tdep.c.
1683
89396210
AC
16842002-09-29 Andrew Cagney <ac131313@redhat.com>
1685
1686 * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
1687 __FUNCTION__.
1688 * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
1689 function name.
1690 (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
1691 (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
1692 (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
1693 (S_msg_sig_post_reply): Ditto.
1694
7079c36c
CV
16952002-09-28 Corinna Vinschen <vinschen@redhat.com>
1696
89396210
AC
1697 * sh-tdep.c (sh_use_struct_convention): Use definition according
1698 to ABI.
7079c36c
CV
1699 (sh_push_arguments): Store in register with correct endianess.
1700 (sh_default_store_return_value): Ditto.
1701 (sh_gdbarch_init): Set sizeof long double to 8.
1702
975ac915
MK
17032002-09-27 Mark Kettenis <kettenis@gnu.org>
1704
1705 * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
1706 Fix some whitespace problems.
1707
9bbe19fb
DC
17082002-09-27 David Carlton <carlton@math.stanford.edu>
1709
1710 * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
1711 (mcore-tdep.o): Ditto.
1712 (ns32k-tdep.o): Ditto.
1713 (ns32knbsd-tdep.o): Ditto.
1714 (sh3-rom.o): Ditto.
1715 (vax-tdep.o): Ditto.
1716 * cris-tdep.c: #include "gdb_string.h"
1717 * mcore-tdep.c: Ditto.
1718 * ns32k-tdep.c: Ditto.
1719 * ns32knbsd-tdep.c: Ditto.
1720 * sh3-rom.c: Ditto.
1721 * vax-tdep.c: Ditto.
1722
43b2fdc7
DC
17232002-09-27 David Carlton <carlton@math.stanford.edu>
1724
1725 * config/djgpp/fnchange.lst: Add entries for
1726 gdb/testsuite/gdb.c++/m-static files.
1727
e8cfbbd9
JW
17282002-09-27 Jim Wilson <wilson@redhat.com>
1729
1730 * MAINTAINERS: Add myself to the Write After Approval list.
1731
43b2fdc7 17322002-09-26 Martin M. Hunt <hunt@redhat.com>
4e0df2df
MH
1733
1734 * mips-tdep.c (find_proc_desc): Initialize startaddr.
1735
1736
9f3b7f07
AC
17372002-09-26 Andrew Cagney <ac131313@redhat.com>
1738
1739 * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
1740 frame.
1741
11269d7e
AC
17422002-09-26 Andrew Cagney <ac131313@redhat.com>
1743
1744 * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
1745 (rs6000_struct_return_address): Delete variable.
1746 (rs6000_store_struct_return): Update.
1747 (rs6000_gdbarch_init): Set extract_struct_value_address instead of
1748 deprecated_extract_struct_value_address.
1749 (rs6000_frame_align): New function.
1750 (rs6000_gdbarch_init): Set frame_align.
1751
f15ab4a7
AC
17522002-09-26 Andrew Cagney <ac131313@redhat.com>
1753
1754 From Grace Sainsbury <graces@redhat.com>:
1755 * Makefile.in (gdbtk-main.o): New target.
1756 (gdb.o): New target.
1757 (main_h): Define.
1758 (main.o): Update dependencies.
1759 (gdb$(EXEEXT)): Add gdb.o.
1760 (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
1761 (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
1762 (SUBDIR_GDBTK_CLEAN): Set.
1763 (install-gdbtk): Install the insight binary.
1764 (uninstall-gdbtk): New target.
1765 (all-gdbtk, clean-gdbtk): New rule.
1766 * top.c (use_windows): Default to zero.
1767 * main.c: Include "main.h".
1768 (main): Delete.
1769 (struct captured_main_args): Delete.
1770 (gdb_main): New function.
1771 * main.h: New file.
1772 * gdb.c: New File.
1773
e36180d7
AC
17742002-09-25 Andrew Cagney <cagney@redhat.com>
1775
1776 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
1777 (frame_map_regnum_to_name): New function.
1778 (frame_map_name_to_regnum): New function.
1779 * frame.h (frame_map_name_to_regnum): Declare.
1780 (frame_map_regnum_to_name): Declare.
1781 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
1782 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
1783 * parse.c: Do not include "builtin-regs.h".
1784 (target_map_name_to_register): Delete function.
1785 (write_dollar_variable): Use frame_map_name_to_regnum.
1786 * parser-defs.h (target_map_name_to_register): Delete declaration.
1787 * expprint.c: Include "frame.h".
1788 (print_subexp): Use frame_map_regnum_to_name.
1789 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
1790 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
1791
8b69000d
AC
17922002-09-25 Andrew Cagney <ac131313@redhat.com>
1793
1794 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
1795 wasn't saved, and the next innermost frame is a dummy, return the
1796 dummy frame's link register.
1797
046ca86a
JB
17982002-09-24 Jim Blandy <jimb@redhat.com>
1799
1800 Fix from Paul Breed:
1801 * main.c (captured_main): Add a `break' after the case for 'b'.
1802
94b66fa7
KS
18032002-09-24 Keith Seitz <keiths@redhat.com>
1804
1805 * varobj.c (c_type_of_child): Use get_target_type instead
1806 of TYPE_TARGET_TYPE.
1807
c214a6fd
FN
18082002-09-22 Fernando Nasser <fnasser@redhat.com>
1809
53cb0458
FN
1810 * source.c (get_current_or_default_source_symtab_and_line): Remove
1811 function.
1812 (set_default_source_symtab_and_line): New function. Attempts to
1813 determine a source file to list lines from if one is not currently
1814 defined.
1815 (get_current_source_symtab_and_line): Initialize sal.pc and
1816 sal.end fields.
1817 (set_current_source_symtab_and_line): Mark argument as const.
1818 * source.h: Update declarations and comments.
1819 * linespec.c (decode_line_1): Replace call to removed routine above.
1820 * stack.c (print_frame_info_base): Ditto.
1821 * cli/cli-cmds.c (edit_command): Ditto.
1822 (list_command): Ditto.
1823
18242002-09-22 Fernando Nasser <fnasser@redhat.com>
1825
d6020d45 1826 * source.c (get_current_or_default_source_symtab_and_line): Initialize
53cb0458 1827 sal.pc and sal.end fields.
c214a6fd
FN
1828 (get_current_or_default_source_symtab_and_line): Ditto.
1829 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
1830 so we do not cause a new source symtab to be searched for (reverting an
1831 unintentional change from the 2002-09-20 patch).
1832 * scm-lang.c (scm_unpac): Ditto.
1833
cc3b68a5
AC
18342002-09-21 Andrew Cagney <cagney@redhat.com>
1835
1836 * complaints.c (symfile_explanations): Remove new-line from
1837 ``isolated_message''.
1838 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
1839 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
1840
5835abe7
NC
18412002-09-20 Nick Clifton <nickc@redhat.com>
1842
1843 * NEWS: Announce that V850EA ISA is no longer supported.
1844 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
1845
a15ef5f5
DC
18462002-09-20 David Carlton <carlton@math.stanford.edu>
1847
06ba1b39
DC
1848 * Makefile.in (c-lang.o): Correct dependencies.
1849 (utils.o): Gather dependencies.
1850 (charset.o): Move.
a15ef5f5
DC
1851 * c-lang.c: #include "gdb_string.h"
1852
87885426
FN
18532002-09-20 Fernando Nasser <fnasser@redhat.com>
1854
1855 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
1856 * cli/cli-cmds.c (list_command): New function. Implements the new
1857 cli edit command.
1858 (_init_cli_cmds): Add new command definition.
1859 * gdb.1: Document edit command.
1860 * doc/gdb.texinfo: Document edit command.
1861
18622002-09-20 Fernando Nasser <fnasser@redhat.com>
0378c332
FN
1863
1864 * source.c: Make global variables current_source_symtab and
1865 current_source_line static.
1866 (list_command): Moved to cli/cli-cmds.c.
1867 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
1868 (get_first_line_listed): New accessor function.
1869 (get_lines_to_list): New accessor function.
1870 (get_current_source_symtab_and_line): New function. Retrieves the
1871 position in the source code that we consider current.
1872 (get_current_or_default_source_symtab_and_line): New function.
1873 Like the above but attempts to determine a default position if one
1874 is not currently defined.
1875 (set_current_source_symtab_and_line): New function. Sets the source
1876 code position considered current and returns the previously set one.
1877 (clear_current_source_symtab_and_line): Reset stored information about
1878 a current source line.
1879 (_initialize_source): Remove registration for the "list" command and
1880 its alias.
1881 * source.h: Add declarations for the new functions above.
1882 * symtab.h: Remove declarations for the global variables mentioned
1883 above.
1884 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
1885 obtain current source line.
1886 * linespec.c (decode_line_1): Ditto.
1887 * macroscope.c (default_macro_scope): Ditto.
1888 * scm-lang.c (scm_unpac): Ditto.
1889 * stack.c (print_frame_info_base): Ditto.
1890 * symfile.c (clear_symtab_users): Ditto.
1891 * symtab.c (decode_line_spec): Ditto.
1892 * cli/cli-cmds.c (list_command): Moved here from source.c.
1893 (ambiguous_line_spec): Moved here from source.c.
1894 (_init_cli_cmds): Add definition for "list" and its alias.
1895 * Makefile.in: Update dependencies.
1896
ddd216ea
CV
18972002-09-20 Corinna Vinschen <vinschen@redhat.com>
1898
1899 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
1900 with what gcc thinks is correct.
1901
6d305052
CV
19022002-09-20 Corinna Vinschen <vinschen@redhat.com>
1903
1904 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
1905 multiple register push instruction.
1906
234b45d4
KB
19072002-09-19 Jim Blandy <jimb@redhat.com>
1908
1909 Add support for distinct host and target character sets.
1910 * charset.c, charset.h: New files.
1911 * c-exp.y: #include "charset.h".
1912 (yylex): Convert character and string literals to the target
1913 character set, before returning them as the semantic value of the
1914 token.
1915 * c-lang.c: #include "charset.h".
1916 (c_emit_char): Use charset-specific methods to recognize
1917 characters with backslash escape forms, to decide which characters
1918 to print literally and which to print using numeric escape
1919 sequences, and to convert target characters to host characters
1920 before printing.
1921 * utils.c: #include "charset.h".
1922 (no_control_char_error): New function.
1923 (parse_escape): Use charset-specific methods to recognize
1924 backslash escapes, parse `control character' notation, and convert
1925 characters from the host character set to the target character set.
1926 * configure.in: Set the default host character set.
1927 Check where to find iconv, and what its argument types might be.
1928 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
1929 * Makefile.in (SFILES): List charset.c.
1930 (COMMON_OBS): List charset.o.
1931 (charset.o): New rule.
1932 (charset_h): New header dependency variable.
1933 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
1934 (LIBICONV): New variable, set by configure.
1935 (CLIBS): Include $(LIBICONV) here.
1936 * aclocal.m4, config.in, configure: Regenerated.
1937
525d6a61
JB
19382002-09-19 Joel Brobecker <brobecker@gnat.com>
1939
1940 * ada-exp.y: Add missing semicolons to end rules. Fixes a
1941 bison 1.35 warning.
1942
3ed93867
RE
19432002-09-19 Richard Earnshaw <rearnsha@arm.com>
1944
1945 * gdb_mbuild.sh: New file.
1946
437666f8
AC
19472002-09-19 Andrew Cagney <ac131313@redhat.com>
1948
1949 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
1950
389e51db
AC
19512002-09-18 Andrew Cagney <ac131313@redhat.com>
1952
1953 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
1954 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
1955 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
1956 valops.c, value.h: Revert previous change.
1957
3b4efeaa
MS
19582002-09-18 Michael Snyder <msnyder@redhat.com>
1959
1960 Preliminary support for Objective-C:
1961 * defs.h (language_objc): New enum value.
1962 (puts_filtered_tabular): Declaration only, exported from utils.c.
1963 (skip_quoted): Delete, declared in completer.h.
1964 * c-exp.y: Include completer.h.
1965 * p-exp.y: Ditto.
1966 * jv-exp.y: Ditto.
1967 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
1968 New operator enum values.
1969 * language.h (CAST_IS_CONVERSION): Test for language_objc.
1970 * language.c (binop_result_type): Handle language_objc case.
1971 (integral_type, character_type, string_type, boolean_type,
1972 structured_type, binop_type_check): Ditto.
1973 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
1974 (struct objc_specific): Add to general_symbol_info.
1975 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
1976 (SYMBOL_DEMANGLED_NAME): Handle objc case.
1977 * parser-defs.h (struct objc_class_str): New struct type.
1978 (start_msglist, end_msglist, add_msglist): Declaration only,
1979 exported from objc-lang.c.
1980 * value.h (value_of_local, value_nsstring,
1981 call_function_by_hand_expecting_type): Exported from valops.c.
1982 * valops.c (find_function_addr): Export.
1983 (call_function_by_hand_expecting_type): New function.
1984 (value_of_local): New function.
1985 * symfile.c (init_filename_language_table): Add ".m" extension
1986 for Objective-C.
1987 * utils.c (puts_filtered_tabular): New function.
1988 (fprintf_symbol_filtered): Add objc demangling support (disabled).
1989 (set/show demangle): Extend help-string to refer to ObjC.
1990 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
1991 * stabsread.c (symbol_reference_defined): Objective-C symbols
1992 may contain colons: make allowances when scanning stabs strings
1993 for colons.
1994 (objc_find_colon): New function.
1995 * printcmd.c (address_info): If language == objc then print
1996 "self" instead of "this".
1997 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
1998 OP_NSSTRING, and OP_SELF.
1999 (prefixify_subexp): Ditto.
2000 * source.c (print_source_lines): Mention objc in comment.
2001 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
2002 method names.
2003
b9caf505
AC
20042002-09-18 Andrew Cagney <ac131313@redhat.com>
2005
2006 * complaints.h: Update copyright.
2007 (struct complaints): Declare.
2008 (struct complaint): Make `message' constant.
2009 (internal_complaint): Declare.
2010 (complaint): Declare.
2011 (complaint_root): Delete declaration.
2012 (symfile_complaints): Delete declaration.
2013 (struct complaints): Add opaque declaration.
2014 (clear_complaints): Add a complaints parameter.
2015 * complaints.c: Update copyright.
2016 (enum complaint_series): Define.
2017 (complaint_root): Delete.
2018 (struct complaints): Define.
2019 (complaint_sentinel, symfile_complaint_book): New variables.
2020 (symfile_explanations, symfile_complaints): New variables.
2021 New variables.
2022 (get_complaints): New function.
2023 (vcomplaint): New function.
2024 (complaint): New function.
2025 (internal_complaint): New function.
2026 (complain): Call vcomplain with symfile_complaint.
2027 (clear_complaints): Rewrite.
2028 (_initialize_complaints): Use add_setshow_command.
2029 * Makefile.in (complaints.o): Update dependencies.
2030 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
2031 to call to clear_complaints.
2032 (new_symfile_objfile, reread_symbols): Ditto.
2033 (oldsyms_complaint): Delete.
2034 (empty_symtab_complaint, unknown_option_complaint): Delete.
2035 (free_named_symtabs): Use complaint instead of complain.
2036
d2e6263c
MS
20372002-09-18 Michael Snyder <msnyder@redhat.com>
2038
5fb2031a
AC
2039 Contributed by Apple Computer, Inc. Merged with current sources
2040 by Adam Fedor <fedor@doc.com> [cagney].
2041
d2e6263c
MS
2042 * objc-lang.c: First clean-up round: comments, indentation.
2043 * objc-lang.h: Ditto.
2044 * objc-lang.y: Ditto.
2045
dec43320
AC
20462002-09-18 Andrew Cagney <ac131313@redhat.com>
2047
2048 * maint.c (maintenance_internal_error): Print the parameter as the
2049 error message.
2050 (maintenance_internal_warning): New function.
2051 (_initialize_maint_cmds): Add command `maint internal-warning'.
2052
2053 * defs.h (internal_warning, internal_vwarning): Declare.
2054 * utils.c (struct internal_problem): Define.
2055 (internal_vproblem): New function.
2056 (internal_warning): New function.
2057 (internal_vwarning): New function.
2058 (internal_warning_problem, internal_error_problem): New variables.
2059 (internal_verror): Just call internal_vproblem.
2060
b81654f1
MS
20612002-09-18 Michael Snyder <msnyder@redhat.com>
2062
2063 * objc-lang.c: New file, support for Objective-C.
2064 Preliminary check-in, not yet integrated into gdb.
2065 * objc-lang.h: New file.
2066 * objc-exp.y: New file.
2067
0542c381
AC
20682002-09-18 Andrew Cagney <ac131313@redhat.com>
2069
7bda5e4a
AC
2070 * infrun.c (signal_stop_update): Convert definition to ISO C.
2071 (signal_print_update): Ditto.
2072 (signal_pass_update): Ditto.
2073 * inflow.c (terminal_save_ours): Ditto.
2074
5247b418
AC
2075 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
2076 comments.
2077
fc60962c
AC
2078 * config/djgpp/fnchange.lst: Handle name clashes between
2079 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
2080 bfd/coff-tic80.c.
2081
0542c381
AC
2082 * i386-linux-tdep.h: Fix tipo.
2083
5b924b9b
AF
20842002-09-18 Adam Fedor <fedor@gnu.org>
2085
2086 * MAINTAINERS: Add myself to the Write After Approval list.
2087
5afc051b
JB
20882002-09-18 Jim Blandy <jimb@redhat.com>
2089
2090 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
2091 texthigh and textlow to reader-specific structs caused
2092 objfile_relocate to miss them. This is fixable, but the work that
2093 the change was supposed to prepare GDB for never got done anyway.
2094
eb944380
DC
20952002-09-18 David Carlton <carlton@math.stanford.edu>
2096
2097 * MAINTAINERS: Alphabetize Write After Approval list.
2098
948e66d9
DJ
20992002-09-18 Daniel Jacobowitz <drow@mvista.com>
2100
2101 Fix PR gdb/709
2102 * values.c (value_static_field): Call read_var_value.
2103
dc604539
AC
21042002-09-18 Andrew Cagney <ac131313@redhat.com>
2105
2106 * valops.c (hand_function_call): Align the initial stack pointer
2107 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
2108 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
2109 return value.
2110 * mips-tdep.c (mips_frame_align): New function.
2111 (mips_gdbarch_init): Set frame_align.
2112 * gdbarch.sh (FRAME_ALIGN): New method.
2113 * gdbarch.h, gdbarch.c: Re-generate.
2114
cb7e422f
ML
21152002-09-18 Michal Ludvig <mludvig@suse.cz>
2116
2117 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
2118 registers.
2119
a094c6fb
AC
21202002-09-17 Andrew Cagney <ac131313@redhat.com>
2121
2122 * NEWS: Mention that MIPS $fp behavior changed.
2123 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
2124 reference to FP_REGNUM.
2125 (mipsnbsd_cannot_store_register): Ditto.
2126 * mips-linux-nat.c: Update copyright.
2127 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
2128 (mips_linux_cannot_store_register): Ditto.
2129 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
2130 * config/mips/tm-mips.h: Update copyright.
2131 (FP_REGNUM): Delete macro.
2132 (MIPS_REGISTER_NAMES): Replace "fp" with "".
2133 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
2134 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
2135 (mips_r3041_reg_names, mips_r3051_reg_names)
2136 (mips_r3081_reg_names): Replace "fp" with "".
2137 Fix PR gdb/480.
2138
45cf40d1
TR
21392002-09-17 Theodore A. Roth <troth@verinet.com>
2140
2141 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
2142 generic_read_register_dummy() (PR gdb/703).
2143 (avr_push_return_address): #if 0 out unused vars.
2144 (avr_gdbarch_init): Enable use of avr_push_return_address().
2145
c7e701b5
MS
21462002-09-17 Michael Snyder <msnyder@redhat.com>
2147
d76ba2a5 2148 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
c7e701b5
MS
2149 RTE will take care of it.
2150
20bcf01c
AC
21512002-09-17 Andrew Cagney <ac131313@redhat.com>
2152
2153 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
2154 invalid, return SP_REGNUM.
2155
009a9971 21562002-09-17 Michael Snyder <msnyder@redhat.com>
21f87145
MS
2157
2158 * mips-tdep.c (mips_pop_frame): Read saved values of floating
2159 point registers without sign extension.
2160
135c175f
AC
21612002-09-17 Andrew Cagney <cagney@redhat.com>
2162
2163 * blockframe.c (deprecated_read_register_dummy): Rename
2164 generic_read_register_dummy.
2165 * frame.c (frame_unwind_signed_register): New function.
2166 (frame_unwind_unsigned_register): New function.
2167 * frame.h (frame_unwind_signed_register): Declare.
2168 (frame_unwind_unsigned_register): Declare.
2169 (deprecated_read_register_dummy): Rename
2170 generic_read_register_dummy.
2171
2172 * h8300-tdep.c (h8300_frame_chain): Update.
2173 (h8300_frame_saved_pc): Update.
2174 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
2175 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
2176 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
2177 (s390_frame_chain): Update.
2178 * v850-tdep.c (v850_find_callers_reg): Update.
2179 (v850_frame_saved_pc): Update.
2180 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
2181 (m32r_find_callers_reg): Update.
2182 (m32r_frame_saved_pc): Update.
2183 * sh-tdep.c (sh_find_callers_reg): Update.
2184 (sh64_get_saved_pr): Update.
2185 (sh_init_extra_frame_info): Update.
2186 (sh_init_extra_frame_info): Update.
2187 (sh64_init_extra_frame_info): Update.
2188 (sh64_init_extra_frame_info): Update.
2189 * mcore-tdep.c (mcore_find_callers_reg): Update.
2190 (mcore_frame_saved_pc): Update.
2191 (mcore_init_extra_frame_info): Update.
2192 * i386-tdep.c (i386_frame_saved_pc): Update.
2193 * ia64-tdep.c (ia64_frame_saved_pc): Update.
2194 (ia64_init_extra_frame_info): Update.
2195 (ia64_init_extra_frame_info): Update.
2196 * d10v-tdep.c (d10v_frame_saved_pc): Update.
2197 * cris-tdep.c (cris_init_extra_frame_info): Update.
2198 * avr-tdep.c (avr_frame_chain): Update.
2199 (avr_init_extra_frame_info): Update.
2200 (avr_frame_saved_pc): Update.
2201 * arm-tdep.c (arm_find_callers_reg): Update.
2202 (arm_init_extra_frame_info): Update.
2203 (arm_frame_saved_pc): Update.
2204
a741e514
TT
22052002-09-17 Tom Tromey <tromey@redhat.com>
2206
2207 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
2208 is "'".
2209
d1a8e808
CV
22102002-09-17 Corinna Vinschen <vinschen@redhat.com>
2211
2212 * MAINTAINERS: Remove "non multi-arched" text from h8300.
2213 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
2214 NEXT_PROLOGUE_INSN.
2215 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
2216 NEXT_PROLOGUE_INSN.
2217
d9025a18
JB
22182002-09-16 Joel Brobecker <brobecker@gnat.com>
2219
2220 * osfsolib.c: Remove file, replaced by solib-osf.c.
2221 * Makefile.in: Remove compilation rules for osfsolib.c.
2222
1b2ef1b6
DC
22232002-09-16 David Carlton <carlton@math.stanford.edu>
2224
2225 * cp-valprint.c (cp_print_class_method): Correct args to
2226 check_stub_method_group.
2227
928e48af
CV
22282002-09-16 Corinna Vinschen <vinschen@redhat.com>
2229
2230 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
2231 `set architecture'. Unify naming convention of functions.
2232 (h8300_skip_prologue): Improve prologue analysis.
2233 (h8300_push_arguments): Rewritten to more closely match GCC's
2234 bizarre argument-passing behavior, along with the comment describing
2235 said behavior.
2236 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
2237 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
2238 sim, remote-e7000.c, remote-hms.c and remote.c
2239
5e3397bb
MK
22402002-09-15 Mark Kettenis <kettenis@gnu.org>
2241
2242 * i386-tdep.c (gdb_print_insn_i386): Removed.
2243 (i386_print_insn): New function.
2244 (i386_gdbarch_init): Set print_insn to i386_print_insns.
2245 (_initialize_i386_tdep): Don't initialize tm_print_insn and
2246 tm_print_insn_info.
2247
f710f4fc
MK
22482002-09-14 Mark Kettenis <kettenis@gnu.org>
2249
2250 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
2251 zero.
2252
db54fef4
CV
22532002-09-14 Corinna Vinschen <vinschen@redhat.com>
2254
2255 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
2256 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
2257 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
2258
2becadee
CF
22592002-09-13 Christopher Faylor <cgf@redhat.com>
2260
2261 * win32-nat.c (child_create_inferior): Honor 'tty' command.
2262
de17c821
DJ
22632002-09-13 Daniel Jacobowitz <drow@mvista.com>
2264
2265 * gdbtypes.c (check_stub_method): Make static.
2266 (check_stub_method_group): New function.
2267 * gdbtypes.h: Update prototypes.
2268 * cp-support.c: New file.
2269 * cp-support.h: New file.
2270
2271 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
2272 (update_method_name_from_physname): New function.
2273 (read_member_functions): Correct method names for operators
2274 and v3 constructors/destructors. Separate v2 constructors and
2275 destructors.
2276 * Makefile.in (stabsread.o): Update dependencies.
2277 (SFILES): Add cp-support.c.
2278 (COMMON_OBS): Add cp-support.o.
2279 (cp_support_h, cp-support.o): Add.
2280
2281 * cp-valprint.c (cp_print_class_method): Call
2282 check_stub_method_group instead of check_stub_method. Remove
2283 extraneous QUITs.
2284 * p-valprint.c (pascal_object_print_class_method): Likewise.
2285 * valops.c (search_struct_method): Likewise.
2286 (find_method_list, value_struct_elt_for_reference): Likewise.
2287
e76cff22
AC
22882002-09-13 Andrew Cagney <cagney@redhat.com>
2289
2290 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
2291 * gdbarch.h, gdbarch.c: Regenerate.
2292
905abb3f
AC
22932002-09-13 Andrew Cagney <ac131313@redhat.com>
2294
2295 * frame.c (find_saved_register): Delete function.
2296 * frame.h (find_saved_register): Delete declaration.
2297 Fix PR gdb/631.
2298
64159455
AC
2299Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
2300
2301 * mips-tdep.c (read_next_frame_reg): Re-hack using
2302 frame_register_unwind.
2303
795e1e11
AC
2304Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
2305
2306 * mips-tdep.c (mips_get_saved_register): Re-hack using
2307 frame_register_unwind.
2308
5720643c
JB
23092002-09-12 Joel Brobecker <brobecker@gnat.com>
2310
2311 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
2312 vector. Will be useful for Interix.
2313 * gdbarch.h, gdbarch.c: Regenerate.
2314
2315 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
2316 name of the malloc function by NAME_OF_MALLOC.
2317
3bada2a2
JB
23182002-09-12 Joel Brobecker <brobecker@gnat.com>
2319
2320 * value.h (find_function_in_inferior): Add const keyword to
2321 one of the parameters. Allows us to invoke this function with
2322 a const char *.
2323 * valops.c (find_function_in_inferior): Likewise.
2324
3db26b01
JB
23252002-09-12 Joel Brobecker <brobecker@gnat.com>
2326
2327 * exec.c (xfer_memory): Fix compilation warning with old versions
2328 of GCC.
2329 * tracepoint.c (trace_find_tracepoint_command): Likewise.
2330
17c5ed2c
DC
23312002-09-12 David Carlton <carlton@math.stanford.edu>
2332
2333 * symtab.h: Run through gdb_indent.h.
2334 Add 2002 to Copyright year list.
2335
ecd1107e
AM
23362002-09-12 Alan Modra <amodra@bigpond.net.au>
2337
2338 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
2339 mach constants.
2340 * MAINTAINERS: Add myself to write after approval list.
2341
e64f66d1
JB
23422002-09-11 J. Brobecker <brobecker@gnat.com>
2343
2344 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
2345
f9395794
JB
23462002-09-11 J. Brobecker <brobecker@gnat.com>
2347
2348 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
2349 Interix.
2350
1a303dec
MS
23512002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
2352
2353 * procfs.c (do_detach): Clear current signal, not just fault.
2354 Corrects problem with breakpoint trap signal leaking to detached
2355 process on Tru64.
2356
c0219d42
MS
23572002-09-10 Michael Snyder <msnyder@redhat.com>
2358
2359 * buildsym.c (finish_block): Protect against null pointer.
2360
9d84ac84
AC
23612002-09-10 Andrew Cagney <cagney@redhat.com>
2362
2363 * infcmd.c (default_print_registers_info): Send all output to
2364 ``file'' instead of ``gdb_stdout''.
2365
77d8f2b4
MS
23662002-09-10 Michael Snyder <msnyder@redhat.com>
2367
2368 * mips-tdep.c (mips_extract_struct_value_address): Make val a
2369 LONGEST, and use signed register read (addresses are sign-
2370 extended for mips).
2371
99656a61
SC
23722002-09-10 Stephane Carrez <stcarrez@nerim.fr>
2373
2374 * event-loop.c (gdb_do_one_event): Make public.
2375 * event-loop.h (gdb_do_one_event): Declare.
2376
da12f4d8
JL
23772002-09-10 Jeff Law <law@redhat.com>
2378
2379 * infttrace.c (child_resume): Simplify and rework to avoid
2380 TT_PROC_CONTINUE.
2381
d0aee0c4
FF
23822002-09-09 Fred Fish <fnf@intrinsity.com>
2383
2384 * printcmd.c (print_scalar_formatted): "len" is the number of
2385 target bytes, NOT the number of target bits.
2386
7cb3ec5e
EZ
23872002-09-09 Elena Zannoni <ezannoni@redhat.com>
2388
2389 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
2390 * top.c (init_main): Set rl_terminal_name.
2391
4dc81987
AS
23922002-09-08 Aidan Skinner <aidan@velvet.net>
2393
2394 * ada-lang.c (ada_array_bound, ada_type_match,
2395 _initialize_ada_language): Fix K&R definitions.
2396 * ada-tasks.c (get_current_task): Fix K&R definitions.
2397 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
2398
842330b4
CF
23992002-09-07 Christopher Faylor <cgf@redhat.com>
2400
2401 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
2402 Add XP.
2403
43156d82
MK
24042002-09-06 Mark Kettenis <kettenis@gnu.org>
2405
66da5fd8
MK
2406 * i386-tdep.c (i386_register_virtual_type,
2407 i386_register_convertible, i386_register_convert_to_virtual,
2408 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
2409 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
2410 (i386_gdbarch_init): Fix comment. Add comments on calls that set
2411 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
2412 Don't set push_arguments twice.
2413
4b218c18
MK
2414 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
2415 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
2416 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
2417 sigtramp_end to NULL.
2418 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
2419 defines.
2420 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
2421
4cc314d5
MK
2422 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
2423 whitespace.
2424
43156d82
MK
2425 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
2426 * gdbarch.h, gdbarch.c: Re-generate.
2427 * blockframe.c (find_pc_sect_partial_function): Convert to use
2428 SIGTRAMP_START_P predicate.
2429
6672060b
MS
24302002-09-05 Michael Snyder <msnyder@redhat.com>
2431
a90c3637
MS
2432 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
2433 generic_dummy_frame method and old method. Also distinguish
2434 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
95f95911 2435 (arm_extract_return_value): Use new regcache method.
a90c3637 2436
6672060b
MS
2437 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
2438 adjustment that doesn't conform to the ABI.
2439 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
2440 saved regcache, not from current regcache.
2441
299ffc64
AC
24422002-09-05 Andrew Cagney <ac131313@redhat.com>
2443
2444 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
2445 * README: Update.
2446
a3a2ee65
JT
24472002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
2448
2449 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
2450 if arm_apcs_32 is false.
2451
2bc7eea9
AC
24522002-09-04 Andrew Cagney <ac131313@redhat.com>
2453
2454 GDB 5.3 branch created.
2455
8a55a7c5
TR
24562002-09-03 Theodore A. Roth <troth@verinet.com>
2457
2458 * gdb/avr-tdep.c (avr_gdbarch_init): Use
2459 generic_unwind_get_saved_register.
2460
e26fb1d7
DC
24612002-09-03 David Carlton <carlton@math.stanford.edu>
2462
2463 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
2464 argument (PR gdb/653). Update call to smash_to_method_type.
2465 (read_structure_scope): Update call to dwarf2_add_member_fn.
2466
30d52491
ML
24672002-09-03 Michal Ludvig <mludvig@suse.cz>
2468
2469 * x86-64-linux-tdep.c: Include gdb_string.h
2470 * x86-64-linux-nat.c: Ditto.
2471
06891d83
JT
24722002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2473
2474 * ada-exp.y (yyname, yyrule): Remap global variables that appear
2475 when YYDEBUG is set to 1.
2476 * c-exp.y: Likewise.
2477 * f-exp.y: Likewise.
2478 * jv-exp.y: Likewise.
2479 * m2-exp.y: Likewise.
2480 * p-exp.y: Likewise.
2481
7d400e77
JT
24822002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2483
2484 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
2485 dependency list.
2486 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
2487 solib_svr4_fetch_link_map_offsets to
2488 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
2489 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
2490 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
2491 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
2492 solib-svr4.o, and solib-legacy.o.
2493 * config/i386/tm-nbsd.h: Include solib.h.
2494
704a27c4
JT
24952002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2496
2497 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
2498 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
2499 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
2500 comment noting that this needs its own target configuration.
2501 * config/i386/nbsd.mt: New file.
2502 * config/i386/nbsdaout.mt: Remove.
2503 * config/i386/nbsdelf.mt: Ditto.
2504 * config/i386/tm-nbsdaout.h: Ditto.
2505
d66198e1
JT
25062002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2507
2508 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
2509 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
2510 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
2511 tdep->sigtramp_end.
2512 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
2513 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
2514 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
2515
3cac699e
JT
25162002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
2517
2518 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
2519 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
2520 * i386-tdep.h (i386bsd_init_abi): New prototype.
2521 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
2522 function declaration.
2523 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
2524 for NetBSD-a.out or NetBSD-ELF.
2525 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
2526 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
2527 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
2528 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
2529 and nbsd-tdep.h.
2530 (i386nbsd_pc_in_sigtramp): New function.
2531 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2532 i386nbsd_pc_in_sigtramp.
2533 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
2534 and i386nbsdelf_init_abi OS ABI handlers.
2535 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
2536 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
2537
7010ca0a
MK
25382002-09-02 Mark Kettenis <kettenis@gnu.org>
2539
2540 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
2541 registers if the target really has them.
2542
6dd93b72
JT
25432002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2544
2545 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
2546 than nbsd-tdep.h.
2547
2ca8ae21
JT
25482002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2549
2550 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
2551 list.
2552 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
2553 (alphanbsd_skip_sigtramp_frame): New functions.
2554 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
2555 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
2556 to alphanbsd_sigcontext_addr.
2557
3d9b49b0
JT
25582002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
2559
2560 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
2561 list.
2562 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
2563 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
2564 nbsd_pc_in_sigtramp.
2565 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
2566 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
2567 * nbsd-tdep.c: Include gdb_string.h.
2568 (nbsd_pc_in_sigtramp): New function.
2569 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
2570 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
2571 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2572 ppcnbsd_pc_in_sigtramp.
2573 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
2574 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2575 shnbsd_pc_in_sigtramp.
2576 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
2577 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
2578 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
2579
c860120c
PM
25802002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
2581
2582 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
2583 watchpoints to NULL.
2584 (insert_breakpoints): set val field of watchpoints if NULL.
2585
2586
c7612d53
JB
25872002-08-29 Jim Blandy <jimb@redhat.com>
2588
2589 * symtab.c (lookup_symbol_aux): In the cases where we find a
2590 minimal symbol of an appropriate name and use its address to
2591 select a symtab to read and search, use `name' (as passed to us)
2592 as the demangled name when searching the symtab's global and
2593 static blocks, not the minsym's name.
2594
66609862
KS
25952002-08-29 Keith Seitz <keiths@redhat.com>
2596
2597 * stack.c (print_frame_info_base): Always set current_source_symtab
2598 and current_source_line.
2599
151fefe2
JB
26002002-08-29 Donn Terry <donnte@microsoft.com>
2601
2602 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
2603
bfb3754e
KS
26042002-08-28 Keith Seitz <keiths@redhat.com>
2605
2606 * stack.c (select_frame): Add FIXME concerning selected-frame
2607 events.
2608 (select_frame_command): Send selected-frame-level-changed
2609 event notification, but only if the level actually changed.
2610 (up_silently_base): Add selected-frame-level-changed event
2611 notification.
2612 (down_silently_base): Likewise.
2613
e822a2a0
AC
26142002-08-28 Andrew Cagney <ac131313@redhat.com>
2615
2616 * Makefile.in: Update dependencies for all gdb/*.c files.
2617
309367d4
TT
26182002-08-27 Tom Tromey <tromey@redhat.com>
2619
2620 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
2621 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
2622 Update dependencies.
2623 * i387-tdep.c: Include gdb_string.h.
2624 * osabi.c: Likewise.
2625 * i386-linux-nat.c: Likewise.
2626 * lin-lwp.c: Likewise.
2627 * ax-gdb.c: Likewise.
2628 * signals/signals.c: Likewise.
2629 * jv-valprint.c: Likewise.
2630 * p-lang.c: Likewise.
2631 * c-valprint.c: Likewise.
2632 * cp-abi.c: Likewise.
2633
e1507482
EZ
26342002-08-27 Elena Zannoni <ezannoni@redhat.com>
2635
2636 * cli/cli-script.h (copy_command_lines): Export.
2637 * breakpoint.c: Include cli/cli-script.h.
2638 * Makefile.in (breakpoint.o): Update dependencies.
2639
c6510018
MS
26402002-08-26 Michael Snyder <msnyder@redhat.com>
2641
2642 * breakpoint.c (insert_breakpoints): Protect all references
2643 to 'process_warning'. Shorten long lines.
2644
c2b8ed2c
MS
26452002-08-26 Joel Brobecker <brobecker@gnat.com>
2646
2647 * cli/cli-script.c (copy_command_lines): New function.
2648 * defs.h (copy_command_lines): Export.
2649 * testsuite/gdb.base/commands.exp: New tests for commands
2650 attached to a temporary breakpoint, and for commands that
2651 delete the breakpoint they are attached to.
2652
26532002-08-26 Michael Snyder <msnyder@redhat.com>
2654
2655 * breakpoint.c (bpstat_stop_status): Instead of copying the
2656 pointer to the breakpoint commands struct, make a new copy
2657 of the struct and point to that.
2658 (bpstat_clear): Free the commands struct.
2659 (bpstat_clear_actions): Free the commands struct.
2660 (bpstat_do_actions): Free the command actions. Also execute
2661 the local cleanups, instead of deleting them.
2662 (delete_breakpoint): Leave the commands field of the bpstat
2663 chain alone -- it will be freed later.
2664
64b84175
KB
26652002-08-26 Kevin Buettner <kevinb@redhat.com>
2666
2667 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
2668 deleted in 2002-08-20 commit. This function is still used by
2669 ppc-linux-nat.c.
2670
55970da6
KS
26712002-08-26 Keith Seitz <keiths@redhat.com>
2672
2673 * gdb-events.sh: Add selected-frame-level-changed event.
2674 * gdb-events.c: Regenerated.
2675 * gdb-events.h: Regenerated.
2676
a790ad35
SC
26772002-08-26 Stephane Carrez <stcarrez@nerim.fr>
2678
2679 Fix PR gdb/393:
2680 * inflow.c (terminal_save_ours): New function to save terminal
2681 settings.
2682 * inferior.h (terminal_save_ours): Declare.
2683 * target.c (debug_to_terminal_save_ours): New function.
2684 (cleanup_target): Defaults to_terminal_save_ours.
2685 (update_current_target): Inherit to_terminal_save_ours.
2686 (setup_target_debug): Set to_terminal_save_ours.
2687 * target.h (target_terminal_save_ours): New to save terminal settings.
2688 (target_ops): New member to_terminal_save_ours.
2689 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
2690 * hpux-thread.c (init_hpux_thread_ops): Likewise.
2691 * inftarg.c (init_child_ops): Likewise.
2692 * m3-nat.c (init_m3_ops): Likewise.
2693 * procfs.c (init_procfs_ops): Likewise.
2694 * wince.c (init_child_ops): Likewise.
2695 * win32-nat.c (init_child_ops): Likewise.
2696 * sol-thread.c (init_sol_thread_ops): Likewise.
2697
c00dcbe9
MK
26982002-08-26 Mark Kettenis <kettenis@gnu.org>
2699
3d7f4f49
MK
2700 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
2701 use regcache_* functions.
2702 (i386_gdbarch_init): Set store_return_value instead of
2703 deprecated_store_return_value.
2704
c00dcbe9
MK
2705 * regcache.c (regcache_raw_write_signed,
2706 regcache_raw_write_unsigned): New functions.
2707 * regcache.h (regcache_raw_write_signed,
2708 regcache_raw_write_unsigned): New prototypes.
2709
0e0d15ca
AC
27102002-08-25 Andrew Cagney <ac131313@redhat.com>
2711
2712 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
2713 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
2714 source file dependencies. Cleanup corresponding generator rules.
2715
d3b22ed5
AC
27162002-08-25 Andrew Cagney <ac131313@redhat.com>
2717
2718 * regcache.h (register_offset_hack): Declare.
2719 (regcache_cooked_read_using_offset_hack): Declare.
2720 (regcache_cooked_write_using_offset_hack): Declare.
2721
2722 * regcache.c (register_offset_hack): New function.
2723 (regcache_cooked_read_using_offset_hack): New function.
2724 (regcache_cooked_write_using_offset_hack): New function.
2725 (regcache_dump): Check that the registers, according to their
2726 offset, are packed hard against each other.
2727 (cooked_xfer_using_offset_hack): New function.
2728
bb425013
AC
27292002-08-25 Andrew Cagney <ac131313@redhat.com>
2730
2731 * regcache.c (struct regcache_descr): Add field register_type.
2732 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
2733 in as a parameter
2734 (init_regcache_descr): Initialize register_type. Pass the descr
2735 to init_legacy_regcache_descr. Use register_type instead of
2736 REGISTER_VIRTUAL_TYPE.
2737 (register_type): New function.
2738 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
2739 * regcache.h (register_type): Declare.
2740
d0403e00
AC
27412002-08-25 Andrew Cagney <ac131313@redhat.com>
2742
2743 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
2744 instead of deprecated_store_return_value. Fix fallout from
2745 2002-08-23 Andrew Cagney <cagney@redhat.com>.
2746
0ed04cce
AC
27472002-08-25 Andrew Cagney <ac131313@redhat.com>
2748
2749 * regcache.c (max_register_size): New function.
2750 (init_legacy_regcache_descr): Ensure that max_register_size is
2751 large enough for REGISTER_VIRTUAL_SIZE.
2752 * regcache.h (max_register_size): Declare.
2753
46d79c04
AC
27542002-08-24 Andrew Cagney <ac131313@redhat.com>
2755
2756 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
2757 store_return_value.
2758 (e500_extract_return_value): Change type of valbuf pointer to
2759 void.
2760
853c7bd0
MK
27612002-08-24 Mark Kettenis <kettenis@gnu.org>
2762
cd87e769
MK
2763 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
2764 workaround.
2765
853c7bd0
MK
2766 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
2767 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
2768 long long) to prevent compiler warning on 64-bit systems.
2769
ebba8386
AC
27702002-08-23 Andrew Cagney <cagney@redhat.com>
2771
2772 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
2773 (DEPRECATED_STORE_RETURN_VALUE): New method.
2774 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
2775 * gdbarch.h, gdbarch.c: Re-generate.
2776
2777 * values.c (set_return_value): Pass current_regcache to
2778 STORE_RETURN_VALUE.
2779 * arch-utils.h (legacy_store_return_value): Declare.
2780 * arch-utils.c (legacy_store_return_value): New function.
2781 (legacy_extract_return_value): Update parameters.
2782
2783 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
2784 STORE_RETURN_VALUE.
2785 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2786 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2787 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2788 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2789 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2790 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2791 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2792 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2793 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2794 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2795
2796 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2797 * i386-tdep.c (i386_extract_return_value): Update.
2798 * arch-utils.c (legacy_extract_return_value): Update.
2799 * frv-tdep.c (frv_gdbarch_init): Update.
2800 * cris-tdep.c (cris_gdbarch_init): Update.
2801 * d10v-tdep.c (d10v_gdbarch_init): Update.
2802 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2803 * m68k-tdep.c (m68k_gdbarch_init): Update.
2804 * mcore-tdep.c (mcore_gdbarch_init): Update.
2805 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2806 * s390-tdep.c (s390_gdbarch_init): Update.
2807 * sparc-tdep.c (sparc_gdbarch_init): Update.
2808 * sh-tdep.c (sh_gdbarch_init): Update.
2809 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
2810 * v850-tdep.c (v850_gdbarch_init): Update.
2811 * avr-tdep.c (avr_gdbarch_init): Update.
2812 * ia64-tdep.c (ia64_gdbarch_init): Update.
2813 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2814 * vax-tdep.c (vax_gdbarch_init): Update.
2815 * alpha-tdep.c (alpha_gdbarch_init): Update.
2816 * arm-tdep.c (arm_gdbarch_init): Update.
2817 * mips-tdep.c (mips_gdbarch_init): Update.
2818 * i386-tdep.c (i386_gdbarch_init): Update.
2819
5bd8c6d0
AC
28202002-08-23 Andrew Cagney <ac131313@redhat.com>
2821
2822 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
2823 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
2824
e73e1724
MK
28252002-08-24 Mark Kettenis <kettenis@gnu.org>
2826
2827 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
2828 problems.
2829
3e6564e1
JB
28302002-08-23 Joel Brobecker <brobecker@gnat.com>
2831
2832 * infrun.c (handle_inferior_event): Move a comment outside of a
2833 function call, in order to avoid indent reformatting this part
2834 of the code in an unreadable way.
2835
81d0cc19
GS
28362002-08-23 Grace Sainsbury <graces@redhat.com>
2837
2838 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
2839 when breakpoints fail. Move general breakpoint error messages to
2840 insert_breakpoints.
2841 * breakpoint.c (insert_breakpoints): Change warnings when
2842 breakpoints are nto inserted to specify the type. Remove call to
2843 memory_error when hardware breakpoints can't be inserted. Remove
2844 multiple calls to warning so all messages are sent to the user at
2845 once.
2846 (delete_breakpoints): Make insert error messsages more explicit.
2847
17574093
DJ
28482002-08-23 Daniel Jacobowitz <drow@mvista.com>
2849
2850 * ChangeLog: Move gdbserver entries after GDB 5.2 to
2851 gdbserver/ChangeLog.
2852
8acc2935
MK
28532002-08-23 Mark Kettenis <kettenis@gnu.org>
2854
dfe01d39
MK
2855 * i386-tdep.c: Include "objfiles.h".
2856 (i386_svr4_init_abi): Set in_solib_call_trampoline and
2857 skip_trampoline_code.
2858 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
2859 (CPLUS_MARKER): Define to '.'.
2860
8acc2935
MK
2861 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
2862 member.
2863 (linux_corefile_thread_callback): Increase args->num_notes.
2864 (linux_make_note_section): Initialize thread_args.num_notes, and
2865 use it to determine whether notes for any threads were created.
2866
151fefe2 28672002-08-23 Donn Terry <donnte@microsoft.com>
640b227f
JB
2868
2869 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
2870 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
2871 and PCUNKILL.
2872 (write_with_trace): Conditionalize out the switch branch handling
2873 PCSHOLD if the corresponding macro is not defined. Likewise for
2874 PRSABORT and PRSTOP.
2875 This change will be needed by the Interix port.
2876
e1507482
EZ
28772002-08-22 Elena Zannoni <ezannoni@redhat.com>
2878
2879 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
2880 write_register wherever possible instead of manipulating the
2881 register bytes directly.
2882 Assign VALUE_CONTENTS to a variable and use that.
2883 The GPR numbers are now dependent on the architecture.
2884
96ff0de4
EZ
28852002-08-22 Elena Zannoni <ezannoni@redhat.com>
2886
2887 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
2888 ev_offset fields.
2889 (skip_prologue): Add support for BookE/e500 instructions.
2890 (e500_extract_return_value): New function.
2891 (frame_get_saved_regs): Add support for saving ev registers and
2892 pseudo gpr's.
2893 (e500_store_return_value): New function.
2894 (rs6000_gdbarch_init): Move up default intializations of
2895 deprecated_extract_return_value and store_return_value. Overwrite
2896 init of store_return_value with e500 specific version.
2897 Set extract_return_value for e500.
2898
fbefca5b
EZ
28992002-08-22 Elena Zannoni <ezannoni@redhat.com>
2900
2901 * blockframe.c (generic_call_dummy_register_unwind): Use
2902 regcache_cooked_read to catch cases in which the variable is
2903 stored in a pseudo register.
2904
4d210288
AC
29052002-08-22 Andrew Cagney <cagney@redhat.com>
2906
2907 * NEWS: Mention that the i960 has been made obsolete.
2908 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
2909 i960-tdep.c
2910 (remote-nrom.o): Obsolete target.
2911 (remote-nindy.o, i960-tdep.o): Ditto.
2912 * remote-nrom.c: Make file obsolete.
2913 * remote-nindy.c, remote-vx960.c: Ditto.
2914 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
2915 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
2916 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
2917 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
2918 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
2919 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
2920 i960-*-vxworks* obsolete.
2921 * MAINTAINERS: Note that the i960 is obsolete.
2922
6c0c456d
CV
29232002-08-21 Corinna Vinschen <vinschen@redhat.com
2924
2925 * aix-thread.c (aix_thread_detach): Disable thread debugging on
2926 detach to allow reinitialization.
2927
9f9d12b3
AC
29282002-08-22 Andrew Cagney <ac131313@redhat.com>
2929
2930 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
2931 attempt).
2932
ebeb39fe
JB
29332002-08-22 Jim Blandy <jimb@redhat.com>
2934
2935 * coffread.c (coff_symfile_read): Don't try to read the line
2936 number table from disk if the image file doesn't have a symbol
2937 table; we'll never actually look at the info anyway, and Windows
2938 ships DLL's with bogus file offsets for the line number data.
2939
5bf1c677
EZ
29402002-08-21 Elena Zannoni <ezannoni@redhat.com>
2941
2942 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
2943 an e500 executable.
2944
71b8ef93
MS
29452002-08-21 Michael Snyder <msnyder@redhat.com>
2946
2947 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
2948 (MSYMBOL_SIZE): Replace macro with function.
18f81521
MS
2949 (DEFAULT_MIPS_TYPE): Delete unused macro.
2950 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
2951 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
71b8ef93 2952
d174216d
JB
29532002-08-21 Jim Blandy <jimb@redhat.com>
2954
2955 * valops.c (value_cast): Simplify and correct logic for doing a
2956 static cast from a pointer to a base class to a pointer to a
2957 derived class.
2958
0ab7a791
AC
29592002-08-21 Andrew Cagney <ac131313@redhat.com>
2960
2961 * infcmd.c (default_print_registers_info): Replace
2962 do_registers_info.
2963 (registers_info): Use gdbarch_print_registers_info instead of
2964 DO_REGISTERS_INFO.
2965 * inferior.h (default_print_registers_info): Replace
2966 do_registers_info.
2967 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
2968 (DO_REGISTERS_INFO): Change to a predicate function.
2969 * gdbarch.h, gdbarch.c: Regenerate.
2970
e23792cc
KS
29712002-08-21 Keith Seitz <keiths@redhat.com>
2972
2973 * gdb-events.sh: Add target-changed event.
2974 * gdb-events.c: Regenerated.
2975 * gdb-events.c: Regenerated.
2976 * valops.c (value_assign): Add target-changed event notification
2977 to inlval_register, lval_memory, and lval_reg_frame_relative.
2978
9fb14e79
JB
29792002-08-21 Joel Brobecker <brobecker@gnat.com>
2980
2981 * NEWS: Add an entry regarding the improvement of the next/step
2982 operation on Alpha Tru64 multi-processor machines.
2983
6d39a69f
AC
29842002-08-21 Andrew Cagney <ac131313@redhat.com>
2985
72acd513
AC
2986 * Makefile.in: Update dependencies for mi/ cli/ and tui/
2987 directores.
342af04b 2988 * Makefile.in: Update all _h macro definitions.
6d39a69f
AC
2989 * Makefile.in (install-gdbtk): Move to install section.
2990 (rdi-share/libangsd.a): Move to end of file.
2991
fa5f27c7
AC
29922002-08-19 Andrew Cagney <ac131313@redhat.com>
2993
2994 * frame.c (frame_register_unwind): When a register, set addrp to
2995 the register's byte.
2996
5a89d8aa
MS
29972002-08-20 Michael Snyder <msnyder@redhat.com>
2998
2999 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
3000 used locally, so move them from the target machine header to here.
3001 (mips_set_processor_type, mips_register_name, mips32_next_pc,
3002 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
3003 Make static.
3004 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
3005
822e978b
AC
30062002-08-20 Andrew Cagney <cagney@redhat.com>
3007
3008 * NEWS: Mention that the Apollo line was made obsolete.
3009 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
3010 m68*-hp-hpux* obsolete.
3011 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
3012 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
3013 * buildsym.c (make_blockvector): Make static.
3014 * buildsym.h (make_blockvector): Make extern declaration obsolete.
3015 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
3016 (ALLDEPFILES): Remove dstread.c.
3017 (dstread.o): Obsolete make rule.
3018 * dstread.c: Makefile obsolete.
3019 * dst.h: Ditto.
3020 * config/m68k/hp300hpux.mt: Ditto.
3021 * config/m68k/hp300hpux.mh: Ditto.
3022 * config/m68k/hp300bsd.mt: Ditto.
3023 * config/m68k/hp300bsd.mh: Ditto.
3024 * config/m68k/apollo68b.mt: Ditto.
3025 * config/m68k/apollo68v.mh: Ditto.
3026 * config/m68k/apollo68b.mh: Ditto.
3027
e41b17f0
MS
30282002-08-20 Michael Snyder <msnyder@redhat.com>
3029
3030 * mips-tdep.c (mips_in_return_stub): Make static.
3031 (mips_gdbarch_init): Set in_solib_return_trampoline.
3032 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
3033
d50355b6
MS
30342002-08-20 Michael Snyder <msnyder@redhat.com>
3035
3036 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
3037 * gdbarch.c, gdbarch.h: Regenerate.
3038 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
3039 Add.
3040 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
3041
757a7cc6
MS
30422002-08-20 Michael Snyder <msnyder@redhat.com>
3043
3044 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
3045 (mips_gdbarch_init): Set skip_trampoline_code,
3046 in_solib_call_trampoline.
3047 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
3048 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
3049
c8001721
EZ
30502002-08-20 Elena Zannoni <ezannoni@redhat.com>
3051
3052 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
3053
3054 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
3055 vector type for ev registers.
3056 (e500_pseudo_register_read): New function.
3057 (e500_pseudo_register_write): New function.
3058 (e500_dwarf2_reg_to_regnum): New function.
3059 (PPC_UISA_NOFP_SPRS): New macro.
3060 (PPC_EV_REGS): New macro.
3061 (PPC_GPRS_PSEUDO_REGS): New macro.
3062 (registers_e500): New register set for e500.
3063 (variants): Add e500 variant.
3064 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
3065 before setting architectural dependent variations. Initialize ev
3066 registers numbers. Add case for e500 architecture. Set the
3067 number of pseudo registers.
3068
64366f1c
EZ
30692002-08-20 Elena Zannoni <ezannoni@redhat.com>
3070
3071 * rs6000-tdep.c: Clean up comments.
3072
7e78f0ca
AC
30732002-08-20 Andrew Cagney <cagney@redhat.com>
3074
3075 * h8300-tdep.c: Re-indent file.
3076
697f7479
JB
30772002-08-20 Jim Blandy <jimb@redhat.com>
3078
3079 * Makefile.in (LDFLAGS): Allow the configure script to establish a
3080 default for this.
697f7479 3081
e86ae29f
KS
30822002-08-20 Keith Seitz <keiths@redhat.com>
3083
3084 * breakpoints.c (watch_command_1): Use internal breakpoint
3085 when setting a watchpoint_scope breakpoint.
3086
216b504f
EZ
30872002-08-20 Elena Zannoni <ezannoni@redhat.com>
3088
3089 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
3090 (build_builtin_type_vec64i): Ditto.
3091 (build_builtin_type_vec128): Ditto.
3092 (build_builtin_type_vec128i): Ditto.
3093
f7ab6ec6
MS
30942002-08-19 Michael Snyder <msnyder@redhat.com>
3095
3096 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
3097 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
3098 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
3099 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
3100 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
3101 CALL_DUMMY_ADDRESS): Delete.
3102 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
3103 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
3104 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
3105 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
3106 push_return_address.
3107 (mips_register_raw_size, mips_eabi_use_struct_convention,
3108 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
3109 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
3110 mips_init_extra_frame_info, mips_eabi_push_arguments,
3111 mips_n32n64_push_arguments, mips_push_return_address,
3112 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
3113 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
3114
b5d1566e
MS
31152002-08-19 Michael Snyder <msnyder@redhat.com>
3116
3117 * mips-tdep.c (mips_frame_num_args): New function.
3118 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
3119 frame_saved_pc, frame_args_address, frame_locals_address,
3120 frame_num_args, and frame_args_skip.
3121 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
3122 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
3123 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
3124 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
3125
2f1488ce
MS
31262002-08-20 Michael Snyder <msnyder@redhat.com>
3127
3128 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
3129 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
3130 * mips-tdep.c (mips_store_struct_return): New function.
3131 (mips_extract_struct_value_address): New function.
3132 (mips_gdbarch_init): Set store_struct_return and
3133 extract_struct_value_address.
3134
41ff2da1
DC
31352002-08-20 David Carlton <carlton@math.stanford.edu>
3136
3137 * dwarf2read.c (dwarf2_build_psymtabs): Check that
3138 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
3139 (read_file_scope): Check that line_header is nonzero before
3140 decoding macro information.
3141
e5451d58
MK
31422002-08-20 Mark Kettenis <kettenis@gnu.org>
3143
3144 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
3145 flag the general-purpose registers as floating-point on targets
3146 that don't support the floating-point registers.
3147
4a6daafa
EZ
31482002-08-20 Elena Zannoni <ezannoni@redhat.com>
3149
3150 * rs6000-tdep.c (altivec_register_p): Delete.
3151 (rs6000_do_altivec_registers): Delete.
3152 (rs6000_altivec_registers_info): Delete.
3153 (rs6000_do_registers_info): Delete.
3154 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
3155 (rs6000_gdbarch_init): Remove setting of do_registers_info.
3156
ab4327e0
EZ
31572002-08-20 Elena Zannoni <ezannoni@redhat.com>
3158
3159 * infcmd.c (do_registers_info): Print vector registers in hex
3160 format only.
3161 (print_vector_info): Check that printing registers
3162 makes sense.
3163 (print_float_info): Ditto.
3164
cb1d2653
AC
31652002-08-20 Andrew Cagney <ac131313@redhat.com>
3166
3167 * mips-tdep.c (mips_gdbarch_init): Update.
3168 (mips_o32_extract_return_value): Rewrite.
3169 (mips_o32_store_return_value): Rewrite.
3170 (mips_o32_xfer_return_value): New function.
3171 (mips_xfer_register): Tweak debug print message. Allow for
3172 buf_offset when dumping the value transfered.
3173
dfc3d9b2
AC
31742002-08-20 Andrew Cagney <ac131313@redhat.com>
3175
3176 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
3177 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
3178 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
3179 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
3180 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
3181
7807aa61
MS
31822002-08-14 Michael Snyder <msnyder@redhat.com>
3183
3184 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
3185
489461e2
EZ
31862002-08-19 Elena Zannoni <ezannoni@redhat.com>
3187
3188 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
3189 register.
3190 (P): New macro to define a register as a pseudo register.
3191 (R, R4, R8, R16, FR32, R64, R0): Updated.
3192 (struct variant): Add new fields for number of pseudo registers
3193 and number of total registers.
3194 (tot_num_registers): New macro replacing....
3195 (num_registers): ...deleted macro.
3196 (num_registers): New function.
3197 (num_pseudo_registers): New function.
3198 (variants): Update all variants to intialize new fields correctly.
3199 Postpone initialization of number of pseudo regs and real regs.
3200 (init_variants): New function.
3201 (rs6000_gdbarch_init): Initialize variants. Update calculation of
3202 registers offsets.
3203
fcaffe4c
DC
32042002-08-19 David Carlton <carlton@math.stanford.edu>
3205
2c2738a0
DC
3206 * valops.c (search_struct_field): Change error message to treat
3207 return value of 0 from value_static_field as meaning that field is
3208 optimized out.
3209 (value_struct_elt_for_reference): Ditto.
3210 * values.c (value_static_field): Treat an unresolved location the
3211 same as a nonexistent symbol. Fix PR gdb/635.
2a73a662
DC
3212 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
3213 enclosed. Fix PR gdb/574.
fcaffe4c
DC
3214 * MAINTAINERS: Add self to Write After Approval list.
3215
88658117
AC
32162002-08-19 Andrew Cagney <ac131313@redhat.com>
3217
3218 * mips-tdep.c (mips_xfer_register): New function.
3219 (mips_n32n64_extract_return_value): Rewrite.
3220 (mips_gdbarch_init): For N32 and N64, set extract_return_value
3221 instead of deprecated_extract_return_value.
3222
21283beb
EZ
32232002-08-19 Elena Zannoni <ezannoni@redhat.com>
3224
3225 * rs6000-tdep.c (TDEP): Delete macro.
3226 (branch_dest): Replace use of TDEP macro with its body.
3227 (rs6000_pop_frame): Ditto.
3228 (rs6000_push_arguments): Ditto.
3229 (rs6000_skip_trampoline_code): Ditto.
3230 (rs6000_frame_saved_pc): Ditto.
3231 (rs6000_frame_chain): Ditto.
3232 (rs6000_register_name): Ditto.
3233 (rs6000_register_byte): Ditto.
3234 (rs6000_register_raw_size): Ditto.
3235 (rs6000_register_virtual_type): Ditto.
3236 (rs6000_register_convertible): Ditto.
3237 (rs6000_convert_from_func_ptr_addr): Ditto.
3238
bf072999
DJ
32392002-08-19 Daniel Jacobowitz <drow@mvista.com>
3240
3241 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
3242 conditionally.
3243 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
3244 MIPS_LINUX_JB_ELEMENT_SIZE.
3245 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
3246 for MAX_REGISTER_RAW_SIZE arrays.
3247 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
3248 MIPS_LINUX_JB_ELEMENT_SIZE.
3249
9b949a49
PM
32502002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
3251
3252 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
3253
6d3e79c6
AS
32542002-08-19 Aidan Skinner <aidan@velvet.net>
3255
3256 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
3257 ada-valprint.c ada-tasks.c.
3258 (YYFILES): Add ada-exp.y.
3259 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
3260 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
3261 (ada-exp.tab.o): New target.
3262
06c0b04e
AC
32632002-08-18 Andrew Cagney <ac131313@redhat.com>
3264
3265 * regcache.c (regcache_xfer_part): New function.
3266 (regcache_raw_read_part): New function.
3267 (regcache_raw_write_part): New function.
3268 (regcache_cooked_read_part): New function.
3269 (regcache_cooked_write_part): New function.
3270 * regcache.h (regcache_raw_read_part): Declare.
3271 (regcache_raw_write_part): Declare.
3272 (regcache_cooked_read_part): Declare.
3273 (regcache_cooked_write_part): Declare.
3274
92d1e331
DJ
32752002-08-18 Daniel Jacobowitz <drow@mvista.com>
3276
3277 * remote.c (remote_open_1): Add async_p.
3278 (remote_async_open_1): Delete.
3279 (open_remote_target): Delete.
3280 (remote_open, extended_remote_open): Update calls to remote_open_1.
3281 (remote_async_open, extended_remote_async_open): Call
3282 remote_open_1 instead of remote_async_open_1.
3283
247055de
MK
32842002-08-19 Mark Kettenis <kettenis@gnu.org>
3285
3286 * blockframe.c: Fix a few coding standard violations.
3287
641eda39
MK
32882002-08-19 Mark Kettenis <kettenis@gnu.org>
3289
0b717710
MK
3290 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
3291 here from ...
3292 * config/i386/tm-i386sco5.h: ... here. File removed.
3293 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
3294
26d28e12 3295 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
641eda39
MK
3296 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
3297 (TM_FILE): Set to tm-i386.h.
3298 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
3299 * config/i386/tm-i386v.h: Remove file.
3300 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
3301 instead of "i386/tm-i386v.h".
3302 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
3303 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
3304 "i386/tm-i386v.h".
3305 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
3306 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
3307 "i386/tm-i386.h".
3308
d4e0bab4
MK
33092002-08-18 Mark Kettenis <kettenis@gnu.org>
3310
3311 * config/i386/nm-i386v.h: Add protection against
3312 multiple-inclusion.
3313 (i386_register_u_addr): Remove prototype.
3314 (register_u_addr): New prototype.
3315 (REGISTER_U_ADDR): Redefine accordingly.
3316 * i386v-nat.c: Improve several comments.
3317 (i386_register_u_addr): Change signature and rename to
3318 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
3319 ubase variable.
3320
46cac009
AC
33212002-08-18 Andrew Cagney <ac131313@redhat.com>
3322
3323 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
3324 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
3325 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
3326 deprecated_extract_return_value.
3327 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
3328 rename mips_o32o64_push_arguments.
3329 (mips_gdbarch_init): Update.
3330 (mips_extract_return_value): Delete.
3331 (mips_o32_extract_return_value): Clone mips_extract_return_value.
3332 (mips_o64_extract_return_value): Clone mips_extract_return_value.
3333 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
3334 (mips_n32n64_extract_return_value): Clone
3335 mips_extract_return_value.
3336 (mips_store_return_value): Delete.
3337 (mips_o32_store_return_value): Clone mips_store_return_value.
3338 (mips_o64_store_return_value): Clone mips_store_return_value.
3339 (mips_eabi_store_return_value): Clone mips_store_return_value.
3340 (mips_n32n64_store_return_value): Clone mips_store_return_value.
3341
d2e4a39e
AS
33422002-08-18 Aidan Skinner <aidan@velvet.net>
3343
0c30c098
AS
3344 * ada-lang.c: Use gdb_string.h instead of <string.h>.
3345 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
3346
33472002-08-18 Aidan Skinner <aidan@velvet.net>
3348
3349 * ada-lang.c: Run through gdb_indent.sh.
3350 * ada-lang.h: Run through gdb_indent.sh.
3351 * ada-tasks.c: Run through gdb_indent.sh.
3352 * ada-typeprint.c: Run through gdb_indent.sh.
3353 * ada-valprint.c: Run through gdb_indent.sh.
d2e4a39e 3354
01fc4e33
AC
33552002-08-18 Andrew Cagney <ac131313@redhat.com>
3356
3357 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
3358 ABI.
3359
d8ee244c
MK
33602002-08-18 Mark Kettenis <kettenis@gnu.org>
3361
c38d8261
MK
3362 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
3363
222db64c
MK
3364 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
3365 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
3366
c2848c82
MK
3367 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
3368 write_register_gen instead of write_register_bytes.
3369
d8ee244c
MK
3370 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
3371 i[3456]-*-osf1mk* configurations have been made obsolete.
3372 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
3373 i[3456]86-*-osf1mk* hosts obsolete.
3374 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
3375 targets obsolete.
3376 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
3377 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
3378 config/i386/i386m3.mt, config/i386/nm-m3.h,
3379 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
3380 config/i386/i386mk.mh, config/i386/i386mk.mt,
3381 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
3382 obsolete.
3383 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
3384 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
3385 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
3386
61d8d407
AC
33872002-08-18 Andrew Cagney <ac131313@redhat.com>
3388
3389 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
3390 (hppa_value_returned_from_stack): Declare.
3391 (hppa_extract_return_value): Declare.
3392 * config/pa/hppa.mt: New file.
3393 * configure.tgt: Recognize hppa*-*-*.
3394 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
3395
0c52bd59
MK
33962002-08-18 Mark Kettenis <kettenis@gnu.org>
3397
3398 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
3399 comment.
3400
b5686e99
MK
34012002-08-17 Mark Kettenis <kettenis@gnu.org>
3402
3403 * top.c (gdb_rl_operate_and_get_next): Make sure
3404 operate-and-get-next functions correctly even when the history
3405 list is completely filled.
3406
c1bab85b
AC
34072002-08-18 Andrew Cagney <ac131313@redhat.com>
3408
3409 * MAINTAINERS (Target Instruction Set Architectures): Rename
3410 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
3411 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
3412 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
3413 already listed under Host/Native.
3414
3415 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
3416 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
3417 mips*-*-*.
3418
32089c7c
AC
34192002-08-17 Andrew Cagney <ac131313@redhat.com>
3420
3421 * config/ia64/ia64.mt: New file.
3422 * config/alpha/alpha.mt: New file.
3423 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
3424 ia64-linux-gnu. Mention that ia64-elf is broken.
3425 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
3426
b4671f85
MK
34272002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
3428
3429 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
3430 generic_func_frame_valid instead of func_frame_valid.
3431
c8edd8b4
JB
34322002-08-16 Joel Brobecker <brobecker@gnat.com>
3433
3434 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
3435 procfs appears to be broken when debugging on multi-processor
3436 machines. So enable software single stepping in order to avoid
3437 using the procfs interface to do next/step operations, using
3438 internal breakpoints instead.
3439
3440 * infrun.c (handle_inferior_event): Readjust the stop_pc by
3441 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
3442 make this pc address equal to the value it would have if the
3443 system stepping capability was used. Also set a new flag used
3444 to ensure that we don't readjust the PC one more time later.
3445
3446 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
3447 address by DECR_PC_AFTER_BREAK when software single step is
3448 in use for this architecture, as this has already been taken
3449 care of in handle_inferior_event().
3450
238617f6
JB
34512002-08-16 Joel Brobecker <brobecker@gnat.com>
3452
3453 * infrun.c (handle_inferior_event): Minor reformatting, to make
3454 a rather long condition expression easier to read.
3455
541a7aac
AC
34562002-08-16 Andrew Cagney <ac131313@redhat.com>
3457
3458 * Makefile.in (gdbtk.o): Move to end of file.
3459 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
3460 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
3461 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
3462 (gdbtk-wrapper.o, gdbres.o): Ditto.
3463
f92d4a7b
AC
34642002-08-16 Andrew Cagney <ac131313@redhat.com>
3465
3466 * Makefile.in (copying.o): Separate out compile rule.
3467 (hpux-thread.o, procfs.o, signals.o): Ditto.
3468 (v850ice.o, z8k-tdep.o): Ditto.
3469 (tui-file.o): Move to TUI section.
3470 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
3471 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
3472
1cce71eb
JB
34732002-08-16 Joel Brobecker <brobecker@gnat.com>
3474
3475 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
3476 skip_trampoline_code, for better namespace-proofing.
3477
3478 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
3479
0851f23d
JB
34802002-08-16 Joel Brobecker <brobecker@gnat.com>
3481
3482 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
3483
f8d40ec8
JB
34842002-08-16 Joel Brobecker <brobecker@gnat.com>
3485
3486 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
3487 signal, check whether we hit a breakpoint before checking for a
3488 single step breakpoint. Otherwise, GDB fails to notice that a
3489 breakpoint has been hit when stepping onto a breakpoint.
3490
63d022e0
KS
34912002-08-16 Keith Seitz <keiths@redhat.com>
3492
3493 * gdb-events.sh (clear_gdb_event_hooks): New function.
3494 * gdb-events.c: Regenerate.
3495 * gdb-events.h: Regenerate.
3496
6e31adb3
AC
34972002-08-16 Andrew Cagney <ac131313@redhat.com>
3498
3499 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
3500 not_a_sw_breakpoint.
3501 * breakpoint.h (bpstat_stop_status): Add parameter names.
3502
c8189ed1
GS
35032002-08-16 Grace Sainsbury <graces@redhat.com>
3504
3505 * remote.c (remote_insert_hw_breakpoint)
3506 (remote_remove_hw_breakpoint): Fix calculation of length field
3507 for Z-packet.
3508
d05285fa
MS
35092002-08-15 Michael Snyder <msnyder@redhat.com>
3510
466d7106
MS
3511 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
3512 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
3513 (supply_fpregset): Ditto.
3514
d05285fa
MS
3515 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
3516 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
3517 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
bcb0cc15 3518 (TARGET_READ_SP): Delete.
bf1f5b4c 3519 (DO_REGISTERS_INFO): Delete.
102182a9
MS
3520 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
3521 Delete.
3522 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
3523 from macros to functions.
bf1f5b4c 3524
d05285fa
MS
3525 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
3526 (mips_register_convertible, mips_register_convert_to_virtual,
3527 mips_register_convert_to_raw): Make static.
bcb0cc15
MS
3528 (mips_read_sp): New function.
3529 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
bf1f5b4c
MS
3530 (mips_do_registers_info): Make static.
3531 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
102182a9
MS
3532 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
3533 (mips_register_convert_from_type, mips_register_convert_to_type):
3534 New functions.
3535 (mips_gdbarch_init): Set up function_start_offset,
3536 register_virtual_size, pc_in_sigtramp.
d05285fa 3537
e76f1f2e
AC
35382002-08-15 Andrew Cagney <ac131313@redhat.com>
3539
3540 * infcmd.c (vector_info): New function.
3541 (_initialize_infcmd): Add command "info vector".
3542 (print_vector_info): New function.
3543
3544 * gdbarch.sh (PRINT_VECTOR_INFO): New method
3545 * gdbarch.h, gdbarch.c: Regenerate.
3546
4782dc19
AC
35472002-08-15 Andrew Cagney <ac131313@redhat.com>
3548
3549 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
3550 ``print_all''. Only print vector registers when ``print_all''.
3551
23e3a7ac
AC
35522002-08-15 Andrew Cagney <ac131313@redhat.com>
3553
8e186fd6
AC
3554 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
3555 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
3556
23e3a7ac
AC
3557 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
3558 Add `args' parameter.
3559 * gdbarch.h, gdbarch.c: Regenerate.
3560
3561 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
3562
3563 * infcmd.c (float_info): Call print_float_info.
3564 (print_float_info): New function. By default, print the
3565 floating-point registers.
3566
3567 * arch-utils.h (default_print_float_info): Delete declaration.
3568 * arch-utils.c (default_print_float_info): Delete function.
3569
e0ca2bb9
MK
35702002-08-16 Mark Kettenis <kettenis@gnu.org>
3571
3f733acc
MK
3572 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
3573 out define.
3574
7d8d2918
MK
3575 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
3576 FRAME.
3577
1c7cc583
MK
3578 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
3579 * configure.host: Make i[3456]86-*-aix host obsolete.
3580 * configure.tgt: Make i[3456]86-*-aix target obsolete.
3581 * config/i386/i386aix.mh, config/i386/i386aix.mt,
3582 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
3583 config/i386/xm-i386aix.h: Make files obsolete.
3584 * i386aix-nat.c: Make file obsolete.
3585 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
3586 (i386aix-nat.o): Make target obsolete.
3587
e0ca2bb9
MK
3588 * config/i386/nm-gnu.h: Removed.
3589 * config/i386/nm-i386gnu.h: New file.
3590 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
3591 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
3592 Moved here from ...
3593 * config/i386/tm-i386gnu.h: ... here. Removed.
3594 * config/i386/xm-i386gnu.h: Removed.
3595 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
3596 (NAT_FILE): Set to nm-i386gnu.h.
3597 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
3598 * i386-tdep.c: New file.
3599 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
3600 (i386gnu-tdep.o): Specify dependencies.
3601
16057ec7 36022002-08-15 Mark Kettenis <kettenis@gnu.org>
61113f8b 3603
6b99ee2e
MK
3604 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
3605 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
3606 Adjust a few comments to reflect reality a bit closer.
3607 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
3608 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
3609 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
3610 target_insert_watchpoint, target_remove_watchpoint):
3611 Move defines to ...
3612 * config/i386/nm-i386sco5.h: ... here.
3613 (kernel_u_size): Add prototype. Improve a few comments and add
3614 protection against multiple inclusion.
3615
d9a6f65c
MK
3616 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
3617 out define.
3618
047eff6a
MK
3619 * uw-thread.c (SP_ARG0): Define if not already defined.
3620 * config/i386/tm-i386.h (SO_ARG0): Remove define.
3621
dcdb1290
MK
3622 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
3623
5d2d0b2a
MK
3624 * config/i386/tm-i386.h: Don't include "regcache.h".
3625
61113f8b
MK
3626 * i387-tdep.h (i387_print_float_info): New prototype.
3627 * i387-tdep.c (print_i387_value, print_i387_ext,
3628 print_i387_status_word, print_i387_control_word): Add `struct
3629 ui_file *' argument and use it for output.
3630 (i387_print_float_info): Renamed from i387_float_info. Add
3631 `struct gdbarch *' and `struct ui_file *' arguments and use the
3632 latter for output.
3633 * i386-tdep.c: Include "i387-tdep.h".
3634 (i386_gdbarch_init): Set print_float_info.
3635 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
3636 (FLOAT_INFO): Remove define.
3637
46e0f506
MS
36382002-08-13 Michael Snyder <msnyder@redhat.com>
3639
3640 * mips-tdep.c (mips_push_arguments): Rename to
3641 mips_eabi_push_arguments, and tune for EABI.
3642 (MIPS_REGS_HAVE_HOME_P): Delete.
3643 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
3644 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
3645 Delete references to mips_regs_have_home_p.
3646
409268de
KS
36472002-08-14 Keith Seitz <keiths@redhat.com>
3648
3649 * Makefile.in (install-gdbtk): Create insight plugin directory.
3650 Install plugins.tcl file.
3651
ffc6a242
KS
36522002-08-14 Keith Seitz <keiths@redhat.com>
3653
3654 * configure.in: Move SUBDIRS to near top of the file so that
3655 --enable options may add things to it.
3656 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
3657 * configure: Regenerate.
3658
ebafbe83
MS
36592002-08-13 Michael Snyder <msnyder@redhat.com>
3660
3661 * mips-tdep.c (mips_o32o64_push_arguments): New function,
3662 cloned from mips_push_arguments, tuned for o32/o64 ABI.
3663 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
3664
32f6f25d
AC
36652002-08-13 Andrew Cagney <ac131313@redhat.com>
3666
3667 * vax-tdep.c (vax_get_saved_register): Delete function.
3668 (vax_gdbarch_init): Update.
3669 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
3670 (ns32k_gdbarch_init): Update.
3671 * alpha-tdep.c (alpha_get_saved_register): Delete function.
3672 (alpha_gdbarch_init): Update.
3673
53826de9
AC
36742002-08-13 Andrew Cagney <cagney@redhat.com>
3675
3676 * regcache.c (init_regcache_descr): Overallocate the
3677 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
3678 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
3679 nr_raw_registers.
3680 (set_register_cached): Add range checking assertions. Use
3681 current_regcache.
3682
16057ec7 36832002-08-13 Mark Kettenis <kettenis@gnu.org>
7d12f766
MK
3684
3685 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
3686 numbers for MMX registers.
3687
7b4c2dce
AC
36882002-08-13 Andrew Cagney <cagney@redhat.com>
3689
3690 * i386-tdep.c (i386_gdbarch_init): Use
3691 generic_unwind_get_saved_register.
3692
1e03ad20
KB
36932002-08-13 Kevin Buettner <kevinb@redhat.com>
3694
3695 * procfs.c (procfs_can_use_hw_breakpoint): New function.
3696 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
3697 target vector.
3698 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
3699 Delete. Add comment regarding this now-deleted target method.
3700
548bcbec
SC
37012002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3702
3703 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
3704 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
3705 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
3706 real PC and the page number (if it's within the memory bank window).
3707 (m68hc11_pseudo_register_write): Likewise when saving.
3708 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
3709 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
3710 (m68hc11_register_raw_size): And use 32-bit for it.
3711 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
3712 16K memory bank is used by the prog; also use the virtual pc.
3713
7df11f59
SC
37142002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3715
3716 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
3717 (m68hc11_gdbarch_init): Install it in gdbarch.
3718 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
3719 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
3720 (MSYMBOL_SIZE): New for documentation.
3721 (insn_return_kind): Enum to specify how a function returns.
3722 (frame_extra_info): Cleanup and record the return mode.
3723 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
3724 register in address computation.
3725 (m68hc11_get_return_insn): New to obtain the return instruction used
3726 by the function.
3727 (m68hc11_frame_init_saved_regs): Take into account the return
3728 instruction used by the function for far and interrupt functions.
3729 (m68hc11_init_extra_frame_info): Take into account page register.
3730 (m68hc11_frame_args_address): Adjust according to the return mode.
3731 (show_regs): Print page register only when it's used.
3732
5706502a
SC
37332002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3734
3735 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
3736 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
3737 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
3738 registers.
3739 (m68hc11_register_raw_size): Likewise.
3740
28fc6740
AC
37412002-08-13 Andrew Cagney <cagney@redhat.com>
3742
3743 * i386-tdep.c (i386_register_name): Handle mmx registers.
3744 (mmx_regnum_p): New function.
3745 (i386_mmx_names): New array.
3746 (mmx_num_regs): New variable.
3747 (i386_pseudo_register_read): New function.
3748 (i386_pseudo_register_write): New function.
3749 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
3750
3751 * regcache.c (regcache_raw_read_unsigned): New function.
3752 (regcache_raw_read_signed): New function.
3753 * regcache.h (regcache_raw_read_unsigned): Declare.
3754 (regcache_raw_read_signed): Declare.
3755
a378f419
AC
37562002-08-13 Andrew Cagney <cagney@redhat.com>
3757
3758 * regcache.c (regcache_raw_read_as_address): Delete function.
3759 (regcache_cooked_read_signed): New function.
3760 (regcache_cooked_read_unsigned): New function.
3761 * regcache.h (regcache_cooked_read_signed): Declare.
3762 (regcache_cooked_read_unsigned): Declare.
3763 (regcache_raw_read_as_address): Delete declaration.
3764
3765 * blockframe.c (generic_read_register_dummy): Use
3766 regcache_cooked_read_unsigned.
3767 * i386-tdep.c (i386_extract_struct_value_address): Use
3768 regcache_cooked_read_unsigned.
3769
81967506
SC
37702002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3771
3772 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
3773 double sizes according to ELF ABI flags.
3774 (gdbarch_tdep): Record elf_flags.
3775
ffe1f3ee
SC
37762002-08-13 Stephane Carrez <stcarrez@nerim.fr>
3777
3778 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
3779 (m6812_prolog): They can appear in 68HC12 function prologue.
3780 (m68hc11_frame_chain): Cleanup.
3781
98216c5d
AC
37822002-08-12 Andrew Cagney <cagney@redhat.com>
3783
3784 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
3785 declarations.
3786 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
3787 (i386_linux_register_raw_size): Delete function.
3788 (i386_linux_init_abi): Update.
3789 * i386-tdep.c (i386_register_raw_size): Delete function.
3790 (i386_register_byte): Delete function.
3791 (i386_gdbarch_init): Update.
3792 (i386_register_size): Delete array.
3793 (i386_register_offset): Delete array.
3794
3795 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
3796 (REGISTER_RAW_SIZE): Delete macro.
3797 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
3798 (REGISTER_BYTE): Delete macro.
3799
3b19021e
AS
38002002-08-11 Aidan Skinner <aidan@velvet.net>
3801
3802 * ada-lang.c (ada_lookup_partial_symbol)
3803 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
3804 prototype names so that grep ^func works properly.
3805
3806 * ada-lang.c (ada_array_element_type)
3807 (ada_lookup_partial_symbol): Fix typos in parameter list.
3808
3809 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
3810 Fix prototype names so that grep ^func works properly.
3811
b063e7a2
AC
38122002-08-10 Andrew Cagney <cagney@redhat.com>
3813 Elena Zannoni <ezannoni@redhat.com>
3814 Martin M. Hunt <hunt@redhat.com>
3815
3816 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
3817 (build_builtin_type_vec128i): Set the vector bit.
3818 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
3819 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
3820 (build_builtin_type_vec64): New function.
3821 (build_builtin_type_vec64i): New function.
3822 (build_gdbtypes): Initialize builtin_type_vec64 and
3823 builtin_type_vec64i.
3824
a7e3c2ad
AC
38252002-08-09 Andrew Cagney <cagney@redhat.com>
3826
3827 * regcache.c (regcache_dump): Compare the register offset
3828 with REGISTER_BYTE.
3829 * arch-utils.c (generic_register_byte): New function.
3830 * arch-utils.h (generic_register_byte): Declare.
3831 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
3832 * gdbarch.h, gdbarch.c: Regenerate.
3833
af030b9a
AC
38342002-08-09 Andrew Cagney <cagney@redhat.com>
3835
3836 * regcache.c: Include "gdbcmd.h"
3837 (_initialize_regcache): Add commands "maintenance print
3838 registers", "maintenance print raw-registers" and "maintenance
3839 print cooked-registers".
3840 (enum regcache_dump_what): Define.
3841 (dump_endian_bytes): New function.
3842 (regcache_dump): New function.
3843 (regcache_print): New function.
3844 (maintenance_print_registers): New function.
3845 (maintenance_print_raw_registers): New function.
3846 (maintenance_print_cooked_registers): New function.
3847 * Makefile.in (regcache.o): Update dependencies.
3848
cb3d25d1
MS
38492002-08-09 Michael Snyder <msnyder@redhat.com>
3850
3851 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
3852 (mips_push_arguments): Correct some comments. Use paddr_nz
3853 for printing addresses in debug output. Replace static
3854 allocation using MAX_REGISTER_RAW_SIZE with alloca.
3855 (mips_n32n64_push_arguments): New function, cloned from
3856 mips_push_arguments and tuned for the n32/n64 ABI.
3857 (mips_push_register): Buffer needs dynamic allocation.
3858 (mips_print_register): Ditto.
3859 (do_gp_register_row): Ditto.
3860 (mips_store_return_value): Ditto.
3861 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
3862
2163ab9d
DH
38632002-08-09 Don Howard <dhoward@redhat.com>
3864
3865 * memattr.c (mem_info_command): Print special case of upper bound
3866 as max CORE_ADDR + 1.
3867
b78bcb18
MS
38682002-08-08 Michael Snyder <msnyder@redhat.com>
3869
3870 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
3871 returns structs by ref if they're too big to fit in two registers.
3872
ffabd70d
KB
38732002-08-09 Kevin Buettner <kevinb@redhat.com>
3874
3875 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
3876 saved regs value.
3877 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
3878 mips_find_saved_regs().
3879 (mips_pop_frame): Likewise.
3880
fbcdb4a3
KB
38812002-08-09 Kevin Buettner <kevinb@redhat.com>
3882
3883 * blockframe.c (frame_saved_regs_register_unwind): Revise
3884 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
3885 frames are in use.
3886
3c3bea1c
GS
38872002-08-09 Grace Sainsbury <graces@redhat.com>
3888
3889 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
3890 T-packets; the 'a' is not taken as a register number.
3891 (remote_check_watch_resources, remote_stopped_by_watchpoint)
3892 (remote_stopped_data_address): New functions; add to target
3893 vector.
3894 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
3895 prototypes to match other implementations of this
3896 function. replace integer argument with pointer -- the length
3897 field in the Z-packet is the length of what is pointed to or 1 if
3898 pointer is null. Add to target vector.
3899 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
3900 target vector.
3901
3902 From Mark Salter:
3903 * remote.c (remote_wait): Add support to extract optional
3904 watchpoint information from T-packet. Ignore unrecognized
3905 optional info in T-packet.
3906 (remote_async_wait): Ditto.
3907
5d1d95de
CV
39082002-08-09 Corinna Vinschen <vinschen@redhat.com>
3909
3910 * cli/cli-dump.c: Change fopen modes to use binary open modes
3911 as defined in include/fopen-bin.h throughout.
3912
c86b5b38
MS
39132002-08-08 Michael Snyder <msnyder@redhat.com>
3914
3915 * mips-tdep.c: Minor whitespace and indentation clean-ups.
3916
b30590dc
KB
39172002-08-08 Kevin Buettner <kevinb@redhat.com>
3918
3919 * doublest.c (store_floating): Avoid floatformat_from_doublest()
3920 assertion failure by returning early after a warning.
3921
498868ed
KB
39222002-08-08 Kevin Buettner <kevinb@redhat.com>
3923
3924 * mips-tdep.c (mips_find_saved_regs): Make static.
3925 (mips_frame_init_saved_regs): New function.
3926 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
3927 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
3928 (mips_find_saved_regs): Delete declaration.
3929
b2dd6311
GS
39302002-08-08 Grace Sainsbury <graces@redhat.com>
3931
3c3bea1c
GS
3932 * remote.c (remote_wait, remote_async_wait): Change
3933 thread_num from int to ULONGEST.
3934 (unpack_varlen_hex): Change result parameter from
3935 int * to ULONGEST *.
b2dd6311 3936
ea47855f
AC
39372002-08-08 Andrew Cagney <ac131313@redhat.com>
3938
3939 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
3940 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
3941 powerpc*-*-*.
3942 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
3943
69db8bae
AC
39442002-08-08 Andrew Cagney <cagney@redhat.com>
3945
3946 * gcore.c (override_derive_stack_segment): Delete variable.
3947 (preempt_derive_stack_segment): Delete function.
3948 (derive_stack_segment): Delete function.
3949 (default_derive_stack_segment): Renamed to derive_stack_segment.
3950 (override_derive_heap_segment): Delete variable.
3951 (preempt_derive_heap_segment): Delete function.
3952 (derive_heap_segment): Delete function.
3953 (default_derive_heap_segment): Rename to derive_heap_segment.
3954
cb811fe7
MS
39552002-08-06 Michael Snyder <msnyder@redhat.com>
3956
3957 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
3958 * mips-tdep.c (mips_EABI_use_struct_convention,
3959 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
3960 New functions. (mips_use_struct_convention): Delete.
3961 (mips_gdbarch_init): set use_gdbarch_convention.
3962
8b389c40
MS
39632002-08-06 Michael Snyder <msnyder@redhat.com>
3964
3965 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
3966 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
3967 mips_o32_reg_struct_has_addr): New functions.
3968 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
3969
5c27f28a
AC
39702002-08-07 Andrew Cagney <ac131313@redhat.com>
3971
3972 * regcache.c (pseudo_register): Delete function.
3973 (fetch_register): Delete function.
3974 (store_register): Delete function.
3975 (regcache_raw_read, legacy_read_register_gen): Use
3976 target_fetch_registers instead of fetch_register.
3977 (legacy_write_register_gen, regcache_raw_write): Use
3978 target_store_register instead of store_register.
3979 (write_register_bytes): Ditto.
3980
3981 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
3982 (STORE_PSEUDO_REGISTER): Delete.
3983 * gdbarch.h, gdbarch.c: Regenerate.
3984
5b331675
CV
39852002-08-06 Corinna Vinschen <vinschen@redhat.com>
3986
3987 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
3988 write dump file binary.
3989
6acdf5c7
MS
39902002-08-05 Michael Snyder <msnyder@redhat.com>
3991
3992 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
3993 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
3994 (mips_gdbarch_init): Set N32 target to be mips64.
3995
b2f01c35
KB
39962002-08-06 Kevin Buettner <kevinb@redhat.com>
3997
3998 * frame.c (find_saved_register): Break out of loop once saved
3999 register address is found. Don't mention sparc in loop comment
4000 anymore.
4001
63db5580
KB
40022002-08-06 Kevin Buettner <kevinb@redhat.com>
4003
4004 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
4005 mips_default_saved_regsize to 8.
4006
5e34e75e
AC
40072002-08-06 Andrew Cagney <ac131313@redhat.com>
4008
4009 * gcore.c: Do not include <sys/procfs.h>.
4010 * Makefile.in (gcore.o): Update dependencies.
4011
eb4c54a2
AC
40122002-08-06 Andrew Cagney <cagney@redhat.com>
4013
4014 * configure.tgt: Make arc-*-* obsolete.
4015 * NEWS: Mention that arc-*-* has been identifed as obsolete.
4016 * MAINTAINERS: Make arc-elf obsolete.
4017 * arc-tdep.c: Make file obsolete.
4018 * config/arc/arc.mt: Ditto.
4019 * config/arc/tm-arc.h: Ditto.
4020
ced15480
TR
40212002-08-05 Theodore A. Roth <troth@verinet.com>
4022
c1bab85b 4023 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
ced15480 4024
b4743822
AC
40252002-08-05 Andrew Cagney <ac131313@redhat.com>
4026
4027 * mcore-tdep.c (mcore_gdbarch_init): Use
4028 generic_unwind_get_saved_register instead of
4029 generic_get_saved_register.
4030 * v850-tdep.c (v850_gdbarch_init): Ditto.
4031 * frv-tdep.c (frv_gdbarch_init): Ditto.
4032 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4033 * s390-tdep.c (s390_gdbarch_init): Ditto.
4034 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4035 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
4036 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
4037
3956d554
JB
40382002-08-05 Joel Brobecker <brobecker@gnat.com>
4039
4040 * objfiles.h: Add missing #include "symfile.h"
4041
4042 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
4043
8249c0d6
AC
40442002-08-04 Andrew Cagney <ac131313@redhat.com>
4045
4046 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
4047 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
4048 of FIELD_BITSIZE.
4049
b9d14705
DJ
40502002-08-04 Daniel Jacobowitz <drow@mvista.com>
4051
4052 * NEWS: Cleanup and nitpick.
4053
dd73b9bb
AC
40542002-08-03 Andrew Cagney <ac131313@redhat.com>
4055
4056 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
4057
043a27f8
AC
40582002-08-03 Andrew Cagney <ac131313@redhat.com>
4059
4060 * Makefile.in (gdbtk-bp.o): Update dependencies.
4061 (gdbtk-register.o): Ditto.
4062 (gdbtk-varobj.o): Ditto.
4063
46ce284d
AC
40642002-08-03 Andrew Cagney <cagney@redhat.com>
4065
4066 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
4067 m68hc11_fetch_pseudo_register.
4068 (m68hc11_pseudo_register_write): Replace
4069 m68hc11_store_pseudo_register.
4070 (m68hc11_gdbarch_init): Update.
4071
b66d6d2e
AC
4072Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
4073
4074 * gdbarch.sh: Include "gdb_string.h".
4075 * gdbarch.c: Regenerate.
4076
4077 * regcache.c: Include "gdb_string.h".
4078 * ax-general.c: Ditto.
4079 * varobj.c: Ditto.
4080 * std-regs.c: Ditto.
4081 * fbsd-proc.c: Ditto.
4082 * thread.c: Ditto.
4083
4084 * Makefile.in (regcache.o): Update dependencies.
4085 (thread.o, gdbarch.o): Ditto.
4086 (ax-general.o, gdbarch.o): Ditto.
4087 (varobj.o, std-regs.o): Ditto.
4088 (fbsd-proc.o): Specify dependencies.
4089
29e1842b
AC
40902002-08-02 Andrew Cagney <cagney@redhat.com>
4091
4092 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
4093 regnum.
4094 (regcache_cooked_write): Ditto.
4095
68365089
AC
40962002-08-02 Andrew Cagney <ac131313@redhat.com>
4097
4098 * regcache.c (regcache_cooked_read): New function.
4099 (regcache_cooked_write): New function.
4100 (read_register_gen): Rewrite using regcache_cooked_read.
4101 (write_register_gen): Rewrite using regcache_cooked_write.
4102
4103 * regcache.h (regcache_cooked_read, regcache_cooked_write):
4104 Declare.
4105
d8124050
AC
41062002-08-02 Andrew Cagney <cagney@redhat.com>
4107
4108 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
4109 Replace the architecture methods register_read and register_write.
4110 * gdbarch.h, gdbarch.c: Regenerate.
4111 * regcache.c (init_regcache_descr): Update.
4112 (read_register_gen): Update.
4113 (write_register_gen): Update.
4114 (supply_register): Update comment.
4115
4116 * sh-tdep.c (sh_gdbarch_init): Update.
4117 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
4118 `regcache' and `gdbarch' parameters. Make `buffer' a void
4119 pointer. Update code.
4120 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
4121 `regcache' and `gdbarch' parameters. Make `buffer' a constant
4122 void pointer. Update code.
4123 (sh64_register_write): Delete.
4124 (sh4_register_read): Delete.
4125 (sh64_register_read): Delete.
4126 (sh4_register_write): Delete.
4127 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
4128 void pointer, `to' parameter a void pointer.
4129 (sh_sh64_register_convert_to_raw): Ditto.
4130
a6425924
KB
41312002-08-01 Kevin Buettner <kevinb@redhat.com>
4132
4133 * mips-tdep.c (mips_register_virtual_type): Use architecture
4134 invariant return values.
4135
ff5922b5
AC
41362002-08-01 Andrew Cagney <cagney@redhat.com>
4137
4138 * linux-proc.c: Include "gdb_string.h".
4139 * Makefile.in (linux-proc.o): Update dependency list.
4140
32a6503c
KB
41412002-08-01 Kevin Buettner <kevinb@redhat.com>
4142
4143 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
4144 comment.
4145
ccaa32c7
GS
41462002-08-01 Grace Sainsbury <graces@redhat.com>
4147
4148 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
4149 to_insert_watchpoint, to_remove_watchpoint,
4150 to_stopped_by_watchpoint, to_stopped_data_address,
4151 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
4152 target vecctor. Define their corresponding macros so they call
4153 them.
4154
4155 * target.c: Add default and debug versions of for
4156 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
4157 to_insert_watchpoint, to_remove_watchpoint,
4158 to_stopped_by_watchpoint, to_stopped_data_address,
4159 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
4160
78fde5f8
KB
41612002-08-01 Kevin Buettner <kevinb@redhat.com>
4162
4163 * mips-tdep.c (mips_register_virtual_type): New function.
4164 (mips_gdbarch_init): Register mips_register_virtual_type()
4165 with gdbarch machinery.
4166 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
4167 this file instead of tm-bigmips.h.
4168 (MIPS_REGSIZE): Delete this macro.
4169 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
4170 multiarch version in mips-tdep.c will be found.
4171
db034ac5
AC
41722002-08-01 Andrew Cagney <cagney@redhat.com>
4173
4174 * NEWS: Menion that CHILL has been made obsolete.
4175
4176 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
db034ac5
AC
4177 * stabsread.c (read_range_type): Ditto.
4178 * gdbtypes.h: Ditto.
4179 * language.c (binop_type_check): Ditto.
4180 (binop_result_type): Ditto.
4181 (integral_type): Ditto.
4182 (character_type): Ditto.
4183 (string_type): Ditto.
4184 (boolean_type): Ditto.
4185 (structured_type): Ditto.
4186 (lang_bool_type): Ditto.
4187 (binop_type_check): Ditto.
4188 * language.h (_LANG_chill): Ditto.
4189 * dwarfread.c (set_cu_language): Ditto.
4190 * dwarfread.c (CHILL_PRODUCER): Ditto.
4191 * dwarfread.c (handle_producer): Ditto.
4192 * expression.h (enum exp_opcode): Ditto.
4193 * eval.c: Ditto for comments.
4194 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
4195 * expprint.c (print_subexp): Ditto.
4196 (print_subexp): Ditto.
4197 * valops.c (value_cast): Ditto.
4198 (search_struct_field): Ditto.
4199 * value.h (COERCE_VARYING_ARRAY): Ditto.
4200 * symfile.c (init_filename_language_table): Ditto.
4201 (add_psymbol_with_dem_name_to_list): Ditto.
4202 * valarith.c (value_binop): Ditto.
4203 (value_neg): Ditto.
4204 * valops.c (value_slice): Ditto.
4205 * symtab.h (union language_specific): Ditto.
4206 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
4207 (SYMBOL_DEMANGLED_NAME): Ditto.
4208 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
4209 * defs.h (enum language): Ditto.
4210 * symtab.c (got_symtab): Ditto.
4211 * utils.c (fprintf_symbol_filtered): Ditto.
4212
4213 * ch-typeprint.c: Make file obsolete.
4214 * ch-valprint.c: Make file obsolete.
4215 * ch-lang.h: Make file obsolete.
4216 * ch-exp.c: Make file obsolete.
4217 * ch-lang.c: Make file obsolete.
4218
4219 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
4220 CHILL_LIB.
4221 (TARGET_FLAGS_TO_PASS): Ditto.
4222 (CHILLFLAGS): Obsolete.
4223 (CHILL): Obsolete.
4224 (CHILL_FOR_TARGET): Obsolete.
4225 (CHILL_LIB): Obsolete.
4226 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
4227 ch-valprint.c.
4228 (HFILES_NO_SRCDIR): Remove ch-lang.h.
4229 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
4230 ch-lang.o.
4231 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
4232 targets.
4233
8aaf0b47
JB
42342002-07-31 Joel Brobecker <brobecker@gnat.com>
4235
4236 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
4237 This does not change anything at the moment, but will be helpful
4238 later when full Ada support is integrated.
4239
f3a7b3a5
KB
42402002-07-31 Kevin Buettner <kevinb@redhat.com>
4241
4242 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
4243 help message.
4244
fb850278
KB
42452002-07-31 Kevin Buettner <kevinb@redhat.com>
4246
4247 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
4248 and save it in a local variable. Use variable in later test.
4249
e3bddbfa
KB
42502002-07-31 Kevin Buettner <kevinb@redhat.com>
4251
4252 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
4253 test. (Thanks to Daniel Jacobowitz.)
4254
28d169de
KB
42552002-07-31 Kevin Buettner <kevinb@redhat.com>
4256
4257 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
4258 (mips_abi_strings): Add "n64".
4259 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
4260
7fe7e44e
KB
42612002-07-31 Kevin Buettner <kevinb@redhat.com>
4262
4263 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
4264 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
4265
c6caf090
KB
42662002-07-31 Kevin Buettner <kevinb@redhat.com>
4267
4268 * utils.c (host_pointer_to_address, address_to_host_pointer):
4269 Use gdb_assert() instead of explicit call to internal_error().
4270
c41669e0
KB
42712002-07-30 Kevin Buettner <kevinb@redhat.com>
4272
4273 * Makefile.in (rs6000-nat.o): Update dependencies.
4274
4275 From Nicholas Duffek:
4276 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
4277 (aix-thread.o): New rule.
4278 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
4279 * config/powerpc/aix432.mh: New file.
4280
2fda4977
DJ
42812002-07-30 Daniel Jacobowitz <drow@mvista.com>
4282
4283 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
4284 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
4285 (fetch_core_registers, ppc_linux_supply_gregset)
4286 (ppc_linux_supply_fpregset): New functions.
4287 (ppc_linux_regset_core_fns): New.
4288 (_initialize_ppc_linux_tdep): Call add_core_fns.
4289 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
4290 and ppc_linux_supply_gregset.
4291 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
4292 (supply_fpregset): Call ppc_linux_supply_fpregset.
4293 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
4294 corelow.o.
4295 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
4296
729051e6
DJ
42972002-07-30 Daniel Jacobowitz <drow@mvista.com>
4298
4299 * symtab.c (lookup_symbol): Demangle before lowercasing.
4300
5f8a3188
AC
43012002-07-30 Andrew Cagney <ac131313@redhat.com>
4302
4303 * symtab.h: Replace #include "gdb_obstack.h" with opaque
4304 declaration.
4305 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
4306 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
4307 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
4308 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
4309 "gdb_string.h".
4310 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
4311 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
4312 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
4313 (avr-tdep.o, mon960-rom.o): Ditto.
4314 (aout_stabs_gnu_h): Define.
4315 (symtab_h): Remove $(gdb_obstack_h).
4316
67f07146
JB
43172002-07-30 Jim Blandy <jimb@redhat.com>
4318
4319 Patch from David Carlton <carlton@math.stanford.edu>:
4320 * gdbinit.in: Move the `dir' commands that add GDB's own source
4321 directory to the search path to the end, so that the `gdb' source
4322 directory will be searched first.
4323
04ea0df1
AC
43242002-07-29 Andrew Cagney <ac131313@redhat.com>
4325
4326 * gdb_obstack.h: New file.
4327 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
4328 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
4329 * objfiles.h: Include "gdb_obstack.h".
4330 * Makefile.in (gdb_obstack_h): Define.
4331 (symtab_h): Add $(gdb_obstack_h).
4332 (objfiles_h): Add $(gdb_obstack_h).
4333
4334 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
4335 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
4336 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
4337 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
4338 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
4339 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
4340 * symfile.c, coffread.c, c-typeprint.c: Ditto.
4341 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
4342
4343 * Makefile.in (bcache.o): Update dependencies.
4344 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
4345 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
4346 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
4347 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
4348 (stabsread.o, symfile.o, symmisc.o): Ditto.
4349 (symtab.o, typeprint.o, macroexp.o): Ditto.
4350 (macrotab.o, mdebugread.o): Ditto.
4351 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
4352 (coff_ecoff_h, aout_aout64_h): Define.
4353 (aout_stabs_gnu_h, libaout_h): Define.
4354
d138e37a
AC
43552002-07-29 Andrew Cagney <cagney@redhat.com>
4356
4357 * regcache.c (struct regcache_descr): Rename nr_registers to
4358 nr_cooked_registers. Revise comments describing the structure
4359 member fields.
4360 (init_regcache_descr): Update.
4361 (init_legacy_regcache_descr): Update.
4362 (read_register_gen, write_register_gen): When a cooked register in
4363 the raw register range, directly access the value from the raw
4364 register cache.
4365
460e6ec3
AC
43662002-07-29 Andrew Cagney <ac131313@redhat.com>
4367
4368 * z8k-tdep.c: Do not include "obstack.h".
4369 * h8300-tdep.c, h8500-tdep.c: Ditto.
4370 * m68hc11-tdep.c, sh-tdep.c: Ditto.
4371 * valprint.c, v850-tdep.c: Ditto.
4372 * d10v-tdep.c, mn10300-tdep.c: Ditto.
4373 * mn10200-tdep.c: Ditto.
4374
4375 * Makefile.in (z8k-tdep.o): Update dependencies.
4376 (m68hc11-tdep.o, valprint.o): Ditto.
4377 (v850-tdep.o, d10v-tdep.o): Ditto.
4378 (mn10300-tdep.o, sparc-tdep.o): Ditto.
4379 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
4380 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
4381 (sh_opc_h, gdb_sim_sh_h): Define.
4382 (elf_sh_h, elf_bfd_h): Define.
4383 (opcode_m68hc11_h): Define.
4384 (OPCODES_SRC, OPCODES_DIR): define.
4385 (OPCODES): Use $(OPCODES_DIR).
4386 (gdb_sim_d10v_h): Rename sim_d10v_h.
4387 (gdb_sim_arm_h): Rename sim_arm_h.
4388
790c9cf0
KB
43892002-07-26 Kevin Buettner <kevinb@redhat.com>
4390
4391 * utils.c (host_pointer_to_address, address_to_host_pointer):
4392 Change internal_error() message to indicate function responsible
4393 for the error.
4394
9647fa49
KB
43952002-07-26 Kevin Buettner <kevinb@redhat.com>
4396
4397 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
4398 calls to local_hex_string_custom().
4399
dabbe2c0
KB
44002002-07-26 Kevin Buettner <kevinb@redhat.com>
4401
4402 * irix5-nat.c: Move IRIX shared library support from here...
4403 * solib-irix.c: ...to here. Revised substantially to work with
4404 generic solib framework.
4405
b96d0a4e
KB
4406 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
4407 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
4408 * mips-irix-tdep.c: New file.
4409
313fb2f6
KB
4410 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
4411 (mips-irix-tdep.o, solib-irix.o): New rules.
4412 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
4413 solib-irix.o.
4414 * config/mips/irix6.mt (TDEPFILES): Likewise.
4415 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
4416
ab2eaf26
KB
44172002-07-26 Kevin Buettner <kevinb@redhat.com>
4418
177e4768 4419 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
ab2eaf26
KB
4420 disabled (via ``#if 0'') includes.
4421
7244546a
KB
44222002-07-26 Kevin Buettner <kevinb@redhat.com>
4423
4424 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
4425 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
4426 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
4427 Add support for the fpscr register.
4428 * rs6000-nat.c (regmap, fetch_inferior_registers)
4429 (store_inferior_registers, fetch_core_registers): Likewise.
4430
dd7be90a
KB
44312002-07-26 Kevin Buettner <kevinb@redhat.com>
4432
4433 * rs6000-nat.c (language.h): Include.
4434 (special_regs): Delete this array.
4435 (regmap): New function.
4436 (fetch_register, store_register): Use regmap() to map gdb
4437 register numbers to ptrace register numbers. Also, use
4438 outputs from regmap() to make decisions regarding type of
4439 ptrace() call to make. In particular, don't compare against
4440 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
4441 (fetch_inferior_registers, store_inferior_registers): Where
4442 possible, obtain register numbers from tdep struct. Don't
4443 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
4444 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
4445 (LAST_UISA_SP_REGNUM): Delete.
4446
11bf77db
KB
44472002-07-25 Kevin Buettner <kevinb@redhat.com>
4448
4449 * rs6000-nat.c (ppc-tdep.h): Include.
d959a6ab
KB
4450 (fetch_registers, store_register, fetch_core_registers): Don't
4451 access registers[] directly. Instead, use supply_register() or
11bf77db
KB
4452 regcache_collect() as appropriate.
4453 (find_toc_address): Format hex address with local_hex_string().
4454
06afebeb
AC
44552002-07-25 Andrew Cagney <ac131313@redhat.com>
4456
4457 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
4458 bfd/elf32-frv.c.
4459
8c554d79
TT
44602002-07-24 Tom Tromey <tromey@redhat.com>
4461
4462 * jv-exp.y: Marked all strings with _().
4463 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
4464 internal_error.
4465 (MethodInvocation, CastExpression, parse_number, yyerror,
4466 java_type_from_name, push_expression_name, yylex): Typo fixes.
4467
e4c242d9
DJ
44682002-07-24 Daniel Jacobowitz <drow@mvista.com>
4469
4470 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
4471 (tee_file_flush, tee_file_write, tee_file_fputs)
4472 (tee_file_isatty): New.
4473 * ui-file.h (tee_file_new): Add prototype.
4474
ebf56fd3
AS
44752002-07-24 Aidan Skinner <aidan@velvet.net>
4476
4477 * ada-lang.c: Change k&r style function definitions to prototyped
4478 form.
4479 * ada-typeprint.c: Change k&r style function definitions to prototyped
4480 form.
4481 * ada-valprint.c: Change k&r style function definitions to prototyped
4482 form.
4483
7fb623f7
AC
44842002-07-24 Andrew Cagney <cagney@redhat.com>
4485
4486 * README: Remove reference to remote-bug.
4487 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
4488 remote-bug.c.
4489 (m88k-nat.o): Delete rule.
4490 (m88k-tdep.o): Delete rule.
4491 (remote-bug.o): Delete rule.
4492 * MAINTAINERS: Mark as obsolete.
4493 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
4494 * m88k-tdep.c: Make file obsolete.
4495 * config/m88k/m88k.mh: Ditto.
4496 * config/m88k/delta88v4.mh: Ditto.
4497 * config/m88k/delta88v4.mt: Ditto.
4498 * config/m88k/delta88.mt: Ditto.
4499 * config/m88k/delta88.mh: Ditto.
4500 * remote-bug.c: Ditto.
4501 * config/m88k/tm-delta88.h: Ditto.
4502 * config/m88k/nm-delta88v4.h: Ditto.
4503 * config/m88k/xm-delta88.h: Ditto.
4504 * config/m88k/xm-dgux.h: Ditto.
4505 * config/m88k/tm-m88k.h: Ditto.
4506 * config/m88k/nm-m88k.h: Ditto.
4507 * config/m88k/tm-delta88v4.h: Ditto.
4508 * m88k-nat.c: Ditto.
4509 * cxux-nat.c: Ditto.
4510 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
4511 and m88*-*-* obsolete.
4512 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
4513 m88*-*-* obsolete.
4514
37611a2b
AC
45152002-07-24 Andrew Cagney <cagney@redhat.com>
4516
4517 * findvar.c (extract_unsigned_integer): Make `addr' parameter
4518 constant. Same for local pointer variables.
4519 (extract_signed_integer): Ditto.
4520 * defs.h (extract_unsigned_integer): Update.
4521 (extract_signed_integer): Update.
4522
1aaa5f99
AC
45232002-07-24 Andrew Cagney <cagney@redhat.com>
4524
4525 * regcache.c (regcache_raw_write): Change buf parameter to a
4526 constant void pointer.
4527 (regcache_raw_read): Change buf parameter to a void pointer.
4528 (legacy_write_register_gen): Change myaddr parameter a constant
4529 void pointer.
4530 (supply_register): Change val parameter to a const void pointer.
4531 * regcache.h (regcache_raw_write): Update declaration.
4532 (regcache_raw_read): Update declaration.
4533 (supply_register): Update declaration.
4534
b4f5539f
TT
45352002-07-24 Tom Tromey <tromey@redhat.com>
4536
4537 * defs.h (gdb_readline_wrapper): Declare.
4538 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
4539 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
4540 * top.c (gdb_readline_wrapper): New function.
4541 (command_line_input): Use it.
4542
0818c12a
AC
45432002-07-24 Andrew Cagney <cagney@redhat.com>
4544
4545 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
4546 regcache_read and regcache_write.
4547 (regcache_raw_read_as_address): Replace regcache_read_as_address.
4548 * regcache.c: Update.
4549 * sh-tdep.c (sh64_push_arguments): Update comment.
4550 (sh_pseudo_register_read): Update.
4551 (sh_pseudo_register_write): Update.
4552 (sh4_register_read): Update.
4553 (sh4_register_write): Update.
4554 (sh64_pseudo_register_read): Update.
4555 (sh64_pseudo_register_write): Update.
4556 (sh64_register_read): Update.
4557 (sh64_register_write): Update.
4558 * i386-tdep.c (i386_extract_return_value): Update.
4559 (i386_extract_struct_value_address): Update.
4560 (i386_extract_return_value): Update.
4561 * blockframe.c (generic_read_register_dummy): Update.
4562 (generic_call_dummy_register_unwind): Update
4563 * infrun.c (write_inferior_status_register): Update.
4564
f7321c06
JB
45652002-07-23 Jim Blandy <jimb@redhat.com>
4566
4567 * parser-defs.h (expression_context_pc): Make this extern.
4568 (Thanks to Michael Snyder.)
4569
2037aebb
AC
45702002-07-23 Andrew Cagney <ac131313@redhat.com>
4571
4572 GDB 5.2.1 released from 5.2 branch.
4573 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
4574 * README: Update to mention 5.2.1.
4575
66504d44
MS
45762002-07-23 Mark Salter <msalter@redhat.com>
4577
4578 * remote.c (remote_read_bytes): Fix check for error.
4579
27bae383
KB
45802002-07-22 Kevin Buettner <kevinb@redhat.com>
4581
4582 * aix-thread.c (language.h): Include.
4583 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4584 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
4585 Print newlines at end of debug messages.
4586 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
4587 (pdc_write_data): Use local_hex_string() instead of %llx formats.
4588
45892002-07-22 Kevin Buettner <kevinb@redhat.com>
4590
4591 * aix-thread.c (ppc-tdep.h): Include.
4592 (special_register_p): New function.
4593 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
4594 (store_regs_user_thread): Use register number information from
4595 gdbarch_tdep struct instead of hardcoded offsets relative to
4596 FIRST_UISA_SP_REGNUM.
4597 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
4598 special_register_p() instead of using FPLAST_REGNUM and
4599 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
4600 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
4601 will be MQ's register number.
4602
46032002-07-22 Michael Snyder <msnyder@redhat.com>
206d3d3c
KB
4604
4605 * aix-thread.c (ops): Rename to aix_thread_ops.
4606 (base_ops): Rename to base_target.
4607 (ops_attach): Rename to aix_thread_attach.
4608 (ops_detach): Rename to aix_thread_detach.
4609 (ops_resume): Rename to aix_thread_detach.
4610 (ops_wait): Rename to aix_thread_wait.
4611 (ops_kill): Rename to aix_thread_kill.
4612 (init_ops): Rename to init_aix_thread_ops.
4613 (ops_fetch_register): Rename to aix_thread_fetch_register.
4614 (ops_store_register): Rename to aix_thread_store_register.
4615 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
4616 (ops_thread_alive): Rename to aix_thread_thread_alive.
4617 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
4618 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
4619 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
4620 (fetch_regs_lib): Rename to fetch_regs_user_thread.
4621 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
4622 (store_regs_lib): Rename to store_regs_user_thread.
4623 (store_regs_kern): Rename to store_regs_kernel_thread.
4624
27bae383 46252002-07-22 Michael Snyder <msnyder@redhat.com>
cbe92db4
KB
4626
4627 * aix-thread.c (ops_prepare_to_store): Eliminate.
4628 (init_ops): Don't initialize ops.prepare_to_store.
4629 (store_regs_kern): Pre-fetch register buffers from child,
4630 because some registers may not be in the cache. Copy
4631 regs from register cache only if they are cached.
4632 (store_regs_lib): Copy regs from register cache only
4633 if they are cached.
4634 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
4635 fill_gprs64): Ditto.
4636
61c5da0b
KB
46372002-07-22 Kevin Buettner <kevinb@redhat.com>
4638
4639 * aix-thread.c (gdb_assert.h): Include.
4640 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
4641 register sizes (from register cache) match size of buffer holding
4642 register data.
4643 (fill_sprs32): Change parameter types to match those in the ptrace()
4644 buffer.
4645 (store_regs_lib): Likewise, but for 32-bit temporary variables.
4646 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
4647
46482002-07-22 Michael Snyder <msnyder@redhat.com>
4649
4650 * aix-thread.c (supply_sprs64): Cosmetic change.
4651 (supply_sprs32): Cosmetic change.
4652 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
4653 (fill_sprs64): Use regcache_collect instead of read_register.
4654 (store_regs_lib): Use regcache_collect instead of
4655 read_register. Use fill_sprs32 instead of fill_sprs64,
4656 if debugging a 32-bit architecture.
4657 (store_regs_kern): Use fill_gprs64 etc. to pull the values
4658 out of the register cache, instead of passing a pointer into
4659 the register cache directly to ptrace. Use regcache_collect
4660 insteaad of read_register.
4661 (ops_prepare_to_store): Use target_read_registers instead
4662 of read_register_bytes.
4663
36479eb1
AS
46642002-07-20 Aidan Skinner <aidan@velvet.net>
4665
4666 * MAINTAINERS: Add self under write after approval.
4667
80ae6ee2
AS
46682002-07-20 Aidan Skinner <aidan@velvet.net>
4669
4670 * ada-tasks.c: Change k&r style function definitions to prototyped
4671 form.
4672
8a8ab2b9
AC
46732002-07-19 Andrew Cagney <ac131313@redhat.com>
4674
4675 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
4676 * x86-64-tdep.c: Include "objfiles.h".
4677 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
4678 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
4679
fb16b900
ML
46802002-07-17 Michal Ludvig <michal@suse.cz>
4681
4682 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
4683 (update_context): Initialise cfa variable.
4684
0fe7bf7b
MS
46852002-07-17 Michael Snyder <msnyder@redhat.com>
4686
4687 * aix-thread.c: Shorten some long lines.
4688 Bring comments into line with code spec.
4689
488f131b
JB
46902002-07-18 Joel Brobecker <brobecker@gnat.com>
4691
4692 * infrun.c: Re-indent using gdb_indent.sh.
4693
46c415d2
JB
46942002-07-18 Joel Brobecker <brobecker@gnat.com>
4695
4696 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
4697 Leave the indentation temporarily untouched, to minimize the diffs.
4698
cdecafbe
EZ
46992002-07-18 Elena Zannoni <ezannoni@redhat.com>
4700
4701 * stabsread.c: Make os9k sections of the code obsolete,
4702 for real this time.
4703 * stabsread.h: Make os9k sections of the code obsolete.
4704
7b6aa020
ML
47052002-07-18 Michal Ludvig <mludvig@suse.cz>
4706
09ec9b38
ML
4707 * linux-low.c (regsets_store_inferior_registers): Add free()
4708 at the end of a loop to prevent memory leak.
4709 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
4710 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
7b6aa020
ML
4711 * config/sparc/tm-sp64linux.h: Make the rest of #endif
4712 line a comment.
4894ac5d 4713 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
7b6aa020 4714
233282cd
JB
47152002-07-17 Jim Blandy <jimb@redhat.com>
4716
4717 * macrocmd.c (info_macro_command): Remove newline from error
4718 message.
4719
7b6aa020 47202002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
2f14585c
JR
4721
4722 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
4723 (sh_gdbarch_init): Use it for sh-dsp.
4724
f7ef9339
KB
47252002-07-16 Kevin Buettner <kevinb@redhat.com>
4726
4727 * dwarf2read.c (read_initial_length): Handle older, non-standard,
4728 64-bit DWARF2 format.
4729
8dd72958
JB
47302002-07-16 Joel Brobecker <brobecker@gnat.com>
4731
4732 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
4733 <sys/proc.h> when not available.
4734
a99a9e1b
AC
47352002-07-16 Andrew Cagney <ac131313@redhat.com>
4736
4737 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
4738 * stabsread.c: Make os9k sections of the code obsolete.
4739 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
4740 * config/i386/i386os9k.mt: Make file obsolete.
4741 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
4742 (COMMON_OBS): Remove os9kread.o
4743 (SFILES): Remove os9kread.c.
4744 (os9kread.o, remote-os9k.o): Make target obsolete.
4745 * remote-os9k.c: Make file obsolete.
4746 * os9kread.c: Make file obsolete.
4747 * Makefile.in
4748
7a3085c1
AC
47492002-07-16 Andrew Cagney <ac131313@redhat.com>
4750
4751 * NEWS: Mention that the FR30 has been made obsolete.
4752 * fr30-tdep.c: Make file obsolete.
4753 * config/fr30/tm-fr30.h: Ditto.
4754 * config/fr30/fr30.mt: Ditto.
4755 * configure.tgt: Make fr30-*-elf obsolete.
4756 * MAINTAINERS: Make fr30-elf obsolete.
4757
28a93f5a
PM
47582002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
4759
4760 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
4761 found is not inside a section.
4762
be006b8b
KB
47632002-07-15 Kevin Buettner <kevinb@redhat.com>
4764
4765 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
4766 strerror().
4767 (pdc_realloc): Use xrealloc() instead of realloc().
4768
14fa3751
KB
47692002-07-15 Kevin Buettner <kevinb@redhat.com>
4770
4771 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
4772 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
4773 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
4774 macros.
4775
42cc437f
KB
47762002-07-15 Kevin Buettner <kevinb@redhat.com>
4777
4778 * aix-thread.c (ptrace_check): Eliminate goto.
4779 (sync_threadlists): Eliminate gotos. Also, fix array overrun
4780 problem.
4781
8e2c28d4
KB
47822002-07-15 Kevin Buettner <kevinb@redhat.com>
4783
4784 * aix-thread.c (gdbcmd.h): Include.
4785 (DEBUG, DBG, DBG2, dbg): Eliminate.
4786 (debug_aix_thread): New static global.
4787 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4788 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
4789 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
4790 invocations to DBG and DBG2 macros to test against
4791 ``debug_aix_thread'' and call fprintf_unfiltered().
4792 (_initialize_aix_thread): Add new command "set debug aix-thread".
4793
30413464
AC
47942002-07-15 Andrew Cagney <ac131313@redhat.com>
4795
4796 From Gerhard Tonn <TON@de.ibm.com>:
4797 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
4798 instead of supply_register.
4799
7c43edc1
AC
48002002-07-15 Andrew Cagney <ac131313@redhat.com>
4801
4802 * dwarf2cfi.c: Include "gdb_assert.h".
4803 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
4804 non-NULL.
4805 (update_context): Do not use __func__. Add missing ``break''.
4806 (update_context): Do not use __func__.
4807
9364a0ef
EZ
48082002-07-15 Elena Zannoni <ezannoni@redhat.com>
4809
4810 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
4811 and its setting. Set gdbarch instruction printing functions
4812 directly. For non-rs6000 case use new function
4813 gdb_print_insn_powerpc.
4814 (gdb_print_insn_powerpc): New function.
4815
3fbeef0b
AC
48162002-07-13 Andrew Cagney <ac131313@redhat.com>
4817
92eb23c5 4818 * NEWS: Mention that the d30v has been marked obsolete.
3fbeef0b
AC
4819 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
4820 * configure.tgt: Mark d30v-*-* as obsolete.
4821 * d30v-tdep.c: Mark file as obsolete.
4822 * config/d30v/d30v.mt: Ditto.
4823 * config/d30v/tm-d30v.h: Ditto.
4824
aacb1f0a
AS
48252002-07-13 Aidan Skinner <aidan@velvet.net>
4826
4827 * ada-tasks.c (add_task_entry): replace calls to
4828 malloc() with xmalloc
4829 * ada-tasks.c (init_task_list): replace calls to free with xfree()
4830
4831 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
4832 ada_finish_decode_line_1, all_sals_for_line
4833 ada_breakpoint_rewrite): replace calls to free() with xfree()
4834
c11d79f2
KB
48352002-07-12 Kevin Buettner <kevinb@redhat.com>
4836
4837 From Nicholas Duffek (with minor changes by Martin Hunt,
4838 Louis Hamilton, and Kevin Buettner):
4839 * aix-thread.c: New file.
4840
8e19ed76
PS
48412002-07-12 Petr Sorfa <petrs@caldera.com>
4842
4843 * dwarf2read.c (dwarf2_invalid_attrib_class): New
4844 complaint for invalid attribute class or form.
4845 (read_func_scope): DW_AT_frame_base
4846 better handling of DW_AT_block*.
4847 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
4848 better handling of DW_AT_block*.
4849 (read_common_block): DW_AT_location
4850 better handling of DW_AT_block*.
4851 (read_partial_die): DW_AT_location better handling
4852 of DW_AT_block*.
4853 (new_symbol): DW_AT_external better handling of
4854 DW_AT_block*. Proper initialization of variable
4855 "addr".
4856 (attr_form_is_block): New function that returns true
4857 if the attribute's form is of DW_FORM_block*.
4858
295401f7
DJ
48592002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
4860
4861 * valops.c (find_method_list): Remove comment about
4862 removed STATIC_MEMFUNCP argument.
4863 (value_find_oload_method_list): Likewise.
4864
e42dc924
KB
48652002-07-12 Kevin Buettner <kevinb@redhat.com>
4866
4867 From Nicholas Duffek:
4868 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
4869 target_new_objfile_hook.
4870
6904b546
KB
48712002-07-12 Kevin Buettner <kevinb@redhat.com>
4872
4873 From Nicholas Duffek:
4874 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
4875 csect.
4876
53fe9346
AC
48772002-07-12 Andrew Cagney <cagney@redhat.com>
4878
4879 * MAINTAINERS: Mention --enable-sim-build-warnings.
4880 (m68hc11-elf): Disable sim build warnings.
4881 (m32r-elf): Mark as broken obsolete candidate.
4882 (x86_64-linux-gnu): Mark as buildable with -Werror.
4883 (arm-elf): Change -w to ``,'' which enables warnings but not
4884 -Werror.
4885
af5f3db6
AC
48862002-07-12 Andrew Cagney <ac131313@redhat.com>
4887
4888 * bcache.h: Update copyright.
4889 (struct bstring, struct bcache): Move definition to "bcache.c".
4890 Replaced by opaque declaration.
4891 (bcache_xfree): Replace free_bcache.
4892 (bcache_xmalloc, bcache_memory_used): Declare.
4893
4894 * bcache.c: Update copyright.
4895 (struct bstring, struct bcache): Moved to here from "bcache.h".
4896 Update comments.
4897 (bcache_xmalloc, bcache_memory_used): New functions.
4898 (bcache_xfree): Replace function free_bcache.
4899
4900 * Makefile.in (objfiles.o): Add $(bcache_h).
4901 (objfiles_h): Remove $(bcache_h).
4902 (symfile.o): Add $(bcache_h).
4903
4904 * symmisc.c: Update copyright.
4905 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
4906 (print_objfile_statistics): Use bcache_memory_used.
4907
4908 * symfile.c: Include "bcache.h".
4909 (reread_symbols): Use bcache_xfree.
4910 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
4911 (add_psymbol_to_list): Pass psymbol_cache by value.
4912 (add_psymbol_with_dem_name_to_list): Ditto.
4913
4914 * objfiles.h: Update copyright.
4915 (struct bcache): Declare opaque. Do not include "bcache.h".
4916 (struct objfile): Change psymbol_cache and macro_cache to ``struct
4917 bcache'' pointers.
4918 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
4919
4920 * objfiles.c: Include "bcache.h". Update copyright.
4921 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
4922 macro_cache.
4923 (free_objfile): Use bcache_xfree.
4924
444199e7
GS
49252002-07-11 Grace Sainsbury <graces@redhat.com>
4926
4927 * monitor.c (monitor_fetch_register): Make name a constant.
4928 (monitor_store_register): Same.
4929
261397f8
DJ
49302002-07-11 Daniel Jacobowitz <drow@mvista.com>
4931
4932 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
4933 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
4934 (finish_block) For non-function blocks, hash the symbol table. For
4935 function blocks, mark the symbol table as unhashed.
4936 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
4937 (msymbol_hash_iw): Likewise.
4938 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
4939 value.
4940 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
4941 (lookup_minimal_symbol): Likewise for both.
4942 * symtab.h (struct block): Add `hashtable' flag. Comment the
4943 hashtable.
4944 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
4945 (ALL_BLOCK_SYMBOLS): Update.
4946 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
4947 (struct symbol): Add `hash_next' pointer.
4948 * symtab.c (lookup_block_symbol): Search using the hash table when
4949 possible.
4950 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
4951 (search_symbols, find_addr_symbol): Likewise.
4952
4953 * dstread.c (process_dst_block): Clear hashtable bit for new block.
4954 (read_dst_symtab): Likewise.
4955 * jv-lang.c (get_java_class_symtab): Likewise.
4956 * mdebugread.c: Include "gdb_assert.h".
4957 (shrink_block): Assert that the block being modified is not hashed.
4958 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
4959 * symmisc.c (free_symtab_block): Walk the hash table when freeing
4960 symbols.
4961 (dump_symtab): Recognize hashed blocks.
4962 * printcmd.c (print_frame_args): Assert that function blocks do not
4963 have hashed symbol tables.
4964 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
4965 (fill_in_ada_prototype, debug_print_block): Likewise.
4966 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
4967
6f0eaa01
CV
49682002-07-11 Corinna Vinschen <vinschen@redhat.com>
4969
4970 * stack.c (print_frame): Use result of frame_address_in_block()
4971 instead of fi->pc when evaluating symbols.
4972 (backtrace_command_1): Ditto.
4973
a208b0cb
AC
49742002-07-11 Andrew Cagney <cagney@redhat.com>
4975
4976 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
4977 Make static.
4978
4979 * arm-tdep.c (arm_register_name): Make return type constant.
4980
a6b6b089
AC
49812002-07-10 Andrew Cagney <ac131313@redhat.com>
4982
5ae5f592
AC
4983 * win32-nat.c (has_detach_ability): Convert to strict ISO C
4984 prototype.
4985 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
4986 * s390-tdep.c (s390_fp_regnum): Ditto.
4987 (s390_read_fp): Ditto.
4988 (s390_pop_frame): Ditto.
4989 (_initialize_s390_tdep): Ditto.
4990 * remote.c (get_remote_state): Ditto.
4991 * procfs.c (mappingflags): Ditto.
4992 * memattr.c (_initialize_mem): Ditto.
4993 * mcore-tdep.c (mcore_pop_frame): Ditto.
4994 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
4995 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
4996 * language.c (set_case_str): Ditto.
4997 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
4998 * frv-tdep.c (new_variant): Ditto.
4999 (frv_stopped_data_address): Ditto.
5000 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
5001 (context_alloc): Ditto.
5002 (frame_state_alloc): Ditto.
5003 (unwind_tmp_obstack_init): Ditto.
5004 (unwind_tmp_obstack_free): Ditto.
5005 (cfi_read_fp): Ditto.
5006 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
5007 (cris_pop_frame): Ditto.
5008 * c-lang.c (scanning_macro_expansion): Ditto.
5009 (finished_macro_expansion): Ditto.
5010 (c_preprocess_and_parse): Ditto.
5011 * gdbarch.sh: Ditto.
5012 * gdbarch.h, gdbarch.c: Regenerate.
5013 * config/mn10200/tm-mn10200.h: Adjust indentation.
5014 * target.c: Adjust indentation.
5015 * symtab.h: Adjust indentation.
5016 * stabsread.h: Adjust indentation.
5017 * remote-es.c: Adjust indentation.
5018 * os9kread.c: Adjust indentation.
5019
50202002-07-10 Andrew Cagney <ac131313@redhat.com>
5021
a6b6b089
AC
5022 * wince.c (_initialize_wince): Rename _initialize_inftarg.
5023 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
5024
a1789893
GS
50252002-07-10 Grace Sainsbury <graces@redhat.com>
5026
5027 * NEWS: Mention m68k, mcore multi-arching.
5028 * MAINTAINERS: Change status of m68k, mcore to reflect
5029 multi-arching.
5030
02f0d45d
DJ
50312002-07-10 Daniel Jacobowitz <drow@mvista.com>
5032
5033 * valops.c (find_overload_match): Free oload_syms.
5034
f15f768e
JB
50352002-07-09 Joel Brobecker <brobecker@gnat.com>
5036
5037 Define HAVE_SYS_PROC_H if sys/proc.h exists
5038 * configure.in: Add check for sys/proc.h
5039 * config.in: Regenerate.
5040 * configure: Regenerate.
5041
902a7139
GS
50422002-07-09 Grace Sainsbury <graces@redhat.com>
5043
5044 * config/m68k/tm-m68k.h: Remove macros wrapped in
5045 #if !GDB_MULTI_ARCH.
5046
a534e424
AC
50472002-07-08 Andrew Cagney <ac131313@redhat.com>
5048
5049 * config.in, configure: Regenerate.
5050
9b94f7bf
MK
50512002-07-08 Mark Kettenis <kettenis@gnu.org>
5052
5053 * dwarf2cfi.c: Include "gcore.h".
5054 (execute_stack_op): Fix implementation of the
5055 DW_OP_deref and DW_OP_deref_size operators by letting do their
5056 lookup in the target.
5057
1d34db41
MK
50582002-07-07 Mark Kettenis <kettenis@gnu.org>
5059
5060 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
5061 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
5062 tdep->sc_sp_offset.
5063
79d5b63a
DJ
50642002-07-05 Daniel Jacobowitz <drow@mvista.com>
5065
5066 Fix PR gdb/595, gdb/602
5067 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
5068 Don't call value_cast, just read the vtable pointer; update comments
5069 to match.
5070
3bb912e8
GS
50712002-07-05 Grace Sainsbury <graces@redhat.com>
5072
5073 * config/mcore/tm-mcore.h: Remove file.
5074 * config/mcore/mcore.mt: Remove definition of TM_FILE
5075 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
5076
ca39387d
MK
50772002-07-05 Mark Kettenis <kettenis@gnu.org>
5078
5079 * i386bsd-tdep.c: Include "gdb_string.h".
5080
efdc1108
GS
50812002-07-04 Grace Sainsbury <graces@redhat.com>
5082
5083 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
5084 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
5085 mcore-tdep.
5086 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
5087 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
5088 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
5089 (RETVAL_REGNUM): Move macros from tm-mcore.h
5090 (mcore_reg_struct_has_addr): New function.
5091 (mcore_gdbarch_init): Added initializations for the macros removed
5092 from tm-mcore.h.
5093
bb21884d
MK
50942002-07-04 Mark Kettenis <kettenis@gnu.org>
5095
5096 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
5097 traditonal string branding within the ELF header.
5098
228c6d41
DJ
50992002-07-04 Daniel Jacobowitz <drow@mvista.com>
5100
5101 * symtab.c (remove_params): New function.
5102 (make_symbol_overload_list): Use it instead of cplus_demangle.
5103 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
5104
2404952e
MK
51052002-07-04 Mark Kettenis <kettenis@gnu.org>
5106
e5e4acad
MK
5107 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
5108
baadce09
MK
5109 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
5110 New variables.
5111 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
5112 and tdep->sigtramp_end.
5113 * i386obsd-nat.c: New file.
5114 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
5115
2404952e
MK
5116 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
5117 Don't call get_current_frame().
5118
9b4f1ba7
PM
51192002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
5120
5121 * i386-nat.c (child_post_startup_inferior): New function
5122 calling i386_cleanup_dregs if
5123 I386_USE_GENERIC_WATCHPOINTS is defined.
5124 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
5125 conditional to acknowledge that i386-nat.c has its
5126 own child_post_startup_inferior function.
5127
c0d1d883
MK
51282002-07-04 Mark Kettenis <kettenis@gnu.org>
5129
00f8375e
MK
5130 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
5131 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
5132 instead of MAX_REGISTER_RAW_SIZE.
5133 (i386_extract_return_value, i386_extract_struct_value_address):
5134 Convert to use regcache.
5135 (i386_gdbarch_init): Set max_register_raw_size and
5136 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
5137 Set extract_return_value and extract_struct_value_address instead
5138 of their deprecated variants.
5139
c0d1d883
MK
5140 Convert i386 target to generic dummy frames.
5141 * i386-tdep.c: Include "symfile.h".
5142 (i386_frameless_signal_p): Consider a function to be frameless if
5143 the pc points at the first instruction of the function.
5144 (i386_frame_chain): Handle (generic) call dummies.
5145 (i386_frame_saved_pc): Likewise.
5146 (i386_frame_init_saved_regs): Remove code dealing with call
5147 dummies on the stack.
5148 (i386_push_dummy_frame): Removed.
5149 (i386_call_dummy_words): Removed.
5150 (i386_fix_call_dummy): Removed.
5151 (i386_push_return_address): New function.
5152 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
5153 parameter, and don't call get_current_frame.
5154 (i386_pop_frame): New function.
5155 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
5156 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
5157 entry_point_address, set call_dummy_breakpoint_offset to 0, set
5158 call_dummy_length to 0, set call_dummy_words to NULL, set
5159 sizeof_call_dummy_words to 0, set fix_call_dummy to
5160 generic_fix_call_dummy, set pc_in_call_dummy to
5161 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
5162 generic_push_dummy_frame, set push_return_address to
5163 i386_push_return_address and set frame_chain_valid to
5164 generic_file_frame_chain_valid.
5165
049ee0e4
AC
51662002-07-03 Andrew Cagney <ac131313@redhat.com>
5167
5168 * gdbarch.sh (struct regcache): Add opaque declaration.
5169 (EXTRACT_RETURN_VALUE): New architecture method.
5170 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
5171 * gdbarch.h, gdbarch.c: Regenerate.
5172 * arch-utils.c (legacy_extract_return_value): New function.
5173 * arch-utils.h (legacy_extract_return_value): Declare.
5174 * values.c (value_being_returned): Re-enable code handling
5175 EXTRACT_STRUCT_VALUE_ADDRESS. Move
5176 deprecated_grub_regcache_for_registers call to block handling
5177 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
5178 (EXTRACT_RETURN_VALUE): Do not define.
5179
4e0d9804
GS
51802002-07-03 Grace Sainsbury <graces@redhat.com>
5181
5182 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
5183 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
5184 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
5185 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
5186 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
5187 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
5188 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
5189 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
5190 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
5191 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
5192 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
5193 argument so the function fits the prototype in the architecture
5194 vector.
5195 (mcore_pop_frame): Remove argument so the function fits the
5196 prototype. Use get_current_frame instead of the argument.
5197 (mcore_push_arguments): Change type of struct_return so the
5198 function can be used in the architecture vector.
5199 (mcore_store_struct_return): Add.
5200 (mcore_frame_init_saved_regs): Add.
5201 (mcore_gdbarch_init): Add function calls to replace the macros
5202 removed from tm-mcore.h
5203
36160dc4
AC
52042002-07-03 Andrew Cagney <ac131313@redhat.com>
5205
5206 * infcmd.c (print_return_value): Remove compatibility code calling
5207 deprecated_grub_regcache_for_registers.
5208
5209 * values.c: Include "regcache.h".
5210 (value_being_returned): Update. Use
5211 deprecated_grub_regcache_for_registers to extract the register
5212 buffer address.
5213 * value.h (value_being_returned): Change ``retbuf'' parameter to a
5214 ``struct regcache''.
5215 * Makefile.in (values.o): Add dependency on $(regcache_h).
5216
5217 * inferior.h (run_stack_dummy): Change type of second parameter to
5218 a ``struct regcache''.
5219 * valops.c (hand_function_call): Change type of retbuf to ``struct
5220 regcache''. Allocate using regcache_xmalloc, clean using
5221 make_cleanup_regcache_xfree.
5222 * infcmd.c (run_stack_dummy): Update. Use
5223 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
5224
5225 * regcache.c (do_regcache_xfree): New function.
5226 (make_cleanup_regcache_xfree): New function.
5227 * regcache.h (make_cleanup_regcache_xfree): Declare.
5228
e64d9b3d
MH
52292002-07-03 Martin M. Hunt <hunt@redhat.com>
5230
4dd79c29
MH
5231 * event-top.c (command_line_handler): Don't read past
5232 beginning of buffer.
e64d9b3d 5233
4dd79c29
MH
52342002-07-03 Martin M. Hunt <hunt@redhat.com>
5235
e64d9b3d
MH
5236 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
5237 struct frame_id.
5238 (varobj_create): Store frame_id for root.
5239 (varobj_gen_name): Use xasprintf.
5240 (varobj_update): Save and restore frame using get_frame_id() and
5241 frame_find_by_id().
5242 (create_child): Use xasprintf.
5243 (new_root_variable): Initialize frame_id.
5244 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
5245 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
5246 to prevent memory leak.
5247
26e6c56a
AC
52482002-07-03 Andrew Cagney <ac131313@redhat.com>
5249
5250 * valops.c (hand_function_call): Move declaration of retbuf to
5251 start of function, allocate using malloc, add a cleanup but before
5252 the inf_status cleanup, cleanup the buffer. Rename local variable
5253 old_chain to inf_status_cleanup.
5254
f436dd25
MH
52552002-07-03 Martin M. Hunt <hunt@redhat.com>
5256
5257 * top.c (execute_command): Use cmd_func() and cmd_func_p().
5258
5259 * cli/cli-decode.c (cmd_func_p): New function.
5260 (cmd_func): New function.
5261
5262 * command.h: Add cmd_func() and cmd_func_p().
5263
4cfe2084
GS
52642002-07-03 Grace Sainsbury <graces@redhat.com>
5265
5266 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
5267 (REGISTER_SIZE): Remove.
5268 (MAX_REGISTER_RAW_SIZE): Remove.
5269 (REGISTER_VIRTUAL_TYPE): Remove.
5270 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
5271 (REGISTER_NAME): Remove.
5272 (USE_GENERIC_DUMMY_FRAMES): Remove.
5273 (CALL_DUMMY): Remove.
5274 (CALL_DUMMY_START_OFFSET): Remove.
5275 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
5276 (CALL_DUMMY_LOCATION): Remove.
5277 (FIX_CALL_DUMMY): Remove.
5278 (CALL_DUMMY_ADDRESS): Remove.
5279 (SIZEOF_CALL_DUMMY_WORDS): Remove.
5280 (SAVE_DUMMY_FRAME_TOS): Remove.
5281 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
5282 (mcore_register_virtual_type): New function.
5283 (mcore_register_byte): New function.
5284 (mcore_register_size): New function.
5285 (mcore_register_name): New function.
5286 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
5287 macros removed from tm-mcore.h.
5288 (mcore_dump_tdep): Add.
5289 (_initialize_mcore_tdep): Add gdbarch_register call.
5290
4fd667e9
MK
52912002-07-03 Mark Kettenis <kettenis@gnu.org>
5292
5293 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
5294 frameless_look_for_prologue, such that we actually call this
5295 function.
5296
42f99ac2
JB
52972002-07-02 Joel Brobecker <brobecker@gnat.com>
5298
5299 * frame.h (frame_address_in_block): New function.
5300
5301 * blockframe.c (frame_address_in_block): New function extracted
5302 from get_frame_block().
5303 (get_frame_block): Use frame_address_in_block().
5304 (block_innermost_frame): Use frame_address_in_block() to match
5305 the frame pc address against the block boundaries rather than
5306 the frame pc directly. This prevents a failure when a frame pc
5307 is actually a return-address pointing immediately after the end
5308 of the given block.
5309
103a1597 53102002-07-02 Grace Sainsbury <graces@redhat.com>
83b4a0fe
GS
5311
5312 * MAINTAINERS: Add self under write after approval.
5313
53142002-07-02 Grace Sainsbury <graces@redhat.com>
5315
103a1597
GS
5316 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
5317 used in architecture vector. The default is
5318 m68k_local_breakpoint_from_pc.
5319 (m68k_local_breakpoint_from_pc): Add.
5320 (enum): Add register numbers from tm-m68k.h.
5321 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
5322 vector.
5323 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
5324 GDB_MULTI_ARCH_PARTIAL.
5325 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
5326 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
5327 m68k-tdep.c.
5328 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
5329 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
5330 to enum in m68k-tdep.c
5331
7a5a0534
JB
53322002-07-02 Joel Brobecker <brobecker@gnat.com>
5333
5334 * solib-osf.c (open_map): Compute the list of shared libraries
5335 loaded by the inferior, rather than the list of libraries loaded
5336 by GDB itself. Otherwise, GDB ends up reading the symbols from
5337 the wrong shared libraries...
5338
6f558d74
MK
53392002-07-02 Mark Kettenis <kettenis@gnu.org>
5340
b7d15bf7
MK
5341 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
5342 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
5343 macros.
5344 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
5345 Remove functions.
5346 (FRAMELESS_SIGNAL): Remove function.
5347 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
5348 i386_linux_saved_pc_after_call): Removed.
5349 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
5350 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
5351 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
5352
6bff26de
MK
5353 * i386-tdep.c (i386_frameless_signal_p): New function.
5354 (i386_frame_chain): Deal with frameless signals.
5355 (i386_sigtramp_saved_sp): New function.
5356 (i386_frame_saved_pc): Deal with frameless signals.
5357 (i386_saved_pc_after_call): Make sure the correct value is
5358 returned just after entry into a sigtramp.
5359 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
5360 i386fbsd4_sc_sp_offset): New variables.
5361 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
5362 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
5363 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
5364 similiar to what we already did for sc_pc_offset.
5365 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
5366 tdep->sc_sp_offset.
5367
6f558d74
MK
5368 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
5369
145564b7
ML
53702002-07-02 Michal Ludvig <mludvig@suse.cz>
5371
5372 * config/i386/tm-x86-64linux.h: New.
5373 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
5374 definitions.
5375 * config/i386/nm-x86-64.h: Rename to ...
5376 * config/i386/nm-x86-64linux.h: ... this one.
5377 * config/i386/x86-64linux.mh: Reflect the above change.
5378
3a1e71e3
MK
53792002-07-01 Mark Kettenis <kettenis@gnu.org>
5380
21d0e8a4
MK
5381 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
5382 with sigcontext_addr. Add sc_sp_offset.
5383 (i386bsd_sigtramp_saved_pc): Remove prototype.
5384 (i386bsd_sicontext_addr): Add prototype.
5385 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
5386 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
5387 (i386_svr4_sigtramp_saved_pc): Removed.
5388 (i386_svr4_sigcontext_addr): New function.
5389 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
5390 Initialize tdep->sigcontext_addr instead. Initialize
5391 tdep->sc_pc_offset and tdep->sc_sp_offset.
5392 (i386_gdbarch_init): Likewise.
5393 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
5394 any more.
5395 (i386bsd_sigtramp_saved_pc): Remove function.
5396 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
5397 Initialize tdep->sigcontext_addr instead. Initialize
5398 tdep->sc_pc_offset.
5399 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
5400 of tdep->sigtramp_saved_pc.
5401 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
5402 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
5403 instead.
5404
3a1e71e3
MK
5405 * i386-tdep.c (i386_frameless_function_invocation,
5406 i386_frame_num_args, i386_frame_init_saved_regs,
5407 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
5408 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
5409 i386_extract_return_value, i386_store_return_value,
5410 i386_extract_struct_value_address, i386_register_virtual_type,
5411 i386_register_convertible, i386_register_convert_to_virtual,
5412 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
5413 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
5414 static.
5415
52e9098c
MK
54162002-07-01 Mark Kettenis <kettenis@gnu.org>
5417
77b13a25
MK
5418 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
5419
52e9098c
MK
5420 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
5421 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
5422 this macro. Include "value.h".
5423
1b372fff
AS
54242002-06-30 Aidan Skinner <aidan@velvet.net>
5425
5426 * ada-exp.tab.c: remove as it's a generated file
5427 * ada-lex.c: remove as it's a generated file
5428
9c5045b5
MK
54292002-06-30 Mark Kettenis <kettenis@gnu.org>
5430
4a93c5bb
MK
5431 * config/i386/tm-i386.h (struct frame_info, struct
5432 frame_saved_regs, struct value, struct type): Remove forward
5433 declarations.
5434
322d4fe0
MK
5435 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
5436 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
5437 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
5438 (FILL_FPXREGSET): Define.
5439
fdd8263d
MK
5440 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
5441
482e577b
MK
5442 * configure.tgt (i[3456]86-*-openbsd*): Fold into
5443 i[3456]86-*-netbsd* case.
5444 * config/i386/tm-obsd.h: Removed.
5445 * config/i386/obsd.mt: Removed.
5446 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
5447 core-aout.o.
5448 (MH_CFLAGS): Add -DYYDEBUG=0.
5449
6916549a
MK
5450 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
5451 i386nbsd_sc_pc_offset on OpenBSD too.
5452
9c5045b5
MK
5453 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
5454 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
5455 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
5456 define.
5457 * i386bsd-tdep.c: Include "arch-utils.h".
5458 (i386bsd_aout_in_solib_call_trampoline): New function.
5459 (i386bsd_init_abi): Set in_solib_call_trampoline to
5460 i386bsd_aout_in_solib_call_trampoline.
5461 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
5462 in_solib_call_trampoline to generic_in_solib_call_trampoline.
5463
aa84d1bb
AC
54642002-06-28 Andrew Cagney <ac131313@redhat.com>
5465
5466 * macrotab.h: Do not include "obstack.h" or "bcache.h".
5467 (struct obstack, struct bcache): Add opaque declarations.
5468 * Makefile.in (macrotab_h): Update
5469
b4d83933
AC
54702002-06-28 Andrew Cagney <ac131313@redhat.com>
5471
5472 * blockframe.c (generic_find_dummy_frame): Change return type to
5473 ``struct regcache''.
5474 (struct dummy_frame): Replace field ``registers'' with regcache, a
5475 struct regcache object.
5476 (generic_find_dummy_frame): Update.
5477 (generic_push_dummy_frame): Update. Use regcache_xfree,
5478 regcache_xmalloc and regcache_cpy.
5479 (generic_pop_dummy_frame): Update. Use regcache_cpy and
5480 regcache_xfree.
5481 (deprecated_generic_find_dummy_frame): Update.
5482 (generic_read_register_dummy): Update. Use
5483 regcache_read_as_address.
5484 (generic_call_dummy_register_unwind): Update. Use regcache_read.
5485 (generic_get_saved_register): Update. Use regcache_read.
5486
08c0b5bc
AC
54872002-06-28 Andrew Cagney <ac131313@redhat.com>
5488
5489 * Makefile.in (objfiles_h): Add $(bcache_h).
5490 * objfiles.h: Include "bcache.h".
5491
5492 * Makefile.in (symtab_h): Remove $(bcache_h).
5493 * symtab.h: Do not include "bcache.h".
5494
1f89801a
AC
54952002-06-28 Andrew Cagney <ac131313@redhat.com>
5496
5497 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
5498 generic_func_frame_chain_valid.
5499
b9644b58
DB
55002002-06-28 David O'Brien <obrien@FreeBSD.org>
5501
5502 * config/i386/nm-fbsd.h: Include <sys/param.h>.
5503 * config/i386/tm-fbsd.h: Likewise.
5504
dd486634
AC
55052002-06-28 Andrew Cagney <ac131313@redhat.com>
5506
5507 * rs6000-tdep.c (rs6000_gdbarch_init): Use
5508 generic_unwind_get_saved_register.
5509
0b434a00
AC
55102002-06-27 Andrew Cagney <ac131313@redhat.com>
5511
5512 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
5513 * regcache.c (supply_register): Add missing argument to
5514 register_buffer call.
5515
f30e5a77
AC
55162002-06-27 Andrew Cagney <ac131313@redhat.com>
5517
5518 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
5519 Solaris /bin/grep does not not like it. From Peter Schauer.
5520
9f064c95
TT
55212002-06-26 Tom Tromey <tromey@redhat.com>
5522
5523 * command.h (add_setshow_cmd): Declare.
5524 (add_setshow_cmd_full): Declare.
5525 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
5526 returns void. Use add_setshow_cmd_full.
5527 (add_setshow_cmd_full): New function.
5528 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
5529 (add_setshow_boolean_cmd): Likewise.
5530
099c7589
JT
55312002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5532
5533 * config/vax/tm-vax.h: Protect from multiple inclusion.
5534 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
5535 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
5536 * config/vax/tm-vaxbsd.h: ...here. New file.
5537 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
5538
1d049c5e
JT
55392002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5540
5541 * config/vax/tm-vax.h (BREAKPOINT): Remove.
5542 (BELIEVE_PCC_PROMOTION): Remove.
5543 (AP_REGNUM): Move to...
5544 * config/vax/nm-vax.h: ...here.
5545 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
5546 (vax_breakpoint_from_pc): New function.
5547 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
5548 and gdbarch_believe_pcc_promotion.
5549
4791e091
JT
55502002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
5551
5552 * Makefile.in (vax_tdep_h): Define.
5553 (vax-tdep.o): Use $(vax_tdep_h).
5554 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
5555 (vax_dump_tdep): New function.
5556 (_initialize_vax_tdep): Register vax_dump_tdep.
5557 * vax-tdep.h: Include osabi.h.
5558 (struct gdbarch_tdep): New.
5559
da130f98
AC
55602002-06-26 Andrew Cagney <cagney@redhat.com>
5561
5562 * frame.h (deprecated_generic_find_dummy_frame): Rename
5563 generic_find_dummy_frame.
5564 * blockframe.c (generic_find_dummy_frame): Make static.
5565 (deprecated_generic_find_dummy_frame): New function.
5566 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
5567 generic_find_dummy_frame with deprecated_find_dummy_frame.
5568 (sh64_nofp_frame_init_saved_regs): Ditto.
5569 (sh_fp_frame_init_saved_regs): Ditto.
5570 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
5571 (s390_frame_chain): Ditto.
5572 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
5573
6300c360
GS
55742002-06-26 Grace Sainsbury <graces@redhat.com>
5575
5576 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
5577 gdbarch vector are at the top.
5578 (NUM_REGS): Remove.
5579 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
5580 (FRAME_ARGS_ADDRESS): Remove.
5581 (FRAME_LOCALS_ADDRESS): Remove.
5582 (FRAME_NUM_ARGS): Remove.
5583 (FRAME_ARGS_SKIP): Remove.
5584 * m68k-tdep.c (enum): Add eumeration of special register numbers.
5585 (m68k_gdbarch_init): Add gdbarch initializations for macros
5586 undefined in tm-m68k.h
5587
1c617db8
GS
55882002-06-26 Grace Sainsbury <graces@redhat.com>
5589
5590 * monitor.h: Add the function regname to monitor_ops
5591 structure. This way NUM_REGS does not have to be a constant.
5592 * monitor.c (monitor_fetch_register): Added support for regname
5593 function. The function is called if the array regnames is NULL.
5594 (monitor_store_register): Same.
da130f98
AC
5595 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
5596 regnames array.
1c617db8
GS
5597 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
5598 cpu32bug_cmds.regname to point to new function.
5599 * abug-rom.c (abug_regname): Same as above.
5600 (init_abug_cmds): Same.
5601 * dbug-rom.c (dbug_regname): Same as above.
5602 (init_dbug_cmds): Same.
5603 * remote-est.c (est_regname): Same.
5604 (init_est_cmds): Same.
5605 * rom68k-rom.c (rom68k_regname): Same.
5606 (init_rom68k_cmds): Same.
5607
ea9365bb
TT
56082002-06-25 Tom Tromey <tromey@redhat.com>
5609
5610 * breakpoint.c (delete_command): Don't repeat `delete' commands.
5611
72cec141
AC
56122002-06-25 Andrew Cagney <cagney@redhat.com>
5613
5614 * infrun.c (stop_registers): Change variable's type to ``struct
5615 regcache'''.
5616 (xmalloc_inferior_status): Delete function.
5617 (free_inferior_status): Delete function.
5618 (normal_stop): Use regcache_cpy.
5619 (struct inferior_status): Change type of fields ``stop_registers''
5620 and ``registers'' to ``struct regcache''.
5621 (write_inferior_status_register): Use regcache_write.
5622 (save_inferior_status): Instead of calling
5623 xmalloc_inferior_status, allocate the inf_status buffer directly.
5624 Use regcache_dup_no_passthrough and regcache_dup to save the
5625 buffers.
5626 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
5627 Replace the stop_registers regcache instead of overriding it. Use
5628 regcache_xfree. Instead of calling free_inferior_status, xfree
5629 the buffer directly.
5630 (discard_inferior_status): Use regcache_xfree. Instead of calling
5631 free_inferior_status, xfree the buffer directly.
5632 (build_infrun): Use regcache_xmalloc.
5633 (_initialize_infrun): Delete redundant call to build_infrun.
5634
5635 * Makefile.in (infcmd.o): Add $(regcache_h).
5636
5637 * infcmd.c: Include "regcache.h".
5638 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
5639 obtain the address of `stop_registers' register buffer.
5640 (print_return_value): Ditto.
5641
5642 * inferior.h (struct regcache): Add opaque declaration.
5643 (stop_registers): Change variable's declared type to ``struct
5644 regcache''.
5645
defc6f8c
TT
56462002-06-24 Tom Tromey <tromey@redhat.com>
5647
c0e624e7
TT
5648 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
5649 * target.c (initialize_targets): Fixed typo in
5650 trust-readonly-sections `show' documentation.
5651
defc6f8c
TT
5652 * main.c: Marked all strings with _().
5653
2b236d82
DH
56542002-06-24 Don Howard <dhoward@redhat.com>
5655
5656 * memattr.c (create_mem_region): Treat hi == 0 as a special case
5657 that means max CORE_ADDR+1.
5658 (lookup_mem_region): Ditto.
5659 (mem_info_command): Ditto.
5660
942dc0e9
GS
56612002-06-24 Grace Sainsbury <graces@redhat.com>
5662
5663 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
5664 (REGISTER_BYTES_OK): Remove.
5665 (REGISTER_BYTES): Remove.
5666 (STORE_STRUCT_RETURN): Remove.
5667 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
5668 (STORE_RETURN_VALUE): Remove.
5669 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
5670 (FRAME_CHAIN): Remove.
5671 (FRAMELESS_FUNCTION_INVOCATION): Remove.
5672 (FRAME_SAVED_PC): Remove.
5673 * m68k-tdep.c (m68k_register_bytes_ok):Add.
5674 (m68k_store_struct_return): Add.
5675 (m68k_deprecated_extract_return_value): Add.
5676 (m68k_deprecated_extract_struct_value_address): Add.
5677 (m68k_store_return_value): Add.
5678 (m68k_frame_chain): Add.
5679 (m68k_frameless_function_invocation): Add.
5680 (m68k_frame_saved_pc): Add.
5681 (m68k_gdbarch_init): added set_gdbarch calls for new
5682 functions and deleted macros.
5683
03c30d4d
TT
56842002-06-23 Tom Tromey <tromey@redhat.com>
5685
5686 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
5687 (ALLDEPFILES): Likewise.
5688 (udiheaders): Removed.
5689 (udip2soc.o): Likewise.
5690 (udi2go32.o): Likewise.
5691 (udr.o): Likewise.
5692 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
5693
37e71372
AC
56942002-06-22 Andrew Cagney <ac131313@redhat.com>
5695
06a6ac57
AC
5696 * infrun.c (_initialize_infrun): Delete unnecessary call to
5697 build_infrun.
5698
37e71372
AC
5699 * regcache.h: Update comments describing the regcache_cpy family
5700 of functions.
5701 (regcache_save, regcache_restore): Delete declaration.
5702 (regcache_save_no_passthrough): Delete declaration.
5703 (regcache_restore_no_passthrough): Delete declaration.
5704 * regcache.c (regcache_save): Delete function.
5705 (regcache_save_no_passthrough): Delete function.
5706 (regcache_restore): Delete function.
5707 (regcache_restore_no_passthrough): Delete function.
5708
78f6d055
AC
57092002-06-21 Andrew Cagney <ac131313@redhat.com>
5710
5711 * config/m68k/tm-m68k.h: Fix typo.
5712 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
5713 (m68k_frame_init_saved_regs): Declare.
5714
78b119cb
JB
57152002-06-21 Jim Blandy <jimb@redhat.com>
5716
5717 Remove some vestiges of Harris 88k support.
5718 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
5719 register numbering quirk.
5720 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
5721 odd symbols occurring in Harris 88k ELF targets.
5722
0fbb3da7
TT
57232002-06-21 Tom Tromey <tromey@redhat.com>
5724
5725 * gdb_locale.h: New file.
5726 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
5727 (defs_h): Added gdb_locale.h.
5728 * configure, config.in: Rebuilt.
5729 * configure.in (PACKAGE): Define.
5730 * defs.h: Include gdb_locale.h.
5731 * main.c (captured_main): Call setlocale, bindtextdomain,
5732 textdomain.
5733
456f8b9d
DB
57342002-06-21 Dave Brolley <brolley@redhat.com>
5735
5736 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
5737 * config/frv/frv.mt: New file.
5738 * config/frv/tm-frv.h: New file.
5739 * configure.tgt: Support frv-*-*.
5740 * Makefile.in (frv-tdep.o): New target.
5741 * frv-tdep.c: New file.
5742 * NEWS: Mention frv.
5743
cdd463f9
DB
57442002-06-21 Dave Brolley <brolley@redhat.com>
5745
5746 * MAINTAINERS: Add self to "Write After Approval" list.
5747
5d3ed2e3
GS
57482002-06-21 Grace Sainsbury <graces@redhat.com>
5749
5750 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
5751 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
5752 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
5753 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
5754 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
5755
5756 * m68k-tdep.c: Include arch-utils.h
5757 (m68k_register_raw_size): Add.
5758 (m68k_register_virtual_size): Add.
5759 (m68k_register_virtual_type): Add.
5760 (m68k_register_name): Add.
5761 (m68k_stack_align): Add.
5762 (m68k_register_byte): Add.
5763 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
5764 tm-m68k.h.
5765
7f8e7424
GS
57662002-06-21 Grace Sainsbury <graces@redhat.com>
5767
a2c6a6d5 5768 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
7f8e7424
GS
5769 m68k_find_saved_regs.
5770 (m68k_pop_frame): Removed saved_regs structure, and replaced
5d3ed2e3 5771 references to it with frame->saved_regs.
7f8e7424
GS
5772 (m68k_gdbarch_init): Added function calls to initialize the
5773 gdbarch structure.
a2c6a6d5
GS
5774 (m68k_fix_call_dummy): Add.
5775 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
5776 (CALL_DUMMY): Remove.
5777 (CALL_DUMMY_LENGTH): Remove.
5778 (CALL_DUMMY_START_OFFSET): Remove.
5779 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
5780 (FIX_CALL_DUMMY): Remove.
5781 (PUSH_DUMMY_FRAME): Remove.
5782 (POP_FRAME): Remove.
7f8e7424 5783
f461f5cf
PM
57842002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
5785
5786 * parse.c (parse_fprintf): New function used to avoid calls to
5787 fprintf in bison parser generated debug code.
5788 * parser-defs.h: Declaration of new parse_fprintf function.
5789 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
5790 Set YYDEBUG to 1 by default.
5791 Set YYFPRINTF as parse_fprintf.
5792
7f0c12ed
ML
57932002-06-21 Michal Ludvig <mludvig@suse.cz>
5794
5795 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
5796 encoding anymore.
5797 (pointer_encoding, enum ptr_encoding): New.
5798 (execute_cfa_program): Take care about pointer encoding.
5799 (dwarf2_build_frame_info): Only call parse_frame_info for
5800 .debug_frame and .eh_frame.
5801 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
5802 fixed augmentation handling, added relative addressing,
5803 ignore duplicate FDEs. Added comments.
19d833a2 5804 * dwarf2cfi.c: Reindented.
7f0c12ed 5805
87c4a039
EZ
58062002-06-20 Elena Zannoni <ezannoni@redhat.com>
5807
5808 * event-top.c (command_handler): Don't use space_at_cmd_start
5809 unless there is sbrk() on the host. Assign time and space data
5810 to union fields of the appropriate length.
5811
1cf877ad
ML
58122002-06-20 Michal Ludvig <mludvig@suse.cz>
5813
5814 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
5815 x86_64_register_name. Return type changed to 'const char *'.
5816 (x86_64_register_name2nr): Rename to x86_64_register_number.
5817 (x86_64_gdbarch_init): Update to reflect the change.
5818 * x86-64-tdep.h: Ditto.
5819 * x86-64-linux-nat.c (x86_64_fxsave_offset)
5820 (supply_fpregset): Ditto.
5821
3fadccb3
AC
58222002-06-19 Andrew Cagney <cagney@redhat.com>
5823
5824 * regcache.h: Update copyright.
5825 (struct regcache, struct gdbarch): Add opaque declarations.
5826 (current_regcache): Declare global variable.
5827 (regcache_read, regcache_write): Add gdbarch parameter.
5828 (regcache_save, regcache_save_no_passthrough)
5829 (regcache_restore, regcache_restore_no_passthrough)
5830 (regcache_dup, regcache_dup_no_passthrough)
5831 (regcache_cpy, regcache_cpy_no_passthrough)
5832 (deprecated_grub_regcache_for_registers)
5833 (deprecated_grub_regcache_for_register_valid)
5834 (regcache_valid_p): Add function declarations.
5835
5836 * regcache.c: Update copyright.
5837 (regcache_descr_handle): New global variable.
5838 (struct regcache_descr): Define.
5839 (init_legacy_regcache_descr, init_regcache_descr): New functions.
5840 (regcache_descr, xfree_regcache_descr): New functions.
5841 (struct regcache): Define.
5842 (regcache_xmalloc, regcache_xfree): New functions.
5843 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
5844 (regcache_dup, regcache_dup_no_passthrough): New functions.
5845 (regcache_valid_p, regcache_read_as_address): New functions.
5846 (deprecated_grub_regcache_for_registers): New function.
5847 (deprecated_grub_regcache_for_register_valid): New function.
5848 (current_regcache): New global variable.
5849 (register_buffer): Add regcache parameter. Update calls.
5850 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
5851 (read_register_gen, write_register_gen): Update register_buffer
5852 call. Test for legacy_p instead of gdbarch_register_read_p or
5853 gdbarch_register_write_p.
5854 (regcache_collect): Update register_buffer call.
5855 (build_regcache): Rewrite. Use deprecated grub functions.
5856 (regcache_save, regcache_save_no_passthrough): New functions.
5857 (regcache_restore, regcache_restore_no_passthrough): New
5858 functions.
5859 (_initialize_regcache): Create the regcache_data_handle. Swap
5860 current_regcache global variable.
5861
5862 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
5863 parameter to regcache_read and regcache_write calls.
5864 (sh4_register_read): Ditto.
5865 (sh64_pseudo_register_read): Ditto.
5866 (sh64_register_read): Ditto.
5867 (sh_pseudo_register_write): Ditto.
5868 (sh4_register_write): Ditto.
5869 (sh64_pseudo_register_write): Ditto.
5870 (sh64_register_write): Ditto.
5871
5872 * defs.h (XCALLOC): Define.
5873
152d9db6
GS
58742002-06-19 Grace Sainsbury <graces@redhat.com>
5875
5876 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
5877 * m68k-tdep.c (m68k_gdbarch_init): Added.
5878 (m68k_dump_tdep): Added.
5879
170911c7
DJ
58802002-06-19 Daniel Jacobowitz <drow@mvista.com>
5881
5882 * ada-lang.c (fill_in_ada_prototype): Update comment.
5883
2e4ebe70
DJ
58842002-06-19 Daniel Jacobowitz <drow@mvista.com>
5885
5886 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
5887 MIPS_ABI_LAST.
5888 (mips_abi_string, mips_abi_strings): New.
5889 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
5890 (mips_gdbarch_init): Set tdep->found_abi. Don't set
5891 tdep->mips_abi_string. Honor mips_abi_string. Default to
5892 O32 if no ABI is found.
5893 (mips_dump_tdep): Use mips_abi_strings.
5894 (mips_abi_update): New function.
5895 (_initialize_mips_tdep): Initialize mips_abi_string. Add
5896 ``set mips abi'' and ``show mips abi''. Check the size of
5897 mips_abi_strings.
5898
16775908
AC
58992002-06-19 Andrew Cagney <cagney@redhat.com>
5900
5901 * i386-linux-tdep.c (i386_linux_register_name): Make return type
5902 constant.
5903
5051bfa4 59042002-06-18 Joel Brobecker <brobecker@gnat.com>
16775908 5905
5051bfa4
JB
5906 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
5907 current frame using only the first stack size adjustment. All
5908 subsequent size adjustments are not considered to be part of
5909 the "static" part of the current frame.
5910 Compute the address of the saved registers relative to the
5911 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
5912 in use in this frame.
5913
56468235
DH
59142002-06-18 Don Howard <dhoward@redhat.com>
5915
5916 * valops.c (value_ind): Use value_at_lazy() when dereferencing
5917 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
5918 suggesting this solution.
5919
0b624158
AC
59202002-06-18 Andrew Cagney <ac131313@redhat.com>
5921
5922 * config/romp/xm-rtbsd.h: Delete file.
5923 * config/romp/rtbsd.mh: Delete file.
5924
221ea385
KS
59252002-06-18 Keith Seitz <keiths@redhat.com>
5926
5927 * breakpoint.c (condition_command): Post breakpoint_modify
5928 when a condition is added to an existing breakpoint.
5929 (commands_command): Likewise for commands.
5930 (set_ignore_count): Likewise for ignore counts.
5931 If no tty, do not simply return, still need to send event
5932 notification.
5933 (ignore_command): Only print a newline if the command came
5934 from a tty.
5935 Don't call breakpoints_changed, since this is now properly
5936 handled by set_ignore_count.
5937
5402eed1
AC
59382002-06-18 Andrew Cagney <cagney@redhat.com>
5939
5940 * MAINTAINERS: Note that cris-elf target can be compiled with
5941 -Werror.
5942 * cris-tdep.c (cris_register_name): Make return type constant.
5943 (cris_breakpoint_from_pc): Ditto.
5944
cc22880b
ML
59452002-06-18 Michal Ludvig <mludvig@suse.cz>
5946
5947 * frame.h (struct frame_info): Change type of context to
5948 'struct context'.
5949
fa88f677
AC
59502002-06-17 Andrew Cagney <cagney@redhat.com>
5951
5952 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
5953 pointer.
5954 * gdbarch.h, gdbarch.c: Regenerate.
5955 * config/mips/tm-mips.h (mips_register_name): Update.
5956 * i386-tdep.h (i386_register_name): Update.
5957 * mips-tdep.c (mips_register_name): Update
5958 * alpha-tdep.c (alpha_register_name): Update.
5959 * arch-utils.c (legacy_register_name): Update.
5960 * arch-utils.h (legacy_register_name): Update.
5961 * avr-tdep.c (avr_register_name): Update.
5962 * ia64-tdep.c (ia64_register_name): Update.
5963 * i386-tdep.c (i386_register_name): Update.
5964 * sparc-tdep.c (sparc32_register_name): Update.
5965 (sparc64_register_name): Update.
5966 (sparclite_register_name): Update.
5967 (sparclet_register_name): Update.
5968 * sh-tdep.c (sh_generic_register_name): Update.
5969 (sh_sh_register_name): Update.
5970 (sh_sh3_register_name): Update.
5971 (sh_sh3e_register_name): Update.
5972 (sh_sh_dsp_register_name): Update.
5973 (sh_sh3_dsp_register_name): Update.
5974 (sh_sh4_register_name): Update.
5975 (sh_sh64_register_name): Update.
5976 * s390-tdep.c (s390_register_name): Update.
5977 * rs6000-tdep.c (rs6000_register_name): Update.
5978 * ns32k-tdep.c (ns32k_register_name_32082): Update.
5979 (ns32k_register_name_32382): Update.
5980 * d10v-tdep.c (d10v_ts2_register_name): Update.
5981 (d10v_ts3_register_name): Update.
5982 * xstormy16-tdep.c (xstormy16_register_name): Update.
5983 * vax-tdep.c (vax_register_name): Update.
5984 * v850-tdep.c (v850_register_name): Update.
5985 * m68hc11-tdep.c (m68hc11_register_name): Update.
5986 * mn10300-tdep.c (mn10300_generic_register_name): Update.
5987 (am33_register_name): Update.
5988
ea1e7ef6
GS
59892002-06-17 Grace Sainsbury <graces@redhat.com>
5990
5991 * m68k-tdep.c: Reindented.
5992
9b02dd1b
AC
59932002-06-17 Andrew Cagney <ac131313@redhat.com>
5994
5995 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
5996 list of predefined types.
5997
8758dec1
MK
59982002-06-16 Mark Kettenis <kettenis@gnu.org>
5999
b6197528
MK
6000 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
6001 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
6002 REGISTER_CONVERT_TO_RAW): Remove defines.
6003 (i386_register_virtual_type, i386_register_convertible,
6004 i386_register_convert_to_virtual, i386_register_convert_to_raw):
6005 Remove prototypes.
6006 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6007 macros mentioned above.
6008
82b47e62
MK
6009 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
6010 (i386lynx_saved_pc_after_call): Remove prototype.
6011 * i386ly-tdep.c: Include "i386-tdep.h".
6012 (i386lynx_saved_pc_after_call): Make static. Use
6013 read_memory_nobpt instead of read_memory. Use
6014 read_memory_unsigned_integer instead of read_memory_integer.
6015 (i386lynx_init_abi): New function.
6016 (i386lynx_coff_osabi_sniffer): New function.
6017 (_initialize_i386bsd_tdep): New function.
6018
8758dec1
MK
6019 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
6020 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
6021 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
6022 (i386_fix_call_dummy): Remove prototype.
6023 * i386-tdep.c (i386_call_dummy_words): New variable.
6024 (i386_gdbarch_init): Adjust for removal of the
6025 macros mentioned above.
6026
e9e68a56
AC
60272002-06-15 Andrew Cagney <ac131313@redhat.com>
6028
6029 * command.h (add_setshow_auto_boolean_cmd): Replace
6030 add_set_auto_boolean_cmd.
6031 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
6032 add_set_auto_boolean_cmd.
6033 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
6034 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
6035 mask-address'' command.
6036 (show_mask_address): Add cmd parameter.
6037 * remote.c (add_packet_config_cmd): Update. Change type of
6038 set_func and show_func to cmd_sfunc_ftype.
6039 (_initialize_remote): Update `set remote Z-packet'
6040 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
6041 (show_remote_protocol_e_packet_cmd): Ditto.
6042 (show_remote_protocol_E_packet_cmd): Ditto.
6043 (show_remote_protocol_P_packet_cmd): Ditto.
6044 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
6045 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
6046 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
6047 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
6048 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
6049 (show_remote_protocol_Z_packet_cmd): Ditto.
6050 (show_remote_protocol_binary_download_cmd): Ditto.
6051 (show_remote_cmd): Pass NULL to all of above.
6052
fc08ec52
MK
60532002-06-15 Mark Kettenis <kettenis@gnu.org>
6054
6055 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
6056 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
6057 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
6058 POP_FRAME): Remove defines.
6059 (i386_push_arguments, i386_store_struct_return,
6060 i386_extract_return_value, i386_store_return_value,
6061 i386_extract_struct_value_address, i386_push_dummy_frame,
6062 i386_pop_frame): Renove prototypes.
6063 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6064 macros mentioned above.
6065
e707bbc2
AC
60662002-06-15 Andrew Cagney <ac131313@redhat.com>
6067
6068 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
6069 add_set_boolean_cmd.
6070 (add_setshow_cmd): New function.
6071 * command.h (add_setshow_boolean_cmd): Replace
6072 add_set_boolean_cmd.
6073 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
6074 and ``set rdiromatzero''.
6075 * maint.c (_initialize_maint_cmds): Update commented out code.
6076 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
6077 * target.c (initialize_targets): Update `set
6078 trust-readonly-sections'.
6079 * remote.c (_initialize_remote): Update `set remotebreak'.
6080
42fdc8df
MK
60812002-06-15 Mark Kettenis <kettenis@gnu.org>
6082
93924b6b
MK
6083 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
6084 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
6085 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
6086 fit into multi-arch framework.
6087 (i386_breakpoint_from_pc): New function.
6088 (i386_gdbarch_init): Adjust for removal of the macros mentioned
6089 above.
6090
42fdc8df
MK
6091 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
6092 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
6093 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
6094 (i386_frameless_function_invocation, i386_frame_num_args,
6095 i386_frame_init_saved_regs): Remove prototypes.
6096 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
6097 macros mentioned above.
6098
9773a94b
AC
60992002-06-15 Andrew Cagney <ac131313@redhat.com>
6100
6101 * cli/cli-decode.c (set_cmd_cfunc): Update.
6102 (set_cmd_sfunc): Update.
6103 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
6104 (set_cmd_sfunc, set_cmd_cfunc): Update.
6105 * cli/cli-decode.h: Update.
6106
6e157172
MK
61072002-06-15 Mark Kettenis <kettenis@gnu.org>
6108
6109 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
6110 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
6111
7f19b9a2
AC
61122002-06-15 Andrew Cagney <ac131313@redhat.com>
6113
6114 * defs.h (auto_boolean): Declare enum.
6115 * command.h (cmd_auto_boolean): Delete enum.
6116 * mips-tdep.c (mask_address_var): Update.
6117 (mips_mask_address_p): Update.
6118 (show_mask_address): Update.
6119 * remote.c (struct packet_config): Update.
6120 (update_packet_config): Update.
6121 (show_packet_config_cmd): Update.
6122 (packet_ok): Update.
6123 (add_packet_config_cmd): Update.
6124 (_initialize_remote):
6125 * command.h: Update.
6126 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
6127 (do_setshow_command): Update.
6128 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
6129 * cli/cli-decode.h: Update.
6130
1cf88de5
MK
61312002-06-15 Mark Kettenis <kettenis@gnu.org>
6132
22ba8cf2
MK
6133 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
6134 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
6135 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
6136 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
6137 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
6138 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
6139
762c5349
MK
6140 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
6141 list of DJGPP COFF targets.
6142
091198bb
MK
6143 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
6144 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
6145 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
6146 (FP0_REGNUM): Remove define.
6147 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
6148 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
6149 (i386_register_virtual_size): Remove protoype.
6150 * i386-tdep.c (i386_register_virtual_size): Removed.
6151 (i386_extract_return_value, i386_store_return_value): Use
6152 FP0_REGNUM instead of NUM_FREGS to determine whether the
6153 floating-point registers are available.
6154 (i386_gdbarch_init): Tweak FIXME about FPU registers.
6155 Adjust for removal of macros mentioned above.
6156
61572002-06-15 Mark Kettenis <kettenis@gnu.org>
6158
fcc9bf01
MK
6159 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
6160 comments.
6161 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
6162 Remove prototypes.
6163 (supply_gregset, fill_gregset): Remove use of register keyword and
6164 remove declaration for regmap. Use I386_NUM_GREGS instead of
6165 NUM_REGS and NUM_FREGS.
6166 (FPREGSET_FSAVE_OFFSET): Remove.
6167 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
6168 NUM_FREGS to determine whether the floating-point registers are
6169 available.
6170
65e78234
MK
6171 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
6172 gnu_store_registers): Replace usage of NUM_GREGS with
6173 I386_NUM_GREGS.
6174
98df6387
MK
6175 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
6176 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
6177 usage of NUM_GREGS with I386_NUM_GREGS.
6178
099a9414
MK
6179 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
6180
57976e88
MK
6181 * i386bsd-nat.c: Include "i386-tdep.h".
6182 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
6183 I386_NUM_GREGS.
6184
b335f4a6
MK
6185 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
6186 and associated comment. They no longer make any sense, since we
6187 don't use this file anymore on Linux.
6188
1cf88de5
MK
6189 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
6190 * i386-tdep.c (i386_register_offset, i386_register_size): Use
6191 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
6192 elements in these arrays.
6193 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
6194 MAX_NUM_REGS.
6195
daa66587
MK
61962002-06-15 Mark Kettenis <kettenis@gnu.org>
6197
6198 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
6199 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
6200
26e9b323
AC
62012002-06-14 Andrew Cagney <cagney@redhat.com>
6202
6203 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
6204 EXTRACT_RETURN_VALUE.
6205 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
6206 EXTRACT_STRUCT_VALUE_ADDRESS.
6207 * gdbarch.h, gdbarch.c: Regenerate.
6208
6209 * values.c (value_being_returned): Handle
6210 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
6211 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
6212
6213 * arm-linux-tdep.c (arm_linux_init_abi): Update.
6214 * arm-tdep.c (arm_gdbarch_init): Update.
6215 * avr-tdep.c (avr_gdbarch_init): Update.
6216 * cris-tdep.c (cris_gdbarch_init): Update.
6217 * d10v-tdep.c (d10v_gdbarch_init): Update.
6218 * ia64-tdep.c (ia64_gdbarch_init): Update.
6219 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
6220 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
6221 * s390-tdep.c (s390_gdbarch_init): Update.
6222 * sh-tdep.c (sh_gdbarch_init): Update.
6223 * s390-tdep.c (s390_gdbarch_init): Update.
6224 * sparc-tdep.c (sparc_gdbarch_init): Update.
6225 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
6226 * v850-tdep.c (v850_gdbarch_init): Update.
6227 * vax-tdep.c (vax_gdbarch_init): Update.
6228 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
6229 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
6230
6231 * config/arc/tm-arc.h: Update.
6232 * config/d30v/tm-d30v.h: Update.
6233 * config/fr30/tm-fr30.h: Update.
6234 * config/h8300/tm-h8300.h: Update.
6235 * config/h8500/tm-h8500.h: Update.
6236 * config/i386/tm-i386.h: Update.
6237 * config/i386/tm-ptx.h: Update.
6238 * config/i386/tm-symmetry.h: Update.
6239 * config/i960/tm-i960.h: Update.
6240 * config/m32r/tm-m32r.h: Update.
6241 * config/m68k/tm-delta68.h: Update.
6242 * config/m68k/tm-linux.h: Update.
6243 * config/m68k/tm-m68k.h: Update.
6244 * config/m88k/tm-m88k.h: Update.
6245 * config/mcore/tm-mcore.h: Update.
6246 * config/mips/tm-mips.h: Update.
6247 * config/mn10200/tm-mn10200.h: Update.
6248 * config/pa/tm-hppa.h: Update.
6249 * config/pa/tm-hppa64.h: Update.
6250 * config/sparc/tm-sp64.h: Update.
6251 * config/sparc/tm-sparc.h: Update.
6252 * config/sparc/tm-sparclet.h: Update.
6253 * config/z8k/tm-z8k.h: Update.
6254
5179e78f
AC
62552002-06-14 Andrew Cagney <cagney@redhat.com>
6256
6257 * Makefile.in (i386_linux_tdep_h): Define.
6258 (i386_tdep_h, i387_tdep_h): Define.
6259 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
6260 $(i386_tdep_h) and $(i387_tdep_h).
6261 * i386-linux-nat.c: Include "i386-linux-tdep.h".
6262
8201327c
MK
62632002-06-14 Mark Kettenis <kettenis@gnu.org>
6264
edf393ac
MK
6265 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
6266 Already covered by the default.
6267
896fb97d
MK
6268 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
6269 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
6270 (i386_gdbarch_init): Initialize long_double_format and long_double
6271 bit.
6272
8201327c
MK
6273 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
6274 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
6275 Move these to ...
6276 * config/i386/i386sol2.mh: ... here.
6277 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
6278 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
6279 (SIGCONTEXT_PC_OFFSET): Remove define.
6280 (IN_SIGTRAMP): Remove define.
6281 * i386-sol2-tdep.c: New file.
6282
6283 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
6284 * config/i386/tm-i386nw.h: Removed.
6285
6286 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
6287 USE_STRUCT_CONVENTION): Remove defines.
6288 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6289 (get_longjmp_target): Remove prototype.
6290 (IN_SIGTRAMP): Remove define.
6291 (i386bsd_in_sigtramp): Remove prototype.
6292 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
6293 function. Update comment accordingly
6294 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
6295 (FRAME_SAVED_PC): Remove define.
6296 (i386bsd_frame_saved_pc): Remove prototype.
6297 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
6298 GET_LONGJMP_TARGET): Remove defines.
6299 (get_longjmp_target): Remove prototype.
6300 (IN_SIGTRAMP): Remove define.
6301 (i386bsd_in_sigtramp): Remove prototype.
6302 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
6303 function. Update comment accordingly
6304 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
6305 (FRAME_SAVED_PC): Remove define.
6306 (i386bsd_frame_saved_pc): Remove prototype.
6307 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
6308 Remove prototype.
6309 (USE_STRUCT_CONVENTION): Remove prototype.
6310 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
6311 declaration.
6312 (_initialize_i386bsd_nat): Revise logic to determine some
6313 constants at compile time when compiling a native GDB. Warn if
6314 things don't match up with what we expect.
6315 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
6316 Remove variables.
6317 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
6318 to use date stored in `struct gdbarch_tdep'.
6319 (i386bsd_sigcontext_offset): Remove varaible.
6320 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
6321 stored in `struct gdbarch_tdep'.
6322 (i386bsd_frame_saved_pc): Make static.
6323 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
6324 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
6325 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
6326 i386fbsd4_sc_pc_offset): New variables.
6327 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
6328 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
6329 functions.
6330 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
6331 functions.
6332 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
6333 Modify the value of i386fbsd_sigtramp_start and
6334 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
6335 i386fbsd_sigtramp_end.
6336 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
6337 function.
6338
6339 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
6340 define to i386-linux-tdep.h.
6341 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
6342 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
6343 defines.
6344 (i386_linux_register_name, i386_linux_register_byte,
6345 i386_linux_register_raw_size): Remove prototypes.
6346 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
6347 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
6348 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
6349 TARGET_WRITE_PC): Remove defines.
6350 (i386_linux_in_sigtramp, i386_linux_frame_chain,
6351 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
6352 i386_linux_write_pc): Remove prototypes.
6353 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6354 (get_longjmp_target): Remove prototype.
6355 * i386-linux-tdep.h: New file.
6356 * i386-linux-nat.c: Include "i386-linux-tdep.h".
6357 * i386-linux-tdep.c: Include "i386-tdep.h" and
6358 "i386-linux-tdep.h".
6359 (i386_linux_register_name, i386_linux_register_byte,
6360 i386_linux_register_raw_size, i386_linux_in_sigtramp,
6361 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
6362 Make static.
6363 (i386_linux_init_abi): New function.
6364 (_initialize_i386_linux_tdep): New function.
6365
6366 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
6367 (i386_saved_pc_after_call): Remove prototype.
6368 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
6369 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
6370 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
6371 (i386_register_name, i386_stab_reg_to_regnum,
6372 i386_dwarf_reg_to_regnum): Remove prototypes.
6373 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
6374 SIZEOF_SSE_REGS): Remove defines.
6375 (REGISTER_BYTES): Remove define.
6376 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
6377 (i386_register_byte, i386_register_raw_size): Remove prototypes.
6378 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
6379 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
6380 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
6381 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
6382 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
6383 (get_longjmp_target): Remove prototype.
6384 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
6385 (sigtramp_saved_pc): Remove define.
6386 (i386v4_sigtramp_saved_pc): Remove prototype.
6387 * config/i386/tm-go32.h (FRAME_CHAIN,
6388 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
6389 (i386go32_frame_saved_pc): Remove prototype.
6390 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
6391 (get_longjmp_target): Remove prototype.
6392 * i386-tdep.h: Include "osabi.h".
6393 (enum i386_abi): Removed.
6394 (enum struct_return): New enum.
6395 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
6396 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
6397 sc_pc_offset members.
6398 (i386_gdbarch_register_os_abi): Remove prototype.
6399 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
6400 I386_SSE_NUM_REGS): New defines.
6401 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
6402 I386_SSE_SIZEOF_REGS): New defines.
6403 (i386_register_name, i386_register_byte, i386_register_raw_size):
6404 New prototypes.
6405 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
6406 (i386bsd_sigtramp_saved_pc): New prototype.
6407 * i386-tdep.c: Don't include "elf-bfd.h".
6408 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
6409 i386_frame_chain, i386_saved_pc_after_call): Make static.
6410 (i386_frame_saved_pc): Rewrite to call architecture dependent
6411 function to deal with signal handlers. Make static.
6412 (i386go32_frame_saved_pc): Removed.
6413 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
6414 Removed.
6415 (i386_get_longjmp_target): New function.
6416 (default_struct_convention, pcc_struct_convention,
6417 reg_struct_convention, valid_conventions, struct_convention): New
6418 variables.
6419 (i386_use_struct_convention): New function.
6420 (i386v4_sigtramp_saved_pc): Renamed to
6421 i386_svr4_sigtramp_saved_pc. Made static. Moved.
6422 (i386_pc_in_sigtramp): New function.
6423 (i386_abi_names): Removed.
6424 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
6425 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
6426 Removed.
6427 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
6428 i386_gdbarch_register_os_abi): Removed.
6429 (struct i386_abi_handler): Removed.
6430 (i386_abi_handler_list): Removed.
6431 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
6432 functions.
6433 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
6434 i386_nw_init_abi): New functions.
6435 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
6436 Use set_gdbarch_xxx() calls instead of relying on macros for a
6437 number of calls.
6438 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
6439 (_initialize_i386_tdep): Add new 'struct-convcention' command.
6440 Register the various architecture variants defined in this file.
6441
ad2f7632
DJ
64422002-06-14 Daniel Jacobowitz <drow@mvista.com>
6443
6444 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
6445 (struct main_type): Remove arg_types member. Update comments for
6446 struct field.
6447 (TYPE_ARG_TYPES): Remove.
6448 (TYPE_FN_FIELD_ARGS): Update.
6449 (smash_to_method_type): Update prototype.
6450
6451 * c-typeprint.c (cp_type_print_method_args): Take method type
6452 instead of argument list. Use new argument layout. Simplify.
6453 (c_type_print_args): Use new argument layout. Simplify.
6454 (c_type_print_base): Update call to cp_type_print_method_args.
6455 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
6456 argument; use die->type instead. Update call to
6457 smash_to_method_type.
6458 (read_structure_scope): Update call to dwarf2_add_member_fn.
6459 * gdbtypes.c (allocate_stub_method): Update comment.
6460 (smash_to_method_type): Take new NARGS and VARARGS arguments.
6461 Use new argument layout.
6462 (check_stub_method): Use new argument layout. Don't count
6463 void as an argument.
6464 (print_arg_types): Update comments. Use new argument layout.
6465 (recursive_dump_type): Don't print arg_types member.
6466 * hpread.c (hpread_read_struct_type): Use new argument layout.
6467 (fixup_class_method_type): Likewise.
6468 (hpread_type_lookup): Likewise.
6469 * stabsread.c (read_type): Update calls to read_args and
6470 smash_to_method_type.
6471 (read_args): Use new argument layout. Simplify.
6472 * valops.c (typecmp): Use new argument layout. Update parameters
6473 and comments. Simplify.
6474 (hand_function_call): Use new argument layout.
6475 (search_struct_method): Update call to typecmp.
6476 (find_overload_match): Use new argument layout.
6477
6da02953
DJ
64782002-06-13 Daniel Jacobowitz <drow@mvista.com>
6479
6480 * NEWS: Mention multithreaded debug support for gdbserver.
6481
519b2366
DJ
64822002-06-13 Daniel Jacobowitz <drow@mvista.com>
6483
6484 * MAINTAINERS: Mention NEWS.
6485
6c0d6680
DJ
64862002-06-13 Daniel Jacobowitz <drow@mvista.com>
6487
6488 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
6489 (struct mips_objfile_private, compare_pdr_entries): New.
6490 (non_heuristic_proc_desc): Read the ".pdr" section if it
6491 is present.
6492
6529d2dd
AC
64932002-06-12 Andrew Cagney <ac131313@redhat.com>
6494
6495 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
6496 (arm_debug): New static variable.
6497 (_initialize_arm_tdep): Add ``set debug arm'' command.
6498
26216b98
AC
64992002-06-12 Andrew Cagney <ac131313@redhat.com>
6500
6501 * Makefile.in (sim_arm_h): Define.
6502 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
6503 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
6504 (arm_register_sim_regno): New function, map an internal REGNUM
6505 onto a simulator register number.
6506 (arm_gdbarch_init): Set register_sim_regno.
6507
814b3ba0
AH
65082002-06-09 Aldy Hernandez <aldyh@redhat.com>
6509
6510 * MAINTAINERS: Add self.
6511
475b0867
JB
65122002-06-11 Jim Blandy <jimb@redhat.com>
6513
919d772c
JB
6514 * source.c (source_info): Mention whether the symtab has
6515 information about preprocessor macros.
6516
475b0867
JB
6517 Call the command `info macro', not `show macro'.
6518 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
6519 Fix error message.
6520 (_initialize_macrocmd): Register `info_macro_command' in
6521 `infolist', not `showlist'.
6522
9e364162
DJ
65232002-06-11 Daniel Jacobowitz <drow@mvista.com>
6524
6525 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
6526 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
6527 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
6528 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
6529 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
6530 unconditionally.
6531 (set_mipsfpu_single_command, set_mipsfpu_double_command)
6532 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
6533 (_initialize_mips_tdep): Remove dead code.
6534 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
6535 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6536 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
6537 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6538 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
6539 MIPS_LAST_FP_ARG_REGNUM): Remove.
6540
23aa4c72
ML
65412002-06-11 Michal Ludvig <mludvig@suse.cz>
6542
6543 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
6544 (unwind_tmp_obstack_free, parse_frame_info)
6545 (update_context, cfi_read_fp, cfi_write_fp)
6546 (cfi_frame_chain, cfi_init_extra_frame_info)
6547 (cfi_virtual_frame_pointer): Use the above function.
264d1763 6548 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
23aa4c72 6549
70eb15a4
CV
65502002-06-11 Corinna Vinschen <vinschen@redhat.com>
6551
6552 * v850-tdep.c (v850_type_is_scalar): New function.
6553 (v850_use_struct_convention): Match current gcc implementation
6554 as close as possible.
6555 (v850_push_arguments): Fix stack_offset handling. Don't write
6556 struct_addr into register. This is done by v850_store_struct_return.
6557 (v850_extract_return_value): Care for structs.
6558 (v850_store_return_value): Ditto.
6559 (v850_store_struct_return): Actually write address.
6560
482a4d06
ML
65612002-06-11 Michal Ludvig <mludvig@suse.cz>
6562
6563 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
6564 without debug information too.
6565
d855c300
AC
65662002-06-10 Andrew Cagney <ac131313@redhat.com>
6567
6568 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
6569 Make multi-arch pure.
6570 * gdbarch.h, gdbarch.c: Re-generate.
6571 * arm-tdep.c (arm_print_float_info): Update.
6572 * arch-utils.h (default_print_float_info): Update.
6573 * arch-utils.c (default_print_float_info): Update.
6574 * infcmd.c (float_info): Update call.
6575
dd12a101
AC
65762002-06-10 Andrew Cagney <ac131313@redhat.com>
6577
6578 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
6579 the front of the initialize list.
6580
101dcfbe
AC
65812002-06-10 Andrew Cagney <ac131313@redhat.com>
6582
6583 * infrun.c (struct inferior_status): Replace fields
6584 selected_frame_address and selected_level with field
6585 selected_frame_id.
6586 (save_inferior_status): Update. Use get_frame_id.
6587 (struct restore_selected_frame_args): Delete.
6588 (restore_selected_frame): Update. Use frame_find_by_id.
6589 (restore_inferior_status): Update.
6590
6591 * breakpoint.h (struct breakpoint): Change type of
6592 watchpoint_frame to frame_id.
6593 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
6594 call to get_current_frame.
6595 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
6596 get_current_frame.
6597 (watchpoint_check): Use frame_find_by_id.
6598
6599 * frame.h (record_selected_frame): Delete declaration.
6600 * stack.c (record_selected_frame): Delete function.
6601
6602 * frame.h (struct frame_id): Define.
6603 (get_frame_id): Declare.
6604 (frame_find_by_id): Declare.
6605 * frame.c (frame_find_by_id): New function.
6606 (get_frame_id): New function.
6607
304270b6
AV
66082002-06-10 Andrey Volkov <avolkov@transas.com>
6609
6610 * ser-e7kpc.c: Fix duplicated define and call of
6611 _initialize_ser_e7000pc
6612
2f2cf184
DJ
66132002-06-09 Daniel Jacobowitz <drow@mvista.com>
6614
6615 * signals/signals.c (target_signal_from_host): Fix #ifdef
6616 SIGRTMIN case.
6617 (do_target_signal_to_host): Likewise.
6618
caaa3122
DJ
66192002-06-09 Daniel Jacobowitz <drow@mvista.com>
6620
6621 * mips-tdep.c (mips_find_abi_section): New function.
6622 (mips_gdbarch_init): Call it.
6623
6ac5df3a
MK
66242002-06-09 Mark Kettenis <kettenis@gnu.org>
6625
6626 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
6627 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
6628 after Andrew's 2002-06-08 gdbarch change.
6629
82ea117a
MK
66302002-06-09 Mark Kettenis <kettenis@gnu.org>
6631
6632 * i386-linux-nat.c (suppy_gregset): Don't supply
6633 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
6634 register cache.
6635 (fill_gregset): Don't fetch it under the same circumstances.
6636
3c25f8c7
AC
66372002-06-09 Andrew Cagney <cagney@redhat.com>
6638
6639 * Makefile.in (callback_h): Define.
6640 (remote_sim_h): Update path to remote-sim.h.
6641 (remote-rdp.o): Add $(callback_h).
6642 (remote-sim.o): Use $(callback_h).
6643 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
6644 * remote-rdp.c: Include "gdb/callback.h".
6645
1029b7fa
MK
66462002-06-09 Mark Kettenis <kettenis@gnu.org>
6647
6648 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
6649 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
6650
616675d3
AC
66512002-06-08 Andrew Cagney <ac131313@redhat.com>
6652
a3efda28
AC
6653 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
6654 * rdi-share/serpardr.c: Ditto.
6655 * rdi-share/unixcomm.c: Ditto.
6656 * rdi-share/serdrv.c: Ditto.
6657 * rdi-share/hostchan.h: Ditto.
6658 * rdi-share/hostchan.c: Ditto.
6659 * rdi-share/host.h: Ditto.
6660 * rdi-share/devsw.c: Ditto.
6661
c5f10366
AC
6662 * objfiles.h: Change type of obj_private to void pointer.
6663 * pa64solib.c: Update copyright. Don't include "assert.h", use
6664 strcmp instead of STREQ, use LONGEST, do not use PTR
6665 * somsolib.c: Ditto.
6666
616675d3
AC
6667 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
6668 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
6669 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
6670
e4b415d9
AC
66712002-06-08 Andrew Cagney <ac131313@redhat.com>
6672
6673 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
6674 (default_get_saved_register): Delete function.
6675 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
6676 generic_unwind_get_saved_register.
6677 * gdbarch.h, gdbarch.c: Re-generate.
6678
ca0d0b52
AC
66792002-06-08 Andrew Cagney <ac131313@redhat.com>
6680
6681 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
6682 generic_func_frame_chain_valid.
6683 * gdbarch.h, gdbarch.c: Re-generate.
6684 * blockframe.c (generic_func_frame_chain_valid): Only check
6685 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
6686 passing FP to PC_IN_CALL_DUMMY.
6687 Fix PR gdb/360.
6688
76860b5f
AC
66892002-06-08 Andrew Cagney <ac131313@redhat.com>
6690
6691 * gdbarch.sh (struct gdbarch_data): Add field init_p.
6692 (register_gdbarch_data): Initialize init_p.
6693 (gdbarch_data): Initialize data pointer using the init function.
6694 (init_gdbarch_data): Delete function.
6695 (gdbarch_update_p): Update.
6696 (initialize_non_multiarch): Update.
6697 (struct gdbarch): Add field initialized_p.
6698 * gdbarch.h, gdbarch.c: Re-generate.
6699
8dda9770
ML
67002002-06-07 Michal Ludvig <mludvig@suse.cz>
6701
6702 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
6703 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
6704 better do the things actually here.
6705 * x86-64-tdep.c (x86_64_register_name2nr): New.
6706 (x86_64_register_name): Renamed to x86_64_register_nr2name.
6707 (x86_64_gdbarch_init): Respect the above change.
6708 * x86-64-tdep.h (x86_64_register_name2nr)
6709 (x86_64_register_nr2name): Add prototypes.
6710 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
6711
3d79a47c
MS
67122002-06-06 Michael Snyder <msnyder@redhat.com>
6713
7bd91a28
MS
6714 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
6715 Delete extra braces and re-indent.
6716 (d10v_store_return_value): Char return values
3d79a47c
MS
6717 must be shifted over by one byte in R0.
6718 (d10v_extract_return_value): Delete extra braces, re-indent.
6719
095a4c96
EZ
67202002-06-06 Elena Zannoni <ezannoni@redhat.com>
6721
6722 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
6723 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
6724 (d10v_integer_to_address): Rewrite.
6725 (d10v_frame_init_saved_regs): When reading fp and sp registers use
6726 the d10v specific functions which take care of converting to the
6727 correct space.
6728
e8a77ca4
EZ
67292002-06-06 Elena Zannoni <ezannoni@redhat.com>
6730
6731 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
6732 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
6733
4f2e4a4f
AC
67342002-06-02 Andrew Cagney <ac131313@redhat.com>
6735
6736 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
6737 includes.
6738 * config/tm-linux.h: Ditto.
6739 * config/alpha/tm-alphalinux.h: Ditto.
6740 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
6741 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
6742 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
6743 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
6744 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
6745 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
6746 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
6747 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
6748 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
6749 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
6750 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
6751 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
6752 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
6753 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
6754 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
6755 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
6756 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
6757 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
6758 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
6759 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
6760 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
6761 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
6762 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
6763 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
6764 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
6765 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
6766 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
6767 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
6768 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
6769 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
6770 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
6771 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
6772 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
6773 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
6774 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
6775 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
6776 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
6777
ae2ab2ce
AS
67782002-05-04 Aidan Skinner <aidan@velvet.net>
6779
6780 * ada-exp.tab.c: New file
6781 * ada-exp.y: New file
6782 * ada-lang.c: New file
6783 * ada-lang.h: New file
6784 * ada-lex.c: New file
6785 * ada-lex.l: New file
6786 * ada-tasks.c: New file
6787 * ada-typeprint.c: New file
6788 * ada-valprint.c: New file
6789
0ddd0135
JT
67902002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6791
6792 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
6793 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
6794
750fbacc
JT
67952002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
6796
6797 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
6798 insetead of ppc-linux-tdep.o.
6799 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
6800 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
6801
df94e18a
AC
68022002-06-02 Andrew Cagney <ac131313@redhat.com>
6803
6804 2002-05-07 Christian Groessler <chris@groessler.org>
6805 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
6806 bit register contents for little endian hosts.
6807
1a38ab75
AC
68082002-06-01 Andrew Cagney <ac131313@redhat.com>
6809
6810 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
6811 any maintainer.
6812
8b1632ac
AC
68132002-06-01 Andrew Cagney <ac131313@redhat.com>
6814
6815 * gdbarch.h: Regenerate.
6816
627054c8
AC
68172002-06-01 Andrew Cagney <ac131313@redhat.com>
6818
6819 * MAINTAINERS: Add everyone to write-after-approval list.
6820
4f460812
AC
68212002-06-01 Andrew Cagney <ac131313@redhat.com>
6822
6823 * stack.c (frame_info): Use frame_register_unwind instead of
6824 saved_regs. Mention when the SP is on the stack or in a register.
6825
6826 * frame.h (frame_register_unwind_ftype): Define. Document.
6827 (struct frame_info): Add field register_unwind and
6828 register_unwind_cache.
6829 (frame_register_unwind): Declare.
6830 (generic_unwind_get_saved_register): Declare.
6831
6832 * frame.c (frame_register_unwind): New function.
6833 (generic_unwind_get_saved_register): New function.
6834
6835 * blockframe.c (generic_call_dummy_register_unwind): New function.
6836 (frame_saved_regs_register_unwind): New function.
6837 (set_unwind_by_pc): New function.
6838 (create_new_frame): New function.
6839 (get_prev_frame): New function.
6840
de888f76
AC
68412002-05-30 Andrew Cagney <ac131313@redhat.com>
6842
6843 * a29k-share/: Delete directory.
6844 * remote-vx29k.c: Delete file.
6845
2f2c3626
JT
68462002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6847
6848 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
6849 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6850
9ce5c36a
JT
68512002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6852
6853 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
6854 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6855 (sparc64nbsd-nat.o)
6856 (sparcnbsd-nat.o)
6857 (sparcnbsd-tdep.o): New dependency lists.
6858 * NEWS: Note new UltraSPARC NetBSD native configuration.
6859 * configure.host (sparc64-*-netbsd*): New host.
6860 * configure.tgt (sparc-*-netbsdelf*)
6861 (sparc-*-netbsd*): Set gdb_target to nbsd.
6862 (sparc64-*-netbsd*): New target.
6863 * sparc64nbsd-nat.c: New file.
6864 * sparcnbsd-nat.c: New file.
6865 * sparcnbsd-tdep.c: New file.
6866 * sparcnbsd-tdep.h: New file.
6867 * config/sparc/nbsd.mt: New file.
6868 * config/sparc/nbsd64.mh: New file.
6869 * config/sparc/nbsd64.mt: New file.
6870 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
6871 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
6872 (HOST_IPC): Remove.
6873 * config/sparc/nbsdaout.mt: Remove.
6874 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
6875 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
6876 (HOST_IPC): Remove.
6877 * config/sparc/nbsdelf.mt: Remove.
6878 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
6879 sparc-nat.c compatiblity defines.
6880 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
6881 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
6882 * config/sparc/tm-nbsd64.h: New file.
6883 * config/sparc/tm-nbsdaout.h: Remove.
6884 * config/sparc/xm-nbsd.h: Remove.
6885
ef3cf062
JT
68862002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
6887
6888 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
6889 * sparc-tdep.c: Include osabi.h.
6890 (gdbarch_tdep): Add osabi member.
6891 (_initialize_sparc_tdep): Use gdbarch_register.
6892 (sparc_gdbarch_init): Use generic OS ABI framework.
6893 (sparc_dump_tdep): New function.
6894
ee8ff470
KB
68952002-05-30 Kevin Buettner <kevinb@redhat.com>
6896
6897 * corefile.c (do_captured_read_memory_integer): Return non-zero
6898 result.
6899 (safe_read_memory_integer): Copy result of memory read when
6900 status is non-zero. Also, add comments.
6901
7b112f9c
JT
69022002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
6903
6904 * Makefile.in (ppc_tdep_h): Define.
6905 (ppc-linux-nat.o)
6906 (ppc-linux-tdep.o)
6907 (rs6000-tdep.o): Use $(ppc_tdep_h).
6908 (ppc-sysv-tdep.o)
6909 (ppcnbsd-nat.o)
6910 (ppcnbsd-tdep.o): New dependency lists.
6911 * ppc-tdep.h: Use generic OS ABI framework.
357edbbc
JT
6912 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
6913 (ppc_linux_init_abi): New functions.
7b112f9c
JT
6914 (ppc_sysv_abi_broken_use_struct_convention)
6915 (ppc_sysv_abi_use_struct_convention)
6916 (ppc_sysv_abi_push_arguments): Move to...
6917 * ppc-sysv-tdep.c: ...here.
6918 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
6919 * rs6000-tdep.c (process_note_abi_tag_sections)
6920 (get_elfosabi): Remove.
6921 (rs6000_gdbarch_init): Use generic OS ABI framework.
6922 (rs6000_dump_tdep): New function.
6923 (_initialize_rs6000_tdep): Use gdbarch_register.
6924 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
6925 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
6926 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
6927 of ppc-linux-tdep.o.
6928 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
6929 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
6930 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
6931 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
6932 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
6933 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
6934
480dd42a
JB
69352002-05-29 Jim Blandy <jimb@redhat.com>
6936
6937 * macroscope.c (default_macro_scope): Put `void' in empty argument
6938 list.
6939
4182591f
AC
69402002-05-29 Andrew Cagney <ac131313@redhat.com>
6941
6942 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
6943 * arch-utils.c: Include "sim-regno.h".
6944 * gdbarch.sh: Don't include "sim-regno.h".
6945 * gdbarch.h, gdbarch.c: Regenerate.
6946 * sim-regno.h (legacy_register_sim_regno): Move declaration from
6947 here.
6948 * arch-utils.h (legacy_register_sim_regno): To here.
6949 * remote-sim.c (legacy_register_sim_regno): Move function from
6950 here.
6951 * arch-utils.c (legacy_register_sim_regno): To here.
6952
8238d0bf
AC
69532002-05-28 Andrew Cagney <ac131313@redhat.com>
6954
6955 * sim-regno.h: New file.
6956 * Makefile.in (sim_regno_h): Define.
6957 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
6958 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
6959 (legacy_register_sim_regno): New function.
6960 (one2one_register_sim_regno): New function.
6961 (gdbsim_fetch_register): Rewrite.
6962 (gdbsim_store_register): Only store a register when
6963 REGISTER_SIM_REGNO is valid.
6964 * d10v-tdep.c: Include "sim-regno.h".
6965 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
6966 (d10v_ts3_register_sim_regno): Ditto.
6967 * gdbarch.sh: Include "sim-regno.h".
6968 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
6969 * gdbarch.h, gdbarch.c: Regenerate.
6970 * arch-utils.h (default_register_sim_regno): Delete declaration.
6971 * arch-utils.c (default_register_sim_regno): Delete function.
6972
485721b1
JT
69732002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
6974
6975 * ppcnbsd-nat.c: Rewrite.
6976 * ppcnbsd-tdep.c: New file.
6977 * ppcnbsd-tdep.h: New file.
6978 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
6979 solib.o, and solib-svr4.o.
6980 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
6981 nbsd-tdep.o, and corelow.o.
6982
697f244d
AC
69832002-05-28 Andrew Cagney <ac131313@redhat.com>
6984
6985 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
6986 `tr' and `sed'. Mention that `broken' targets are not expected to
6987 build.
6988
f08caad1 69892002-05-27 Michal Ludvig <mludvig@suse.cz>
b1ab997b
ML
6990
6991 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
6992 Let PC point right after the prologue before looking up symbols.
6993
3139facc
MH
69942002-05-27 Martin M. Hunt <hunt@redhat.com>
6995
6996 * i386-tdep.c (i386_register_virtual_type): Return
6997 builtin_type_vec128i for SSE registers.
6998
6999 * gdbtypes.h (builtin_type_vec128i): Declare.
7000
7001 * gdbtypes.c (build_builtin_type_vec128i): New function.
7002 (builtin_type_v2_double, builtin_type_v4_int64): New types.
7003 (builtin_type_vec128i): New type for SSE2 128-bit registers.
7004 (build_gdbtypes): Initialize new builtin vector types.
7005 (_initialize_gdbtypes): Register new vector types with gdbarch.
7006
6e3ba3b8
JT
70072002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7008
7009 * MAINTAINERS: ns32k is not longer an obsolete candidate,
7010 since it has been multi-arch'd.
7011 * NEWS: Note that ns32k-*-* is now partial multi-arch.
7012 Move Alpha and VAX multi-arch news entries to same section
7013 as other multi-arch news.
7014
93d5585d
JT
70152002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7016
7017 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
7018 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
7019 static. Rename some register numbers to put them in ns32k-tdep
7020 private namespace.
7021 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
7022 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
7023 functions.
7024 (_initialize_ns32k_tdep): Use gdbarch_register.
7025 * ns32k-tdep.h: New file.
7026 * ns32knbsd-tdep.c: New file.
7027 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
7028 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
7029 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
7030 REGISTER_BYTES, REGISTER_BYTE): Remove.
7031 * config/ns32k/tm-ns32k.h: New file.
7032 * config/ns32k/tm-umax.h: Remove.
7033
efb2c70e
JT
70342002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7035
7036 * ns32k-tdep.c (ns32k_saved_pc_after_call,
7037 ns32k_store_struct_return, ns32k_extract_return_value,
7038 ns32k_store_return_value, ns32k_extract_struct_value_address): New
7039 functions.
7040 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
7041 ns32k_saved_pc_after_call.
7042 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
7043 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
7044 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
7045 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
7046 ns32k_extract_struct_value_address.
7047
7bcc927b
JT
70482002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7049
7050 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
7051 ns32k_fix_call_dummy): New.
7052 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
7053 ns32k_call_dummy_words.
7054 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
7055 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
7056 CALL_DUMMY_NARGS): Remove.
7057 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
7058
78f9d765
JT
70592002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7060
7061 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
7062 ns32k_frame_saved_pc, ns32k_frame_args_address,
7063 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
7064 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
7065 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
7066 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
7067 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
7068 (BREAKPOINT): Remove..
7069 (FRAME_CHAIN): Define as ns32k_frame_chain.
7070 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
7071 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
7072 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
7073 (FRAME_FIND_SAVED_REGS): Remove.
7074 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
7075 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
7076 (POP_FRAME): Define as ns32k_pop_frame.
7077
f2c762e0
JT
70782002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7079
7080 * ns32k-tdep.c (ns32k_register_byte_32082,
7081 ns32k_register_byte_32382, ns32k_register_raw_size,
7082 ns32k_register_virtual_size, ns32k_register_virtual_type): New
7083 functions.
7084 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
7085 ns32k_register_byte_32382.
7086 * config/ns32k/tm-umax.h: Update copyright years.
7087 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
7088 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
7089 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
7090 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
7091 (ns32k_get_enter_addr): Fix prototype.
7092
af137673
JT
70932002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
7094
7095 * ns32k-tdep.c: Update copyright years.
7096 (ns32k_register_name_32082): New function.
7097 (ns32k_register_name_32382): Ditto.
7098 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
7099 (REGISTER_NAME): Define as ns32k_register_name_32382.
7100 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
7101 (REGISTER_NAME): Define as ns32k_register_name_32082.
7102
a8bc7b56
JB
71032002-05-24 Jim Blandy <jimb@redhat.com>
7104
7105 * dwarf2read.c (free_line_header): Use xfree, not free.
7106
83a45910
JT
71072002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
7108
7109 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
7110 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
7111
0db71247
AC
71122002-05-23 Andrew Cagney <ac131313@redhat.com>
7113
7114 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
7115
b9e5e4dd
AC
71162002-05-23 Andrew Cagney <ac131313@redhat.com>
7117
7118 From Ross Alexander at NEC Europe:
7119 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
7120
de530e84
MS
71212002-05-23 Michael Snyder <msnyder@redhat.com>
7122
7123 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
7124 for input, rather than parse_and_eval_address.
7125
b91b96f4
AC
71262002-05-23 Andrew Cagney <ac131313@redhat.com>
7127
7128 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
7129 * Makefile.in (sim_d10v_h): Update definition.
7130
8b279e7a
AC
71312002-05-24 Andrew Cagney <cagney@redhat.com>
7132
7133 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
7134 change `2002-05-22 Michael Snyder' below.
7135 (d10v_push_arguments): Ditto.
7136 (d10v_extract_return_value): Ditto.
7137
0a3d0425
JB
71382002-05-23 Jim Blandy <jimb@redhat.com>
7139
7140 * macrotab.c (check_for_redefinition): Don't complain if the new
7141 definition is the same as the previous one. Take more arguments
7142 to allow the comparison.
7143 (macro_define_object, macro_define_function): Pass more arguments
7144 to check_for_redefinition.
7145
78eac43e
MS
71462002-05-22 Michael Snyder <msnyder@redhat.com>
7147
7148 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
7149 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
7150 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
7151 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
7152 Don't bail if return_pc is PC_IN_CALL_DUMMY.
7153 Add a temp variable to save a call (and a memory read).
7154 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
7155 if possible (so that PC_IN_CALL_DUMMY will work).
7156
9bc1edb8
CV
71572002-05-22 Corinna Vinschen <vinschen@redhat.com>
7158
7159 * MAINTAINERS: Remove status `OBSOLETE' from v850.
7160
005ef3d2
ML
71612002-05-22 Michal Ludvig <mludvig@suse.cz>
7162
7163 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
7164 fde->cie_ptr.
7165 (dwarf2_build_frame_info): Corrected handling of eh_frame.
7166 (dwarf2_build_frame_info): Add offset to fde->initial_location
7167 so that frames of shared libraries are mapped correctly.
6c3eb890
ML
7168 (execute_stack_op): Change type of 'result' from ULONGEST to
7169 CORE_ADDR.
005ef3d2 7170
fcf4f891
JT
71712002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7172
7173 * config/alpha/tm-nbsd.h: Include solib.h.
7174
cfef91e4
JT
71752002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7176
7177 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
7178 assumptions about the host's byte order.
7179
9964235a
JT
71802002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7181
7182 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
7183 to dependency list.
7184 * alphanbsd-tdep.c: Include solib-svr4.h.
7185 * shnbsd-tdep.c: Ditto.
7186
9eeef8ef
JT
71872002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
7188
7189 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
7190 nbsd-tdep.h to dependency list.
7191 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
7192 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
7193 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
7194 nbsdaout.mh and nbsdelf.mh consistently.
7195 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
7196 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
7197 nbsdaout.mt and nbsdelf.mh consistently.
7198 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
7199 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
7200 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
7201 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
7202 a.out shared library stuff from here...
7203 * config/nm-nbsdaout.h: ...to here.
7204 * config/tm-nbsd.h: Remove.
7205 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
7206 * config/arm/nbsd.mh: Remove.
7207 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
7208 nbsd-tdep.o.
7209 * config/arm/nbsdaout.mh: New file.
7210 * config/arm/nbsdelf.mh: New file.
7211 * config/arm/nm-nbsdaout.h: New file.
7212 * config/i386/nbsd.mh: Remove.
7213 * config/i386/nbsd.mt: Remove.
7214 * config/i386/nbsdaout.mh: New file.
7215 * config/i386/nbsdaout.mt: New file.
7216 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
7217 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
7218 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
7219 i386_register_u_addr): Remove.
7220 * config/i386/nm-nbsdaout.h: New file.
7221 * config/i386/nm-nbsdelf.h: Remove.
7222 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
7223 (USE_STRUCT_CONVENTION): Remove.
7224 * config/i386/tm-nbsdaout.h: New file.
7225 * config/i386/tm-nbsdelf.h: Remove.
7226 * config/m68k/nbsd.mh: Remove.
7227 * config/m68k/nbsd.mt: Remove.
7228 * config/m68k/nbsdaout.mh: New file.
7229 * config/m68k/nbsdaout.mt: New file.
7230 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
7231 * config/m68k/nm-nbsdaout.h: New file.
7232 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
7233 (IN_SOLIB_CALL_TRAMPOLINE): Define.
7234 * config/ns32k/nbsd.mh: Remove.
7235 * config/ns32k/nbsd.mt: Remove.
7236 * config/ns32k/nbsdaout.mh: New file.
7237 * config/ns32k/nbsdaout.mt: New file.
7238 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
7239 * config/ns32k/nm-nbsdaout.h: New file.
7240 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
7241 (IN_SOLIB_CALL_TRAMPOLINE): Define.
7242 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
7243 (SVR4_SHARED_LIBS): Remove.
7244 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
7245 * config/sparc/nbsd.mh: Remove.
7246 * config/sparc/nbsd.mt: Remove.
7247 * config/sparc/nbsdaout.mh: New file.
7248 * config/sparc/nbsdaout.mt: New file.
7249 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
7250 * config/sparc/nbsdelf.mt: New file.
7251 * config/sparc/nm-nbsdaout.h: New file.
7252 * config/sparc/nm-nbsdelf.h: Remove.
7253 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
7254 * config/sparc/tm-nbsdaout.h: New file.
7255
257ce470
JT
72562002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7257
7258 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
7259 mipsnbsd-tdep.c
7260 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
7261
76a6d5fe
JT
72622002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7263
7264 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
7265 shnbsd-nat.c.
7266 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
7267
45888261
JT
72682002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7269
7270 * NEWS: Note new MIPS NetBSD native configuration.
7271 * configure.host (mips*-*-netbsd*): New host.
7272 * configure.tgt (mips*-*-netbsd*): New target.
7273 * mipsnbsd-nat.c: New file.
7274 * mipsnbsd-tdep.c: New file.
7275 * mipsnbsd-tdep.h: New file.
7276 * config/mips/nbsd.mh: New file.
7277 * config/mips/nbsd.mt: New file.
7278 * config/mips/nm-nbsd.h: New file.
7279 * config/mips/tm-nbsd.h: New file.
7280
70f80edf
JT
72812002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
7282
7283 * Makefile.in (SFILES): Add osabi.c.
7284 (COMMON_OBS): Add osabi.o.
7285 (osabi.o): New dependency list.
7286 * osabi.c: New file.
7287 * osabi.h: New file.
7288 * doc/gdbint.texinfo: Document new generic OS ABI framework.
7289
7290 * Makefile.in (alpha_tdep_h): Define and use instead of
7291 alpha-tdep.h.
7292 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
7293 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
7294 Remove.
7295 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
7296 * alpha-tdep.h: Include osabi.h.
7297 (alpha_abi): Remove.
7298 (gdbarch_tdep): Use generic OS ABI framework.
7299 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
7300 gdbarch_register_osabi.
7301 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
7302 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
7303 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
7304
7305 * Makefile.in (sh_tdep_h): Add osabi.h.
7306 * sh-tdep.h (sh_osabi): Remove.
7307 (gdbarch_tdep): Use generic OS ABI framework.
7308 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
7309 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
7310 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
7311 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
7312
7313 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
7314 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
7315 gdbarch_register_osabi.
7316 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
7317 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
7318 (get_elfosabi): Rename to...
7319 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
7320 ABI framework support routines.
7321 (arm_gdbarch_init): Use generic OS ABI framework.
7322 (arm_dump_tdep): Likewise.
7323 (_initialize_arm_tdep): Likewise.
7324 * arm-tdep.h: Include osabi.h.
7325 (arm_abi): Remove.
7326 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
7327 osabi member.
7328 (arm_gdbarch_register_os_abi): Remove prototype.
7329 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
7330 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
7331
7332 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
7333 * mips-tdep.c: Include osabi.h.
7334 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
7335 OS ABI framework.
7336
d194345b
KH
73372002-05-20 Kazu Hirata <kazu@cs.umass.edu>
7338
7339 * h8300-tdep.c: Fix formatting.
7340
70c6b0d1
EZ
73412002-05-20 Elena Zannoni <ezannoni@redhat.com>
7342
7343 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
7344 printing vector registers.
7345
165b8e33
AC
73462002-05-19 Andrew Cagney <ac131313@redhat.com>
7347
7348 From Fernando Nasser:
7349 * remote.c (remote_async_open_1): Re-throw the exception when the
7350 connection fails.
7351 (remote_cisco_open): Ditto.
7352 (remote_open_1): Ditto.
7353
36918e70
AC
73542002-05-19 Andrew Cagney <ac131313@redhat.com>
7355
7356 * remote.c (remote_start_remote_dummy): Add uiout parameter.
7357 (remote_start_remote): Add uiout parameter. Pass through to
7358 remote_start_remote_dummy.
7359 (remote_open_1): Use catch_exception instead of catch_errors.
7360 (remote_async_open_1): Ditto.
7361 (remote_cisco_open): Ditto.
7362
ae44c0c4
AC
73632002-05-19 Andrew Cagney <ac131313@redhat.com>
7364
7365 * remote.c (remote_start_remote): Replace PTR with void pointer.
7366 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
7367 static.
7368
8efe637d
AC
73692002-05-18 Andrew Cagney <ac131313@redhat.com>
7370
7371 * gdb_indent.sh: Allow the script to be run in the sim directory.
7372
2f1b5984
MK
73732002-05-18 Mark Kettenis <kettenis@gnu.org>
7374
f0f625e2
MK
7375 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
7376 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
7377
2f1b5984
MK
7378 * corelow.c (core_open): Only call set_gdbarch_from_file if
7379 exec_bfd is NULL.
7380
fc974602
AV
73812002-05-17 Andrey Volkov <avolkov@transas.com>
7382
7383 * h8300-tdep.c: Add support of EXR register
7384 * config/h8300/tm-h8300.h: Ditto.
7385
906709f4
AV
73862002-05-17 Andrey Volkov <avolkov@transas.com>
7387
7388 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
7389
6e591d68
AV
73902002-05-17 Andrey Volkov <avolkov@transas.com>
7391
7392 * h8300-tdep.c: Change literal regnums to REGNO.
7393
84f0252a
JB
73942002-05-17 Jim Blandy <jimb@redhat.com>
7395
e0e9281e
JB
7396 * NEWS: Note addition of macro support.
7397
84f0252a
JB
7398 Expand preprocessor macros in C expressions.
7399 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
7400 (scan_macro_expansion, scanning_macro_expansion,
7401 finished_macro_expansion): New function declarations.
7402 (expression_macro_lookup_func, expression_macro_lookup_baton): New
7403 variable declarations.
7404 * parser-defs.h (expression_context_pc): New declaration.
7405 * parse.c (expression_context_pc): New variable.
7406 (parse_exp_1): Set expression_context_pc, as well as
7407 expression_context_block.
7408 * c-exp.y (yylex): If we're not already reading the result of a
7409 macro expansion, try to macro-expand the next token. When we're
7410 done scanning a macro expansion, switch back to the mainline text.
7411 Commas and `if's in a macro's expansion don't terminate the input.
7412 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
7413 (macro_original_text, macro_expanded_text,
7414 expression_macro_lookup_func, expression_macro_lookup_baton): New
7415 variables.
7416 (scan_macro_expansion, scanning_macro_expansion,
7417 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
7418 c_preprocess_and_parse): New functions.
7419 (c_language_defn, cplus_language_defn, asm_language_defn): Call
7420 c_preprocess_and_parse, instead of c_parse.
7421 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
7422 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
7423
1c509ca8
JR
7424Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
7425
7426 * sh-tdep.c (gdb_print_insn_sh64): Delete.
7427 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
7428 (sh_gdbarch_init): Always use gdb_print_insn_sh.
7429
2250ee0c
CV
74302002-05-17 Corinna Vinschen <vinschen@redhat.com>
7431
7432 * NEWS: Add section for multi-arched targets. Add v850 to that section.
7433
ab3b8126
JT
74342002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
7435
7436 * Makefile.in (sh_tdep_h): Define and use.
7437 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
7438 register enum): Move to...
7439 * * sh-tdep.h: ...here.
7440 * sh-tdep.c: Include sh-tdep.h.
7441 * sh3-rom.c: Likewise.
7442 * shnbsd-tdep.c: Likewise.
7443
ed9d4749
MS
74442002-05-16 Michael Snyder <msnyder@redhat.com>
7445
7446 * arm-tdep.c: Spelling fix in comment.
7447
2e276125
JB
74482002-05-16 Jim Blandy <jimb@redhat.com>
7449
6821892e
JB
7450 Add commands for manually expanding macros and showing their
7451 definitions.
7452 * macrocmd.c, macroscope.c, macroscope.h: New files.
7453 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
7454 (macroscope_h): New variable.
7455 (HFILES_NO_SRCDIR): Add macroscope.h.
7456 (COMMON_OBS): Add macrocmd.o, macroscope.o.
7457 (macroscope.o, macrocmd.o): New rules.
7458
2e276125
JB
7459 Teach the Dwarf 2 reader to read macro information.
7460 * dwarf2read.c: #include "macrotab.h".
7461 (dwarf_macinfo_buffer): New variable.
7462 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
7463 dwarf_macinfo_size.
7464 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
7465 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
7466 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
7467 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
7468 dwarf2_macro_spaces_in_definition): New complaints.
7469 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
7470 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
7471 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
7472 the partial symbol table.
7473 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
7474 from what's recorded in the partial symbol table.
7475 (read_file_scope): If the compilation unit has a
7476 `DW_AT_macro_info' attribute, read its macro information.
7477 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
7478
2f53fe6c
DJ
74792002-05-16 Daniel Jacobowitz <drow@mvista.com>
7480
7481 Fix PR gdb/546
7482 * ser-tcp.c: Don't include <netinet/udp.h>.
7483
2be99286
SC
74842002-05-16 Stephane Carrez <stcarrez@nerim.fr>
7485
7486 * MAINTAINERS: Update my email address.
7487
c9af212b 74882002-05-16 Richard Earnshaw <rearnsha@arm.com>
8501bbeb
RE
7489
7490 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
7491 include file of the same name.
7492
bf5f1a52
CV
74932002-05-16 Corinna Vinschen <vinschen@redhat.com>
7494
7495 * configure.tgt: Mark v850 as multi-arched.
7496 * config/v850/tm-v850.h: Remove file.
7497 * config/v850/v850.mt: Eliminate TM_FILE.
7498
435e042a
CV
74992002-05-16 Corinna Vinschen <vinschen@redhat.com>
7500
7501 * v850-tdep.c: Full multi-arch.
7502 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
7503 Define GDB_MULTI_ARCH to 2.
7504
9819c6c8
PM
75052002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
7506
7507 * p-exp.y (current_type): New static variable.
7508 Carries the type of the expression at the position that is parsed.
7509 (push_current_type, pop_current_type): Two new functions. Used
7510 to store/restore current_type in expression on specific tokens.
c9af212b
RE
7511 (search_field): New static variable. Set to one after parsing a point
7512 as at that point only a FIELDNAME token should be searched.
9819c6c8
PM
7513 (FIELDNAME): New token. After a point only a token belonging to
7514 current_type type definition is allowed.
7515 (all over token rules): reset and change current_type according
7516 to rules.
7517 (exp '[' rule): insert implicit array index field if
7518 exp is a pascal string type.
7519
3a06899a
CV
75202002-05-16 Corinna Vinschen <vinschen@redhat.com>
7521
7522 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
7523 frame info. Use frame_info's saved_regs instead of matching member
7524 in extra_frame_info throughout.
7525 (v850_frame_init_saved_regs): New function.
7526 (v850_init_extra_frame_info): Move most functionality into
7527 v850_frame_init_saved_regs().
7528 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
7529 (v850_frame_find_saved_regs): Remove declaration.
7530 (FRAME_FIND_SAVED_REGS): Remove definition.
7531 (v850_frame_init_saved_regs): Add declaration.
7532 (FRAME_INIT_SAVED_REGS): Add definition.
7533
6ed14b0e
CV
75342002-05-16 Corinna Vinschen <vinschen@redhat.com>
7535
7536 * v850-tdep.c: Begin multi-arch'ing v850.
7537 (v850_target_architecture_hook): Remove function.
7538 (v850_gdbarch_init): New function. Add code previously in
7539 v850_target_architecture_hook().
7540 (_initialize_v850_tdep): Don't set target_architecture_hook.
7541 Call register_gdbarch_init() instead.
7542
42725910
DJ
75432002-05-16 Daniel Jacobowitz <drow@mvista.com>
7544
7545 * gdbtypes.h (struct cplus_struct_type): Remove args field.
7546 * hpread.c (hpread_read_struct_type): Remove assignments to args.
7547 (fixup_class_method_type): Likewise.
7548
99d9066e
JB
75492002-05-15 Jim Blandy <jimb@redhat.com>
7550
7551 Add macro structures to GDB's symbol tables. Nobody puts anything
7552 in them yet.
7553 * symtab.h (struct symtab): New member: `macro_table'.
7554 * buildsym.h (pending_macros): New global variable.
7555 * buildsym.c: #include "macrotab.h".
7556 (buildsym_init): Initialize `pending_macros'.
7557 (end_symtab): If we found macro information while reading a CU's
7558 debugging info, do build a symtab structure for it. Make the
7559 symtab point to the macro information, and clear the
7560 `pending_macros' pointer which held it while we were reading the
7561 debug info.
7562 (really_free_pendings): Free any pending macro table.
7563 * objfiles.h (struct objfile): New member: `macro_cache'.
7564 * objfiles.c (allocate_objfile): Set allocate and free functions
7565 for the macro cache's objstack.
7566 (free_objfile): Empty the macro cache's obstack.
7567 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
7568 set new allocate and free functions for it.
7569 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
7570 free functions for the macro cache's objstack. (Why is this
7571 function building its own objfile?)
7572 * symmisc.c (print_objfile_statistics): Print statistics on the
7573 macro bcache.
7574 * Makefile.in: Note that buildsym.o depends on macrotab.h.
7575
c899585b
RE
75762002-05-15 Richard Earnshaw <rearnsha@arm.com>
7577
7578 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
7579 (REGISTER_U_ADDR): Delete definition.
7580 (arm_register_u_addr): Delete declaration.
7581
a6cdd8c5
RE
75822002-05-15 Richard Earnshaw <rearnsha@arm.com>
7583
7584 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
7585 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
7586
c97dcfc7
AC
75872002-05-14 Andrew Cagney <ac131313@redhat.com>
7588
7589 * regcache.c (register_valid): Revise comments refering to "Not
7590 available" and "unavailable".
7591 * frame.c (frame_register_read): Ditto.
7592 * findvar.c (value_of_register): Ditto.
7593
93021b7d
AC
75942002-05-15 Andrew Cagney <cagney@redhat.com>
7595
7596 * Makefile.in (remote_sim_h): Replace remote-sim_h.
7597 (remote-sim.o): Update dependencies.
7598 (d10v-tdep.o): Specify dependencies.
7599 (sim_d10v_h): Define.
7600
a86bc61c
JB
76012002-05-14 Jim Blandy <jimb@redhat.com>
7602
7603 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
7604 * macrotab.c (macro_lookup_inclusion, find_definition,
7605 new_macro_table): Same.
7606
7607 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
7608 not `! strcmp ()'. This is a dubious improvement.
7609 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
7610
7611 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
7612 although it's not necessary, to avoid a warning.
7613
2fdde8f8
DJ
76142002-05-14 Daniel Jacobowitz <drow@mvista.com>
7615
7616 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
7617 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
7618 TYPE_INSTANCE_FLAGS.
7619 (struct main_type): New.
7620 (struct type): Move most members to struct main_type. Change
7621 cv_type and as_type to new type_chain member. Add instance_flags.
7622 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
7623 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
7624 (finish_cv_type): Remove prototype.
7625 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
7626 Set TYPE_CHAIN.
7627 (alloc_type_instance): New function.
7628 (smash_type): New function.
7629 (make_pointer_type, make_reference_type, make_function_type)
7630 (smash_to_member_type, smash_to_method_type): Call smash_type.
7631 (make_qualified_type): New function.
7632 (make_type_with_address_space): Call make_qualified_type.
7633 (make_cv_type): Likewise.
7634 (finish_cv_type): Remove unnecessary function.
7635 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
7636 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
7637 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
7638 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
7639 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
7640 * hpread.c (hpread_read_struct_type): Likewise.
7641 * stabsread.c (read_struct_type): Likewise.
7642
843fedf4
EZ
76432002-05-14 Elena Zannoni <ezannoni@redhat.com>
7644
7645 * configure.tgt: Add a catch all sh* target, for cases like
7646 sh[2,3,4]-elf and sh-hms.
7647
05a6c72c
KS
76482002-05-14 Keith Seitz <keiths@redhat.com>
7649
7650 * event-loop.c (create_file_handler): Don't do anything but
7651 update data when we are given a fd which we are already
7652 monitoring.
7653
5d085aaf
ML
76542002-05-14 Michal Ludvig <mludvig@suse.cz>
7655
7656 * dwarf2cfi.c (context_cpy): Copy registers correctly.
7657 (update_context): Use __func__ in warnings.
7658
9db8d71f
DJ
76592002-05-14 Daniel Jacobowitz <drow@mvista.com>
7660
7661 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
7662 and tcp_close to net_open and net_close.
7663 (net_open): Accept "udp:" and "tcp:" specifications. Connect
7664 using UDP if requested. Don't try to disable Nagle on UDP
7665 sockets.
7666 * remote.c (remote_serial_open): New function. Warn about UDP.
7667 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
7668
5dbc6baa
EZ
76692002-05-13 Elena Zannoni <ezannoni@redhat.com>
7670
7671 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
7672
cc3023f7
EZ
76732002-05-13 Elena Zannoni <ezannoni@redhat.com>
7674
7675 * configure.tgt: Remove sh-hms target.
7676 * MAINTAINERS: Don't list sh-hms as a separate target.
7677
ec2bcbe7
JB
76782002-05-13 Jim Blandy <jimb@redhat.com>
7679
7680 Add first preprocessor macro-expansion files.
7681 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7682 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7683 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7684 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7685 (COMMON_OBS): Add macrotab.o, macroexp.o.
7686 (macroexp.o, macrotab.o): New rules.
7687
6d531722
AC
76882002-05-13 Andrew Cagney <ac131313@redhat.com>
7689
7690 * config/m88k/tm-m88k.h: Update copyright.
7691 (m88k_target_write_pc): Declare
7692 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
7693 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
7694 (SHIFT_INST_REGS): Update definition.
7695 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
7696 using old definition of TARGET_WRITE_PC.
7697 * regcache.c (generic_target_write_pc): Delete code handling
7698 NNPC_REGNUM.
7699 * gdbarch.sh (NNPC_REGNUM): Delete.
7700 * gdbarch.h, gdbarch.c: Regenerate.
7701
3e3f2739
RE
77022002-05-13 Richard Earnshaw <rearnsha@arm.com>
7703
7704 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
7705 builtin reg number.
7706
0004e5a2
DJ
77072002-05-13 Daniel Jacobowitz <drow@mvista.com>
7708
7709 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
7710 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
7711 (gen_address_of, gen_struct_ref, gen_repeat): Use type
7712 access macros.
7713 * c-typeprint.c (cp_type_print_method_args): Likewise.
7714 (c_type_print_args): Likewise.
7715 * d10v-tdep.c (d10v_push_arguments): Likewise.
7716 (d10v_extract_return_value): Likewise.
7717 * expprint.c (print_subexp): Likewise.
7718 * gdbtypes.c (lookup_primitive_typename): Likewise.
7719 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
7720 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
7721 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
7722 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
7723 (TYPE_VECTOR): Likewise.
7724 * hpread.c (hpread_read_struct_type)
7725 (fix_static_member_physnames, fixup_class_method_type)
7726 (hpread_type_lookup): Likewise.
7727 * mdebugread.c (parse_symbol, parse_type): Likewise.
7728 * p-lang.c (is_pascal_string_type): Likewise.
7729 * valops.c (hand_function_call): Likewise.
7730 * x86-64-tdep.c (classify_argument): Likewise.
7731
7732 * hpread.c (hpread_read_function_type)
7733 (hpread_read_doc_function_type): Call replace_type.
7734 * dstread.c (create_new_type): Delete.
7735 (decode_dst_structure, process_dst_function): Call alloc_type.
7736 Use type access macros.
7737
dff95cc7
MK
77382002-05-12 Mark Kettenis <kettenis@gnu.org>
7739
7740 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
7741 the're not supported by the current architecture.
7742 (i387_fill_fxsave): Likewise.
7743
bbcd32ad
FF
77442002-05-12 Fred Fish <fnf@redhat.com>
7745
7746 * symfile.c (default_symfile_offsets): Arrange for uninitialized
7747 sect_index_xxx members to index the first slot in section_offsets
7748 if all of the section_offsets are zero.
7749
89cf4787
MK
77502002-05-12 Mark Kettenis <kettenis@gnu.org>
7751
7752 * configure.tgt (sparc-*openbsd): Remove entry accidentially
7753 checked in with last change.
7754
1f77ffc5
MK
77552002-05-12 Mark Kettenis <kettenis@gnu.org>
7756
7757 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
7758 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
7759 config.sub.
7760
89b8b4a9
DJ
77612002-05-12 Daniel Jacobowitz <drow@mvista.com>
7762
7763 * Makefile.in: Update dependencies.
7764
14a5e767
AC
77652002-05-11 Andrew Cagney <ac131313@redhat.com>
7766
7767 * language.c (local_hex_string_custom): Simplify. Do not depend
7768 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
7769
7770 * memattr.c (mem_info_command): Replace calls to
7771 longest_local_hex_string and longest_local_hex_string_custom.
7772 * buildsym.c (make_blockvector): Ditto.
7773 * solib.c (info_sharedlibrary_command): Ditto.
7774 * tracepoint.c (tracepoints_info): Ditto.
7775 * symtab.c (print_msymbol_info): Ditto.
7776
7777 * language.c (local_hex_string): Delete.
7778 (local_hex_string_custom): Delete.
7779 (longest_local_hex_string): Rename to local_hex_string.
7780 (longest_local_hex_string_custom): Rename to
7781 local_hex_string_custom.
7782 * language.h (local_hex_string): Change parameter type to LONGEST.
7783 (local_hex_string_custom): Ditto.
7784 (longest_local_hex_string): Delete declaration.
7785 (longest_local_hex_string_custom): Ditto.
7786
7787 * solib.c: Update copyright.
7788 * memattr.c: Update copyright.
7789
13d01224
AC
77902002-05-11 Andrew Cagney <ac131313@redhat.com>
7791
7792 * arch-utils.h (legacy_register_to_value): Declare.
7793 (legacy_value_to_register): Declare.
7794 (legacy_convert_register_p): Declare.
7795 * arch-utils.c (legacy_register_to_value): New function.
7796 (legacy_value_to_register): New function.
7797 (legacy_convert_register_p): New function.
7798
7799 * gdbarch.sh (REGISTER_TO_VALUE): Define.
7800 (VALUE_TO_REGISTER): Define.
7801 (CONVERT_REGISTER_P): Define.
7802 * gdbarch.h, gdbarch.c: Regenerate.
7803
7804 * valops.c (value_assign): Use CONVERT_REGISTER_P and
7805 VALUE_TO_REGISTER.
7806 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
7807 CONVERT_REGISTER_P.
7808
4a1970e4
DJ
78092005-05-11 Daniel Jacobowitz <drow@mvista.com>
7810 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7811
7812 * Makefile.in: Update dependencies for valops.c.
7813 * valops.c: Include "gdb_assert.h".
7814 (typecmp): Skip THIS parameter to methods.
7815 (find_method_list): Remove static_memfuncp argument,
7816 update callers. Check for stub methods.
7817 (find_value_oload_method_list): Don't set *static_memfuncp.
7818 (find_overload_match): Don't check for stub methods. Assert
7819 that methods are not stubbed. Handle static methods.
7820 (value_find_oload_method_list): Remove static_memfuncp argument.
7821 * gdbtypes.c (check_stub_method): Do not add THIS pointer
7822 to the argument list for static stub methods.
7823 * value.h (value_find_oload_method_list): Update prototype.
7824
b2e75d78
AC
78252002-05-11 Andrew Cagney <ac131313@redhat.com>
7826
7827 * arch-utils.h (generic_register_size): Declare.
7828 (generic_register_raw_size, generic_register_virtual_size): Delete
7829 declarations.
7830 * arch-utils.c (generic_register_raw_size): Delete.
7831 (generic_register_size): New function.
7832 (generic_register_virtual_size): Delete.
7833
7834 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
7835 default generic_register_size.
7836 * gdbarch.h, gdbarch.c: Re-generate.
7837
7838 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
7839 register_virtual_size.
7840 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
7841 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
7842
451fbdda
AC
78432002-05-11 Andrew Cagney <ac131313@redhat.com>
7844
7845 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
7846 * gdbarch.h, gdbarch.c: Regenerate.
7847 * gnu-v3-abi.c: Update copyright.
7848 (vtable_address_point_offset): Update.
7849 (gnuv3_rtti_type): Update.
7850 (gnuv3_baseclass_offset): Update.
7851 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
7852 (init_fetch_link_map_offsets): Update.
7853 * remote.c (get_remote_state): Update.
7854
6d2f5cea
DJ
78552002-05-11 Daniel Jacobowitz <drow@mvista.com>
7856
7857 * TODO: Remove value_headof/value_from_vtable_info comment.
7858 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
7859 * values.c (value_headof, value_from_vtable_info): Delete.
7860 * value.h (value_from_vtable_info): Delete prototype.
7861
d2324da4
AC
78622002-05-11 Andrew Cagney <ac131313@redhat.com>
7863
7864 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
7865 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
7866 $(gdb_regex_h).
7867 (gdb_assert_h): Define.
7868 (gdb_wait_h): Define.
7869 (gdb_regex_h): Define.
7870
5c717440
DJ
78712002-05-11 Daniel Jacobowitz <drow@mvista.com>
7872
7873 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
7874 * linespec.c (find_methods): Handle GCC 3.x template constructors.
7875
6c7861b3
JT
78762002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7877
7878 * nbsd-tdep.c: Fix comment.
7879
ea5bc2a6
JT
78802002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7881
7882 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
7883 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
7884 (nbsd-tdep.o): New dependency list.
7885 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
7886 nbsd-tdep.h.
7887 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
7888 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
7889 * nbsd-tdep.c: New file.
7890 * nbsd-tdep.h: New file.
7891 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
7892 nbsd-tdep.h.
7893 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
7894 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
7895 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
7896 * config/sh/nbsd.mt (TDEPFILES): Ditto.
7897
b28da865
JT
78982002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7899
7900 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
7901 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
7902 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
7903 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
7904 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
7905 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
7906
4b8ff1fa
JT
79072002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7908
7909 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
7910 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7911 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
7912 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
7913 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
7914 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
7915 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
7916
dfe6eb1f
JT
79172002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7918
7919 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
7920 fetch_elfcore_registers to...
7921 * i386nbsd-tdep.c: ...here.
7922 (i386nbsd_use_struct_convention): Rename to...
7923 (i386nbsd_aout_use_struct_convention): ...this.
7924 (i386nbsd_supply_reg): New function.
7925 (i386nbsd_fill_reg): New function.
7926 (fetch_core_registers): Use i386nbsd_supply_reg.
7927 (fetch_elfcore_registers): Likewise.
7928 (_initialize_i386nbsd_tdep): New function.
7929 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
7930 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7931 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
7932 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
7933 (i386nbsd_aout_use_struct_convention): ...this.
7934
20cb8cda
JT
79352002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7936
7937 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
7938 (store_inferior_registers): Use shnbsd_fill_reg.
7939 * shnbsd-tdep.c (sh_nbsd_supply_registers,
7940 sh_nbsd_supply_register): Collapse into...
7941 (shnbsd_supply_reg): ...this.
7942 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
7943 (shnbsd_fill_reg): ...this.
7944 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
7945 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
7946 (fetch_core_registers): Use shnbsd_supply_reg.
7947 (fetch_elfcore_registers): Use shnbsd_supply_reg.
7948 (sh_nbsd_core_fns): Rename to...
7949 (shnbsd_core_fns): ...this.
7950 (sh_nbsd_elfcore_fns): Rename to...
7951 (shnbsd_elfcore_fns): ...this.
7952 (sh_nbsd_init_abi): Rename to...
7953 (shnbsd_init_abi): ...this.
7954 (_initialize_sh_nbsd_tdep): Rename to...
7955 (_initialize_shnbsd_tdep): ...this.
7956 * shnbsd-tdep.h (sh_nbsd_supply_registers,
7957 sh_nbsd_supply_register, sh_nbsd_fill_registers,
7958 sh_nbsd_fill_register): Remove prototypes.
7959 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
7960
e750d25e
JT
79612002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7962
7963 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
7964 (i387-nat.o): Delete dependency list.
7965 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
7966 (x86-64-linux-nat.o): Likewise.
7967 * i387-nat.c: Delete file, moving contents to...
7968 * i387-tdep.c: ...here.
7969 * i387-nat.h: Rename...
7970 * i387-tdep.h: ...to this.
7971 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
7972 * i386-linux-nat.c: Likewise.
7973 * i386bsd-nat.c: Likewise.
7974 * i386gnu-nat.c: Likewise.
7975 * i386nbsd-nat.c: Likewise.
7976 * i386v4-nat.c: Likewise.
7977 * x86-64-linux-nat.c: Likewise.
7978 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
7979 * config/i386/go32.mh (NATDEPFILES): Likewise.
7980 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
7981 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
7982 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
7983 * config/i386/linux.mh (NATDEPFILES): Likewise.
7984 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
7985 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7986 * config/i386/obsd.mh (NATDEPFILES): Likewise.
7987 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
7988
1aee598a
JT
79892002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
7990
7991 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
7992 (alphanbsd-nat.o): Remove dependency list.
7993 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
7994 * alphanbsd-nat.c: Delete. Contents moved to...
7995 * alphanbsd-tdep.c: ...here.
7996 (_initialize_alphanbsd_tdep): Register core functions.
7997 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
7998
12bcb0fe
JT
79992002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
8000
8001 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
8002 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
8003 (alphanbsd-nat.o): Likewise.
8004 (alphabsd-tdep.o): New dependency list.
8005 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
8006 (fill_gregset): Use alphabsd_fill_reg.
8007 (supply_fpregset): Use alphabsd_supply_fpreg.
8008 (fill_fpregset): Use alphabsd_fill_fpreg.
8009 (fetch_inferior_registers): Use struct reg and struct fpreg
8010 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
8011 and alphabsd_supply_fpreg.
8012 (store_inferior_registers): Use struct reg and struct fpreg
8013 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
8014 and alphabsd_fill_fpreg.
8015 * alphabsd-tdep.c: New file.
8016 * alphabsd-tdep.h: New file.
8017 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
8018 (fetch_elfcore_registers): Use alphabsd_supply_reg and
8019 alphabsd_supply_fpreg.
8020 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
8021 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
8022
361d1df0
EC
80232002-05-11 Eric Christopher <echristo@redhat.com>
8024
8025 * mips-tdep.c (mips_double_register_type): Fix thinko.
8026 (mips_single_register_type): Ditto.
8027 * MAINTAINERS: Add self.
8028
92dd7cee
MK
80292002-05-11 Mark Kettenis <kettenis@gnu.org>
8030
8031 * i387-nat.c (i387_supply_register, i387_fill_fsave,
8032 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
8033 right thing on architectures with different endianness and/or
8034 integer sizes.
8035
e27da16d
JT
80362002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
8037
8038 From Christian Limpach <chris@Pin.LU>
8039 * configure.in: Change sed expression which comments out
8040 NATDEPFILES to also comment out continuation lines.
8041 * configure: Regenerate.
8042
ddde02bd
EZ
80432002-05-10 Elena Zannoni <ezannoni@redhat.com>
8044
8045 * sh-tdep.c: Clean up code erroneously reintroduced by previous
8046 big patch.
8047
1c922164
EZ
80482002-05-10 Elena Zannoni <ezannoni@redhat.com>
8049
8050 * sh-tdep.c: Include correct file.
8051
283150cd
EZ
80522002-05-10 Elena Zannoni <ezannoni@redhat.com>
8053
8054 New support for sh64-elf (sh5) target.
8055
8056 * configure.tgt: For sh64-elf target, default to sh-elf.
8057
8058 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
8059 (struct gdbarch_tdep): Add new fields for new registers and ABI
8060 info.
361d1df0 8061
283150cd
EZ
8062 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
8063 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
8064 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
8065 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
8066 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
8067 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
8068 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
8069 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
8070 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
8071 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
8072 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
8073 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
8074 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
8075 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
8076 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
8077 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
8078 sh64_get_gdb_regnum, sh64_media_reg_base_num,
8079 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
8080 sign_extend, sh64_nofp_frame_init_saved_regs,
8081 sh64_init_extra_frame_info, sh64_get_saved_register,
8082 sh64_extract_struct_value_address, sh64_pop_frame,
8083 sh64_push_arguments, sh64_extract_return_value,
8084 sh64_store_return_value, sh64_show_media_regs,
8085 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
8086 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
8087 sh_sh64_register_virtual_type,
8088 sh_sh64_register_convert_to_virtual,
8089 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
8090 sh64_register_read, sh64_pseudo_register_write,
8091 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
8092 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
8093 sh64_do_pseudo_register, sh_compact_do_registers_info,
8094 sh64_do_registers_info, sh_gdbarch_init): New functions.
8095
3117ed25
EZ
80962002-05-10 Elena Zannoni <ezannoni@redhat.com>
8097
8098 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
8099
2654e6d4
DJ
81002002-05-10 Daniel Jacobowitz <drow@mvista.com>
8101
8102 * linespec.c (decode_line_1): Check for a double quote after
8103 a filename correctly.
8104
9ab3e532
JB
81052002-05-10 Jim Blandy <jimb@redhat.com>
8106
8107 Properly track the size of the current objfile's .debug_line section.
8108 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
8109 (DWARF_LINE_SIZE): New macro.
8110 (dwarf2_build_psymtabs_hard): Record the line section's size in
8111 the partial symbol table.
8112 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
8113 symbol table.
8114
126fa72d
PS
81152002-05-10 Petr Sorfa <petrs@caldera.com>
8116
8117 * ia64-tdep.c: Handle breakpoints on L instruction type
8118 in MLX instruction bundle by moving the breakpoint to
8119 the third slot (X instruction type) as L holds only data.
8120
1f077a3e
KB
81212002-05-10 Kevin Buettner <kevinb@redhat.com>
8122
8123 * dbxread.c (discarding_local_symbols_complaint): New complaint.
8124 (process_one_symbol): Complain about discarding local symbols
8125 due to a misplaced N_LBRAC entry.
8126
8120c9d5 81272002-05-09 Elena Zannoni <ezannoni@redhat.com>
361d1df0
EC
8128
8129 From Daniel Berlin <dan@cgsoftware.com>
8120c9d5
EZ
8130 * linespec.c (find_toplevel_char): '<' and '>' also increase and
8131 decrease the depth we are at, in the case of templates.
361d1df0 8132
67b2c998
DJ
81332002-05-09 Daniel Jacobowitz <drow@mvista.com>
8134
8135 * mips-tdep.c (mips_float_register_type): New function.
8136 (mips_double_register_type): New function.
8137 (mips_print_register): Use them.
8138 (do_fp_register_row): Likewise.
8139
fd326606
DJ
81402002-05-09 Daniel Jacobowitz <drow@mvista.com>
8141
6609d9af 8142 * signals/signals.c (signals): Remove conditional compilation around
fd326606 8143 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
6609d9af 8144 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
fd326606 8145
bef35864
MS
81462002-05-09 Michael Snyder <msnyder@redhat.com>
8147
8148 * remote-rdp.c (remote_rdp_can_run): Remove.
8149
c55a3f73
TT
81502002-05-09 Tom Tromey <tromey@redhat.com>
8151
8152 * jv-valprint.c (java_val_print): Handle `char' as a special case
8153 of TYPE_CODE_INT.
8154
b8d5e71d
MS
81552002-05-09 Michael Snyder <msnyder@redhat.com>
8156
8157 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
8158 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
361d1df0 8159 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
b8d5e71d 8160 str r(0123),[sp,#nn].
361d1df0 8161 (arm_skip_prologue): Ditto. Also make disassembly
b8d5e71d
MS
8162 order-independent by placing it in a loop.
8163
e2cd42dd
MS
81642002-05-06 Michael Snyder <msnyder@redhat.com>
8165
8166 * stabsread.c (read_type): Add recognition for new attribute:
8167 "@V;" means that an array type is actually a vector.
8168 This is analogous to the vector flag that's been added to dwarf2.
8169
3ce1502b
MK
81702002-05-09 Mark Kettenis <kettenis@gnu.org>
8171
8172 * i386-tdep.h (i386_abi): New enum.
8173 (struct gdbarch_tdep): Replace os_ident member with abi.
8174 (i386_gdbarch_register_os_abi): New prototype.
8175 * i386-tdep.c (i386_abi_names): New array.
8176 (process_note_abi_tag_sections): Removed.
8177 (process_note_sections): New function.
8178 (i386_elf_abi_from_note, i386_elf_abi): New functions.
8179 (struct i386_abi_handler): New struct.
8180 (i386_abi_handler_list): New variable.
8181 (i386_gdbarch_register_os_abi): New function.
8182 (i386_gdbarch_init): Adapt for the changes given above.
8183
084c156a
DJ
81842002-05-08 Daniel Jacobowitz <drow@mvista.com>
8185
8186 * gregset.h: Say "GNU/Linux".
8187
6599f021
EZ
81882002-05-08 Elena Zannoni <ezannoni@redhat.com>
8189
8190 * gdbtypes.c : Add new builtin type for 64 bit vectors.
8191 (build_gdbtypes): Build builtin_type_v2_float.
8192 (_initialize_gdbtypes): Register new builtin type.
8193
40af4b0c
AC
81942002-05-08 Andrew Cagney <ac131313@redhat.com>
8195
8196 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
8197 (clear_gdbarch_swap): New function.
8198 (initialize_non_multiarch): Call.
8199 (gdbarch_update_p): Before calling init(), swap out and clear the
8200 existing architecture.
8201 * gdbarch.c: Regenerate.
8202
4fe84f46
JT
82032002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8204
8205 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
8206 alphanbsd-tdep.c.
8207
4015edd1
JT
82082002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8209
8210 * sh-nbsd-nat.c: Rename to...
8211 * shnbsd-nat.c: ...this.
8212 * sh-nbsd-tdep.c: Rename to...
8213 * shnbsd-tdep.c: ...this.
8214 * sh-nbsd-tdep.h: Rename to...
8215 * shnbsd-tdep.h: ...this.
8216 * config/sh/nbsd.mh: Use shnbsd-nat.o.
8217 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
8218
0e2bd219
RE
82192002-05-08 Richard Earnshaw <rearnsha@arm.com>
8220
8221 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
8222 concatenation for command help messages.
8223
13a38d45
JT
82242002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8225
8226 * NEWS: Note new sh*-*-netbsdelf* configuration.
8227 * configure.host: Set gdb_host_cpu to sh for all sh*.
8228 (sh*-*-netbsdelf*): New host.
8229 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
8230 (sh*-*-netbsdelf*): New target.
8231 * sh-nbsd-nat.c: New file.
8232 * sh-nbsd-tdep.c: New file.
8233 * sh-nbsd-tdep.h: New file.
8234 * config/sh/nbsd.mh: New file.
8235 * config/sh/nbsd.mt: New file.
8236 * config/sh/nm-nbsd.h: New file.
8237 * config/sh/tm-nbsd.h: New file.
8238
d658f924
JT
82392002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
8240
8241 * sh-tdep.c (sh_osabi_names): Declare.
8242 (process_note_abi_tag_sections): New function.
8243 (get_elfosabi): Ditto.
8244 (sh_gdbarch_register_os_abi): Ditto.
8245 (sh_dump_tdep): Ditto.
8246 _initialize_sh_tdep): Use gdbarch_register to register
8247 sh_gdbarch_init and sh_dump_tdep.
8248 * config/sh/tm-sh.h (sh_osabi): Declare.
8249 (gdbarch_tdep): Add sh_osabi and osabi_name members.
8250
848cfffb
AC
82512002-05-07 Andrew Cagney <ac131313@redhat.com>
8252
8253 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
8254 (thumb_scan_prologue): Ditto.
8255 (arm_find_callers_reg): Ditto.
8256 (arm_frame_chain): Ditto.
8257 (arm_init_extra_frame_info): Ditto.
8258 (arm_frame_saved_pc): Ditto.
8259 (arm_pop_frame): Ditto.
8260 (arm_push_return_address): New function.
8261 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
8262 call_dummy_location, call_dummy_breakpoint_offset_p,
8263 call_dummy_breakpoint_offset, call_dummy_p,
8264 call_dummy_stack_adjust_p, call_dummy_words,
8265 sizeof_call_dummy_words, call_dummy_start_offset,
8266 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
8267 call_dummy_address, push_return_address and push_dummy_frame for
8268 generic dummy frames.
8269
e7d717c0
JT
82702002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
8271
8272 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
8273 size computation for alloca.
8274 (sh_fp_frame_init_saved_regs): Likewise.
8275
7bbcf283
RE
82762002-05-07 Richard Earnshaw <rearnsha@arm.com>
8277
8278 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
8279 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
361d1df0 8280 * arm-tdep.c (arm_store_return_value): Use them.
7bbcf283
RE
8281 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
8282 * remote-rdp.c (remote_rdp_fetch_register): Use
8283 ARM_MAX_REGISTER_RAW_SIZE.
8284 (remote_rdp_store_register): Likewise.
8285
4657573b
ML
82862002-05-07 Michal Ludvig <mludvig@suse.cz>
8287
361d1df0 8288 * dwarf2cfi.c: Code cleanup, removed unused variables,
4657573b
ML
8289 added default labels to switch {} statements.
8290 * x86-64-tdep.c: Ditto.
8291 * x86-64-linux-nat.c: Ditto.
8292
010f3b2f
JT
82932002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
8294
8295 * solib.h: Protect against multiple inclusion.
8296
debd256d
JB
82972002-05-06 Jim Blandy <jimb@redhat.com>
8298
9ab3e532
JB
8299 Add first preprocessor macro-expansion files.
8300 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
8301 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
8302 (splay_tree_h, macroexp_h, macrotab_h): New variable.
8303 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
8304 (COMMON_OBS): Add macrotab.o, macroexp.o.
8305 (macroexp.o, macrotab.o): New rules.
8306
debd256d
JB
8307 Separate the job of reading the line number info statement program
8308 header (...expialidocious) out into its own function.
8309 * dwarf2read.c (struct line_head, struct filenames, struct
8310 directories): Replace with...
8311 (struct line_header): New structure, containing the full
8312 contents of the statement program header, including the
8313 include directory and file name tables.
8314 (read_file_scope): If we have line number info, instead of just
8315 calling dwarf_decode_lines to do all the work, call
8316 dwarf_decode_line_header first to get a `struct line_header'
8317 containing the data in the statement program header, and then
8318 pass that to dwarf_decode_lines, which will pick up where that
8319 left off. Be sure to clean up the `struct line_header' object.
8320 (dwarf_decode_line_header, free_line_header, add_include_dir,
8321 add_file_name): New functions.
8322 (dwarf_decode_lines): Move all the code to read the statement
8323 program header into dwarf_decode_line_header. Take the line
8324 header it built as the first argument, instead of the offset to
8325 the compilation unit's line number info. Use the new `struct
8326 line_header' type instead of the old structures. No need to do
8327 cleanups here now, since we don't allocate anything.
8328 (dwarf2_statement_list_fits_in_line_number_section,
8329 dwarf2_line_header_too_long): New complaints.
8330
ac3aafc7
EZ
83312002-05-06 Elena Zannoni <ezannoni@redhat.com>
8332
8333 * gdbtypes.c (init_vector_type): New function.
8334 (build_builtin_type_vec128): Simplify the representation of SIMD
8335 registers.
8336 (build_gdbtypes): Initialize new builtin vector types.
8337 (_initialize_gdbtypes): Register new vector types with gdbarch.
8338 (builtin_type_v4_float, builtin_type_v4_int32,
8339 builtin_type_v8_int16, builtin_type_v16_int8,
8340 builtin_type_v2_int32, builtin_type_v4_int16,
8341 builtin_type_v8_int8): New (renamed) SIMD types.
8342
13e49980
MK
83432002-05-06 Mark Kettenis <kettenis@gnu.org>
8344
8345 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
8346 (i387_fill_fxsave): Likewise.
8347
997b20b8
AO
83482002-05-05 Alexandre Oliva <aoliva@redhat.com>
8349
8350 * alpha-tdep.c (alpha_extract_return_value): Don't use
8351 non-constant array size in prototype.
8352
535c96ce
AC
83532002-05-04 Andrew Cagney <ac131313@redhat.com>
8354
8355 From Brian Taylor <briant at model dot com>:
8356 * ui-out.c (ui_out_field_core_addr): Use the function
8357 longest_local_hex_string_custom'to format addresses > 32 bits
8358 wide.
8359
8360 * ui-out.c (ui_out_field_core_addr): Update comment.
8361
bedfa57b
AC
83622002-05-04 Andrew Cagney <ac131313@redhat.com>
8363
8364 * stack.c (select_and_print_frame): Make static. Delete the
8365 parameter `level'.
8366 (func_command): Update call.
8367 (select_frame_command): Delete code computing the frame level.
8368 * frame.h (select_and_print_frame): Delete declaration.
8369
f621c63e
AC
83702002-05-04 Andrew Cagney <ac131313@redhat.com>
8371
8372 * sparc-tdep.c (sparc_get_saved_register): Comment why
8373 get_prev_frame call is safe.
8374
0f7d239c
AC
83752002-05-04 Andrew Cagney <ac131313@redhat.com>
8376
8377 * frame.h (select_frame): Delete level parameter.
8378 * stack.c (select_frame): Update. Use frame_relative_level to
8379 obtain the frame's level.
8380 (select_and_print_frame): Update call.
8381 (select_frame_command): Ditto.
8382 (up_silently_base): Ditto.
8383 (down_silently_base): Ditto.
8384 * ocd.c (ocd_start_remote): Ditto.
8385 * remote-rdp.c (remote_rdp_open): Ditto.
8386 * remote-mips.c (mips_initialize): Ditto.
8387 (common_open): Ditto.
8388 * remote-e7000.c (e7000_start_remote): Ditto.
8389 * m3-nat.c (select_thread): Ditto.
8390 * hppa-tdep.c (child_get_current_exception_event): Ditto.
8391 (child_get_current_exception_event): Ditto.
8392 * varobj.c (varobj_create): Ditto.
8393 (varobj_update): Ditto.
8394 (c_value_of_root): Ditto.
8395 * tracepoint.c (finish_tfind_command): Ditto.
8396 * corelow.c (core_open): Ditto.
8397 * arch-utils.c (generic_prepare_to_proceed): Ditto.
8398 * thread.c (info_threads_command): Ditto.
8399 (switch_to_thread): Ditto.
8400 * infrun.c (normal_stop): Ditto.
8401 (restore_selected_frame): Ditto.
8402 (restore_inferior_status): Ditto.
8403 * breakpoint.c (insert_breakpoints): Ditto.
8404 (watchpoint_check): Ditto.
8405 (bpstat_stop_status): Ditto.
8406 (do_enable_breakpoint): Ditto.
8407 * blockframe.c (flush_cached_frames): Ditto.
8408 (reinit_frame_cache): Ditto.
8409
71d6c7b1
AC
84102002-05-04 Andrew Cagney <ac131313@redhat.com>
8411
8412 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
8413 maintainer.
8414
cda6c68a
JB
84152002-05-04 Jim Blandy <jimb@redhat.com>
8416
8417 * gdbtypes.c (replace_type): Doc fix.
8418
5c1c87f0
AC
84192002-05-04 Andrew Cagney <ac131313@redhat.com>
8420
8421 * valprint.c (strcat_longest): Delete commented out function.
8422 Update copyright.
8423
cd9bfe15
AC
84242002-05-04 Andrew Cagney <ac131313@redhat.com>
8425
8426 * MAINTAINERS: Mark a29k as deleted.
8427 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
8428 Move new configurations to the top.
8429 * configure.tgt: Remove a29k.
8430 * config/a29k/tm-vx29k.h: Delete.
8431 * config/a29k/vx29k.mt: Delete.
8432 * config/a29k/tm-a29k.h: Delete.
8433 * config/a29k/a29k-udi.mt: Delete.
8434 * config/a29k/a29k.mt: Delete.
8435 * a29k-tdep.c: Delete.
8436 * remote-udi.c: Delete.
8437 * remote-mm.c: Delete.
8438 * remote-eb.c: Delete.
8439 * remote-adapt.c: Delete.
8440 * Makefile.in: Remove obsolete code.
cd9bfe15
AC
8441 * config/s390/s390x.mt: Ditto.
8442 * config/s390/s390.mt: Ditto.
8443 * config/sparc/sparclynx.mh: Ditto.
8444 * config/sparc/linux.mh: Ditto.
8445 * config/pa/hppaosf.mh: Ditto.
8446 * config/pa/hppabsd.mh: Ditto.
8447 * config/ns32k/nbsd.mt: Ditto.
8448 * config/mips/vr5000.mt: Ditto.
8449 * config/m68k/sun3os4.mh: Ditto.
8450 * config/m68k/nbsd.mt: Ditto.
8451 * config/m68k/m68klynx.mh: Ditto.
8452 * config/m32r/m32r.mt: Ditto.
8453 * config/i386/x86-64linux.mt: Ditto.
8454 * config/i386/nbsdelf.mt: Ditto.
8455 * config/i386/nbsd.mt: Ditto.
8456 * config/i386/i386lynx.mh: Ditto.
8457
bf0c5130
AC
84582002-05-04 Andrew Cagney <ac131313@redhat.com>
8459
8460 * target.c (debug_print_register): New function. Handle oversize
8461 registers.
8462 (debug_to_fetch_registers): Call.
8463 (debug_to_store_registers): Call.
8464
2ae1c2d2
JB
84652002-05-03 Jim Blandy <jimb@redhat.com>
8466
13a393b0
JB
8467 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
8468 (read_type): Doc fix.
8469 * gdbtypes.c (replace_type): Doc fix.
8470
2ae1c2d2
JB
8471 * stabsread.c (multiply_defined_struct): New complaint.
8472 (read_struct_type): If the type we were passed isn't empty, or
8473 incomplete, don't read the new struct type into it; complain,
8474 and return the original type unchanged. Take a new `type_code'
8475 argument, which is the type code for the new type.
8476 (read_type): Rather than storing the type's type code here, pass
8477 it as an argument to read_struct_type, and let that take care of
8478 storing it. That way, we don't overwrite the original type code,
8479 so read_struct_type can use it to decide whether we're overwriting
8480 something we shouldn't.
8481 (complain_about_struct_wipeout): New function.
8482
8de9bdc4
AC
84832002-05-03 Andrew Cagney <ac131313@redhat.com>
8484
8485 * gdbarch.sh: Assert that gdbarch is non-NULL.
8486 * gdbarch.c: Regenerate.
8487
f773fdbb
JM
84882002-05-03 Jason Merrill <jason@redhat.com>
8489
8490 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
8491 and return NULL.
8492
0e04a514
ML
84932002-05-03 Michal Ludvig <mludvig@suse.cz>
8494
8495 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
8496 (x86_64_dwarf2gdb_regno_map_length),
8497 (x86_64_dwarf2_reg_to_regnum): Added.
8498 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
8499 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
8500 (_initialize_x86_64_tdep): Synced with the change above.
8501 (x86_64_skip_prologue): Reformulated message.
8502
065432a8
PM
85032002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
8504
8505 * f-exp.y: Also use new prev_lexptr variable
8506 to improve error reporting. Based on Michael Snyder
8507 2002-04-24 dated patch to c-exp.y.
8508 * jv-exp.y: Likewise.
8509 * m2-exp.y: Likewise.
8510
a3162708
EZ
85112002-05-02 Elena Zannoni <ezannoni@redhat.com>
8512
8513 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
8514 we are dealing with vectors.
8515
03620c38
PM
85162002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8517
8518 * config/m68k/tm-nbsd.h: Obvious fix,
8519 correct machine name.
8520
6604db2e
PM
85212002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8522
8523 * p-typeprint.c (pascal_type_print_base): Add support
8524 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
8525
0906b739
PM
85262002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8527
8528 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
8529 for fondamental pascal 'char' type.
8530
e2625b33
PM
85312002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
8532
8533 * p-lang.h (is_pascal_string_type): Declaration changed,
8534 new sixth argument of type char ** added.
361d1df0 8535 * p-lang.c (is_pascal_string_type): Implementation
e2625b33
PM
8536 changed. Args length_pos, length_size, string_pos, char_size
8537 can now be NULL. New argument arrayname set to the field
8538 name of the char array. Return value set to char array
8539 field index plus one.
361d1df0 8540 * p-valprint.c (pascal_val_print): Adapt to new declaration of
e2625b33
PM
8541 is_pascal_string_type function.
8542
cf17c188
AC
85432002-05-02 Andrew Cagney <cagney@redhat.com>
8544
8545 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
8546 <cagney@redhat.com> change.
8547 * gdbarch.c: Regenerate.
8548
52bca491
AC
85492002-05-02 Andrew Cagney <cagney@redhat.com>
8550
8551 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
8552 before probing for a new one. Detect errorenous gdbarch_init
8553 functions.
8554 * gdbarch.c: Regenerate.
8555
d5e72505
AC
85562002-05-01 Andrew Cagney <cagney@redhat.com>
8557
8558 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
8559 * config/mcore/tm-mcore.h: Ditto. Update copyright.
8560 * config/v850/tm-v850.h: Ditto. Update copyright.
8561
af566d9f
AC
85622002-04-30 Andrew Cagney <ac131313@redhat.com>
8563
8564 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
8565 current_gdbarch.
8566
880d85fa
MS
85672002-04-30 Michael Snyder <msnyder@redhat.com>
8568
94c30b78
MS
8569 * arm-tdep.c: Whitespace clean-ups.
8570 (arm_skip_prologue): Fix thinko; two lines
880d85fa
MS
8571 should have been removed as part of 4/24 change.
8572
6f5987a6
KB
85732002-04-30 Kevin Buettner <kevinb@redhat.com>
8574
8575 * rs6000-tdep.c: Added comment describing how fpscr register
8576 numbers were chosen.
8577
1a113c93
MS
85782002-04-30 Michael Snyder <msnyder@redhat.com>
8579
8580 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
8581
9a6f53fe
EZ
85822002-04-29 Elena Zannoni <ezannoni@redhat.com>
8583
8584 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
8585 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
8586 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
8587
11ed25ac
KB
85882002-04-29 Kevin Buettner <kevinb@redhat.com>
8589
8590 From Louis Hamilton <hamilton@redhat.com>:
8591 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
8592 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
8593 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
8594 not bfd-private xcoff data, to determine wordsize.
8595 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
8596
ae232405
AC
85972002-04-29 Andrew Cagney <ac131313@redhat.com>
8598
8599 GDB 5.2 released from 5.2 branch.
8600
91fd20f7
ML
86012002-04-29 Michal Ludvig <mludvig@suse.cz>
8602
8603 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
8604 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
8605 (x86_64_register_info_table): Added comments with register numbers.
361d1df0 8606
2dc5091b
EZ
86072002-04-29 Elena Zannoni <ezannoni@redhat.com>
8608
8609 * rs6000-tdep.c (rs6000_extract_return_value,
8610 rs6000_store_return_value): Handle returning vectors.
8611 (rs6000_gdbarch_init): Use
8612 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
8613 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
8614 New function.
8615 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
8616 vectors.
8617 (ppc_sysv_abi_push_arguments): Handle vector parameters.
8618 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
361d1df0 8619
2b9848d8
PM
86202002-04-24 Pierre Muller <ics.u-strasbg.fr>
8621
8622 * hpread.c (hpread_psymtab_to_symtab_1,
aacb1f0a 8623 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
2b9848d8
PM
8624 with fprintf_unfiltered (gdb_stderr,...).
8625
f8d17dc5
PM
86262002-04-24 Pierre Muller <ics.u-strasbg.fr>
8627
8628 * remote-array.c (printf_monitor, write_monitor,
361d1df0 8629 array_insert_breakpoint, array_remove_breakpoint ):
f8d17dc5
PM
8630 Replace fprintf (stderr,...
8631 with fprintf_unfiltered (gdb_stderr,....
8632 * remote-es.c: Likewise.
8633 * remote-os9k.c: Likewise.
8634 * remote-st.c: Likewise.
8635
2f2f1ad1
AS
86362002-04-28 Andreas Schwab <schwab@suse.de>
8637
8638 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
8639 linux-proc.o and gcore.o.
8640
b6779aa2
AC
86412002-04-26 Michal Ludvig <mludvig@suse.cz>
8642
8643 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
8644 code without frame pointers.
8645
7e57f5f4
AC
86462002-04-26 Andrew Cagney <ac131313@redhat.com>
8647
8648 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
8649 ON_STACK is needed.
8650
2ceb85d0
BE
86512002-04-26 Ben Elliston <bje@redhat.com>
8652
8653 * target.c (do_xfer_memory): Correct reference to the new option
8654 "trust-readonly-sections".
8655
f5f8a009
EZ
86562002-04-26 Elena Zannoni <ezannoni@redhat.com>
8657
8658 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
8659 * gdbtypes.c (recursive_dump_type): Output the vector flag.
8660 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
8661 vectors.
8662 (read_array_type): Record the fact that this array type is really a
8663 vector (i.e. are passed in by value).
8664
5868c862
JT
86652002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
8666
8667 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
8668 * alpha-tdep.c (alpha_sigcontext_addr): New function.
8669 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
8670 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
8671 * alpha-linux-tdep.c: Include frame.h.
8672 (alpha_linux_sigcontext_addr): New function.
8673 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
8674 alpha_linux_sigcontext_addr.
8675 * alpha-osf1-tdep.c: Include gdbcore.h.
8676 (alpha_osf1_sigcontext_addr): New function.
8677 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
8678 alpha_osf1_sigcontext_addr.
8679 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
8680 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
8681
bfb01f37
AC
86822002-04-26 Andrew Cagney <ac131313@redhat.com>
8683
361d1df0 8684 * stack.c (selected_frame_level):
bfb01f37
AC
8685 (select_frame): Do not set selected_frame_level.
8686 * frame.h (selected_frame_level): Delete declaration.
8687
15813d3f
AC
86882002-04-26 Andrew Cagney <ac131313@redhat.com>
8689
8690 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
8691 convert_from_func_ptr-addr when AIX / PowerOpen.
8692
6096c27a
AC
86932002-04-25 Andrew Cagney <ac131313@redhat.com>
8694
8695 * valops.c (hand_function_call): Call
8696 generic_save_call_dummy_addr.
8697 * frame.h (generic_save_call_dummy_addr): Declare.
8698 * blockframe.c (struct dummy_frame): Add fields call_lo and
8699 call_hi.
8700 (generic_find_dummy_frame): Check for PC in range call_lo to
8701 call_hi instead of entry_point_address.
8702 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
8703 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
8704 (generic_save_call_dummy_addr): New function.
8705
f510d44e
DM
87062002-04-24 David S. Miller <davem@redhat.com>
8707
8708 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
8709 sparc_skip_prologue.
8710 (sparc_skip_prologue): Kill frameless_p arg, and use line number
8711 information to find prologue when possible.
8712 (sparc_prologue_frameless_p): Call examine_prologue directly.
8713 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
8714 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
8715 second argument.
8716 (SKIP_PROLOGUE): Likewise.
8717
15d72a92
JT
87182002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8719
8720 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
8721 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
8722 indicate that the condition it was testing is always true.
8723 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
8724 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8725 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8726
accc6d1f
JT
87272002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8728
8729 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
8730 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
8731 tdep->jb_pc and tdep->jb_elt_size.
8732 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
8733 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
8734 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
8735 * alpha-nat.c (get_longjmp_target): Remove.
8736 (JB_ELEMENT_SIZE): Ditto.
8737 (JB_PC): Ditto.
8738 * alpha-tdep.c (alpha_get_longjmp_target): New function.
8739 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
8740 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
8741 to alpha_get_longjmp_target.
8742 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
8743 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
8744 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
8745
1bfdc549
AC
87462002-04-25 Andrew Cagney <ac131313@redhat.com>
8747
8748 * README: Update to GDB 5.2.
8749
1bd316f0
AC
87502002-04-25 Andrew Cagney <ac131313@redhat.com>
8751
8752 * gdbarch.sh (LC_ALL): Set to `c'.
8753
2e5ff58c
TR
87542002-04-25 Theodore A. Roth <troth@verinet.com>
8755
8756 * avr-tdep.c: Ran through gdb_indent.sh.
8757
e33ce519
TR
87582002-04-25 Theodore A. Roth <troth@verinet.com>
8759
8760 * MAINTAINERS: Add myself as AVR maintainer.
8761 * NEWS: Note new target avr.
8762
8818c391
TR
87632002-04-25 Theodore A. Roth <troth@verinet.com>
8764
8765 * Makefile.in: Add support for AVR target.
8766 * configure.tgt: Add support for AVR target.
8767 * avr-tdep.c: New file
8768 * config/avr/avr.mt: New file.
8769
79509c2d
TR
87702002-04-25 Theodore A. Roth <troth@verinet.com>
8771
8772 * MAINTAINERS: Add myself to write-after-approval.
8773
dac8068e
PM
87742002-04-24 Pierre Muller <ics.u-strasbg.fr>
8775
8776 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
8777 with fprintf_unfiltered (gdb_stderr,....
8778
25bf3106
PM
87792002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8780
8781 Fix PR gdb/508.
8782 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
8783
24467a86
PM
87842002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
8785
8786 * p-exp.y: Also use new prev_lexptr variable
8787 to improve error reporting. Based on Michael Snyder
8788 2002-04-24 dated patch to c-exp.y.
8789
95b80706
JT
87902002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8791
8792 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
8793 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
8794 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
8795 to 0.
8796 * config/alpha/tm-alpha.h: Remove forward decls of struct type
8797 and struct value.
8798 (FUNCTION_START_OFFSET): Remove.
8799 (BREAKPOINT): Ditto.
8800
e90cc612
JT
88012002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
8802
8803 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
8804 * NEWS: Ditto.
8805
6c72f9f9
JT
88062002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8807
8808 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
8809 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
8810 alpha_linux_pc_in_sigtramp.
8811 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
8812 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
8813 alpha_osf1_pc_in_sigtramp.
8814 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
8815 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
8816 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8817 alphafbsd_pc_in_sigtramp.
8818 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
8819 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8820 alphanbsd_pc_in_sigtramp.
8821 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
8822 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
8823
5e4f3379
JT
88242002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8825
8826 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
8827
da8ca43d
JT
88282002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8829
8830 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
8831 alphanbsd-tdep.c.
8832 (alphanbsd-nat.o): New dependency list.
8833 (alphanbsd-tdep.o): Ditto.
8834 * NEWS: Note new native NetBSD/alpha configuration.
8835 * alphanbsd-nat.c: New file.
8836 * alphanbsd-tdep.c: Ditto.
8837 * configure.host (alpha*-*-netbsd*): New host.
8838 * configure.tgt (alpha*-*-netbsd*): New target.
8839 * config/alpha/nbsd.mh: New file.
8840 * config/alpha/nbsd.mt: Ditto.
8841 * config/alpha/nm-nbsd.h: Ditto.
8842 * config/alpha/tm-nbsd.h: Ditto.
8843
36a6271d
JT
88442002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8845
8846 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
8847 (alpha-osf1-tdep.o): New dependency list.
8848 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
8849 and skip_sigtramp_frame members.
8850 * alpha-linux-tdep.c: Include gdbcore.h.
8851 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
8852 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
8853 * alpha-osf1-tdep.c: New file.
8854 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
8855 alpha-osf1-dep.c.
8856 (alpha_frame_past_sigtramp_frame): New function.
8857 (alpha_dynamic_sigtramp_offset): Ditto.
8858 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
8859 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
8860 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
8861 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
8862 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
8863 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
8864 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
8865 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
8866 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
8867 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
8868 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
8869 to find_solib_trampoline_target.
8870 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
8871 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
8872 (SKIP_TRAMPOLINE_CODE): Remove.
8873 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8874 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8875 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8876 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8877 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
8878 (PROC_SIGTRAMP_MAGIC): Ditto.
8879 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8880 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8881 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8882 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8883 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8884
2f4bc57b
JT
88852002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
8886
8887 * NEWS: Note that Alpha targets are now multi-arch.
8888
665132f9
MS
88892002-04-24 Michael Snyder <msnyder@redhat.com>
8890
8891 * parser-defs.h (prev_lexptr): New external variable.
8892 * parse.c (parse_exp_1): Set prev_lexptr to null before
8893 calling the language-specific parser.
8894 * c-exp.y (yylex): Set prev_lexptr to start of current token.
8895 (yyerror): Use prev_lexptr in error reporting.
8896
32872fa7
DJ
88972002-04-24 Daniel Jacobowitz <drow@mvista.com>
8898
8899 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
8900 * gregset.h: If FILL_FPXREGSET is defined, provide
8901 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
8902 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
8903 is defined, call fill_fpxregset.
8904
57e76fac
MS
89052002-04-24 Roland McGrath <roland@frob.com>
8906
8907 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
8908 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
8909 (supply_gregset, supply_fpregset): New functions.
8910
8911 * gnu-nat.c (gnu_find_memory_regions): New function.
8912 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
8913 (gnu_xfer_memory): Add a cast.
8914
f43845b3
MS
89152002-04-24 Michael Snyder <msnyder@redhat.com>
8916
361d1df0 8917 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
f43845b3
MS
8918 loop. Add handling for "str lr, [sp, #-4]!" and for saves
8919 of argument regs ("str r(0123), [r11, #-nn"]).
361d1df0 8920 (arm_skip_prologue): Better handling for frameless functions.
f43845b3
MS
8921 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
8922 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
8923
a0abec03
AC
8924Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
8925
8926 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
8927 NUM_PSEUDO_REGS can be used.
8928
d7bd68ca
AC
89292002-04-24 Andrew Cagney <ac131313@redhat.com>
8930
8931 * arch-utils.h: Update copyright.
8932
8933 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
8934 * gdbarch.h, gdbarch.c: Re-generate.
8935
8936 * inferior.h (IN_SIGTRAMP): Delete definition.
8937 * arch-utils.c (legacy_pc_in_sigtramp): New function.
8938 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
8939
8940 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
8941 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
8942 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
8943 (find_proc_framesize): Ditto.
8944 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
8945 (alpha_init_extra_frame_info): Ditto.
8946 * infrun.c (handle_inferior_event): Ditto.
8947 (handle_inferior_event): Ditto.
8948 (check_sigtramp2): Ditto.
8949 * blockframe.c (create_new_frame): Ditto.
8950 (get_prev_frame): Ditto.
8951 * ppc-linux-tdep.c: Update comments.
8952 * i386-linux-tdep.c: Update comments.
8953 * breakpoint.c (bpstat_what): Update comment.
8954
4867e41e
DM
89552002-04-24 David S. Miller <davem@redhat.com>
8956
21d83aa5
DM
8957 * i960-tdep.c (register_in_window_p): New function.
8958 (i960_find_saved_register): Use it instead of
8959 REGISTER_IN_WINDOW_P.
8960 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
8961
4867e41e
DM
8962 * symtab.h (find_stab_function_addr): Kill extern.
8963 * minsyms.c (find_stab_function_addr): Remove from here...
8964 * dbxread.c: ... to here, and mark it static.
8965
69cdf6a2
DM
89662002-04-20 David S. Miller <davem@redhat.com>
8967
8968 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
8969 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
8970
5a595886
DM
89712002-04-21 David S. Miller <davem@redhat.com>
8972
8973 * remote-vxsparc.c (vx_read_register): Fix typo, we want
8974 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
8975 (vx_write_register): Likewise.
8976
1da1a192
JB
89772002-04-23 J. Brobecker <brobecker@gnat.com>
8978
8979 * source.c (is_regular_file): New function.
8980 (openp): Check wether file to open is a regular file
8981 to avoid opening directories.
8982
baa6f10b
JT
89832002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8984
8985 * findvar.c (extract_signed_integer): Cast printf argument
8986 to suppress format warning.
8987 (extract_unsigned_integer): Likewise.
8988 * infcmd.c (registers_info): Likewise.
8989 * top.c (get_prompt_1): Likewise.
8990 * valops.c (value_assign): Likewise.
8991 * valprint.c (print_decimal): Likewise.
8992
b2c4da81
L
89932002-04-22 H.J. Lu (hjl@gnu.org)
8994
8995 * c-exp.y (typebase): Support
361d1df0 8996
b2c4da81
L
8997 [long|long long|short] [signed|unsigned] [int|]
8998
8999 and
9000
9001 signed [long|long long|short] int
9002
f267bd6a
JT
90032002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9004
9005 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
9006 and vax-tdep.h.
9007 * vax-tdep.h: New file.
9008 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
9009 Make several routines static.
9010 (vax_get_saved_register): New function.
9011 (vax_gdbarch_init): New function.
9012 (_initialize_vax_tdep): Register vax_gdbarch_init.
9013 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
9014 Remove macros now under the control of gdbarch.
9015
da3c6d4a
MS
90162002-04-22 Michael Snyder <msnyder@redhat.com>
9017
11d3b27d
MS
9018 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
9019 Some whitespace and coding standards tweaks.
da3c6d4a 9020
a33f7558
JT
90212002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9022
9023 * vax-tdep.c: Include regcache.h.
9024 (vax_call_dummy_words): New.
9025 (sizeof_vax_call_dummy_words): New.
9026 (vax_fix_call_dummy): New function.
9027 (vax_saved_pc_after_call): Ditto.
9028 * config/vax/tm-vax.h: Don't include regcache.h.
9029 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
9030 (CALL_DUMMY): Remove.
9031 (CALL_DUMMY_WORDS): Define.
9032 (SIZEOF_CALL_DUMMY_WORDS): Define.
9033 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
9034
47a73475
MS
90352002-04-18 Michael Snyder <msnyder@redhat.com>
9036
9037 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
9038
52efde73
JT
90392002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9040
9041 * vax-tdep.c (vax_frame_chain): New function.
9042 (vax_push_dummy_frame): Ditto.
9043 (vax_pop_frame): Ditto.
9044 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
9045 (FRAMELESS_FUNCTION_INVOCATION): Use
9046 generic_frameless_function_invocation_not.
9047 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
9048 (POP_FRAME): Use vax_pop_frame.
9049
ea74468c
JT
90502002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9051
9052 * vax-tdep.c (vax_store_struct_return): New function.
9053 (vax_extract_return_value): Ditto.
9054 (vax_store_return_value): Ditto.
9055 (vax_extract_struct_value_address): Ditto.
9056 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
9057 vax_store_struct_return.
9058 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
9059 (STORE_RETURN_VALUE): Use vax_store_return_value.
9060 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
9061
5516aa92
JT
90622002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9063
9064 * vax-tdep.c (vax_frame_saved_pc): New function.
9065 (vax_frame_args_address_correct): Ditto.
9066 (vax_frame_args_address): Ditto.
9067 (vax_frame_locals_address): Ditto.
9068 (vax_frame_num_args): Move code to be in proximity to
9069 other frame-related functions.
9070 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
9071 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
9072 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
9073 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
9074 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
9075
36af0b35
L
90762002-04-22 H.J. Lu (hjl@gnu.org)
9077
9078 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
9079 includedir.
9080
ab62c900
JT
90812002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9082
9083 * vax-tdep.c (vax_frame_init_saved_regs): New function.
9084 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
9085 (FRAME_INIT_SAVED_REGS): New macro.
9086
7232b100
JT
90872002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9088
9089 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
9090
b70d2aee
JT
90912002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9092
9093 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
9094 where needed.
9095 (fetch_osf_core_registers): Likewise.
9096 (supply_gregset): Likewise.
9097
a0e8a2d1 90982002-04-22 J. Brobecker <brobecker@gnat.com>
361d1df0 9099
a0e8a2d1
JB
9100 * symfile.h (get_section_index): Define.
9101 * symfile.c (get_section_index): New function.
9102 * mdebugread.c (SC_IS_SBSS): New macro.
9103 (SC_IS_BSS): Return true for the scBss storage class only, as
9104 the scSBss storage class refers to the .sbss section.
9105 (parse_partial_symbols): Discard the symbols which associated
9106 section does not exist.
9107 Make sure to use the .sbss section index for symbols which
9108 storage class is scBss, rather than using the .bss section index.
9109
51eb8b08
JT
91102002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
9111
9112 * vax-tdep.c: Update copyright years.
9113 (vax_register_name): New function.
9114 (vax_register_byte): Ditto.
9115 (vax_register_raw_size): Ditto.
9116 (vax_register_virtual_size): Ditto.
9117 (vax_register_virtual_type): Ditto.
9118 * config/vax/tm-vax.h: Update copyright years.
9119 (REGISTER_NAMES): Remove.
9120 (REGISTER_NAME): Define.
9121 (REGISTER_BYTE): Use vax_register_byte.
9122 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
9123 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
9124 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
9125
6cc1c0a8
AC
91262002-04-21 Andrew Cagney <ac131313@redhat.com>
9127
9128 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
9129 declaration
9130 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
9131
9319a2fe
DM
91322002-04-21 David S. Miller <davem@redhat.com>
9133
9134 * arch-utils.c (generic_prologue_frameless_p): Kill
9135 SKIP_PROLOGUE_FRAMELESS_P code.
9136 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
9137 references.
9138 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
9139 * arc-tdep.c (arc_prologue_frameless_p): Implement.
9140 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
9141 references.
9142 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
9143 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
9144 (sparc_gdbarch_init): Pass it to
9145 set_gdbarch_prologue_frameless_p.
a0e8a2d1 9146
e9ed6d01
JT
91472002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9148
9149 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
9150 (alphabsd-nat.o): New dependency list.
9151
36012033
JT
91522002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9153
9154 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
9155 alphafbsd-tdep.c.
9156 (alpha-linux-tdep.o): New dependency list.
9157 (alphafbsd-tdep.o): Likewise.
9158
3379287a
JT
91592002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9160
9161 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
9162 to here...
9163 * alpha-tdep.c: ...from here.
9164 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
9165
4bcbd6cb
JT
91662002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9167
9168 * config/alpha/tm-alpha.h: Move alpha_software_single_step
9169 prototype from here...
9170 * alpha-tdep.h: ...to here.
9171
b31da25e
AC
91722002-04-21 Andrew Cagney <ac131313@redhat.com>
9173
9174 * frame.h (selected_frame_level): Document as deprecated.
9175 (frame_relative_level): Declare.
9176 * stack.c (frame_relative_level): New function.
9177 (selected_frame_level): Document as deprecated.
9178 (select_frame): Do not set the selected_frame_level.
9179
9180 * stack.c (frame_info, record_selected_frame): Update.
9181 (frame_command, current_frame_command): Update.
9182 (up_silently_base, up_command, down_silently_base): Update.
9183 (down_command): Update.
9184 * inflow.c (kill_command): Update.
9185 * tracepoint.c (finish_tfind_command): Update.
9186 * corelow.c (core_open): Update.
9187 * thread.c (info_threads_command): Update.
9188 (do_captured_thread_select): Update.
9189 * infcmd.c (finish_command): Update.
9190 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
9191
9c1d6fe5
JT
91922002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9193
9194 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
9195
ab89facf
AC
91962002-04-21 Andrew Cagney <ac131313@redhat.com>
9197
9198 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
9199 type const.
9200
82a4efa1
JT
92012002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9202
9203 * alphafbsd-tdep.c: Update copyright years. Include
9204 alpha-tdep.h.
9205 (alphafbsd_use_struct_convention): Make static.
9206 (alphafbsd_init_abi): New function.
9207 (_initialize_alphafbsd_tdep): New function.
9208 * config/alpha/tm-fbsd.h: Update copyright years.
9209 (USE_STRUCT_CONVENTION): Remove.
9210
44dffaac
JT
92112002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9212
9213 * alpha-tdep.c (alpha_abi_handler): New structure to describe
9214 an Alpha ABI variant.
9215 (alpha_abi_handler_list): Declare.
9216 (alpha_gdbarch_register_os_abi): New function.
9217 (alpha_gdbarch_init): Give registered ABI variant handlers a
9218 chance to tweak the gdbarch once we have set up defaults.
9219 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
9220
65585be4
JT
92212002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9222
9223 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
9224 to standard_coerce_float_to_double.
9225 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
9226
d9b023cc
JT
92272002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9228
9229 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
9230 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
9231 from gdbarch_tdep rather than a constant.
9232 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
9233 the default text address for all Alpha Unix ABIs.
9234 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
9235 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
9236
dc129d82
JT
92372002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
9238
9239 * alpha-tdep.h: New file. Includes several Alpha target constants
9240 taken from...
9241 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
9242 let gdbarch deal with.
9243 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
9244 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
9245 to dependency list.
9246 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
9247 Alpha target register names.
9248 * alphabsd-nat.c: Likewise.
9249 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
9250 Alpha target register names. Make serveral routines static.
9251 (alpha_get_saved_register): New function.
9252 (alpha_abi_names): New.
9253 (process_note_abi_tag_sections): New function.
9254 (get_elfosabi): New function.
9255 (alpha_gdbarch_init): New function.
9256 (alpha_dump_tdep): New function.
9257 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
9258
d49d1e0a
AC
92592002-04-21 Andrew Cagney <ac131313@redhat.com>
9260
9261 * frame.c (find_saved_register): Delete #ifdef
9262 HAVE_REGISTER_WINDOWS code.
9263 * config/sparc/tm-sparc.h: Update comments.
9264 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
9265
92e8c9ed
AC
92662002-04-21 Andrew Cagney <ac131313@redhat.com>
9267
9268 * i960-tdep.c (i960_find_saved_register): New function.
9269 (i960_get_saved_register): New function.
9270 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
9271 (i960_get_saved_register): Declare.
9272 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
9273
e1925118
DM
92742002-04-20 David S. Miller <davem@redhat.com>
9275
9276 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
9277
29673b29
AC
92782002-04-20 Andrew Cagney <ac131313@redhat.com>
9279
9280 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
9281 instead of NUM_PSEUDO_REGS.
9282
6c86dcd5
DM
92832002-04-20 David S. Miller <davem@redhat.com>
9284
9285 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
9286 GDB_MULTI_ARCH_PARTIAL
9287 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
9288 define, let tm-sp64.h do it.
9289
aa40ec90
JT
92902002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
9291
9292 * frame.c (find_saved_register): Avoid a NULL pointer
9293 dereference and actually walk the frame list.
9294
0f79675b
AC
92952002-04-20 Andrew Cagney <ac131313@redhat.com>
9296
9297 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
9298 sorted in most most-recent-used order. Document.
9299 * gdbarch.h, gdbarch.c: Regenerate.
361d1df0 9300
f91305dd 93012002-04-19 Andrew Cagney <ac131313@redhat.com>
bf75c8c1
AC
9302
9303 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
9304 instead of ->prev.
9305 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
9306 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
9307 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
9308 instead of ->prev.
9309
73d322b1
EZ
93102002-04-19 Elena Zannoni <ezannoni@redhat.com>
9311
9312 Fix PR gdb/471.
9313 * gdbtypes.c (init_simd_type): Rewrite using new functions.
9314 (build_builtin_type_vec128): Ditto.
9315 (append_composite_type_field): Fix calculation of type length in
9316 union case.
9317
ccd9a834
EZ
93182002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
9319
9320 * config/djgpp/README: Update.
9321
9322 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
9323 compiler warnings.
9324
a57f9e49
JT
93252002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
9326
9327 * alpha-tdep.c (setup_arbitrary_frame): Rename...
9328 (alpha_setup_arbitrary_frame): ...to this.
9329 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
9330 for alpha_setup_arbitrary_frame.
9331
f4f9705a
AC
93322002-04-18 Andrew Cagney <cagney@redhat.com>
9333
9334 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
9335 * gdbarch.h, gdbarch.c: Regenerate.
361d1df0 9336
f4f9705a
AC
9337 * defs.h (breakpoint_from_pc_fn): Delete type definition.
9338 * target.h (memory_breakpoint_from_pc): Update declaration.
9339 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
9340
9341 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
9342 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
9343 * mem-break.c (memory_breakpoint_from_pc): Ditto.
9344 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
9345 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
9346 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
9347 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
9348 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
9349 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
9350 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
9351 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
9352 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
9353
9354 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
9355 const pointer.
9356 * monitor.c (monitor_insert_breakpoint): Ditto.
9357 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
9358
9359 * config/mcore/tm-mcore.h: Update copyright.
9360 * mem-break.c: Ditto.
9361 * xstormy16-tdep.c: Ditto.
9362
29f319b8
PM
93632002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
9364
9365 * p-exp.y: Add precedence rule for '^' token.
9366 This removes the shift/reduce conflicts.
9367 Remove the comment concerning these shift/reduce conflicts.
9368
ebeac11a
EZ
93692002-04-18 Elena Zannoni <ezannoni@redhat.com>
9370
9371 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
9372 (registers_powerpc_nofp): New register set for processors
9373 without floating point unit.
9374
27c31547
DM
93752002-04-18 David S. Miller <davem@redhat.com>
9376
9377 * MAINTAINERS: Add myself to write-after-approval.
9378
47a73475
MS
93792002-04-17 Michael Snyder <msnyder@redhat.com>
9380
9381 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
9382
953836b2
AC
93832002-04-17 Andrew Cagney <ac131313@redhat.com>
9384
9385 * rs6000-tdep.c (frame_initial_stack_address): Use
9386 frame_register_read to read the alloca_reg.
9387
8b0d4340
AC
93882002-04-17 Andrew Cagney <ac131313@redhat.com>
9389
9390 * frame.c (find_saved_register): Find saved registers in the next
9391 not prev frame.
9392 Fix PR gdb/365.
9393
d8864532
AC
93942002-04-17 Andrew Cagney <ac131313@redhat.com>
9395
9396 * gdbarch.sh (LANG): Set to ``c''.
9397
36cc83a3 93982002-04-15 Andrew Cagney <ac131313@redhat.com>
361d1df0 9399
36cc83a3 9400 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
361d1df0 9401
2f4150cc 94022002-04-15 Andrew Cagney <ac131313@redhat.com>
2c7ef074
AC
9403
9404 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
9405 Update copyright.
9406
628703c6 9407 * hpread.c (hpread_get_lntt): Add declaration.
2f4150cc 9408 Also fix PR gdb/391.
361d1df0 9409
56157b4a
AC
94102002-04-14 Andrew Cagney <ac131313@redhat.com>
9411
9412 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
9413 * aclocal.m4, configure: Re-generate.
9414 Fix PR gdb/391.
361d1df0 9415
6d1e3329
EZ
94162002-04-14 Elena Zannoni <ezannoni@redhat.com>
9417
9418 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
9419 instead of tm_print_insn.
9420
cb06fa07
EZ
94212002-04-14 Elena Zannoni <ezannoni@redhat.com>
9422
9423 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
9424
f208ba17
AC
94252002-04-14 Andrew Cagney <ac131313@redhat.com>
9426
9427 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
9428 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
9429 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
9430
20f01a46
DH
94312002-04-12 Don Howard <dhoward@redhat.com>
9432
9433 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
9434 max_user_call_depth.
9435 (init_cmd_lists): Initialize the new value;
9436 * cli/cli-script.c (execute_user_command): Limit the call depth of
9437 user defined commands. This avoids a core-dump when user commands
9438 are infinitly recursive.
9439
a88376a3
KB
94402002-04-12 Kevin Buettner <kevinb@redhat.com>
9441
9442 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
9443 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
9444 from tdep struct instead of DEFAULT_LR_SAVE.
9445 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
9446 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
9447 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
9448
f2172603
MS
94492002-04-12 Michael Snyder <msnyder@redhat.com>
9450
694f61fb 9451 * Remote.c: Spelling fix.
20fe79c8
MS
9452 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
9453 If no symbol found for "sbrk", try "_sbrk".
9454 (make_output_phdrs): Use bfd_section_name.
9455 (gcore_copy_callback): Use bfd_section_name.
62995fc4 9456 * eval.c: Indentation fix-ups.
169a7369
MS
9457 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
9458 in case it gets applied to an address that is already
9459 in the instruction space.
de74f71f
MS
9460 * cli/cli-decode.c (help_list): Allow long lines to wrap.
9461 * symfile.c: Fix indentation, long lines.
f2172603
MS
9462 * source.c: White space fix-up.
9463
cda5a58a
AC
94642002-04-12 Andrew Cagney <cagney@redhat.com>
9465
9466 * defs.h (read_relative_register_raw_bytes): Delete declaration.
9467 * frame.c (frame_register_read): New function. Return non-zero on
9468 success.
9469 (read_relative_register_raw_bytes_for_frame): Delete.
9470 (read_relative_register_raw_bytes): Delete.
9471 * frame.h (frame_register_read): Declare.
9472 * d30v-tdep.c: Update Copyright. Use frame_register_read.
9473 * sh-tdep.c: Ditto.
9474 * infcmd.c (do_registers_info): Ditto.
9475 * hppa-tdep.c: Ditto.
9476 * rs6000-tdep.c: Ditto.
9477 * h8500-tdep.c: Ditto.
9478 * mips-tdep.c: Ditto.
9479 * h8300-tdep.c: Ditto.
9480 * z8k-tdep.c: Ditto.
9481
2ea5f656
KB
94822002-04-12 Kevin Buettner <kevinb@redhat.com>
9483
9484 From Jimi X <jimix@watson.ibm.com>:
9485 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
9486 64-bit SysV ABI.
9487
27b15785
KB
94882002-04-12 Kevin Buettner <kevinb@redhat.com>
9489
9490 From Jimi X <jimix@watson.ibm.com>:
9491 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
9492 bfd info.
9493
5d57ee30
KB
94942002-04-12 Kevin Buettner <kevinb@redhat.com>
9495
9496 From Jimi X <jimix@watson.ibm.com>:
9497 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
9498 register sets for these processor variants.
9499
bc1e36ca
DJ
95002002-04-11 Daniel Jacobowitz <drow@mvista.com>
9501
bc1e36ca
DJ
9502 * regformats/reg-ppc.dat: Support FPSCR.
9503
e3f36dbd
KB
95042002-04-11 Kevin Buettner <kevinb@redhat.com>
9505
9506 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
9507 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
9508 Add fpscr as an invalid/unfetchable register.
9509 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
9510 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
9511 (fill_fpregset): Add support for register fpscr.
9512 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
9513 (fill_gregset): Account for the fact that register ``mq'' might
9514 not exist.
9515 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
9516 (registers_power): Add fpscr to register set at slot 71.
9517 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
9518 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
9519
943c9c25
MS
95202002-04-11 Michael Snyder <msnyder@redhat.com>
9521
9522 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
9523 * configure: Regenerate.
9524 * config.in: Regenerate.
9525 * acconfig.h: Add define for _SYSCALL32.
9526 * core-sol2.c: Remove #define _SYSCALL32.
9527 * solib-legacy.c: Remove #define _SYSCALL32.
9528
d8c0a2e7
AC
95292002-04-10 Andrew Cagney <ac131313@redhat.com>
9530
9531 * stack.c (select_frame): Cleanup internal error message, do not
9532 use %p.
9533
7cc19214
AC
95342002-04-10 Andrew Cagney <ac131313@redhat.com>
9535
9536 * stack.c (select_frame): Check that selected_frame and the
9537 specified level are as expected.
9538 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
9539 Update copyright.
9540 * frame.h (struct frame_info): Add field `level'. Update
9541 copyright.
9542 Work-in-progress PR gdb/464.
9543
67a2b77e
AC
95442002-04-10 Andrew Cagney <ac131313@redhat.com>
9545
9546 * maint.c (maint_print_section_info): Rename print_section_info.
9547 (print_bfd_section_info, print_objfile_section_info): Update.
9548 * inferior.h (struct gdbarch): Add opaque declaration.
9549 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
9550 * gdbarch.h: Regenerate.
9551
8cfda98c
ML
95522002-04-10 Michal Ludvig <mludvig@suse.cz>
9553
9554 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
9555 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
9556 (kernel_u_size): Added.
9557 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
9558 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
9559
ca439ad2 95602002-04-04 Jim Ingham <jingham@apple.com>
361d1df0 9561
ca439ad2
JI
9562 * valarith.c (find_size_for_pointer_math): New function, either returns
9563 the size for a pointer's target, returns 1 for void *, or errors for
9564 incomplete types.
9565 (value_add, value_sub): use find_size_for_pointer_math.
9566
2f2893d9
DJ
95672002-04-09 Daniel Jacobowitz <drow@mvista.com>
9568
9569 * linux-low.c (linux_look_up_symbols): New hook.
9570 (linux_target_ops): Add linux_look_up_symbols.
9571 * remote-utils.c (decode_address): New function.
9572 (look_up_one_symbol): New function.
9573 * server.c (handle_query): Call target look_up_symbols hook.
9574 * server.h (look_up_one_symbol): Add prototype.
9575 * target.h (struct target_ops): Add look_up_symbols hook.
9576
96cb11df
AC
95772002-04-09 Andrew Cagney <ac131313@redhat.com>
9578
9579 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
9580 override FP_REGNUM with frame->fp. Update copyright.
9581 * parse.c (num_std_regs, std_regs): Delete.
9582 (target_map_name_to_register): Do not search std_regs. Update
9583 function description.
9584 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
9585 declarations. Update copyright.
9586 Fix PR gdb/251.
361d1df0 9587
97658e92
DJ
95882002-04-09 Daniel Jacobowitz <drow@mvista.com>
9589
9590 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
9591 after the last symbol in a block.
9592
6044e3eb
PM
95932002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
9594
9595 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
9596 is non zero as a found symbol.
9597
0406ec40
AC
95982002-04-08 Andrew Cagney <ac131313@redhat.com>
9599
9600 * findvar.c: Include "builtin-regs.h".
9601 (value_of_register): Call value_of_builtin_reg when applicable.
9602 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
9603 (target_map_name_to_register): Call
9604 builtin_reg_map_name_to_regnum.
9605 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
9606 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
9607 (builtin_regs_h): Define.
9608 (builtin-regs.o): New target.
9609 (findvar.o): Add $(builtin_regs_h).
9610 * builtin-regs.c, builtin-regs.h: New files.
9611 * std-regs.c: New file.
9612 Partial fix for PR gdb/251.
9613
56a6dfb9
KB
96142002-04-08 Kevin Buettner <kevinb@redhat.com>
9615
9616 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
9617 it's no longer required.
9618
3a808432
AC
96192002-04-08 Andrew Cagney <ac131313@redhat.com>
9620
9621 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
9622
7c40d541
KB
96232002-04-08 Kevin Buettner <kevinb@redhat.com>
9624
9625 From Jimi X <jimix@watson.ibm.com>:
9626 * rs6000-tdep.c (rs6000_software_single_step): Use
9627 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
9628 and size. Use target_insert_breakpoint() and
9629 target_remove_breakpoint() to insert and remove breakpoints
9630 instead of explicit memory reads and writes.
9631
cc9836a8
KB
96322002-04-08 Kevin Buettner <kevinb@redhat.com>
9633
9634 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
9635 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
9636 ELF_OBJECT_FORMAT ifdef.
9637
7495d1dc
KB
96382002-04-08 Kevin Buettner <kevinb@redhat.com>
9639
9640 From Jimi X <jimix@watson.ibm.com>:
9641 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
9642
4288e836
KB
96432002-04-08 Kevin Buettner <kevinb@redhat.com>
9644
9645 From Jimi X <jimix@watson.ibm.com>:
9646 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
9647 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
9648
a4e4e501
MK
96492002-04-07 Mark Kettenis <kettenis@gnu.org>
9650
9651 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
9652 s/asprintf/xasprintf/.
9653 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
9654
006defba
AC
96552002-04-07 Andrew Cagney <ac131313@redhat.com>
9656
9657 I believe Jeff Law denies responsability for this one:
9658 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
9659 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
9660 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
9661 Work-around for PR gdb/366.
9662
7aa83cac
EZ
96632002-04-07 Elena Zannoni <ezannoni@redhat.com>
9664
9665 * remote-e7000.c (write_small, e7000_read_inferior_memory,
9666 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
9667 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
9668
cf1fcca1
EZ
96692002-04-07 Elena Zannoni <ezannoni@redhat.com>
9670
9671 * sh-tdep.c (sh_fp_frame_init_saved_regs,
9672 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
9673 information.
9674
3f289e6f
AC
96752002-04-07 Andrew Cagney <ac131313@redhat.com>
9676
9677 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
9678 maintainer.
9679
129188f6
AC
96802002-04-07 Andrew Cagney <ac131313@redhat.com>
9681
9682 * README (Reporting Bugs in GDB): Document the bug web page as the
9683 prefered way of submitting bugs.
9684 Fix PR gdb/402.
9685
1200cd6e
AC
96862002-04-06 Andrew Cagney <ac131313@redhat.com>
9687
9688 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
9689 -1. Update comment.
9690 * gdbarch.h, gdbarch.c: Re-generate.
9691
2853c33c
AS
96922002-04-07 Andreas Schwab <schwab@suse.de>
9693
9694 * m68klinux-nat.c (fill_fpregset): Properly pass address of
9695 buffer to regcache_collect.
9696
c2169756
AC
96972002-04-06 Andrew Cagney <ac131313@redhat.com>
9698
9699 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
9700 * gdbarch.c, gdbarch.h: Re-generate.
9701
25f1b008
AC
97022002-04-06 Andrew Cagney <ac131313@redhat.com>
9703
9704 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
9705 declaration. Fix -Werror.
9706
59263426
DJ
97072002-04-05 Daniel Jacobowitz <drow@mvista.com>
9708
9709 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
9710 * gdbarch.c: Regenerate.
9711
f5db4da3
MS
97122002-04-05 Michael Snyder <msnyder@redhat.com>
9713
80f8a6eb
MS
9714 * breakpoint.c (clear_command): Rewrite middle section to
9715 combine two loops with identical control conditions.
9716 Add a cleanup to eliminate a memory leak.
f5db4da3
MS
9717 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
9718
ad3dcc5c
L
97192002-04-05 H.J. Lu (hjl@gnu.org)
9720
9721 * solib-svr4.c (bkpt_names): Add "__start".
9722
f32e7a74
AC
97232002-04-04 Andrew Cagney <ac131313@redhat.com>
9724
9725 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
9726 as test for 64 bit target.
9727
8227c0ff
AC
97282002-04-05 Andrew Cagney <ac131313@redhat.com>
9729
9730 * h8500-tdep.c (h8500_write_fp): Delete function.
9731 * dwarf2cfi.c (cfi_write_fp): Document as not used.
9732 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
9733 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
9734 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
9735 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
9736 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
9737 (s390_write_fp):
9738 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
9739 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
9740 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
9741 (d10v_write_fp): Delete function.
9742 * inferior.h (write_fp, generic_target_write_fp): Delete
9743 declarations.
9744 * regcache.c (generic_target_write_fp): Delete function.
9745 (write_fp): Delete function.
9746 * gdbarch.sh (TARGET_WRITE_FP): Delete.
9747 * gdbarch.h, gdbarch.c: Regenerate.
9748 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
9749 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
9750 (sparc64_write_fp): Delete declaration.
9751 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
9752 (h8500_write_fp): Delete declaration.
9753
2757dd86
AC
97542002-04-04 Andrew Cagney <ac131313@redhat.com>
9755
9756 * sparc-tdep.c (sparc64_write_fp): Delete.
9757 (sparc_push_dummy_frame): Replace write_fp call with code to store
9758 the FP directly.
9759 (sparc_gdbarch_init): Do not initialize write_fp.
9760
c69255e1
KB
97612002-04-05 Kevin Buettner <kevinb@redhat.com>
9762
9763 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
9764 clause.
9765
ae767bfb
JB
97662002-03-29 Jim Blandy <jimb@redhat.com>
9767
9768 * stack.c (get_selected_block): Add new argument `addr_in_block',
9769 used to return the exact code address we used to select the block,
9770 not just the block.
9771 * blockframe.c (get_frame_block, get_current_block): Same.
9772 * frame.h (get_frame_block, get_current_block,
9773 get_selected_block): Update declarations.
9774 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
9775 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
9776
84d2ac95
MS
97772002-04-05 Michael Snyder <msnyder@redhat.com>
9778
9779 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
9780 warning message.
9781
596aa3bf
JB
97822002-04-05 J. Brobecker <brobecker@gnat.com>
9783
9784 * utils.c (xfullpath): New function.
9785 * defs.h (xfullpath): Add declaration.
9786 * source.c (openp): Use xfullpath in place of gdb_realpath to
9787 avoid resolving the basename part of filenames when the
9788 associated file is a symbolic link. This fixes a potential
9789 inconsistency between the filenames known to GDB and the
9790 filenames it prints in the annotations.
9791 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
9792 to be able to match a filename with either the real filename, or
9793 the name of any symbolic link to this file.
9794 (lookup_partial_symtab): Ditto.
9795
c02f5703
MS
97962002-04-04 Michael Snyder <msnyder@redhat.com>
9797
9798 * breakpoint.c: Add support for hardware breakpoints in overlays.
9799 (overlay_events_enabled): New state variable.
9800 (insert_breakpoints): Use overlay_events_enabled to decide
9801 whether to attempt to set a breakpoint at the overlay load addr.
9802 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9803 (remove_breakpoint): Use overlay_events_enabled to decide
9804 whether breakpoints need to be removed from overlay load addr.
9805 Handle bp_hardware_breakpoint as well as bp_breakpoint.
9806 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
361d1df0 9807 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
c02f5703
MS
9808 disable_overlay_breakpoints): Update overlay_events_enabled.
9809
5fb290d7
DJ
98102002-04-04 Daniel Jacobowitz <drow@mvista.com>
9811
9812 * dwarf2read.c (struct function_range): New.
9813 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
9814 (check_cu_functions): New.
9815 (read_file_scope): Initialize global function lists.
9816 Call dwarf_decode_line after processing children.
9817 (read_func_scope): Add to global function list.
9818 (dwarf_decode_lines): Call check_cu_functions everywhere
9819 record_line is called. Call record_line with a linenumber
9820 of 0 to mark sequence ends.
9821
7b3fabf0
ML
98222002-04-04 Michal Ludvig <mludvig@suse.cz>
9823
361d1df0 9824 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
7b3fabf0
ML
9825 change sync with glibc.
9826
bce58c09
JB
98272002-04-03 Jim Blandy <jimb@redhat.com>
9828
9829 * configure.in: Call AC_C_INLINE.
9830 * configure: Regenerated.
361d1df0 9831
2fccf04a
DJ
98322002-04-01 Daniel Jacobowitz <drow@mvista.com>
9833
9834 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
9835 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
9836
2d1bfe2e
MK
98372002-03-31 Mark Kettenis <kettenis@gnu.org>
9838
a5941fbf
MK
9839 * NEWS: Mention gcore support on FreeBSD/i386.
9840
a90cd31d
MK
9841 * fbsd-proc.c: New file.
9842 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
9843 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
9844
2d1bfe2e
MK
9845 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
9846 while statement.
9847
9eb6e5a1
JB
98482002-03-29 Jim Blandy <jimb@redhat.com>
9849
9850 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
9851 unescaped newlines in string literals, but newer ones don't. So
9852 escape them.
9853
f02df580
MS
98542002-03-26 Michael Snyder <msnyder@redhat.com>
9855 Andrew Cagney <cagney@redhat.com>
9856
361d1df0 9857 * cli/cli-dump.c: New file. Dump memory to file,
f02df580
MS
9858 restore file to memory.
9859 * cli/cli-dump.h: New file.
9860 * Makefile.in: Add rules, dependencies for cli-dump.o.
89743e04 9861 * NEWS: Mention new commands.
f02df580 9862
109f874e
MS
98632002-03-28 Michael Snyder <msnyder@redhat.com>
9864
9865 * symfile.c (symbol_file_add): Move test for null symbols to later.
9866
520f6ade
AC
98672002-03-27 Andrew Cagney <ac131313@redhat.com>
9868
9869 From veksler at il.ibm.com:
9870 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
9871 the xstrduped original path.
9872 Fix PR gdb/417.
9873
d4654627
MS
98742002-03-27 Michael Snyder <msnyder@redhat.com>
9875
9876 * breakpoint.c (_initialize_breakpoint): Clean up help string.
9877 * infcmd.c (_initialize_infcmd): Ditto.
9878 * language.c (_initialize_language): Ditto.
9879 * symfile.c (_initialize_symfile): Ditto.
9880 * top.c (_init_main): Ditto.
9881 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9882
6be8bc0c
EZ
98832002-03-27 Elena Zannoni <ezannoni@redhat.com>
9884
9885 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
9886 vector registers handling.
9887 (skip_prologue): Handle new AltiVec instructions. Fill in new
9888 fields of frame data.
9889 (frame_get_saved_regs): Fill in information for AltiVec registers.
9890
12af6855
JB
98912002-03-27 Jim Blandy <jimb@redhat.com>
9892
9893 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
9894 a function; leave this macro here to invoke that function.
9895 (symbol_init_mangled_name): Declaration for that function.
9896 * symtab.c (symbol_init_mangled_name): New function.
9897
dc672865
AC
98982002-03-27 Andrew Cagney <ac131313@redhat.com>
9899
9900 * valarith.c: Replace strerror with safe_strerror.
9901 * tracepoint.c: Ditto.
9902 * lin-lwp.c: Ditto.
9903 * go32-nat.c: Ditto.
9904 * inflow.c: Ditto.
9905 * gnu-nat.c: Ditto.
9906
d96429cd
AS
99072002-03-27 Andreas Schwab <schwab@suse.de>
9908
9909 * event-top.c (command_line_handler): Remove useless if.
9910
7e336ba1
AJ
99112002-03-27 Andreas Jaeger <aj@suse.de>
9912
9913 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
9914 comment.
9915
de220d0f
ML
99162002-03-27 Michal Ludvig <mludvig@suse.cz>
9917
9918 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
9919 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
9920 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
9921 (x86_64_linux_dr_get_status, supply_gregset),
9922 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
9923 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
9924 (x86_64_register_info_table): Add.
9925 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
9926 (x86_64_register_raw_size, x86_64_register_virtual_type),
9927 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
9928 general x86_64_register_info_table.
9929 (i386_gdbarch_init): gdbarch_register_bytes is now set
9930 dynamicaly during initialization.
9931 * regformats/reg-x86-64.dat: Synced with changes to registers above.
9932 * gdbserver/linux-x86-64-low.c: Ditto.
7e336ba1 9933
0e98d0a7
DJ
99342002-03-27 Daniel Jacobowitz <drow@mvista.com>
9935
9936 * gdbserver/server.c (main): Call target_signal_to_host_p
9937 and target_signal_to_host on signals received from the remote.
9938 * gdbserver/remote-utils.c (prepare_resume_reply): Call
9939 target_signal_from_host on signals sent to the remote.
9940 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
9941 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
9942
3130066b
DJ
99432002-03-27 Daniel Jacobowitz <drow@mvista.com>
9944
9945 * signals/signals.c: Include "server.h" in gdbserver build.
9946 (target_signal_from_name): Don't use STREQ.
9947 (_initialize_signals): Likewise. Don't include function in
9948 gdbserver build.
9949
9aedf4f4
DJ
99502002-03-27 Daniel Jacobowitz <drow@mvista.com>
9951
9952 * signals.c: Moved to...
9953 * signals/signals.c: Here.
7e336ba1 9954 * Makefile (signals.o): Update.
9aedf4f4 9955
3fa41cdb
JL
99562002-03-26 Jeff Law (law@redhat.com)
9957
9958 * somread.c (som_symtab_read): Remove some commented out code and
9959 updated related comments. Do not set the minimal symbol table to
9960 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
9961 in a dynamic executable.
9962 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
9963 where we are unable to find the minimal symbol for the given
9964 PC value.
9965
ee677e8d
MS
99662002-03-25 Jeff Law (law@redhat.com)
9967
9968 * linux-proc.c (read_mapping): Scan up to end of line for filename.
9969
e76e1718
ML
99702002-03-25 Michal Ludvig <mludvig@suse.cz>
9971
9972 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
9973
18a642a1
AC
99742002-03-23 Andrew Cagney <ac131313@redhat.com>
9975
9976 * command.h: Update copyright.
9977 (struct cmd_list_element): Replace definition with opaque
9978 declaration.
9979 (enum cmd_types): Document that it will eventually be moved to
9980 cli/cli-decode.h
9981 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
9982 (MALLOCED_REPLACEMENT): Delete macro.
9983 * Makefile.in (cli_decode_h): Add $(command_h).
9984 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
7e336ba1 9985 * top.c: Include "cli/cli-decode.h".
18a642a1
AC
9986 * completer.c: Include "cli/cli-decode.h".
9987 * maint.c: Include "cli/cli-decode.h".
9988 * cli/cli-decode.h: Include "command.h".
9989 (enum command_class): Delete.
9990 (enum cmd_types): Comment out.
9991 (enum cmd_auto_boolean): Delete.
9992 (enum var_types): Delete.
9993
b2875cc0
AC
99942002-03-23 Andrew Cagney <ac131313@redhat.com>
9995
9996 * cli/cli-decode.c: Include "gdb_assert.h".
9997 (add_set_or_show_cmd): New static function.
9998 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
9999 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
10000 all fields, such as func, from the set command.
10001
3b45974e
AC
100022002-03-23 Andrew Cagney <ac131313@redhat.com>
10003
10004 * MAINTAINERS (sh-elf): Change warning flag to -w.
10005
823ca731
AC
100062002-03-23 Andrew Cagney <cagney@redhat.com>
10007
10008 * defs.h (error): Add printf format attribute.
10009 * thread-db.c (thread_from_lwp): Fix error format string.
10010 * stack.c (parse_frame_specification): Ditto.
10011 * cli/cli-decode.c (undef_cmd_error): Ditto.
10012 * scm-lang.c (scm_lookup_name): Ditto.
10013 * tracepoint.c (trace_error): Ditto.
10014 * remote-utils.c (usage): Ditto.
10015 * remote.c (compare_sections_command): Ditto.
10016 Fix PR gdb/328.
10017
0e101458
AC
100182002-03-22 Andrew Cagney <ac131313@redhat.com>
10019
10020 * gdbtypes.c (append_composite_type_field): New function.
10021 (init_composite_type): New function.
10022 * gdbtypes.h (append_composite_type_field): Declare.
10023 (init_composite_type): Ditto.
10024
8e0662df
EZ
100252002-03-22 Elena Zannoni <ezannoni@redhat.com>
10026
10027 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
7e336ba1 10028 function.
8e0662df
EZ
10029 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
10030 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
10031 structure returning convention for SYSV ABI case, but not
10032 for GNU/Linux, FreeBSD, or NetBSD.
10033
3121eff0
DJ
100342002-03-22 Daniel Jacobowitz <drow@mvista.com>
10035
10036 * symtab.h (lookup_block_symbol): Add mangled_name argument
10037 to prototype.
10038
10039 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
10040 with new mangled_name argument.
10041 * linespec.c (decode_line_1): Likewise.
10042 * valops (value_of_this): Likewise.
10043 * symtab.c (lookup_transparent_type): Likewise.
10044 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
10045 (lookup_symbol): If we are given a mangled name, pass it down
10046 to lookup_symbol_aux.
10047 (lookup_block_symbol): If we are given a mangled name to check
10048 against, only return symbols which match it.
10049
349b409f
CF
100502002-03-22 Christopher Faylor <cgf@redhat.com>
10051
10052 * win32-nat.c (child_create_inferior): Check for proper shell to use
10053 here, in case the user changes it on the fly.
10054 (_initialize_inftarg): Remove shell path considerations.
10055
2a873819
EZ
100562002-03-21 Elena Zannoni <ezannoni@redhat.com>
10057
10058 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
10059 for gdbarch_max_register_raw_size and max_register_virtual_size.
10060 Adjust copyright year.
10061
a1b9830c
DJ
100622002-03-21 Daniel Jacobowitz <drow@mvista.com>
10063
10064 * dbxread.c (process_one_symbol): Extend the first N_SLINE
10065 in a function to cover the entire beginning of the function
10066 as well if it does not already.
10067
8b5790f2
TR
100682002-03-21 Tom Rix <trix@redhat.com>
10069
10070 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
10071 (rs6000_ptrace64): Renamed from ptrace64.
10072
bdbe5747
MH
100732002-03-20 Martin M. Hunt <hunt@redhat.com>
10074
10075 * gdbserver/remote-utils.c (remote_open): Don't call
10076 getprotobyname, we're all using TCP here so just use
10077 IPPROTO_TCP.
7e336ba1 10078 * gdbserver/gdbreplay.c (remote_open): Ditto.
bdbe5747
MH
10079
100802002-03-20 Martin M. Hunt <hunt@redhat.com>
7e336ba1 10081
bdbe5747
MH
10082 * regcache.c (_initialize_regcache): No need to call
10083 build_regcache() at this time; it gets called whenever
10084 the gdbarch changes.
10085
7781cd62
DB
100862002-03-20 David O'Brien <obrien@FreeBSD.org>
10087
10088 * sparc-nat.c: Include sys/param.h where possible.
10089
f65ca430
DJ
100902002-03-20 Daniel Jacobowitz <drow@mvista.com>
10091
10092 Fix PR gdb/422.
10093 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
10094 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
10095 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
10096 complex types.
10097 * stabsread.c (rs6000_builtin_type): Likewise.
10098 (read_sun_floating_type): Likewise.
10099
0c867556
PS
101002002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10101
10102 * stabsread.c (read_member_functions): Remove skip code for duplicate
10103 constructor/destructor methods. Use standard parsing for these
10104 methods and just do not chain them to the list of methods after
10105 parsing.
10106
12b9c64f
AO
101072002-03-19 Alexandre Oliva <aoliva@redhat.com>
10108
10109 * coffread.c: Remove redundant static declarations. Replace
10110 occurrences of `PTR' with `void *'.
10111 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
10112 * top.h (quit_cover): Likewise.
10113 * defs.h (catch_errors): Likewise.
10114
349c5d5f
AC
101152002-03-18 Andrew Cagney <ac131313@redhat.com>
10116
10117 * defs.h (XMALLOC): Define.
10118 * gdb-events.sh (XMALLOC): Delete macro.
10119 * gdb-events.c, gdb-events.h: Regenerate.
10120 * gdbarch.sh (XMALLOC): Delete macro.
10121 * gdbarch.c: Regenerate.
10122 * serial.c (XMALLOC): Delete macro.
10123 * ui-file.c (XMALLOC): Ditto.
10124 * ser-unix.h (XMALLOC): Ditto.
10125 * sh-tdep.c (XMALLOC): Ditto.
10126 * ui-out.c (XMALLOC): Ditto.
10127 * utils.c (XMALLOC): Ditto.
10128 * i386-tdep.c (XMALLOC): Ditto.
10129 * gdb-events.c (XMALLOC): Ditto.
10130 * d10v-tdep.c (XMALLOC): Ditto.
10131 * cli-out.c (XMALLOC): Ditto.
10132
10133 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
10134 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
10135 * ui-file.c, ui-out.c: Ditto.
10136
7d0766f3
AC
101372002-03-18 Andrew Cagney <ac131313@redhat.com>
10138
10139 * command.h (struct cmd_list_element): Add field context.
10140 (set_cmd_context, get_cmd_context): Declare.
10141 * cli/cli-decode.h: Ditto.
10142 * cli/cli-decode.c (get_cmd_context): New function.
10143 (set_cmd_context): New function.
10144 (add_cmd): Initialize context.
10145 Part of fixing PR gdb/145 and PR gdb/146.
10146
5913bcb0
AC
101472002-03-17 Andrew Cagney <ac131313@redhat.com>
10148
1868c04e
AC
10149 * cli/cli-decode.c (cmd_type): New function.
10150 * command.h (cmd_type): Declare.
10151 * infrun.c (set_schedlock_func): Call function cmd_type.
10152 * kod.c (kod_set_os): Call cmd_type.
10153 * cris-tdep.c (cris_version_update): Use function cmd_type.
10154 (cris_mode_update, cris_abi_update): Ditto.
10155
5913bcb0
AC
10156 * command.h: (execute_cmd_post_hook): Declare.
10157 (execute_cmd_pre_hook): Declare.
10158 * cli/cli-script.c (clear_hook_in_cleanup): New function.
10159 (execute_cmd_post_hook, execute_cmd_pre_hook): New
10160 functions. Execute pre/post hook while ensuring that afterwords
10161 hook_in is cleared.
10162 * top.c (execute_command): Use execute_cmd_post_hook, and
10163 execute_cmd_pre_hook to execute pre/post commands.
10164 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
10165 hook_stop_stub.
10166 (hook_stop_stub): Call execute_cmd_pre_hook.
10167
b51450c9
AC
101682002-03-17 Andrew Cagney <ac131313@redhat.com>
10169
10170 * kod.c (kod_set_os): Revert previous change. Is called by ``info
10171 set'' and this leads to a core dump. Move xstrdup of
10172 operating_system to after check that it is not NULL.
10173
f66c9f11
AC
101742002-03-17 Andrew Cagney <ac131313@redhat.com>
10175
8e694ecf
AC
10176 * kod.c (kod_set_os): Remove unnecessary check that
10177 ``command->type'' is set_cmd.
10178
f66c9f11
AC
10179 * valprint.c (set_input_radix): Use input_radix.
10180 (set_output_radix): Use output_radix.
10181 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
10182 isn't reverted.
10183
9d01611c
AC
101842002-03-16 Andrew Cagney <ac131313@redhat.com>
10185
10186 * value.h (struct value): Delete field ``substring_addr''. Change
10187 aligner fields to force_doublest_align, force_longest_align,
ee2d3b3a
AC
10188 force_core_addr_align and force_pointer_aligh.
10189
10190 * value.h (struct value): Fix typo in above change.
9d01611c 10191
4156bb53
PS
101922002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10193
10194 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
10195 to fix internal_error from ``maintenance print architecture''.
10196
0e5e3ea6
PS
101972002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10198
10199 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
10200 for gcc versions after gcc-2.8.1.
10201
9b013045
PS
102022002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10203
10204 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
10205 for method resolution. Restore adjustment of ``this'' pointer after
10206 calling value_struct_elt, which was accidentally removed during the
10207 HP merge.
10208
376c9600
AC
102092002-03-15 Andrew Cagney <ac131313@redhat.com>
10210
10211 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
10212 value_of_register.
10213 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
10214 get_saved_register.
10215 * value.h (value_of_register): Update.
10216
a4db0f07
RH
102172002-03-14 Richard Henderson <rth@redhat.com>
10218
10219 * configure.in: Detect declaration for canonicalize_file_name.
10220 * utils.c (canonicalize_file_name): Declare, if needed.
10221 (gdb_realpath): Prefer realpath if available and usable.
10222 * config.in, configure: Rebuild.
10223
96383835
RH
102242002-03-14 Richard Henderson <rth@redhat.com>
10225
10226 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
10227 a constant array bound.
10228
10229 * MAINTAINERS: Add myself to write-after-approval.
10230
75245b24
MS
102312002-03-14 Michael Snyder <msnyder@redhat.com>
10232
10233 * symfile.c (syms_from_objfile): Return immediately if no syms.
10234 (symbol_file_add): Return immediately if no syms.
10235 (find_sym_fns): Return immediately if no syms.
10236
e641a1ca
ML
102372002-03-13 Michal Ludvig <mludvig@suse.cz>
10238
10239 * gdbserver/remote-util.c (remote_open): Print remote-side's
10240 IP address when remote debugging over the network.
7e336ba1 10241
df08bfec
DB
102422002-03-12 David O'Brien <obrien@FreeBSD.org>
10243
10244 * config/sparc/fbsd.mh: Fix copyright.
10245 * config/sparc/fbsd.mt: Likewise.
10246
9a57864f
RE
102472002-03-11 Richard Earnshaw <rearnsha@arm.com>
10248
10249 * MAINTAINERS: Fix typo in name of gdb warnings option.
10250 (x86-64): Fix formating so that this can be parsed by awk.
10251
dd7bf85e
DJ
102522002-03-10 Daniel Jacobowitz <drow@mvista.com>
10253
10254 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
10255 * defs.h: Include "gdb/signals.h".
10256 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
10257
33a0a2ac
ML
102582002-03-10 Michal Ludvig <mludvig@suse.cz>
10259
10260 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
7e336ba1 10261 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
33a0a2ac
ML
10262 from x86-64-tdep.h
10263
dd824b04
DJ
102642002-03-10 Daniel Jacobowitz <drow@mvista.com>
10265 Don Howard <dhoward@redhat.com>
10266
10267 * mips-tdep.c (ST0_FR): Define.
10268 (mips2_fp_compat): New function, temporarily disabled.
10269 (mips_read_fp_register_single): New function.
10270 (mips_read_fp_register_double): New function.
10271 (mips_print_register): Use them.
10272 (do_fp_register_row): Likewise.
10273
6a41ff59
AC
102742002-03-09 Andrew Cagney <ac131313@redhat.com>
10275
10276 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
10277 approval''.
10278
4ea09c10
PS
102792002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10280
10281 * stabsread.c (read_member_functions): Fix is_stub test for
10282 static member functions, improve comment.
10283
6ccc741d
RE
102842002-03-07 Richard Earnshaw <rearnsha@arm.com>
10285
10286 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
10287 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
10288 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
10289 commands that set boolean values.
10290 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
10291 (arm_rdi_resume): Always initialize PC.
10292 (arm_rdi_open): Don't use rslt as a boolean.
10293 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
10294 (arm_rdi_fetch_registers, arm_rdi_store_registers)
10295 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
10296 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
10297
438013df
AO
102982002-03-06 Alexandre Oliva <aoliva@redhat.com>
10299
10300 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
10301 * configure: Rebuilt.
10302
70ed8774
SC
103032002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
10304
10305 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
10306 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
10307
5ba2abeb
AC
103082002-03-06 Andrew Cagney <ac131313@redhat.com>
10309
10310 * cli/cli-decode.c (set_cmd_completer): New function.
10311 * command.h (set_cmd_completer): Declare.
10312 * cli/cli-decode.h (set_cmd_completer): Ditto.
10313
10314 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
10315 * cli/cli-cmds.c (init_cli_cmds): Ditto.
10316 * win32-nat.c (_initialize_inftarg): Ditto.
10317 * remote-rdi.c (_initialize_remote_rdi): Ditto.
10318 * proc-api.c (_initialize_proc_api): Ditto.
10319 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
10320 * source.c (_initialize_source): Ditto.
10321 * exec.c (_initialize_exec): Ditto.
10322 * solib.c (_initialize_solib): Ditto.
10323 * top.c (init_main): Ditto.
10324 * tracepoint.c (_initialize_tracepoint): Ditto.
10325 * symfile.c (_initialize_symfile): Ditto.
10326 * printcmd.c (_initialize_printcmd): Ditto.
10327 * infcmd.c (_initialize_infcmd): Ditto.
10328 * corefile.c (_initialize_core): Ditto.
10329
f779ca99
AC
103302002-03-05 Andrew Cagney <ac131313@redhat.com>
10331
10332 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
10333
01a3934b
AC
103342002-03-05 Andrew Cagney <ac131313@redhat.com>
10335
10336 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
10337
37057839
AC
103382002-03-05 Andrew Cagney <ac131313@redhat.com>
10339
10340 * NEWS: Update headings, 5.2 has branched.
10341
c6ecbae5
DJ
103422002-03-04 Daniel Jacobowitz <drow@mvista.com>
10343
10344 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
10345 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
10346 (register_addr, REGISTER_RAW_SIZE): Likewise.
10347 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
10348 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
10349
e9f30c21
ML
103502002-03-03 Michal Ludvig <mludvig@suse.cz>
10351
10352 * MAINTAINERS (x86-64): Add myself.
10353 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
10354 changed value_ptr -> struct value *
10355
54394ac3
DB
103562002-03-01 David O'Brien <obrien@FreeBSD.org>
10357
10358 * configure.host (sparc64-*-freebsd): Add.
10359 * configure.tgt: Likewise.
10360 * config/sparc/fbsd.mh: New file.
10361 * config/sparc/fbsd.mt: Likewise.
10362 * config/sparc/nm-fbsd.h: Likewise.
10363 * config/sparc/tm-fbsd.h: Likewise.
10364
bfe95955
DJ
103652002-03-01 Daniel Jacobowitz <drow@mvista.com>
10366
10367 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
10368 regformats/reg-s390x.dat.
10369
f33c6cbf
AC
103702002-03-01 Andrew Cagney <ac131313@redhat.com>
10371
10372 * utils.c: Add FIXME explaining true/false problem.
10373
5ecaa7dd
AC
103742002-02-28 Andrew Cagney <ac131313@redhat.com>
10375
10376 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
10377
2a251cc2
MC
103782002-02-28 Michael Chastain <mec@shout.net>
10379
10380 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
10381
6a8031a3 103822002-02-28 Daniel Jacobowitz <drow@mvista.com>
265f716b
DJ
10383
10384 * gdbserver/linux-s390-low.c: New file.
10385 * regformats/reg-s390.dat: New file.
10386 * regformats/reg-s390x.dat: New file.
10387 * gdbserver/configure.srv: Add S/390.
10388 * gdbserver/Makefile.in: Add S/390.
10389 * configure.tgt: Enable gdbserver for S/390.
10390
ac469903
EZ
103912002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
10392
10393 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
10394 first line of the doc string for "info dos", except at the end of
10395 the sentence, since the short help stops at the first period.
10396
985cb1a3
JM
103972002-02-28 Jason Merrill <jason@redhat.com>
10398
10399 * dwarf2read.c (dwarf_cfi_name): Add new codes.
10400
c570663e
FF
104012002-02-27 Fred Fish <fnf@redhat.com>
10402
10403 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
10404 comment (dumy -> dummy).
10405
43630227
PS
104062002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10407
10408 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
10409
b84911e8
RB
104102002-02-27 Rodney Brown <rbrown64@csc.com.au>
10411
10412 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
10413
58caa3dc
DJ
104142002-02-27 Daniel Jacobowitz <drow@mvista.com>
10415
10416 * gdbserver/acconfig.h: New file.
10417 * gdbserver/i387-fp.c: New file.
10418 * gdbserver/i387-fp.h: New file.
10419 * gdbserver/linux-x86-64.c: New file.
10420 * regformats/reg-x86-64.dat: New file.
10421 * configure.tgt: Add x86_64-*-linux* gdbserver support.
10422 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
10423 * gdbserver/configure.in: Add support for regsets.
10424 * gdbserver/config.in: Regenerate.
10425 * gdbserver/configure: Regenerate.
10426 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
10427 * gdbserver/linux-low.h: New file.
10428 * gdbserver/linux-low.c: Include "linux-low.h". Add support
10429 for regsets.
10430 * gdbserver/linux-arm-low.c: Include "linux-low.h".
10431 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
10432 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
10433 * gdbserver/linux-mips-low.c: Include "linux-low.h".
10434 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
10435 * gdbserver/linux-sh-low.c: Include "linux-low.h".
10436 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
10437 "i387-fp.h". Add PTRACE_GETREGS and friends.
10438 * gdbserver/regcache.c (supply_register): New function.
10439 (supply_register_by_name): New function.
10440 (collect_register): New function.
10441 (collect_register_by_name): New function.
10442
93652174
DJ
104432002-02-27 Daniel Jacobowitz <drow@mvista.com>
10444
10445 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
10446 (config.status): Add configure.srv dependency.
10447 (server_h): Add config.h dependency.
10448
a02e4a61
DJ
104492002-02-27 Daniel Jacobowitz <drow@mvista.com>
10450
10451 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
10452 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
10453 * gdbserver/configure.srv: Change i386-*-linux* to use
10454 reg-i386-linux.o.
10455
ce0eebec
AC
104562002-02-26 Andrew Cagney <ac131313@redhat.com>
10457
10458 * x86-64-tdep.c: Re-indent. Update copyright date.
10459
82dbc5f7
AC
104602002-02-26 Andrew Cagney <ac131313@redhat.com>
10461
10462 From Michal Ludvig <mludvig@suse.cz>:
10463 * x86-64-tdep.c (value.h): Delete.
10464 (gdb_assert.h): Include.
10465 (x86_64_register_convert_to_virtual,
10466 x86_64_register_convert_to_raw ): Add check which lets only
10467 floating-point values to be converted.
10468 (value_push): Delete.
10469 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
10470 (i386_gdbarch_init): Number of register_bytes fixed.
10471
e4621584
AC
104722002-02-26 Andrew Cagney <ac131313@redhat.com>
10473
10474 * MAINTAINERS: Add x86-64 target.
10475
81a9a963
AC
104762002-02-26 Andrew Cagney <ac131313@redhat.com>
10477
10478 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
10479 * osfsolib.c (solib_map_sections): Ditto.
10480 * irix5-nat.c (solib_map_sections): Ditto.
10481 * corelow.c (gdb_check_format): Ditto.
10482 * symfile.c (symfile_bfd_open): Ditto.
10483 * solib.c (solib_map_sections): Ditto.
10484 Fix PR gdb/354.
7e336ba1 10485
0f017ab9
AC
104862002-02-26 Andrew Cagney <ac131313@redhat.com>
10487
10488 * remote.c (_initialize_remote): By default, disable ``e'' and
10489 ``E'' step out-of-range packets.
10490
75738c29
AS
104912002-02-26 Andreas Schwab <schwab@suse.de>
10492
10493 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
10494 m68k_linux_frame_saved_pc.
10495 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
10496 in_sigtramp.
10497 (SIGCONTEXT_PC_OFFSET): Remove.
10498 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
10499 m68k_linux_sigtramp_saved_pc): New functions.
10500 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
10501 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
10502 (UCONTEXT_PC_OFFSET): Define.
10503 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
10504 non-RT and RT signal trampolines.
10505
7e8ed687
RE
105062002-02-26 Richard Earnshaw <rearnsha@arm.com>
10507
10508 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
10509 (TARGET_NBPG, STACK_END_ADDR): Delete
10510 (VARIABLES_INSIDE_BLOCK): Delete.
10511
6972bc8b
AC
105122002-02-25 Andrew Cagney <ac131313@redhat.com>
10513
10514 * utils.c (perror_with_name): Make string parameter constant.
10515 (print_sys_errmsg): Ditto.
10516 (query): Ditto.
10517 * defs.h (perror_with_name): Update.
10518 (print_sys_errmsg): Update.
10519 (query): Update.
10520
aa32f823
DJ
105212002-02-25 Daniel Jacobowitz <drow@mvista.com>
10522
10523 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
10524 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
10525
19caaa45
PS
105262002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10527
10528 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
10529 if it already matches the current architecture from the exec file.
10530 Include arch-utils.h for gdbarch_info_init prototype.
10531 * Makefile.in (rs6000-nat.o): Update dependencies.
10532
d951901f
EZ
105332002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
10534
10535 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
10536 list of exported variables.
10537
7ea81414
DJ
105382002-02-24 Daniel Jacobowitz <drow@mvista.com>
10539
10540 * gdbserver/configure.srv: New file.
10541 * gdbserver/configure.in: Use configure.srv instead
10542 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
10543 from it.
10544 * gdbserver/configure: Regenerated.
10545 * gdbserver/terminal.h: New file.
10546 * gdbserver/Makefile.in: Update for configure changes. Remove
10547 more unneeded include paths.
10548
080fe24b
AC
105492002-02-24 Andrew Cagney <ac131313@redhat.com>
10550
10551 From wiz at danbala:
10552 * config/sparc/tm-sp64.h: Fix grammar and typos.
10553 Fix PR gdb/287.
10554
8605d56e
AC
105552002-02-24 Andrew Cagney <ac131313@redhat.com>
10556
10557 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
a4b6fc86
AC
10558 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
10559 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
10560 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
ca557f44
AC
10561 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
10562 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
10563 * s390-tdep.c: Ditto.
92362027
AC
10564 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
10565 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
10566 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
10567 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
10568 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
10569 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
10570 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
10571 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
10572 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
10573 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
8605d56e 10574 Fix PR gdb/378.
7e336ba1 10575
8ed32cc0
AC
105762002-02-23 Andrew Cagney <ac131313@redhat.com>
10577
a3007b6f
AC
10578 * lin-thread.c: Delete file.
10579 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
10580 to gdb_proc_service.h.
10581 * configure: Re-generate.
10582
50a9e2f1
AC
10583 * ocd.c (ocd_open): Do not try to open the "ocd" device.
10584 * serial.c (serial_open): Delete check for "ocd".
10585 Fix PR gdb/349.
10586
8b6e7932
AC
10587 * Makefile.in (linux-thread.o): Delete target.
10588 * linux-thread.c: Delete file.
10589
d155c46b
AC
10590 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
10591 renamed SH files to be consistent.
10592
8ed32cc0
AC
10593 * symtab.c (sort_search_symbols): Use xfree.
10594
0e18d038
RE
105952002-02-23 Richard Earnshaw <rearnsha@arm.com>
10596
10597 * arm-linux-tdep.c (arm_linux_init_abi): Register
10598 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
10599 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
10600 definition with undef, since we don't want the sysvr4 definition.
10601 (SKIP_TRAMPOLINE_CODE): Likewise.
10602
27aac7ff
AC
106032002-02-23 Andrew Cagney <ac131313@redhat.com>
10604
10605 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
10606
10607 * configure.in: (AC_CHECK_FUNCS) Added test for
10608 canonicalize_file_name Regenerated.
10609 * config.in, configure: Regenerated.
10610 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
10611 defined use canonicalize_file_name.
7e336ba1 10612
65a6e0ee
MC
106132002-02-23 Michael Chastain <mec@shout.net>
10614
10615 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
10616
47b95330
AC
106172002-02-23 Andrew Cagney <ac131313@redhat.com>
10618
10619 * README: Remove references to cygnus.com.
10620 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
10621 dot com'' form. Remove references to cygnus.com and sourceware.
10622
696f451b
AC
106232002-02-23 Andrew Cagney <ac131313@redhat.com>
10624
10625 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
10626 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
10627 1003.1-2001 no longer allows "head -1".
10628 * gdb/Makefile.in (version.c): Likewise.
10629 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
10630 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
10631 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
10632
bbaca940
AC
106332002-02-23 Andrew Cagney <ac131313@redhat.com>
10634
10635 * cli/cli-decode.c (cmd_cfunc_eq): New function.
10636 * command.h (cmd_cfunc_eq): Declare.
10637 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
10638
10639 * cli/cli-cmds.h (is_complete_command): Change parameter to a
10640 ``struct cmd_list_element *''.
10641 * cli/cli-cmds.c (is_complete_command): Update. Use
10642 cmd_cfunc_eq.
10643 * top.c (execute_command): Pass the command to
10644 is_complete_command.
10645 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
10646
b8b8b047
AC
106472002-02-23 Andrew Cagney <ac131313@redhat.com>
10648
10649 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
10650 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
10651 architecture defines.
10652 * s390-tdep.c (s390_gdbarch_init): Likewise.
10653
19d3fc80
RE
106542002-02-23 Richard Earnshaw <rearnsha@arm.com>
10655
10656 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
10657 (arm_linux_push_arguments): Likewise.
10658 (arm_linux_init_abi): Register them. Also register linux-specific
10659 call_dummy_words.
10660 (find_minsym_and_objfile): Use strcmp, not STREQ.
10661 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
10662 (arm_linux_call_dummy_words): Delete declaration.
10663 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
10664 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
10665 declarations.
10666 (LOWEST_PC): Delete.
10667
3ab13650
PS
106682002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10669
10670 * maint.c (print_section_info): Do not prepend `0x' to filepos
10671 output, it will be handled by local_hex_string_custom.
10672
19d3fc80 106732002-02-23 Richard Earnshaw <rearnsha@arm.com>
85ae890c
RE
10674
10675 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
10676 (store_newfpe_double, store_newfpe_extended, store_fpregister)
10677 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
10678
d85a5daf
JB
106792002-02-22 Jim Blandy <jimb@redhat.com>
10680
10681 Indicate that the bcache functions don't change the strings
10682 they're passed.
10683 * bcache.h (bcache, hash): Add `const' keywords to declarations.
10684 * bcache.c (bcache, hash): Add `const' keywords to definitions.
10685
eeb25b8a
PM
106862002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
10687
10688 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
10689
6badb179
CF
106902002-02-21 Christopher Faylor <cgf@redhat.com>
10691
10692 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
10693 find the complete path to a loaded DLL.
10694
e8717518
FF
106952002-02-21 Fred Fish <fnf@redhat.com>
10696
10697 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
10698 that marks the end of the range of a function, enter a line number
10699 entry that has a line number of zero and a PC offset that matches
10700 the end of the function. This starts a range of PC's for which no
10701 line number information is known.
10702 * symtab.c (find_pc_sect_line): If our best fit is in a range of
10703 PC's for which no line number info is found (line number is zero)
10704 then we didn't find any valid line information.
10705 * symtab.h: Document use of zero line number entry.
10706
9abe5450
EZ
107072002-02-21 Elena Zannoni <ezannoni@redhat.com>
10708
10709 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
10710 (have_ptrace_getvrregs): Define for run time checks.
10711 (gdb_vrregset_t): New type for Altivec register handling.
10712 (fetch_register, store_register): Fetch/store altivec register
10713 when needed.
10714 (fetch_altivec_register, store_altivec_register): New functions.
10715 (supply_vrregset, fill_vrregset): New functions.
10716 (fetch_altivec_registers, store_altivec_registers): New functions.
10717 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
10718 registers as well.
10719
aaa38bb5
AJ
107202002-02-21 Jiri Smid <smid@suse.cz>
10721
10722 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
10723
b34db576
RE
107242002-02-21 Richard Earnshaw <rearnsha@arm.com>
10725
10726 * Makefile.in (armnbsd-nat.o): Update dependencies.
10727 * armnbsd-nat.c (supply_gregset): New function. Common code to
10728 supply the integer register set.
10729 (supply_fparegset): New function. Similar for FPA registers.
10730 (fetch_regs, fetch_fp_regs): Use them.
10731 (fetch_core_registers): Likewise.
10732 (fetch_elfcore_registers): New function.
10733 (arm_netbsd_elfcore_fns): New core-file type specification.
10734 (_initialize_arm_netbsd_nat): Register it.
10735
3e56fc4b
RE
107362002-02-21 Richard Earnshaw <rearnsha@arm.com>
10737
10738 * armnbsd-nat.c: Include gdbcore.h.
10739 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
10740 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
10741 'void' to declaration, to shut up ARI.
10742 (fetch_core_registers): Make static. Rewrite using supply_register.
10743 (arm_netbsd_core_fns): New core-file type specification.
10744 (_initialize_arm_netbsd_nat): New function.
10745
097f6b0b
CF
107462002-02-21 Christopher Faylor <cgf@redhat.com>
10747
10748 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
10749 value.
10750
c914e0cc
CF
107512002-02-20 Christopher Faylor <cgf@redhat.com>
10752
10753 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
10754 fails.
10755
385fa495
DJ
107562002-02-20 Daniel Jacobowitz <drow@mvista.com>
10757
10758 * jv-exp.y (parse_number): Change type of implicit longs
10759 to builtin_type_uint64.
10760
e5f1222d
DJ
107612002-02-20 Daniel Jacobowitz <drow@mvista.com>
10762
10763 * gdbserver/linux-low.c (mywait): Change argument to waitpid
10764 to be an integer instead of a `union wait'.
10765
75c9abc6
DJ
107662002-02-20 Daniel Jacobowitz <drow@mvista.com>
10767
10768 * mips-linux-nat.c: Call the operating system GNU/Linux.
10769 * mips-linux-tdep.c: Likewise.
10770 * mips-tdep.c: Likewise.
10771
551792a5
DJ
107722002-02-20 Daniel Jacobowitz <drow@mvista.com>
10773
10774 Fix PR gdb/265.
10775 * jv-exp.y (parse_number): Handle 64-bit integers.
10776
ee6e2b82
DJ
107772002-02-20 Daniel Jacobowitz <drow@mvista.com>
10778
10779 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
10780 AC_STDC_HEADERS to AC_HEADER_STDC.
10781 * gdbserver/configure: Regenerated.
10782
a48442a0
RE
107832002-02-20 Richard Earnshaw <rearnsha@arm.com>
10784
10785 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
10786 is defined.
10787 * sparc-tdep.c (get_longjmp_target): Likewise.
10788
fe419ffc
RE
107892002-02-20 Richard Earnshaw <rearnsha@arm.com>
10790
10791 * News: Add news about ARM and Multi-arch. Mention the new target
10792 arm*-*-netbsd*.
10793
5832ed7e
JB
107942002-02-19 Jim Blandy <jimb@redhat.com>
10795
10796 * stabsread.c (error_type_complaint): Improve error message.
10797
84563040
DJ
107982002-02-19 Daniel Jacobowitz <drow@mvista.com>
10799
10800 * gdbserver/README: Update documentation.
10801 * gdbserver/configure.in: Update configury to match documentation.
10802 * gdbserver/Makefile.in: Likewise.
10803 * gdbserver/configure: Regenerated.
10804 * gdbserver/aclocal.m4: New file, generated by aclocal.
10805 * gdbserver/config.in: New file, generated by autoheader.
10806
375fd65b
RE
108072002-02-19 Richard Earnshaw <rearnsha@arm.com>
10808
10809 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
10810 armnbsd-nat.c.
10811
08216dd7
RE
108122002-02-19 Richard Earnshaw <rearnsha@arm.com>
10813
10814 * arm-tdep.h (enum arm_float_model): New enum.
10815 (struct gdbarch_tdep): Add fp_model.
10816 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
10817 up floating-point conversions until we know the floating-point model
10818 in use by the inferior. Don't complain about being unable to
10819 determine the ABI of the inferior when we don't have one.
10820 (arm_extract_return_value): Support different floating-point models.
10821 (arm_store_return_value): Likewise.
aaa38bb5 10822 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
08216dd7
RE
10823 ARM_FLOAT_SOFT.
10824 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
10825
65d6d66a
PS
108262002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10827
10828 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
10829 of ``current_gdbarch''.
10830
47221191
RE
108312002-02-19 Richard Earnshaw <rearnsha@arm.com>
10832
10833 * armnbsd-nat.c : ANSIfy all function declarations.
10834 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
10835 (fetch_inferior_registers): Re-implement in terms of above.
10836 (store_register, store_regs, store_fp_register, store_fp_regs): New.
10837 (store_inferior_registers): Re-implement in terms of above.
10838
fdf39c9a
RE
108392002-02-19 Richard Earnshaw <rearnsha@arm.com>
10840
aaa38bb5 10841 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
fdf39c9a
RE
10842 kernel.
10843 * arm-linux-tdep.c: Likewise.
10844 * config/arm/tm-linux.h: Likewise.
10845
93247f88
RE
108462002-02-19 Richard Earnshaw <rearnsha@arm.com>
10847
10848 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
10849 * config/arm/nbsd.mt (TM_FILE): Delete.
10850 * config/arm/tm-nbsd.h: Delete.
10851
d7b486e7
RE
108522002-02-19 Richard Earnshaw <rearnsha@arm.com>
10853
10854 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
10855 Initialize CALL_DUMMY_LENGTH.
10856
41d39a95
RE
108572002-02-19 Richard Earnshaw <rearnsha@arm.com>
10858
10859 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
10860 function.
10861 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
aaa38bb5 10862 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
41d39a95
RE
10863 defines one thing and that is incorrect for this port.
10864 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
10865
e1195560
PM
108662002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
10867
10868 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
10869
c1748f97
PM
108702002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
10871
10872 * win32-nat.c (display_selector): New function. Displays information
10873 about the information returned by GetThreadSelectorEntry API function.
10874 (display_selectors): New function. Displays the infomation of
10875 the selector given as argument, or of CS, DS ans FS selectors
10876 if no argument is given.
10877 ( _initialize_inftarg): Add "w32" as info prefix command.
10878 Add "info w32 selector" as command calling display_selectors.
10879
e41e6bbf
PM
108802002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
10881
10882 * i386-tdep.c (get_longjmp_target): Fix compilation failure
10883 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
10884 if not defined.
10885
0d3a9f48
RE
108862002-02-18 Richard Earnshaw <rearnsha@arm.com>
10887
10888 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
10889
3fb4b924
RE
108902002-02-18 Richard Earnshaw <rearnsha@arm.com>
10891
10892 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
10893 (arm_fix_call_dummy): Call it.
10894 (arm_call_dummy_breakpoint_offset): Delete.
10895 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
10896 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
10897
7f55af32
AC
108982002-02-18 Andrew Cagney <ac131313@redhat.com>
10899
10900 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
10901 Default to func_frame_chain_valid.
10902 * gdbarch.h, gdbarch.c: Re-generate.
10903 * frame.h (FRAME_CHAIN_VALID): Delete definition.
10904
05f13b9c
EZ
109052002-02-18 Elena Zannoni <ezannoni@redhat.com>
10906
10907 * ppc-linux-nat.c: Update copyright.
10908 (fetch_register, store_register): Add tid parameter, don't compute
10909 tid here.
10910 (fetch_ppc_registers, store_ppc_registers): Add tid
10911 parameter. Pass it along to callees.
10912 (fetch_inferior_registers, store_inferior_registers): Compute tid
10913 here, and pass it to calleed functions.
10914 (fill_gregset, supply_fpregset): Clean up formatting.
10915
d7afb4c9
RE
109162002-02-18 Richard Earnshaw <rearnsha@arm.com>
10917
10918 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
10919 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
10920
9df628e0
RE
109212002-02-18 Richard Earnshaw <rearnsha@arm.com>
10922
10923 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
10924 * gdbarch.c gdbarch.h: Regenerate.
10925 * breakpoint.c (create_longjmp_breakpoint): Always compile this
10926 function.
10927 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
10928 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
10929 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
10930
10931 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
10932 * arm-tdep.c (arm_get_longjmp_target): New function.
10933 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
10934 this to a positive value register arm_get_longjmp_target as the
10935 longjmp handler.
10936 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
10937 (arm_linux_init_abi): Set up longjmp description in tdep.
10938 * armnbsd-nat.c (get_longjmp_target): Delete.
10939 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
10940 description in tdep.
10941 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
10942 (get_longjmp_target): Delete declaration.
10943 (GET_LONGJMP_TARGET): Delete.
10944 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
10945 (GET_LONGJMP_TARGET): Delete.
10946
57bc8964
KB
109472002-02-17 Kevin Buettner <kevinb@redhat.com>
10948
10949 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
10950 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
10951 of ``current_gdbarch''.
10952
83d31a92
TT
109532002-02-17 Tom Tromey <tromey@redhat.com>
10954
10955 * cli/cli-cmds.c (compare_strings): New function.
10956 (complete_command): Only print each unique item once.
10957 * completer.h (complete_line): Declare.
10958 * completer.c (complete_line): New function.
10959 (line_completion_function): Use it.
10960
17ef5d92
AC
109612002-02-16 Andrew Cagney <ac131313@redhat.com>
10962
10963 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
10964 * gdbarch.h, gdbarch.c: Re-generate.
10965
491b8946
DJ
109662002-02-16 Daniel Jacobowitz <drow@mvista.com>
10967
10968 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
10969
109702002-02-16 Daniel Jacobowitz <drow@mvista.com>
10971
10972 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
10973 * valops.c (value_arg_coerce): Don't take the address of a reference
10974 to convert an argument to a reference.
10975
dfe7f3ac
CF
109762002-02-15 Christopher Faylor <cgf@redhat.com>
10977
10978 * win32-nat.c (get_image_name): New function.
10979 (handle_load_dll): Use get_image_name function.
10980 (get_child_debug_event): Avoid registering debug events until possibly
10981 execed process is started.
10982 (child_create_inferior): Allow invocation via shell so that command
10983 line redirection, etc. works ok.
10984 (_initialize_inftarg): Add new command: "set shell" to control whether
10985 a shell is used to start a process.
10986
1d33e73a
DJ
109872002-02-15 Daniel Jacobowitz <drow@mvista.com>
10988
10989 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
10990 instead of find_register_by_number.
10991 (cannot_store_register): Likewise.
10992
48cd0caa
PM
109932002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
10994
aaa38bb5 10995 * dwarf2read.c: Replace fprintf (stderr, ...) by
48cd0caa
PM
10996 fprintf_unfiltered (gdb_stderr, ...).
10997
8656e7d8
DJ
109982002-02-15 Daniel Jacobowitz <drow@mvista.com>
10999
11000 * gdbserver/gdbserver.1: Document --attach.
11001
66e810cd
RE
110022002-02-15 Richard Earnshaw <rearnsha@arm.com>
11003
11004 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
11005 descriptions.
11006 * arm-tdep.c (arm_default_arm_le_breakpoint)
11007 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
11008 (arm_default_thumb_be_breakpoint): New. Initialize them from
11009 traditional breakpoint defines.
11010 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
11011 (arm_gdbarch_init): Initialize new breakpoint variables.
11012 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
11013 (arm_linux_init_abi): Initialize linux-specific breakpoint.
11014 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
11015 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
11016 code out to ...
11017 (arm_netbsd_init_abi_common): ... here; new function.
11018 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
11019 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
11020 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
11021 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
11022
97e03143
RE
110232002-02-15 Richard Earnshaw <rearnsha@arm.com>
11024
11025 * arm-tdep.h (enum arm_abi): New enum.
11026 (struct gdbarch_tdep): New structure.
11027 (LOWEST_PC): Provide a default.
11028 (arm_gdbarch_register_os_abi): Declare new function.
11029 * arm-tdep.c (arm_abi_names): New array.
11030 (process_note_abi_tag_sections): New function.
11031 (get_elfosabi): New function.
11032 (arm_gdbarch_register_os_abi): New function.
11033 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
11034 support for that ABI has been built in, then call the appropriate
11035 configuration routine. Use gdbarch_num_regs() to get the number
11036 of registers.
11037 (arm_dump_tdep): New function.
11038 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
11039 place-holder functions.
11040 (_initialize_arm_tdep): Register them.
11041 * config/arm/tm-arm.h (LOWEST_PC): Delete.
11042
11043 * armnbsd-tdep.c: New file.
11044 * Makefile.in (armnbsd-tdep.o): Add dependencies.
11045 * config/arm/nbsd.mt (TDEPFILES): Add it.
11046 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
11047
11048 * armnbsd-nat.c: Include regcache.h.
11049 * Makefile.in (armnbsd-nat.o): Update dependency list.
11050
11051 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
11052
ad68be46
DJ
110532002-02-14 Daniel Jacobowitz <drow@mvista.com>
11054
11055 * gdbserver/Makefile.in: Fix typos in target rules.
11056
003d6d1d
DJ
110572002-02-14 Daniel Jacobowitz <drow@mvista.com>
11058
aaa38bb5 11059 Fix part of PR gdb/267.
003d6d1d
DJ
11060 * linespec.c (find_methods): Handle constructors specially for now.
11061
6b230f1b
CV
110622002-02-14 Corinna Vinschen <vinschen@redhat.com>
11063
11064 * arm-tdep.c (arm_push_arguments): Eliminate special float type
11065 handling.
11066 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
11067 standard_coerce_float_to_double().
11068
1ea98d12
CF
110692002-02-14 Christopher Faylor <cgf@redhat.com>
11070
11071 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
11072 GDBINIT_FILENAME.
11073
dd47e6fd
EZ
110742002-02-14 Elena Zannoni <ezannoni@redhat.com>
11075
11076 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
11077 find_variant_by_name, because it confuses the multiarch
11078 framework. Return NULL if there isn't an architecture with the
11079 user supplied name, instead of forcing a different one without
11080 recording the change with the multiarch machinery.
11081 (find_variant_by_name): Delete.
11082
d7e39b9e
PS
110832002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11084
11085 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
11086 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
11087
76e42a4f
MH
110882002-02-13 Martin M. Hunt <hunt@redhat.com>
11089
aaa38bb5 11090 * stack.c (print_frame_info_base): When calling
76e42a4f
MH
11091 print_frame_info_listing_hook, set current_source_symtab.
11092
0a30fbc4
DJ
110932002-02-14 Daniel Jacobowitz <drow@mvista.com>
11094
11095 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
11096 and remove unused $(INCLUDE_DIR).
11097 Add regcache.c to OBS.
11098 Add generated register protocol files to clean target.
11099 Update dependencies for new objects, obsolete old target code.
11100
11101 * gdbserver/linux-low.c: Remove all platform-specific code to
11102 new files. Remove various dead code. Update to use regcache
11103 functionality.
11104 * gdbserver/remote-utils.c (fromhex): Add return statement
11105 to quiet warning.
11106 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
11107 constant.
11108 (input_interrupt): Add integer parameter to match prototype
11109 of a signal handler.
11110 (outreg): Use register_data ().
11111 (prepare_resume_reply): Use gdbserver_expedite_regs.
11112 * gdbserver/server.c (main): Dynamically allocate own_buf because
11113 PBUFSIZ is no longer constant. Use registers_to_string () and
11114 registers_from_string ().
11115 * gdbserver/server.h: No longer include "defs.h". Add prototypes
11116 for error (), fatal (), and warning (). Update definition of
11117 PBUFSIZ to use regcache functionality. Add include guard.
11118 * gdbserver/utils.c (fatal): Add missing ``const''.
11119 (warning): New function.
11120
11121 * regformats/regdat.sh: Include "regcache.h" in generated files.
11122 Provide init_registers () function.
11123 * regformats/regdef.h: Add prototype for set_register_cache ().
11124 Add include guard.
11125
11126 * gdbserver/linux-arm-low.c: New file.
11127 * gdbserver/linux-i386-low.c: New file.
11128 * gdbserver/linux-ia64-low.c: New file.
11129 * gdbserver/linux-m68k-low.c: New file.
11130 * gdbserver/linux-mips-low.c: New file.
11131 * gdbserver/linux-ppc-low.c: New file.
11132 * gdbserver/linux-sh-low.c: New file.
11133
11134 * gdbserver/regcache.c: New file.
11135 * gdbserver/regcache.h: New file.
11136
11137 * gdbserver/low-linux.c: Removed obsolete file.
11138
4cc841d0
DJ
111392002-02-14 Daniel Jacobowitz <drow@mvista.com>
11140
11141 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
11142 * config/i386/linux.mt: Likewise.
11143 * config/ia64/linux.mt: Likewise.
11144 * config/m68k/linux.mh: Likewise.
11145 * config/powerpc/linux.mh: Likewise.
11146 * config/mips/linux.mt: Likewise.
11147
11148 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
11149
11150 * config/i386/i386lynx.mh: Mark gdbserver variables
11151 as (currently) obsolete for this target.
11152 * config/i386/nbsd.mt: Likewise.
11153 * config/i386/nbsdelf.mt: Likewise.
11154 * config/m32r/m32r.mt: Likewise.
11155 * config/m68k/m68klynx.mh: Likewise.
11156 * config/m68k/nbsd.mt: Likewise.
11157 * config/m68k/sun3os4.mh: Likewise.
11158 * config/mips/vr5000.mt: Likewise.
11159 * config/ns32k/nbsd.mt: Likewise.
11160 * config/pa/hppabsd.mh: Likewise.
11161 * config/pa/hppaosf.mh: Likewise.
11162 * config/powerpc/nbsd.mt: Likewise.
11163 * config/rs6000/rs6000lynx.mh: Likewise.
11164 * config/s390/s390.mt: Likewise.
11165 * config/s390/s390x.mt: Likewise.
11166 * config/sparc/sparclynx.mh: Likewise.
11167 * config/sparc/sun4os4.mh: Likewise.
11168 * config/i386/x86-64linux.mt: Likewise.
11169 * config/sparc/linux.mh: Likewise.
11170
a85f51e7
DJ
111712002-02-14 Daniel Jacobowitz <drow@mvista.com>
11172
11173 * configure.tgt: Configure gdbserver only for known working
11174 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
11175 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
11176 SUBDIRS if it is configured. Update comment for ${nativefile}.
11177 * configure: Regenerated.
11178
65554fef
MS
111792002-02-13 Michael Snyder <msnyder@redhat.com>
11180
670a52db
MS
11181 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
11182
6dbdc4a3
MS
11183 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
11184 (default_gcore_mach): Just return 0, work around a problem in bfd.
11185 (default_gcore_target): OK to return NULL if exec_bfd is null.
11186 (make_mem_sec): Use a cast, avoid a warning.
11187
11188 * procfs.c (find_memory_regions_callback): Use a cast instead of
aaa38bb5 11189 calling host_pointer_to_address (which complains if
6dbdc4a3
MS
11190 sizeof (host pointer) != sizeof (target pointer)).
11191 (procfs_make_note_section): Avoid overflow in psargs string.
11192
aaa38bb5 11193 * procfs.c (procfs_make_note_section): Make the default
65554fef
MS
11194 implementation return an error.
11195
111962002-02-13 Rodney Brown <rbrown64@csc.com.au>
11197
11198 * procfs.c (procfs_make_note_section): Provide a default definition
11199 (for alpha-dec-osf4.0f). Fix typos.
11200
1e4d76e7
EZ
112012002-02-13 Elena Zannoni <ezannoni@redhat.com>
11202
11203 * linux-proc.c: Add include of regcache.h.
11204 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
11205
b6d1a1d5
AC
112062002-02-13 Andrew Cagney <ac131313@redhat.com>
11207
11208 From 2002-01-18 Greg McGary <greg@mcgary.org>:
aaa38bb5
AJ
11209 * memattr.c (create_mem_region): Disallow useless empty region.
11210 Regions are half-open intervals, so allow [A..B) [B..C) as
65554fef 11211 non-overlapping.
b6d1a1d5 11212
6c6ea35e
MC
112132002-02-13 Michael Chastain <mec@shout.net>
11214
11215 * defs.h: Kill CONST_PTR.
11216 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
11217 * c-lang.c (c_builtin_types): Likewise.
11218 * ch-lang.c (ch_builtin_types): Likewise.
11219 * f-lang.c (f_builtin_types): Likewise.
11220 * language.c (unknown_builtin_types): Likewise.
11221 * m2-lang.c (m2_builtin_types): Likewise.
11222 * p-lang.c (pascal_builtin_types): Likewise.
11223 * scm-lang.c (c_builtin_types): Likewise.
11224
3e0b0f48
KS
112252002-02-13 Keith Seitz <keiths@redhat.com>
11226
11227 * arm-tdep.h (arm_get_next_pc): Add declaration.
11228
67255d04
RE
112292002-02-13 Richard Earnshaw <rearnsha@arm.com>
11230
11231 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
11232 with other related struct-returning functions.
11233 (arm_extract_struct_value_address): New function.
11234 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
11235 initialize float_format, double_format and long_double_format as
11236 appropriate to the endianness of the target.
11237 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
11238 (arm_use_struct_convention): Delete declaration.
11239 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
11240
079777f6
KS
112412002-02-13 Keith Seitz <keiths@redhat.com>
11242
11243 * defs.h (core_addr_to_string_nz): New function.
11244
34588f23
MK
112452002-02-13 Mark Kettenis <kettenis@gnu.org>
11246
11247 Apply missing bits of 2002-01-15 patch.
11248 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
11249 (fill_fpregset): Use i387_fill_fsave.
11250
49b563f9
KS
112512002-02-12 Keith Seitz <keiths@redhat.com>
11252
49b563f9
KS
11253 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
11254 (core_addr_to_string_nz): New function.
11255
aeb98c60
RE
112562002-02-11 Richard Earnshaw <rearnsha@arm.com>
11257
11258 * arm-linux-nat.c: Really include arm-tdep.h.
11259 * config/arm/tm-linux.h (struct type, struct value): Declare.
11260
65554fef
MS
112612002-02-11 Michael Snyder <msnyder@redhat.com>
11262
11263 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
11264 (gcore section): Ifdef for Solaris and Unixware only.
11265 (procfs_do_thread_registers): Unixware needs one lwpstatus
11266 per thread (not one prstatus or pstatus).
11267 (procfs_make_note_section): Iterate only over kernel threads (lwps),
11268 not over all gdb threads. For unixware, call elfcore_write_pstatus
11269 once before iterating over threads.
11270
34e8f22d
RE
112712002-02-11 Richard Earnshaw <rearnsha@arm.com>
11272
11273 * arm-tdep.h: New file.
11274 * arm-tdep.c: Include arm-tdep.h.
11275 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
11276 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
11277 (arm_print_float_info, arm_register_type, convert_to_extended)
11278 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
11279 (arm_extract_return_value, arm_register_name): Make static.
11280 (arm_software_single_step): Similarly. Fix types in declaration.
11281 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
11282 (arm_store_return_value, arm_store_struct_return): New functions.
11283 (arm_gdbarch_init): Register the above functions. Also register
11284 call_dummy_start_offset, sizeof_call_dummy_words,
11285 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
11286 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
aaa38bb5 11287 max_register_virtual_size, register_size. Set up
34e8f22d
RE
11288 prologue_cache.saved_regs here, rather than ...
11289 (_initialize_arm_tdep): ... here.
11290 * config/arm/tm-arm.h (struct type, struct value): Delete forward
11291 declarations.
11292 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
11293 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
11294 (arm_print_float_info, arm_register_type, convert_to_extended)
11295 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
11296 (arm_extract_return_value, arm_register_name): Delete declarations.
11297 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
11298 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
11299 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
11300 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
11301 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
11302 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
11303 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
11304 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
11305 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
11306 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
11307 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
11308 (arm_get_next_pc): No-longer static -- these are needed by the RDI
11309 interface.
11310 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
11311 * remote-rdi.c remote-rdp.c: Likewise.
11312 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
11313 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
11314 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
11315 definition.
11316
11317 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
11318 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
11319 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
11320 from non-ARM_ prefixed definitions.
11321 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
11322 all uses of above.
11323 * remote-rdi.c remote-rdp.c: Likewise.
11324 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
11325
148754e5
RE
113262002-02-11 Richard Earnshaw <rearnsha@arm.com>
11327
11328 * arm-tdep.c (arm_frameless_function_invocation)
11329 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
11330 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
11331 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
11332 (arm_pop_frame, arm_get_next_pc): Make static.
11333 (arm_gdbarch_init): Register above in gdbarch structure.
11334 (arm_read_fp): Renamed from arm_target_read_fp.
11335 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
11336 * config/arm/tm-arm.h (arm_frameless_function_invocation)
11337 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
11338 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
11339 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
11340 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
11341 (arm_pc_is_thumb_dummy): Delete declarations.
fcfb8836
RE
11342 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
11343 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
11344 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
11345 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
148754e5 11346
434d2d4f
DJ
113472002-02-10 Daniel Jacobowitz <drow@mvista.com>
11348
11349 * symtab.c (compare_search_syms): New function.
11350 (sort_search_symbols): New function.
11351 (search_symbols): Sort symbols after searching rather than
11352 before.
11353
55241689
AC
113542002-02-10 Andrew Cagney <ac131313@redhat.com>
11355
11356 * NEWS: Linux -> GNU/Linux.
11357
028c194b
AC
113582002-02-10 Andrew Cagney <ac131313@redhat.com>
11359
11360 * gdbarch.sh: For for level one methods, disallow a definition
11361 when partially multi-arched. Add comments explaining rationale.
11362 * gdbarch.h: Re-generate.
11363
6acf50cd
AC
113642002-02-10 Andrew Cagney <ac131313@redhat.com>
11365
11366 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
11367 multi-arch partial.
aaa38bb5 11368
50248794
AC
113692002-02-10 Andrew Cagney <ac131313@redhat.com>
11370
11371 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
11372 field. Use diff -u.
11373 * gdbarch.c: Re-generate.
11374
c30e0066
AC
113752002-02-10 Andrew Cagney <ac131313@redhat.com>
11376
9b56c5f3 11377 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
c30e0066
AC
11378 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
11379 partial.
11380
6e6d6484
AC
113812002-02-10 Andrew Cagney <ac131313@redhat.com>
11382
11383 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
11384 multi-arch partial.
11385 (PUSH_ARGUMENTS): Switch to using predefault.
11386 * gdbarch.c: Regenerate.
11387
c203844d
AC
113882002-02-10 Andrew Cagney <ac131313@redhat.com>
11389
11390 * valops.c (PUSH_ARGUMENTS): Delete definition.
11391 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
11392 partial. Default to default_push_arguments.
11393 * gdbarch.h, gdbarch.c: Regenerate.
11394
b5a2688f
AC
113952002-02-09 Andrew Cagney <ac131313@redhat.com>
11396
11397 * defs.h (throw_exception): Rename return_to_top_level. Update
11398 comments.
11399 * utils.c (error_stream, internal_verror, quit): Ditto.
11400 * top.c (throw_exception, catcher): Ditto.
11401 * sparclet-rom.c (sparclet_load): Ditto.
11402 * remote.c (interrupt_query, minitelnet): Ditto.
11403 * remote-sds.c (interrupt_query): Ditto.
11404 * remote-mips.c (mips_error, mips_kill): Ditto.
11405 * ocd.c (interrupt_query): Ditto.
11406 * monitor.c (monitor_interrupt_query): Ditto.
11407 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
11408 * target.h: Update comment.
aaa38bb5 11409
b5a2688f 11410 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
aaa38bb5 11411
2fa5c1e0
AC
114122002-02-09 Andrew Cagney <ac131313@redhat.com>
11413
11414 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
11415 default_double_format.
11416 * gdbarch.h, gdbarch.c: Re-generate.
11417 * findvar.c (floatformat_unknown): Delete variable definition.
11418 * doublest.h (floatformat_unknown): Delete variable declaration.
11419
da966255
JB
114202002-02-09 Jim Blandy <jimb@redhat.com>
11421
11422 * stabsread.c (read_type): Add code to parse Sun's syntax for
11423 prototyped function types.
11424
123a4891
AC
114252002-02-09 Andrew Cagney <ac131313@redhat.com>
11426
11427 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
11428 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
11429
fb39c8f3
PS
114302002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11431
11432 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
11433 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
11434 now _initialize_xcoffsolib gets called again and overrides the
11435 commands from solib.c in a native configuration.
11436
0b87a11d
MK
114372002-02-09 Mark Kettenis <kettenis@gnu.org>
11438
11439 * doublest.c (store_typed_floating): Don't try to return a value.
11440 Fixes PR gdb/290.
11441
bdc2fc72
JB
114422002-02-08 Jim Blandy <jimb@redhat.com>
11443
11444 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
11445 is prototyped and has no arguments, print its argument list as
11446 `(void)'.
11447
da69bbcf
CD
114482002-02-08 Chris Demetriou <cgd@broadcom.com>
11449
11450 * MAINTAINERS (write-after-approval): Add myself.
11451 (paper-trail): I've escaped!
aaa38bb5 11452
b69571f5
CF
114532002-02-08 Christopher Faylor <cgf@redhat.com>
11454
11455 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
11456 changes.
11457 (_initialize_check_for_gdb_ini): Ditto.
11458
f6871398
MH
114592002-02-08 Martin M. Hunt <hunt@redhat.com>
11460
11461 * win32-nat.c (cygwin_pid_to_str): Fix typo.
11462 xaprintf -> xasprintf.
11463
4e52d31c
PM
114642002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
11465
11466 * win32-nat.c: Remove use of printf and sprintf functions.
11467
39bbf761
RE
114682002-02-08 Richard Earnshaw <rearnsha@arm.com>
11469
11470 * arm-tdep.c (arm_frame_chain_valid): Make static.
11471 (arm_push_arguments): Likewise.
11472 (arm_gdbarch_init): New function.
11473 (_initialize_arm_tdep): Call it.
11474 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
11475 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
11476 (FRAME_CHAIN_VALID): Delete.
11477 (arm_frame_chain_valid): Delete declaration.
11478 (PUSH_ARGUMENTS): Delete.
11479 (arm_push_arguments): Delete declaration.
11480 (CALL_DUMMY_P): Delete.
11481
9c9532c9
CV
114822002-02-08 Andrew Cagney <ac131313@redhat.com>
11483 Corinna Vinschen <vinschen@redhat.com>
11484
11485 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
11486 on builtin float types.
11487
4e8f7a8b
DJ
114882002-02-08 Daniel Jacobowitz <drow@mvista.com>
11489
11490 * utils.c: Include <curses.h> before "bfd.h".
11491 * tui/tui-hooks.c: Likewise.
11492 * tui/tui.c: Likewise.
11493 * tui/tuiCommand.c: Likewise.
11494 * tui/tuiData.c: Likewise.
11495 * tui/tuiDataWin.c: Likewise.
11496 * tui/tuiDisassem.c: Likewise.
11497 * tui/tuiGeneralWin.c: Likewise.
11498 * tui/tuiIO.c: Likewise.
11499 * tui/tuiLayout.c: Likewise.
11500 * tui/tuiRegs.c: Likewise.
11501 * tui/tuiSource.c: Likewise.
11502 * tui/tuiSourceWin.c: Likewise.
11503 * tui/tuiStack.c: Likewise.
11504 * tui/tuiWin.c: Likewise.
11505
cd4bffcf
EZ
115062002-02-07 Elena Zannoni <ezannoni@redhat.com>
11507
11508 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
11509 to include space for pseudoregs as well. Update loops accordingly.
11510 (sh_fp_frame_init_saved_regs): Ditto.
11511 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
11512
26806ce2
AC
115132002-02-07 Andrew Cagney <ac131313@redhat.com>
11514
11515 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
11516 Add Richard Earnshaw to Arm maintainers.
11517
97fdab62
AC
115182002-02-07 Andrew Cagney <ac131313@redhat.com>
11519
a6b98203
AC
11520 * defs.h (warning_begin): Delete declaration.
11521
97fdab62
AC
11522 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
11523 Delete macro.
11524
78b29b40
MS
115252002-02-07 Michael Snyder <msnyder@redhat.com>
11526
aaa38bb5 11527 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
78b29b40
MS
11528 Logic bug, remove misplaced else.
11529
d8849953
KD
115302002-02-07 Klee Dienes <klee@apple.com>
11531
11532 * fork-inferior.c (fork_inferior): Add '!' to the list of
11533 characters that need to be quoted when building a string for the
11534 shell. Quote '!' specifically with a backslash, since CSH chokes
11535 when trying to evaluate "str!str".
aaa38bb5 11536
095778a0
NC
115372002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
11538
11539 * rdi-share/host.h: Only provide a typedef for bool if it is not
11540 defined.
11541
1900040c
MS
115422002-02-04 Michael Snyder <msnyder@redhat.com>
11543
11544 * breakpoint.h (enum bptype): Add new overlay event bp type.
11545 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
aaa38bb5 11546
1900040c
MS
11547 * breakpoint.c (create_internal_breakpoint): New function.
11548 (internal_breakpoint_number): Moved into create_internal_breakpoint.
11549 (create_longjmp_breakpoint): Use create_internal_breakpoint.
11550 (create_thread_event_breakpoint): Ditto.
11551 (create_solib_event_breakpoint): Ditto.
11552 (create_overlay_event_breakpoint): New function.
11553 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
11554 (update_breakpoints_after_exec): Delete and re-initialize
11555 overlay event breakpoints after an exec. Add FIXME comment
11556 about longjmp breakpoint.
11557 (print_it_typical): Ignore overlay event breakpoints.
11558 (print_one_breakpoint): Ditto.
11559 (mention): Ditto.
11560 (bpstat_what): Do not stop for overlay event breakpoints.
11561 (delete_breakpoint): Don't delete overlay event breakpoints.
11562 (breakpoint_re_set_one): Delete the overlay event breakpoint.
11563 (breakpoint_re_set): Re-create overlay event breakpoint.
11564
11565 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
11566 (overlay_manual_command): Disable overlay breakpoints.
11567 (overlay_off_command): Disable overlay breakpoints.
11568
082fc60d
RE
115692002-02-06 Richard Earnshaw <rearnsha@arm.com>
11570
11571 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
11572 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
11573 to here from config/tm-arm.h.
11574 (coff_sym_is_thumb): Make static.
11575 (arm_elf_make_msymbol_special): New function.
11576 (arm_coff_make_msymbol_special): New function.
11577 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
11578 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
11579 (coff_sym_is_thumb): Delete declaration.
11580 (arm_elf_make_msymbol_special): Declare.
11581 (arm_coff_make_msymbol_special): Declare.
11582 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
11583 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
11584
039c5766
RE
115852002-02-06 Richard Earnshaw <rearnsha@arm.com>
11586
11587 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
11588
115892002-02-06 Richard Earnshaw <rearnsha@arm.com>
11590
11591 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
11592 * gdbarch.c gdbarch.h: Regenerate.
11593 * arch-utils.c (default_print_float_info): New function.
11594 * arch-utils.h (default_print_float_info): Prototype it.
11595 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
11596 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
11597 (PRINT_FLOAT_INFO): Document it.
11598
11599 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
11600 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
11601 (PRINT_FLOAT_INFO): Define.
11602
58fa08f0
PM
116032002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
11604
aaa38bb5 11605 * win32-nat.c (_initialize_check_for_gdb_ini):
58fa08f0
PM
11606 Add typecast to sprintf argument to suppress a warning.
11607
7393af7c
PM
116082002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
11609
58fa08f0 11610 * win32-nat.c (last_sig): Changed type of variable to target_signal,
7393af7c
PM
11611 to allow easier handling of pass state.
11612 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
11613 that gives exception name and address.
11614 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
aaa38bb5 11615 and set last_sig value to ourstatus->value.sig. Some missing
7393af7c 11616 exceptions added.
aaa38bb5
AJ
11617 (child_continue): Correctly report continue_status.
11618 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
7393af7c 11619 TARGET_SIGNAL_0 (new default value).
aaa38bb5 11620 (child_resume): consider sig argument passed to decide if
7393af7c
PM
11621 the exception should be passed to debuggee or not.
11622
6af4589c
MS
116232002-02-05 Michael Snyder <msnyder@redhat.com>
11624
11625 * regcache.c (fetch_register): Call target_fetch_register
11626 only if we don't call FETCH_PSEUDO_REGISTER.
11627 (store_register): Call target_store_register only if we
11628 don't call STORE_PSEUDO_REGISTER.
11629
a2cf933a
EZ
116302002-02-05 Elena Zannoni <ezannoni@redhat.com>
11631
11632 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
11633 ELF_MAKE_MSYMBOL_SPECIAL.
11634 * gdbarch.c, gdbarch.h: Regenerate.
11635 * arch-utils.c (default_make_msymbol_special): New function.
aaa38bb5 11636 * arch-utils.h (default_make_msymbol_special): Export.
a2cf933a
EZ
11637 * elfread.c (elf_symtab_read): Compile use of
11638 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
11639 multiarched.
11640 * coffread.c (coff_symtab_read): Ditto, for
11641 COFF_MAKE_MSYMBOL_SPECIAL.
11642
6bb7be43
JB
116432002-02-05 Jim Blandy <jimb@redhat.com>
11644
11645 * solib-svr4.c (svr4_truncate_ptr): New function.
11646 (svr4_relocate_section_addresses): Do the address arithmetic with
11647 the appropriate truncation for target addresses, even when
11648 CORE_ADDR is larger than a target address.
11649
e18651ec
DJ
116502002-02-05 Daniel Jacobowitz <drow@mvista.com>
11651
11652 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
11653 to (int *).
11654
6b2725be
DJ
116552002-02-05 Daniel Jacobowitz <drow@mvista.com>
11656
11657 * gdbserver/linux-low.c (kill_inferior): Remove commented out
11658 code.
11659
fca9e603
DJ
116602002-02-05 Daniel Jacobowitz <drow@mvista.com>
11661
11662 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
11663
6c537a52
DJ
116642002-02-05 Daniel Jacobowitz <drow@mvista.com>
11665
11666 * gdbserver/linux-low.c: Remove unused include files.
11667
d844cde6
DJ
116682002-02-05 Daniel Jacobowitz <drow@mvista.com>
11669
11670 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
11671 (read_inferior_memory): Use it.
11672 (write_inferior_memory): Likewise.
11673
d07c63e7
DJ
116742002-02-05 Daniel Jacobowitz <drow@mvista.com>
11675
11676 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
11677 grubbing through sys_errlist.
11678
da6d8c04
DJ
116792002-02-05 Daniel Jacobowitz <drow@mvista.com>
11680
11681 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
11682
5b421780
PM
116832002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11684 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
11685
9f60d481
AC
116862002-02-04 Andrew Cagney <ac131313@redhat.com>
11687
11688 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
11689 (do_sfunc, set_cmd_sfunc): New functions.
11690
11691 * command.h (struct cmd_list_element): Add field func.
11692 * cli/cli-decode.h (struct cmd_list_element): Ditto.
11693 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
11694 * cli/cli-decode.h: Ditto.
11695
11696 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
11697 (help_all, help_cmd_list): Ditto.
11698 (find_cmd, complete_on_cmdlist): Ditto.
11699 * top.c (execute_command): Ditto.
11700
11701 * cli/cli-setshow.c (do_setshow_command): Call func instead of
11702 function.sfunc.
11703
11704 * infcmd.c (notice_args_read): Fix function signature.
11705
11706 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
11707 * cli/cli-decode.c (add_set_cmd): Ditto.
11708 * utils.c (initialize_utils): Ditto.
11709 * maint.c (_initialize_maint_cmds): Ditto.
11710 * infrun.c (_initialize_infrun): Ditto.
11711 * demangle.c (_initialize_demangler): Ditto.
11712 * remote.c (add_packet_config_cmd): Ditto.
11713 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11714 * cris-tdep.c (_initialize_cris_tdep): Ditto.
11715 * proc-api.c (_initialize_proc_api): Ditto.
11716 * kod.c (_initialize_kod): Ditto.
11717 * valprint.c (_initialize_valprint): Ditto.
11718 * top.c (init_main): Ditto.
11719 * infcmd.c (_initialize_infcmd): Ditto.
11720 * corefile.c (_initialize_core): Ditto.
11721 * arm-tdep.c (_initialize_arm_tdep): Ditto.
11722 * arch-utils.c (initialize_current_architecture): Ditto.
11723 (_initialize_gdbarch_utils): Ditto.
11724 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
11725
11726 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
11727 * wince.c (_initialize_inftarg): Ditto.
11728 * symfile.c (_initialize_symfile): Ditto.
11729 * mips-tdep.c (_initialize_mips_tdep): Ditto.
11730 * language.c (_initialize_language): Ditto.
11731 * arc-tdep.c (_initialize_arc_tdep): Ditto.
11732
f9ba0717
MS
117332002-02-04 Michael Snyder <msnyder@redhat.com>
11734
11735 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
11736
0c74b2a7
DJ
117372002-02-04 Daniel Jacobowitz <drow@mvista.com>
11738
11739 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
11740 Add rules for building the register data files.
11741
c638789f
DJ
117422002-02-04 Daniel Jacobowitz <drow@mvista.com>
11743
11744 * regformats/regdat.sh: Add braces to the definition of
11745 expedite_regs_${arch}.
11746
db253027
DJ
117472002-02-04 Daniel Jacobowitz <drow@mvista.com>
11748
11749 * regformats/regdef.h (struct reg): Add comment describing the
11750 requirements for offset and size fields.
11751
206be19c
AS
117522002-02-04 Andreas Schwab <schwab@suse.de>
11753
11754 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
11755 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
11756
181c1381
RE
117572002-02-04 Richard Earnshaw <rearnsha@arm.com>
11758
11759 * gdbarch.sh (copyright): Update years in generated header.
11760 (SMASH_TEXT_ADDRESS): Add rule.
db253027 11761 * gdbarch.h, gdbarch.c: Re-generate.
181c1381
RE
11762 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
11763 * dbxread.c: Likewise.
11764 * dwarfread.c: Likewise.
11765 * elfread.c: Likewise.
11766 * somread.c: Likewise.
11767
11768 * arm-tdep.c (arm_smash_text_address): New function.
11769 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
11770
fa4ba8da
PM
117712002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
11772
11773 Add support for hardware watchpoints on win32 native.
aaa38bb5 11774 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
fa4ba8da 11775 CONTEXT_DEBUG_REGISTERS.
aaa38bb5 11776 (dr variable): New variable. Static array containing a local copy
fa4ba8da
PM
11777 of debug registers.
11778 (debug_registers_changed): New variable. Reflects when debug registers
11779 are changed and need to be written to inferior.
aaa38bb5 11780 (debug_registers_used): New variable. Reflects when any debug register
fa4ba8da
PM
11781 was set, used when new threads are created.
11782 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
11783 i386-nat code.
11784 (thread_rec): Set dr array if id is the thread of current_event .
11785 (child_continue, child_resume): Change the debug registers for all
11786 threads if debug_registers_changed.
11787 (child_add_thread): Change the debug registers if debug_registers_used.
11788 * config/i386/cygwin.mh: Add use of i386-nat.o file.
11789 Link nm.h to new nm-cygwin.h file.
11790 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
11791 of hardware registers.
11792
a73c86fb
AC
117932002-02-03 Andrew Cagney <ac131313@redhat.com>
11794
11795 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
11796 Restore behavour broken by 2002-01-20 Andrew Cagney
11797 <ac131313@redhat.com> IEEE_FLOAT removal.
11798
acf5ed49
DJ
117992002-02-03 Daniel Jacobowitz <drow@mvista.com>
11800
11801 * c-valprint.c (c_val_print): Pass a proper valaddr to
11802 cp_print_class_method.
11803 * valops.c (search_struct_method): If there is only one method
11804 and args is NULL, return that method.
11805
493d28d5
DJ
118062002-02-03 Daniel Jacobowitz <drow@mvista.com>
11807
11808 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
11809 accessing tag_name directly.
11810
7495dfdb
DJ
118112002-02-03 Daniel Jacobowitz <drow@mvista.com>
11812
11813 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
11814 of accessing tag_name directly.
11815
dd6bda65
DJ
118162002-02-03 Daniel Jacobowitz <drow@mvista.com>
11817
11818 PR gdb/280
11819 * gdbtypes.c (replace_type): New function.
11820 * gdbtypes.h (replace_type): Add prototype.
11821 * stabsread.c (read_type): Use replace_type.
11822
88fe217c
RE
118232002-02-03 Richard Earnshaw <rearnsha@arm.com>
11824
11825 * Makefile.in (memattr.o): Add missing dependencies rule.
11826
e5d66720
PS
118272002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
11828
11829 * breakpoint.c (break_at_finish_command): Really export.
11830 (break_at_finish_at_depth_command): Ditto.
11831 (tbreak_at_finish_command): Ditto.
11832 * hppa-tdep.c: Include completer.h.
11833 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
11834 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
11835
fffee0be
AC
118362002-02-01 Andrew Cagney <ac131313@redhat.com>
11837
11838 * utils.c (do_write): New function.
11839 (error_stream): Rewrite combining the code from error_begin and
11840 verror.
11841 (verror): Rewrite using error_stream.
11842 (error_begin): Delete function.
11843
255e7dbf
AC
118442002-02-01 Andrew Cagney <ac131313@redhat.com>
11845
11846 * utils.c (error_begin): Make static.
11847 * defs.h (error_begin): Delete declaration.
11848
11849 * linespec.c (cplusplus_error): Replace cplusplus_hint.
11850 (decode_line_1): Use cplusplus_error instead of error_begin,
11851 cplusplus_hint and return_to_top_level.
11852 * coffread.c (coff_symfile_read): Use error instead of error_begin
11853 and return_to_top_level.
11854 * infrun.c (default_skip_permanent_breakpoint): Ditto.
11855
ddfe3c15
AC
118562002-02-01 Andrew Cagney <ac131313@redhat.com>
11857
11858 * language.h (type_error, range_error): Make string parameter
11859 constant.
11860 * language.c (warning_pre_print): Delete extern declaration.
11861 * dwarfread.c (warning_pre_print): Ditto.
11862 * language.c (type_error, range_error): Rewrite to use verror and
11863 vwarning instead of warning_begin.
11864
03ac34d5
MS
118652002-02-01 Michael Snyder <msnyder@redhat.com>
11866
261c4ca2
MS
11867 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
11868 (set_ignore_count): Move misplaced comment back where it belongs.
03ac34d5 11869
e00d1dc8
AC
118702002-02-01 Andrew Cagney <ac131313@redhat.com>
11871
11872 * command.h (NO_FUNCTION): Delete macro.
11873 * cli/cli-decode.h (NO_FUNCTION): Ditto.
11874 * top.c (execute_command): Replace NO_FUNCTION with NULL.
11875 * tracepoint.c (_initialize_tracepoint): Ditto.
11876 * cli/cli-decode.c (add_set_cmd): Ditto.
11877 * cli/cli-cmds.c (init_cli_cmds): Ditto.
aaa38bb5 11878
76b79d6e
DJ
118792002-02-01 Daniel Jacobowitz <drow@mvista.com>
11880
11881 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
11882 Update ``this'' pointer when calling virtual functions.
11883
799f9e91
MS
118842002-02-01 Michael Snyder <msnyder@redhat.com>
11885
c7bd442c 11886 * breakpoint.c (create_temp_exception_breakpoint): Delete.
799f9e91
MS
11887 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
11888
3cf384d4
DJ
118892002-02-01 Daniel Jacobowitz <drow@mvista.com>
11890
11891 * regformats/reg-arm.dat: New file.
11892 * regformats/reg-i386.dat: New file.
11893 * regformats/reg-ia64.dat: New file.
11894 * regformats/reg-m68k.dat: New file.
11895 * regformats/reg-mips.dat: New file.
11896 * regformats/reg-ppc.dat: New file.
11897 * regformats/reg-sh.dat: New file.
11898 * regformats/regdef.h: New file.
11899 * regformats/regdat.sh: New file.
11900
0defa245
RE
119012002-02-01 Richard Earnshaw <reanrsha@arm.com>
11902
11903 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
11904 (arm_frame_args_address, arm_frame_locals_address): New functions.
11905 (arm_frame_num_args): New function.
11906 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
11907 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
11908 (FRMA_NUM_ARGS): Call arm_frame_num_args.
11909
405f26e6
MS
119102002-01-31 Michael Snyder <msnyder@redhat.com>
11911
502fd408
MS
11912 * breakpoint.c (break_at_finish_command): Export.
11913 (break_at_finish_at_depth_command): Export.
11914 (tbreak_at_finish_command): Export.
d6020d45 11915 (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
502fd408 11916 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
d6020d45 11917 "txbreak" commands, which are HPPA specific.
502fd408 11918
7d35e135
MS
11919 * printcmd.c (disassemble_command): Remove an ancient
11920 artifact of an old merge.
11921
aaa38bb5 11922 * symfile.h (enum overlay_debugging_state):
d874f1e2
MS
11923 Define enum constant values for overlay mode.
11924 * symfile.c (overlay_debugging): Use enums instead of literals.
aaa38bb5
AJ
11925 (overlay_is_mapped, overlay_auto_command,
11926 overlay_manual_command): Ditto.
d874f1e2 11927
aaa38bb5
AJ
11928 * breakpoint.c (insert_breakpoints, remove_breakpoint,
11929 breakpoint_here_p, breakpoint_inserted_here_p,
11930 breakpoint_thread_match, bpstat_stop_status,
9f04af04
MS
11931 describe_other_breakpoints, check_duplicates, clear_command):
11932 Coding standard fixes.
11933
8add0441 11934 * target.c (target_xfer_memory): Add spaces, coding standard.
9f04af04 11935 (do_xfer_memory): Add missing line to trust-readonly
405f26e6
MS
11936 code: check bfd SEC_READONLY flag for section.
11937
e351066e
AC
119382002-01-31 Andrew Cagney <ac131313@redhat.com>
11939
7d35e135 11940 * PROBLEMS: Fix typo, 5.1->5.1.1.
e351066e 11941
8a48e967
DJ
119422002-01-30 Daniel Jacobowitz <drow@mvista.com>
11943
11944 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
11945 data symbols, since we search based on textlow and texthigh.
11946 (find_pc_sect_symtab): Likewise.
11947
f5a96129
AC
119482002-01-30 Andrew Cagney <ac131313@redhat.com>
11949
11950 * defs.h (vwarning): Declare.
f5a96129
AC
11951 * utils.c (vwarning): New function.
11952 (warning): Call vwarning.
11953 (warning_begin): Delete function.
11954
11955 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
11956 the warning message.
11957 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
11958 warning_begin.
11959
cefd4ef5
MS
119602002-01-30 Michael Snyder <msnyder@redhat.com>
11961
1a703748
MS
11962 * NEWS: Mention "set trust-readonly-sections" command.
11963 Mention generate-core-file command.
cefd4ef5 11964
3a11626d
MS
119652002-01-15 Michael Snyder <msnyder@redhat.com>
11966
11967 * target.c: New command, "set trust-readonly-sections on".
11968 (do_xfer_memory): Honor the suggestion to trust readonly sections
11969 by reading them from the object file instead of from the target.
11970 (initialize_targets): Register command "set trust-readonly-sections".
11971
d1c7e53b
AC
119722002-01-29 Andrew Cagney <ac131313@redhat.com>
11973
11974 * parse.c (target_map_name_to_register): Simplify, search regs and
11975 pseudo-regs using a single loop.
11976
e2c9a72c
AC
119772002-01-30 Andrew Cagney <ac131313@redhat.com>
11978
11979 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
11980
69824b4e
MK
119812002-01-15 Rodney Brown <rbrown64@csc.com.au>
11982
11983 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
11984 * config/i386/i386v42mp.mh: Add i387-nat.o .
11985 * i386v4-nat.c: Include i387-nat.h.
11986 (supply_fpregset): Use i387_supply_fsave.
11987 (fill_fpregset): Use i387_fill_fsave.
11988
6eb69eab
RE
119892002-01-30 Richard Earnshaw <rearnsha@arm.com>
11990
11991 * arm-tdep.c (arm_call_dummy_words): Define.
11992 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
11993 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
11994 (CALL_DUMMY_WORDS): Define.
11995 (arm_call_dummy_words): Declare.
11996 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
11997 (arm_linux_call_dummy_words): Declare.
11998
9852326a
AS
119992002-01-30 Andreas Schwab <schwab@suse.de>
12000
12001 * m68klinux-nat.c: Fix last change to use regcache_collect
12002 instead of referencing registers[] directly.
12003
977a3030
AC
120042002-01-29 Andrew Cagney <ac131313@redhat.com>
12005
12006 * parse.c (target_map_name_to_register): Delete code wrapped in
12007 #ifdef REGISTER_NAME_ALIAS_HOOK.
12008
2076c72b
MS
120092002-01-28 Michael Snyder <msnyder@redhat.com>
12010
12011 * regcache.c (legacy_read_register_gen): Need to be able to
12012 read pseudo-register as well as real register.
12013 (legacy_write_register_gen): Ditto.
12014
8fcc723b
AC
120152002-01-28 Andrew Cagney <ac131313@redhat.com>
12016
12017 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
12018 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
12019 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
12020 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
12021 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
12022 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
12023 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
12024 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
12025 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
12026 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
12027 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
12028 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
12029 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
12030 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
12031 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
12032 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
12033 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
12034 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
12035 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
12036 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
12037
afe64c1a
AC
120382002-01-28 Andrew Cagney <ac131313@redhat.com>
12039
12040 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
12041 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
12042 (initialize_current_architecture): Update target_byte_order using
12043 information from BFD.
aaa38bb5 12044 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
afe64c1a
AC
12045 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
12046
75bc7ddf
AC
120472002-01-28 Andrew Cagney <ac131313@redhat.com>
12048
12049 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
12050 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
12051
12052 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
12053 #ifdef INVALID_FLOAT.
12054 * infcmd.c (do_registers_info): Ditto.
12055 * values.c (unpack_double): Ditto. Add comment.
12056
12057 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
12058 already commented out.
12059
0280a90a
AS
120602002-01-26 Andreas Schwab <schwab@suse.de>
12061
12062 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
12063 * m68klinux-nat.c: Update ptrace interface for fetching/storing
12064 registers and add support for PTRACE_GETREGS.
12065
7072a954
AC
120662002-01-24 Andrew Cagney <ac131313@redhat.com>
12067
12068 GDB 5.1.1 released from 5.1 branch.
12069 * NEWS: Add 5.1.1 news.
12070 * README: Sync with 5.1 branch.
12071
86f902e0
FF
120722002-01-23 Fred Fish <fnf@redhat.com>
12073
12074 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
12075 stabstring on initial malloc. Reallocing will copy it for us,
12076 if necessary.
12077
8af51c36
EZ
120782002-01-23 Elena Zannoni <ezannoni@redhat.com>
12079
aaa38bb5 12080 * Makefile.in (hpread_h): Delete.
8af51c36
EZ
12081 (HFILES_NO_SRCDIR): Remove hpread.h.
12082 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
12083 (hpread.o): Update dependencies.
12084 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
12085
12086 * hp-psymtab-read.c: Remove file.
12087 * hp-symtab-read.c: Remove file.
12088 * hpread.h: Remove file.
12089
12090 * hpread.c: Merge all contents of hp-psymtab-read.c,
12091 hp-symtab-read.c and hpread.h into this file, as it was prior to
12092 January 1999.
12093
12094 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
aaa38bb5 12095 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
8af51c36
EZ
12096 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
12097 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
12098
dc5cfeb6
EZ
120992002-01-23 Elena Zannoni <ezannoni@redhat.com>
12100
12101 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
12102 fill_gregset): Call gdbarch_tdep() just once, assign result to
12103 variable and use that, instead of calling the function several
12104 times.
12105
ea87b71b
AO
121062002-01-24 Alexandre Oliva <aoliva@redhat.com>
12107
12108 * configure.host: Accept sparcv9 as alias for sparc64.
12109 * configure.tgt: Likewise.
12110
13fc0c2f
KB
121112002-01-22 Kevin Buettner <kevinb@redhat.com>
12112
12113 * solib-aix5.c (build_so_list_from_mapfile)
12114 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
12115 arguments is not reversed.
12116 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
12117 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
aaa38bb5 12118
7bd872fe
EZ
121192002-01-22 Elena Zannoni <ezannoni@redhat.com>
12120
12121 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
12122 modified version of obsolete sh_fetch_pseudo_register.
12123 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
12124 (sh4_register_read): New function.
12125 (sh_pseudo_register_write): New function. Renamed and modified
12126 version of obsolete sh_store_pseudo_register.
12127 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
12128 (sh4_register_write): New function.
12129 (sh_gdbarch_init): Remove setting of gdbarch function
12130 fetch_pseudo_register and store_pseudo_register. Remove setting of
12131 register_convert_to_raw, register_convert_to_virtual,
12132 register_convertible.
12133 (sh_sh4_register_convertible): Delete. No longer needed. All is
12134 taken care by architecture specific functions
12135 register_read/register_write.
12136 (sh_sh4_register_convert_to_virtual): Make static.
12137 (sh_sh4_register_convert_to_raw): Ditto.
12138
069e84fd
AC
121392002-01-22 Andrew Cagney <ac131313@redhat.com>
12140
12141 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
12142 (floatformat_is_nan, floatformat_mantissa): Ditto.
12143
12144 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
12145 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
12146 builtin_type_ieee_double_little,
12147 builtin_type_ieee_double_littlebyte_bigword,
12148 builtin_type_m68881_ext, builtin_type_i960_ext,
12149 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
12150 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
12151 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
12152 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
12153
211a4f69
CV
121542002-01-22 Corinna Vinschen <vinschen@redhat.com>
12155
12156 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
12157 parameter. Set frameless flag if it exists and depended of
12158 whether the scanned function is frameless or not.
12159 (xstormy16_skip_prologue): If function is frameless, return
12160 result of xstormy16_scan_prologue().
12161 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
12162 call.
12163
f81353e4
EZ
121642002-01-21 Elena Zannoni <ezannoni@redhat.com>
12165
12166 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
12167 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
12168 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
12169 sh_sh4_register_byte, sh_sh4_register_raw_size,
12170 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
12171 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
12172 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
12173 sh_store_pseudo_register, sh_do_pseudo_register): Call
12174 gdbarch_tdep() just once, assign result to variable and use that,
12175 instead of calling the function several times.
12176
63c73a17
MK
121772002-01-20 Mark Kettenis <kettenis@gnu.org>
12178
12179 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
12180 macros instead of LAST_FPU_CTRL_REGNUM.
12181 (store_register): Likewise.
12182
39ad761d
JB
121832002-01-21 Jim Blandy <jimb@redhat.com>
12184
12185 * infcmd.c (run_command): Check that the `exec' target layer's BFD
12186 is up-to-date before running the program, not just when a program
12187 exits.
12188
3d74b771
FF
121892002-01-21 Fred Fish <fnf@redhat.com>
12190
12191 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
12192 when we have found all instructions we are looking for.
12193
966fbf70
RE
121942002-01-21 Richard Earnshaw <rearnsha@arm.com>
12195
12196 * arm-tdep.c (arm_register_name): New function.
12197 (arm_registers_names): Make static.
12198 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
12199 (arm_register_name): Declare.
12200 (REGISTER_NAME): Use it.
12201
c3b4394c
RE
122022002-01-21 Richard Earnshaw <rearnsha@arm.com>
12203 Kevin Buettner <kevinb@redhat.com>
12204
12205 Convert arm targets to new FRAME interface.
12206 * arm-tdep.c (struct frame_extra_info): Remove fsr.
12207 (arm_frame_find_save_regs): Delete.
12208 (arm_frame_init_saved_regs): New.
12209 (arm_init_extra_frame_info): Alloacte saved_regs as required.
12210 Allocate extra_info as required. Convert all uses of fsr.regs
12211 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
12212 to use extra_info.
12213 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
12214 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
12215 (check_prologue_cache, save_prologue_cache): Likewise.
12216 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
12217 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
12218 (FRAME_FIND_SAVED_REGS): Delete.
12219 (arm_frame_find_saved_regs): Delete prototype.
12220 (arm_frame_init_saved_regs): New prototype.
12221 (FRAME_INIT_SAVED_REGS): Define.
12222
61d99182
AC
122232002-01-20 Andrew Cagney <ac131313@redhat.com>
12224
12225 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
12226
6aaea291
AC
122272002-01-20 Andrew Cagney <ac131313@redhat.com>
12228
12229 From Jeff Law <law@redhat.com>:
12230 * infttrace.c: Include <sys/pstat.h>.
12231 (child_pid_to_exec_file): Revamp. Use pstat call to get the
12232 exec file if the ttrace equivalent fails.
12233
15f698d2
AC
122342002-01-20 Andrew Cagney <ac131313@redhat.com>
12235
12236 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
12237 (closeLogFile): Ditto.
12238
f86ddd7c
MC
122392002-01-20 Michael Chastain <mec@shout.net>
12240
12241 * top.c (print_gdb_version): Bump copyright year to 2002.
12242
904507ce
AC
122432002-01-20 Andrew Cagney <ac131313@redhat.com>
12244
12245 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
12246 Zannoni and Eli Zaretskii.
12247
d7f0b9ce
DJ
122482002-01-20 Daniel Jacobowitz <drow@mvista.com>
12249
12250 * buildsym.c: Update copyright years.
12251 * c-typeprint.c: Likewise.
12252 * dwarf2read.c: Likewise.
12253 * f-typeprint.c: Likewise.
12254 * gdbtypes.c: Likewise.
12255 * gdbtypes.h: Likewise.
12256 * hp-symtab-read.c: Likewise.
12257 * hpread.c: Likewise.
12258 * mdebugread.c: Likewise.
12259 * p-typeprint.c: Likewise.
12260
3fd3d7d2
AC
122612002-01-20 Andrew Cagney <ac131313@redhat.com>
12262
12263 * remote-sim.c (gdbsim_open): Simplify code testing the macro
12264 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
12265 byte-order selectable.
12266 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
12267 * arch-utils.c: Ditto.
12268 (set_endian): Ditto.
12269 (set_endian_from_file): Ditto.
12270 * gdbserver/low-sim.c (create_inferior): Ditto.
12271 * gdbarch.sh: Ditto.
12272 * gdbarch.h: Re-generate.
aaa38bb5
AJ
12273 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12274 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
12275 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
12276 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12277 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12278 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
12279 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
3fd3d7d2
AC
12280 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
12281 macro definition.
12282 * config/mips/tm-wince.h: Remove #undef of macro
12283 TARGET_BYTE_ORDER_SELECTABLE.
12284 * config/sh/tm-wince.h: Ditto.
12285
b02dede2
DJ
122862002-01-20 Daniel Jacobowitz <drow@mvista.com>
12287
12288 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
12289 member function fields. Add accessor macro
12290 TYPE_FN_FIELD_ARTIFICIAL.
12291 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
12292 * c-typeprint.c (c_type_print_base): Skip artificial member
12293 functions.
12294
c3643761
DJ
122952002-01-20 Daniel Jacobowitz <drow@mvista.com>
12296
12297 * f-typeprint.c: Delete unused function f_type_print_args.
12298 * p-typeprint.c: Delete unused function pascal_type_print_args.
12299
8176bb6d
DJ
123002002-01-20 Daniel Jacobowitz <drow@mvista.com>
12301
12302 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
12303 comment. Add ``artificial'' to ``union field_location''.
12304
12305 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
12306
12307 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
12308 * mdebugread.c (parse_symbol): Likewise.
12309 * stabsread.c (define_symbol): Likewise.
12310 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
12311 initializing TYPE_FIELD_BITPOS to n (obsolete).
12312 (hpread_doc_function_type): Likewise.
12313 * hpread.c (hpread_function_type): Likewise.
12314
7fd60527
AC
123152002-01-20 Andrew Cagney <ac131313@redhat.com>
12316
12317 * configure.in (host_makefile_frag): Only require a host makefile
12318 fragment when a native build.
12319 * configure: Re-generate.
12320
c2f05ac9
AC
123212002-01-20 Andrew Cagney <ac131313@redhat.com>
12322
12323 * doublest.h (floatformat_from_type): Declare.
12324 * doublest.c (floatformat_from_type): New function.
12325 (convert_typed_floating): Use.
12326
12327 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
12328 call to function floatformat_from_type.
12329
12330 * gdbarch.sh (IEEE_FLOAT): Delete.
12331 * gdbarch.h, gdbarch.c: Re-generate.
12332 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
12333 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
12334 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
12335 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
12336 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
12337 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
12338 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
12339 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
12340 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
12341 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
12342 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
c2f05ac9
AC
12343 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
12344
12345 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
12346 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
12347 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
12348 * sh-tdep.c (sh_gdbarch_init): Ditto.
12349 * mips-tdep.c (mips_gdbarch_init): Ditto.
12350 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
12351 * cris-tdep.c (cris_gdbarch_init): Ditto.
12352
abf22e64
AJ
123532002-01-20 Jiri Smid <smid@suse.cz>
12354
12355 * configure.host, configure.tgt: Support x86-64.
12356 * NEWS: Note new target x86-64.
12357
b7c4cbf8
AJ
12358 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
12359 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
12360 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
12361 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
12362 x86-64-linux-nat.o): Fix dependencies.
12363
82600034
AC
123642002-01-19 Andrew Cagney <ac131313@redhat.com>
12365
12366 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
12367 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
12368 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
12369 * config/sparc/xm-sun4os4.h: Delete file.
12370 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
abf22e64 12371
bbe5c628
AC
123722002-01-19 Andrew Cagney <ac131313@redhat.com>
12373
12374 * config/sparc/sparclynx.mh (XM_FILE): Delete.
12375 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
12376 * config/m68k/m68klynx.mh (XM_FILE): Delete.
12377 * config/i386/i386lynx.mh (XM_FILE): Delete.
12378 * config/rs6000/xm-rs6000ly.h: Delete file.
12379 * config/sparc/xm-sparclynx.h: Delete file.
12380 * config/m68k/xm-m68klynx.h: Delete file.
12381 * config/i386/xm-i386lynx.h: Delete file.
12382 * config/xm-lynx.h: Delete file.
12383 * config/djgpp/fnchange.lst: Update.
12384
f8453e34
JT
123852002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12386
12387 * alpha-tdep.c (alpha_register_byte): New function.
12388 (alpha_register_raw_size): Ditto.
12389 (alpha_register_virtual_size): Ditto.
12390 (alpha_skip_prologue_internal): Renamed from
12391 alpha_skip_prologue.
12392 (alpha_skip_prologue): New version that calls
12393 alpha_skip_prologue_internal.
12394 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
12395 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
12396 second argument from alpha_skip_prologue.
12397 (REGISTER_BYTE): Use alpha_register_byte.
12398 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
12399 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
12400 (FRAMELESS_FUNCTION_INVOCATION): Use
12401 generic_frameless_function_invocation_not.
12402 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
12403 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
12404
52d9e613
AC
124052002-01-19 Andrew Cagney <ac131313@redhat.com>
12406
12407 * config/mips/xm-news-mips.h: Delete file.
12408 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
12409
12410 * config/m88k/xm-m88k.h: Delete file.
12411 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
12412 * config/m88k/xm-delta88v4.h: Ditto.
12413 * config/m88k/xm-delta88.h: Ditto.
12414
12415 * config/alpha/xm-fbsd.h: Delete file.
12416 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
12417
12418 * config/sparc/xm-sparc.h: Delete file.
12419 * Makefile.in (xm-sun4os4.h): Delete dependency.
12420 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
12421 * config/sparc/xm-sun4os4.h: Ditto.
12422 * config/sparc/xm-linux.h: Ditto.
12423
12424 * config/i386/xm-windows.h: Delete file.
12425
2d1b2124
AC
124262002-01-19 Andrew Cagney <ac131313@redhat.com>
12427
12428 * utils.c: Include <sys/param.h> for MAXPATHLEN.
12429 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
12430
ee1f65f0
JT
124312002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12432
12433 * alpha-tdep.c (alpha_call_dummy_words): New.
12434 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
12435 (CALL_DUMMY_P): Define.
12436 (CALL_DUMMY_WORDS): Define.
12437 (SIZEOF_CALL_DUMMY_WORDS): Define.
12438
98081e55
PB
124392002-01-19 Per Bothner <per@bothner.com>
12440
12441 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
12442 isn't NULL, which can happen with some gcj-3.x-produced code.
12443
0d056799
JT
124442002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
12445
12446 * alpha-tdep.c (alpha_register_virtual_type): New function.
12447 (alpha_init_frame_pc_first): Ditto.
12448 (alpha_fix_call_dummy): Ditto.
12449 (alpha_store_struct_return): Ditto.
12450 (alpha_extract_struct_value_address): Ditto.
12451 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
12452 alpha_register_virtual_type.
12453 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
12454 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
12455 alpha_extract_struct_value_address.
12456 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
12457 (INIT_FRAME_PC): Use init_frame_pc_noop.
12458 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
12459
4604bcad
MK
124602002-01-19 Mark Kettenis <kettenis@gnu.org>
12461
12462 * i386gnu-nat.c: Include "i386-tdep.h".
12463 (fetch_fpregs): Simplify code dealing with uninitialized floating
12464 point states such that it doesn't require FP7_REGNUM.
12465
140f9984
JT
124662002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12467
abf22e64
AJ
12468 * alpha-tdep.c (frame_extra_info): New.
12469 (alpha_find_saved_regs): Make static. Use
140f9984
JT
12470 frame->extra_info.
12471 (alpha_frame_init_saved_regs): New function.
abf22e64
AJ
12472 (alpha_frame_saved_pc): Use frame->extra_info.
12473 (temp_saved_regs): Don't declare as struct frame_saved_regs.
12474 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
140f9984
JT
12475 (init_extra_frame_info): Rename to...
12476 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
abf22e64 12477 (alpha_print_extra_frame_info): New function.
140f9984
JT
12478 (alpha_frame_locals_address): Ditto.
12479 (alpha_frame_args_address): Ditto.
abf22e64 12480 (alpha_pop_frame): Use frame->extra_info.
140f9984
JT
12481 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
12482 alpha_frame_args_address.
abf22e64 12483 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
140f9984 12484 (alpha_find_saved_regs): Remove prototype.
abf22e64
AJ
12485 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
12486 (EXTRA_FRAME_INFO): Remove.
140f9984
JT
12487 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
12488 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
12489
d734c450
JT
124902002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12491
12492 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
12493 (alpha_cannot_fetch_register): Ditto.
12494 (alpha_cannot_store_register): Ditto.
12495 (alpha_register_convertible): Ditto.
12496 (alpha_use_struct_convention): Ditto.
12497 * config/alpha/tm-alpha.h: Update copyright years.
12498 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
12499 (INNER_THAN): Use core_addr_lessthan.
12500 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
12501 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
12502 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
12503 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
12504 (FRAME_CHAIN): Remove unnecessary cast.
12505
b4ceaee6
AC
125062002-01-18 Andrew Cagney <ac131313@redhat.com>
12507
12508 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
12509 obsolete.
12510
0a65a603
AC
125112002-01-18 Andrew Cagney <ac131313@redhat.com>
12512
12513 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
12514 * monitor.c, remote-array.c, remote-bug.c: Ditto.
12515 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
12516 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
12517 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
12518 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
12519 * x86-64-linux-nat.c: Ditto.
12520
636a6dfc
JT
125212002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12522
abf22e64 12523 * alpha-tdep.c (alpha_register_name): New function.
636a6dfc
JT
12524 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
12525 (REGISTER_NAME): Define.
12526
acceddb6
JT
125272002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12528
12529 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
12530
ec32e4be
JT
125312002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12532
12533 * alpha-tdep.c: Update copyright years.
12534 (alpha_next_pc): New function.
12535 (alpha_software_single_step): Ditto.
12536 * config/alpha/tm-alpha.h: Add prototype for
12537 alpha_software_single_step.
12538
e771a871
JT
125392002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
12540
12541 * alphabsd-nat.c: Update copyright years.
12542 (fill_gregset): Use regcache_collect.
12543 (fill_fpregset): Likewise.
12544 (fetch_inferior_registers): Only fetch integer registers
12545 if requested to do so.
12546 (store_inferior_registers): Only store integer registers
12547 if requested to do so.
12548
7708fa01
AC
125492002-01-17 Andrew Cagney <ac131313@redhat.com>
12550
12551 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
12552 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
12553 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
12554 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
12555 * config/alpha/fbsd.mh (XDEPFILES): Delete.
12556 * config/arm/linux.mh (XDEPFILES): Delete.
12557 * config/arm/nbsd.mh (XDEPFILES): Delete.
12558 * config/i386/i386dgux.mh (XDEPFILES): Delete.
12559 * config/i386/i386sol2.mh (XDEPFILES): Delete.
12560 * config/i386/i386m3.mh (XDEPFILES): Delete.
12561 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
12562 * config/i386/i386gnu.mh (XDEPFILES): Delete.
12563 * config/i386/fbsd.mh (XDEPFILES): Delete.
12564 * config/i386/i386bsd.mh (XDEPFILES): Delete.
12565 * config/i386/i386sco5.mh (XDEPFILES): Delete.
12566 * config/i386/i386v4.mh (XDEPFILES): Delete.
12567 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
12568 * config/i386/i386sco4.mh (XDEPFILES): Delete.
12569 * config/i386/i386aix.mh (XDEPFILES): Delete.
12570 * config/i386/go32.mh (XDEPFILES): Delete.
12571 * config/i386/cygwin.mh (XDEPFILES): Delete.
12572 * config/i386/i386lynx.mh (XDEPFILES): Delete.
12573 * config/i386/i386mach.mh (XDEPFILES): Delete.
12574 * config/i386/i386v32.mh (XDEPFILES): Delete.
12575 * config/i386/linux.mh (XDEPFILES): Delete.
12576 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
12577 * config/i386/ncr3000.mh (XDEPFILES): Delete.
12578 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
12579 * config/i386/i386sco.mh (XDEPFILES): Delete.
12580 * config/i386/i386v.mh (XDEPFILES): Delete.
12581 * config/i386/nbsd.mh (XDEPFILES): Delete.
12582 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
12583 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
12584 * config/i386/symmetry.mh (XDEPFILES): Delete.
12585 * config/i386/obsd.mh (XDEPFILES): Delete.
12586 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
12587 * config/ia64/linux.mh (XDEPFILES): Delete.
12588 * config/ia64/aix.mh (XDEPFILES): Delete.
12589 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
12590 * config/m68k/dpx2.mh (XDEPFILES): Delete.
12591 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
12592 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
12593 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
12594 * config/m68k/linux.mh (XDEPFILES): Delete.
12595 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
12596 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
12597 * config/m68k/nbsd.mh (XDEPFILES): Delete.
12598 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
12599 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
12600 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
12601 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
12602 * config/m88k/delta88.mh (XDEPFILES): Delete.
12603 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
12604 * config/m88k/m88k.mh (XDEPFILES): Delete.
12605 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
12606 * config/mips/linux.mh (XDEPFILES): Delete.
12607 * config/mips/irix6.mh (XDEPFILES): Delete.
12608 * config/mips/irix5.mh (XDEPFILES): Delete.
12609 * config/mips/irix4.mh (XDEPFILES): Delete.
12610 * config/mips/irix3.mh (XDEPFILES): Delete.
12611 * config/mips/decstation.mh (XDEPFILES): Delete.
12612 * config/mips/mipsm3.mh (XDEPFILES): Delete.
12613 (NATDEPFILES): Move core-aout.o to here.
12614 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
12615 * config/pa/hpux1020.mh (XDEPFILES): Delete.
12616 * config/pa/hppabsd.mh (XDEPFILES): Delete.
12617 * config/pa/hppahpux.mh (XDEPFILES): Delete.
12618 * config/pa/hpux11w.mh (XDEPFILES): Delete.
12619 * config/pa/hppaosf.mh (XDEPFILES): Delete.
12620 * config/pa/hpux11.mh (XDEPFILES): Delete.
12621 * config/powerpc/aix.mh (XDEPFILES): Delete.
12622 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
12623 * config/powerpc/linux.mh (XDEPFILES): Delete.
12624 * config/romp/rtbsd.mh: Rename XDEPFILES.
12625 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
12626 * config/rs6000/aix4.mh (XDEPFILES): Delete.
12627 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
12628 * config/s390/s390.mh (XDEPFILES): Delete.
12629 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
12630 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
12631 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
12632 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
12633 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
12634 * config/sparc/nbsd.mh (XDEPFILES): Delete.
12635 * config/sparc/linux.mh (XDEPFILES): Delete.
12636 * config/vax/vaxult.mh (XDEPFILES): Delete.
12637 * config/vax/vaxult2.mh (XDEPFILES): Delete.
12638 * Makefile.in (DEPFILES): Remove XDEPFILES.
12639
375fc983
AC
126402002-01-17 Andrew Cagney <ac131313@redhat.com>
12641
12642 * utils.c (internal_verror): Fix comments, default is yes not no.
12643 Update queries to match. Default to quit and dump core.
12644
8926118c
AC
126452002-01-17 Andrew Cagney <ac131313@redhat.com>
12646
12647 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
12648 copyright.
12649 * defs.h, event-top.c, gdbcmd.h: Ditto.
12650 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
12651 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
12652 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
12653 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
12654 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
12655 * mi/mi-main.c:Ditto.
12656
12657 * stack.c, symfile.c: Update copyright.
12658
45b7b345
DJ
126592002-01-17 Daniel Jacobowitz <drow@mvista.com>
12660
db728ff7
DJ
12661 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
12662 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
12663 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
12664 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
45b7b345 12665
db728ff7
DJ
126662002-01-17 Daniel Jacobowitz <drow@mvista.com>
12667
12668 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
12669 * gdbserver/low-lynx.c (myattach): Likewise.
12670 * gdbserver/low-nbsd.c (myattach): Likewise.
12671 * gdbserver/low-sim.c (myattach): Likewise.
12672 * gdbserver/low-sparc.c (myattach): Likewise.
12673 * gdbserver/low-sun3.c (myattach): Likewise.
12674
12675 * gdbserver/low-linux.c (myattach): New function.
45b7b345 12676
db728ff7 12677 * gdbserver/server.c (attach_inferior): New function.
45b7b345
DJ
12678 (main): Handle "--attach".
12679
8de3c354
AC
126802002-01-16 Andrew Cagney <ac131313@redhat.com>
12681
12682 * MAINTAINERS (language support): Daniel Jacobwitz is C++
12683 maintainer.
12684
b0129042
DJ
126852002-01-15 Daniel Jacobowitz <drow@mvista.com>
12686
12687 * c-typeprint.c (is_type_conversion_operator): Add additional
12688 check for non-conversion operators.
12689
ba8679fb 126902002-01-15 Michael Snyder <msnyder@redhat.com>
2bf543a6
MS
12691
12692 * linux-proc.c: Add "info proc" command, a la procfs.c.
12693 (read_mapping): New function, abstract and re-use code.
12694 (linux_find_memory_regions): Use new func read_mapping.
12695 (linux_info_proc_cmd): New function, implement "info proc".
12696 (_initialize_linux_proc): Add new command "info proc".
12697
e4f9b4d5
MS
126982002-01-15 Michael Snyder <msnyder@redhat.com>
12699
12700 * symfile.c (generic_load): Use bfd_map_over_sections method
12701 instead of manipulating bfd structure members directly.
12702 (add_section_size_callback): New function, bfd sections callback
12703 used by generic_load.
12704 (load_sections_callback): New function, bfd sections callback
12705 used by generic_load.
12706
08cf96df
EZ
127072002-01-15 Elena Zannoni <ezannoni@redhat.com>
12708
abf22e64 12709 [Based on work by Jim Blandy]
08cf96df
EZ
12710 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
12711 (builtin_type_vec128): Export.
12712 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
12713 types.
12714 (builtin_type_vec128): New builtin type for 128 bit vector
12715 registers.
12716 (build_gdbtypes): Initialize builtin_type_v16qi and
12717 builtin_type_v8hi. Create the vec128 register builtin type
12718 structure.
12719 (build_builtin_type_vec128): New function.
abf22e64 12720 (_initialize_gdbtypes): Register builtin_type_v16qi and
08cf96df
EZ
12721 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
12722 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
12723 AltiVec register to new builtin type.
12724
d7242108
DJ
127252001-01-15 Daniel Jacobowitz <drow@mvista.com>
12726
12727 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
12728 to make_cv_type.
12729
4ee3352d
AC
127302002-01-14 Andrew Cagney <ac131313@redhat.com>
12731
12732 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
12733 CLEAN_UP_REGISTER_VALUE.
12734 * regcache.c (supply_register): Update only call.
12735
f015b2e7
AC
127362002-01-14 Andrew Cagney <ac131313@redhat.com>
12737
12738 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12739 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12740 a29k-*-vxworks* targets as obsolete.
12741
356ae49d
MS
127422002-01-14 Michael Snyder <msnyder@redhat.com>
12743
12744 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
12745 until we can resolve portability issues.
12746 * gregset.h: Remove references to fpxregs.
12747 * gcore.c (gcore_command): Initialize note_sec to NULL.
12748
ade8f45e
AC
127492002-01-13 Andrew Cagney <ac131313@redhat.com>
12750
12751 * signals.c (target_signal_to_name): Rewrite. Only use
12752 signals[].name when in bounds and non-NULL.
abf22e64 12753
89c49e7a
AC
127542002-01-13 Andrew Cagney <ac131313@redhat.com>
12755
12756 From Petr Ledvina <ledvinap@kae.zcu.cz>:
12757 * signals.c (target_signal_to_name): Verify that SIG is within the
12758 bounds of the signals array.
12759
4daa9f9f
AC
127602002-01-13 Andrew Cagney <ac131313@redhat.com>
12761
12762 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
12763
ba4bbdcb
KS
127642002-01-13 Keith Seitz <keiths@redhat.com>
12765
12766 * stack.c (print_frame_info_base): Print the frame's pc
12767 only if when print_frame_info_listing_hook is not defined.
12768
575bbeb6
KS
127692002-01-13 Keith Seitz <keiths@redhat.com>
12770
12771 * varobj.c (varobj_set_value): Make sure that there were no
12772 errors evaluating the object before attempting to set its
12773 value.
12774 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
12775 so this offset adjustment is no longer necessary.
12776 (create_child): Don't set the error flag if the child is
12777 a CPLUS_FAKE_CHILD.
12778 (value_of_child): If value_fetch_lazy fails, return NULL
12779 so that callers will be notified that an error occurred.
12780 (c_value_of_variable): Delay check of variable's validity
12781 until later. We actually want all structs and unions to have
12782 the value "{...}".
12783 Do not return "???" for variables which could not be evaluated.
12784 This error condition must be returned to the caller so that it
12785 can get the error condition from gdb.
12786 (cplus_name_of_child): Adjust index for vptr before figuring
12787 out the name of the child.
12788 (cplus_value_of_child): If a child's (real) parent is not valid,
12789 don't even bother trying to give a value for it. Just return
12790 an error. Change all instances in this function.
12791 (cplus_type_of_child): If our parent is one of the "fake"
12792 parents, we need to get at the type of the real parent, and
12793 derive the child's true type using this information.
12794
b76898ab
AC
127952002-01-13 Andrew Cagney <ac131313@redhat.com>
12796
12797 From 2002-01-09 John Marshall <johnm@falch.net>:
12798 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
12799 sources.redhat.com, and tweak some related URLs which had
12800 suffered from linkrot.
12801
b6649e88
AC
128022002-01-13 Andrew Cagney <ac131313@redhat.com>
12803
12804 From Jeff law:
12805 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
12806 structures passed in registers.
12807
82cc5033
EZ
128082002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
12809
12810 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
12811 white space which prevented compilation. Reported by DSK
12812 <dsk@student.unsw.edu.au>.
12813
ba5f2f8a
MS
128142002-01-11 Michael Snyder <msnyder@redhat.com>
12815
fbd35540
MS
12816 * symfile.c (build_section_addr_info_from_section_tab):
12817 Use bfd access method instead of manipulating bfd directly.
12818 (syms_from_objfile): Ditto.
12819 (simple_overlay_update_1): Ditto.
12820 (simple_overlay_update): Ditto.
12821 (generic_load): Ditto.
12822 (overlay_unmapped_address): FIXME comment, bfd access methods.
12823 (sections_overlap): FIXME comment, bfd access methods.
12824 (pc_in_mapped_range): FIXME comment, bfd access methods.
12825 (pc_in_unmapped_range): FIXME comment, bfd access methods.
12826 (section_is_mapped): FIXME comment, bfd access methods.
12827 (section_is_overlay): FIXME comment, bfd access methods.
12828
ba5f2f8a
MS
12829 * symfile.c (generic_load): Whitespace and long line cleanups.
12830 Remove duplicate variable, change several local variables to
12831 more appropriate data types.
12832 (print_transfer_performance): Use %lu instead of %ld for ulongs.
12833
17df2af6
AC
128342002-01-12 Andrew Cagney <ac131313@redhat.com>
12835
12836 From Peter Schauer:
12837 * language.c (longest_local_hex_string_custom): Use phex_nz to
12838 convert NUM to a hex string.
12839
ec920329
EZ
128402002-01-12 Elena Zannoni <ezannoni@redhat.com>
12841
12842 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
12843 the function.
538a76d6 12844 Update Copyright year.
ec920329 12845
3abd2e01
AC
128462002-01-12 Andrew Cagney <ac131313@redhat.com>
12847
12848 * language.c (longest_raw_hex_string): Delete unused function.
12849
b21b22e0
PS
128502002-01-11 Petr Sorfa <petrs@caldera.com>
12851
12852 * MAINTAINERS (write-after-approval): Add myself.
12853 * dwarf2read.c (read_tag_string_type): Handling of
12854 DW_AT_byte_size.
12855 (read_tag_string_type): FORTRAN fix to prevent propagation of
12856 first string size.
12857 (set_cu_language): Handling of DW_LANG_Fortran95
12858
747fe712
RE
128592002-01-11 Richard Earnshaw <rearnsha@arm.com>
12860
12861 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
12862 GETPID(inferior_ptid).
12863 (store_inferior_registers): Likewise.
12864
f1bea926
JM
128652002-01-10 Jason Merrill <jason@redhat.com>
12866
12867 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
12868 Fix DW_OP_minus.
12869
ae940673
AC
128702002-01-10 Andrew Cagney <ac131313@redhat.com>
12871
12872 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
12873 and bfd/elf32-sh-nbsd.c.
12874
00546b04
MS
128752002-01-10 Michael Snyder <msnyder@redhat.com>
12876
352ed7b4
MS
12877 * NEWS: Mention --pid and corefile/proc-id behavior change.
12878
c18be923
MS
12879 * Makefile.in: Add rules for gcore.o and linux-proc.o.
12880 * gcore.c: Include cli/cli-decode.h instead of command.h.
12881
00546b04
MS
12882 * main.c (captured_main): Add new command line option "--pid".
12883 If the second command line argument (following the symbol-file)
12884 begins with a digit, try to attach to it before trying to open
12885 it as a corefile.
12886 (print_gdb_help): Document the "--pid" argument.
12887
db60ec62
EZ
128882002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
12889
12890 * completer.c (command_completer): New function.
12891
12892 * completer.h <command_completer>: Add prototype.
12893
12894 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
12895 completer for the "help" command.
12896
39c22d1a
JM
128972002-01-09 Jason Merrill <jason@redhat.com>
12898
12899 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
12900
c564377f
MS
129012002-01-09 Michael Snyder <msnyder@redhat.com>
12902
975aec09
MS
12903 * i386-linux-nat.c (fill_fpxregset): Make global.
12904 (store_fpxregset): Ditto.
12905
db4a10fa
MS
12906 * gregset.h (gdb_fpxregset_t): Define.
12907 (supply_fpxregset): Prototype.
12908 (fill_fpxregset): Prototype.
12909
c564377f
MS
12910 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
12911
c3d45d70
RE
129122002-01-09 Richard Earnshaw <rearnsha@arm.com>
12913
12914 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
12915 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
12916 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
12917
fcc87af1
AC
129182002-01-09 Andrew Cagney <ac131313@redhat.com>
12919
12920 * MAINTAINERS: Update target maintainer rules so that any
12921 Maintainer can approve a tested patch for a maintenance-only
12922 target.
12923
dd96c05b
RE
129242002-01-09 Richard Earnshaw <rearnsha@arm.com>
12925
d4297db9 12926 * MAINTAINERS (write-after-approval): Add myself.
dd96c05b 12927
d4297db9 12928 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
dd96c05b
RE
12929 IN_SIGTRAMP.
12930
145fdc6e
MS
129312002-01-08 Michael Snyder <msnyder@redhat.com>
12932
12933 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
12934 real name of the executable, rather than the /proc name.
12935
be4d1333
MS
129362002-01-03 Michael Snyder <msnyder@redhat.com>
12937
12938 Implement a "generate-core-file" command in gdb, save target state.
12939 * gcore.c: New file. Implement new command 'generate-core-file'.
12940 Save a corefile image of the current state of the inferior.
12941 * linux-proc.c: Add linux-specific code for saving corefiles.
12942 * target.h (struct target_ops): Add new target vectors for saving
12943 corefiles; to_find_memory_regions and to_make_corefile_notes.
12944 (target_find_memory_regions): New macro.
12945 (target_make_corefile_notes): New macro.
12946 * target.c (update_current_target): Inherit new target methods.
12947 (dummy_find_memory_regions): New place-holder method.
12948 (dummy_make_corefile_notes): New place-holder method.
12949 (init_dummy_target): Initialize new dummy target vectors.
12950 * exec.c (exec_set_find_memory_regions): New function.
12951 Allow the exec_ops vector for memory regions to be taken over.
12952 (exec_make_note_section): New function, target vector method.
12953 * defs.h (exec_set_find_memory_regions): Export prototype.
12954 * procfs.c (proc_find_memory_regions): New function, corefile method.
12955 (procfs_make_note_section): New function, corefile method.
12956 (init_procfs_ops): Set new target vector pointers.
12957 (find_memory_regions_callback): New function.
12958 (procfs_do_thread_registers): New function.
12959 (procfs_corefile_thread_callback): New function.
12960 * sol-thread.c (sol_find_memory_regions): New function.
12961 (sol_make_note_section): New function.
12962 (init_sol_thread_ops): Initialize new target vectors.
12963 * inftarg.c (inftarg_set_find_memory_regions): New function.
12964 Allow to_find_memory_regions vector to be taken over.
12965 (inftarg_set_make_corefile_notes): New function.
12966 Allow to_make_corefile_notes vector to be taken over.
12967 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
12968 interface layer if not target_has_execution (may be a corefile).
12969 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
12970 * config/sparc/sun4sol2.mh: Ditto.
12971 * config/alpha/alpha-linux.mh: Ditto.
12972 * config/arm/linux.mh: Ditto.
12973 * config/i386/x86-64linux.mh: Ditto.
12974 * config/ia64/linux.mh: Ditto.
12975 * config/m68k/linux.mh: Ditto.
12976 * config/mips/linux.mh: Ditto.
12977 * config/powerpc/linux.mh: Ditto.
12978 * config/sparc/linux.mh: Ditto.
12979
c6b92abd
MS
129802002-01-07 Michael Snyder <msnyder@redhat.com>
12981
12982 * arm-linux-nat.c: Remove references to regcache.c internal data
12983 (registers[] and register_valid[]).
12984
4b09dc8c
MS
129852002-01-07 Michael Snyder <msnyder@redhat.com>
12986
abf22e64
AJ
12987 * linux-proc.c: New file. Implement child_pid_to_exec_file,
12988 so that attaching to a pid will automatically read the process's
4b09dc8c
MS
12989 symbol file and shlibs.
12990 * Makefile.in: Add rule for linux-proc.o.
12991 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
12992 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
12993 * config/arm/linux.mh: Ditto.
12994 * config/i386/linux.mh: Ditto.
12995 * config/i386/x86-64linux.mh: Ditto.
12996 * config/ia64/linux.mh: Ditto.
12997 * config/m68k/linux.mh: Ditto.
12998 * config/mips/linux.mh: Ditto.
12999 * config/powerpc/linux.mh: Ditto.
13000 * config/sparc/linux.mh: Ditto.
13001
c25b74ac
PM
130022002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
13003
13004 * win32-nat.c: Add i386-tdep.h dependency.
13005
94cd915f
MS
130062002-01-07 Michael Snyder <msnyder@redhat.com>
13007
c7cccb76
MS
13008 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
13009 instead of bfd_get_arch_size. Don't bail out just because
13010 there's no exec_bfd.
abf22e64 13011
34c0bd93
MS
13012 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
13013 * p-valprint.c (pascal_object_print_value): Ditto.
13014 * somread.c (som_symtab_read): Ditto.
13015 * symfile.c (simple_free_overlay_region_table): Ditto.
13016 * valops.c (value_assign): Ditto.
13017
21c1c920
MS
13018 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
13019 use tilde_expand and strerror for opening save-tracepoints file.
13020
5bbd998e
MS
13021 * thread-db.c (thread_db_new_objfile): Indendation fix.
13022
94cd915f
MS
13023 * infptrace.c (GDB_MAX_ALLOCA): New define.
13024 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
abf22e64 13025 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
94cd915f
MS
13026 can be overridden with whatever value is appropriate to the host).
13027 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
13028 alloca to allocate potentially large buffer.
13029 * rs6000-nat.c (child_xfer_memory): Ditto.
13030 * symm-nat.c (child_xfer_memory): Ditto.
13031 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
13032
494e8a93
JSC
130332002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
13034
13035 From Nick Clifton <nickc@redhat.com>
13036 * d10v-tdep.c: Set STACK_START to 0x200bffe.
13037
d0e1d48e
MS
130382002-01-07 Michael Snyder <msnyder@redhat.com>
13039
abf22e64 13040 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
d0e1d48e
MS
13041 Don't use exec_bfd if it's NULL.
13042
290b2c7a
MK
130432002-01-06 Mark Kettenis <kettenis@gnu.org>
13044
abf22e64 13045 * valops.c (value_arg_coerce): Fix formatting.
290b2c7a 13046
aef21287
AC
130472002-01-06 Andrew Cagney <ac131313@redhat.com>
13048
13049 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
13050 * gnu-nat.c: Ditto.
13051
30efa627
AC
130522002-01-06 Andrew Cagney <ac131313@redhat.com>
13053
13054 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
13055 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
13056 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
13057 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
13058 z8k-coff have not been multi-arched. Update z8k-coff build
13059 status.
13060
9b4ff276
AC
130612002-01-06 Andrew Cagney <ac131313@redhat.com>
13062
13063 * MAINTAINERS: Mark a29k target as obsolete.
13064 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
13065 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
13066 comments.
13067 * NEWS: Note that a29k targets are obsolete.
13068 * a29k-tdep.c: Mark as obsolete.
13069 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
13070 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
13071 a29k-*-vxworks* targets as obsolete.
13072 * remote-adapt.c: Obsolete.
13073 * remote-eb.c: Obsolete.
13074 * remote-mm.c: Obsolete.
13075 * remote-udi.c: Obsolete.
13076 * config/a29k/a29k-udi.mt: Obsolete.
13077 * config/a29k/a29k.mt: Obsolete.
13078 * config/a29k/tm-a29k.h: Obsolete.
13079 * config/a29k/tm-vx29k.h: Obsolete.
13080 * config/a29k/vx29k.mt: Obsolete.
13081
a9011d31
AC
130822002-01-05 Andrew Cagney <ac131313@redhat.com>
13083
13084 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
13085 with BFD_ENDIAN_BIG.
13086
9299404e
AC
130872002-01-05 Andrew Cagney <ac131313@redhat.com>
13088
13089 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
13090 * configure, config.in: Re-generate.
13091 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
13092 * defs.h: Do not include <endian.h>.
13093
7e89e357
JT
130942002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
13095
13096 * acconfig.h (HAVE_PT_GETXMMREGS): New.
13097 * config.in: Regenerate.
13098 * configure.in: Update copyright years.
13099 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
13100 * configure: Regenerate.
13101 * i386bsd-nat.c: Update copyright years.
13102 (fill_gregset): Use regcache_collect.
13103 (fetch_inferior_registers): Only fetch integer registers
13104 if requested to do so. Add support for XMM registers
13105 using PT_GETXMMREGS.
13106 (store_inferior_registers): Only store integer registers
13107 if requested to do so. Add support for XMM registers
13108 using PT_SETXMMREGS.
13109 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
13110 (store_inferior_registers): Remove.
13111 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
13112 (fetch_elfcore_registers): New function.
13113 (i386nbsd_elfcore_fns): New.
13114 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
13115 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
13116 i386bsd-nat.o.
13117 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
13118 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
13119 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
13120 * config/i386/tm-nbsd.h: Update copyright years.
13121 (HAVE_SSE_REGS): Define.
13122 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
13123 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
13124 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
13125 (SIGCONTEXT_PC_OFFSET): Remove.
13126 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
13127
a752853e
AC
131282002-01-05 Andrew Cagney <ac131313@redhat.com>
13129
13130 * configure.tgt: Remove powerpc-*-macos* target.
13131 * config/m68k/xm-mpw.h: Delete file.
13132 * config/xm-mpw.h: Delete file.
13133 * ser-mac.c: Delete file.
13134 * mpw-make.sed: Delete file.
13135 * mpw-config.in: Delete file.
13136 * mac-xdep.c: Delete file.
13137 * mac-gdb.r: Delete file.
13138 * mac-defs.h: Delete file.
13139 * mac-nat.c: Delete file.
13140 * config/powerpc/macos.mh: Delete file.
13141 * config/powerpc/macos.mt: Delete file.
13142 * config/powerpc/nm-macos.h: Delete file.
13143 * config/powerpc/tm-macos.h: Delete file.
13144 * source.c (openp, open_source_file): Remove obsolete code.
13145 * top.c (gdb_readline): Ditto.
13146 * utils.c (query): Ditto.
13147 * event-top.c (display_gdb_prompt): Ditto.
13148 * Makefile.in (ser-mac.o): Delete obsolete target.
13149 * NEWS: Update.
13150
d7449b42
AC
131512002-01-04 Andrew Cagney <ac131313@redhat.com>
13152
13153 * defs.h (BIG_ENDIAN): Delete macro definition.
13154 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
13155 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
13156 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
13157 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
13158 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
13159 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
13160 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
13161 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
13162 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
13163 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
13164 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
13165 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
13166 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
13167 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
13168 * gdbarch.c: Re-generate.
13169
356374e8
DJ
131702002-01-04 Daniel Jacobowitz <drow@mvista.com>
13171
13172 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
13173 for core files.
13174
a2b8f8f8
JT
131752002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
13176
13177 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
13178
12466af9
AC
131792002-01-04 Andrew Cagney <ac131313@redhat.com>
13180
13181 * value.h (value_ptr): Delete typedef.
13182
3549ab40
JT
131832002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
13184
13185 * i386nbsd-nat.c: Update copyright years.
13186 Include i386-tdep.h.
13187
fedbd091
EZ
131882002-01-04 Elena Zannoni <ezannoni@redhat.com>
13189
13190 * stabsread.c: Update copyright years.
13191
13192 From Debashis Mahata <debashis.mahata@wipro.com>:
13193 (read_struct_fields): Deal with Sun C compiler erroneous stab
13194 output for structs and unions.
fec8b34f 13195 Fix PR gdb/269.
fedbd091 13196
eb43544b
DJ
131972002-01-04 Daniel Jacobowitz <drow@mvista.com>
13198
13199 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
13200 prototype.
13201
1514d34e
DJ
132022002-01-04 Daniel Jacobowitz <drow@mvista.com>
13203
13204 * cp-abi.c: Fix whitespace.
13205 (baseclass_offset): New wrapper function.
13206 * cp-abi.h (baseclass_offset): Add prototype.
13207 (struct cp_abi_ops): Add baseclass_offset pointer.
13208
13209 * valops.c (vb_match): Move to...
13210 * gnu-v2-abi.c (vb_match): here.
13211 * valops.c (baseclass_offset): Move to...
13212 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
13213
13214 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
13215
13216 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
13217 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
13218 * hpacc-abi.c (init_hpacc_ops): Likewise.
13219
7f8c9282
DJ
132202002-01-04 Daniel Jacobowitz <drow@mvista.com>
13221
13222 * valops.c (find_overload_match): Accept obj as a
13223 reference parameter. Update it before returning.
13224 * value.h (find_overload_match): Update prototype.
13225 * eval.c (evaluate_subexp_standard): Pass object to
13226 find_overload_match by reference.
13227
f23631e4
AC
132282002-01-03 Andrew Cagney <ac131313@redhat.com>
13229
13230 * valarith.c: Replace value_ptr with struct value pointer. Remove
13231 register attribute from value declarations.
13232 * valops.c: Ditto.
13233 * value.h: Ditto.
13234 * scm-lang.c (scm_lookup_name): Ditto.
13235
79e10fab 132362002-01-03 Michael Snyder <msnyder@redhat.com>
abf22e64 13237
79e10fab
AC
13238 Abstract the functionality of iterating over mapped memory
13239 regions into a general purpose iterator function.
abf22e64 13240 * procfs.c (iterate_over_mappings): New function, general purpose
79e10fab
AC
13241 iterator for memory sections.
13242 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
13243 (solib_mappings_callback): New function, callback for above.
13244 (info_proc_mappings): Reimpliment using iterate_over_mappings.
13245 (info_mappings_callback): New function, callback for above.
13246
13247 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
13248
c5ad026a
MK
132492002-01-01 Mark Kettenis <kettenis@gnu.org>
13250
d2a7c97a
MK
13251 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
13252 * i386-tdep.c: Include "elf-bfd.h".
13253 (process_note_abi_tag_sections): New function.
13254 (i386_gdbarch_init): Add code to recognize various OS/ABI
13255 combinations.
13256
c5ad026a
MK
13257 * maint.c (_initialize_maint_cmds): Add missing \ in
13258 string-literal.
13259
a1a5b71e 13260For older changes see ChangeLog-2001
c906108c
SS
13261\f
13262Local Variables:
13263mode: change-log
13264left-margin: 8
13265fill-column: 74
13266version-control: never
13267End:
This page took 0.904719 seconds and 4 git commands to generate.