d8fab79800e2e4040c1bb53cd68fd1d1461ebc75
[platform/upstream/binutils.git] / gdb / ChangeLog
1 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
2
3         * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
4         Don't call get_current_frame().
5
6 2002-07-04  Pierre Muller  <muller@ics.u-strasbg.fr>
7
8         * i386-nat.c (child_post_startup_inferior): New function
9         calling i386_cleanup_dregs if
10         I386_USE_GENERIC_WATCHPOINTS is defined.
11         * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
12         conditional to acknowledge that i386-nat.c has its
13         own child_post_startup_inferior function.
14
15 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
16
17         * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
18         * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
19         instead of MAX_REGISTER_RAW_SIZE.
20         (i386_extract_return_value, i386_extract_struct_value_address):
21         Convert to use regcache.
22         (i386_gdbarch_init): Set max_register_raw_size and
23         max_register_virtual_size to I386_MAX_REGISTER_SIZE.
24         Set extract_return_value and extract_struct_value_address instead
25         of their deprecated variants.
26
27         Convert i386 target to generic dummy frames.
28         * i386-tdep.c: Include "symfile.h".
29         (i386_frameless_signal_p): Consider a function to be frameless if
30         the pc points at the first instruction of the function.
31         (i386_frame_chain): Handle (generic) call dummies.
32         (i386_frame_saved_pc): Likewise.
33         (i386_frame_init_saved_regs): Remove code dealing with call
34         dummies on the stack.
35         (i386_push_dummy_frame): Removed.
36         (i386_call_dummy_words): Removed.
37         (i386_fix_call_dummy): Removed.
38         (i386_push_return_address): New function.
39         (i386_do_pop_frame): Renamed from i386_pop_frame.  Add FRAME
40         parameter, and don't call get_current_frame.
41         (i386_pop_frame): New function.
42         (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
43         call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
44         entry_point_address, set call_dummy_breakpoint_offset to 0, set
45         call_dummy_length to 0, set call_dummy_words to NULL, set
46         sizeof_call_dummy_words to 0, set fix_call_dummy to
47         generic_fix_call_dummy, set pc_in_call_dummy to
48         pc_in_call_dummy_at_entry_point, set push_dummy_frame to
49         generic_push_dummy_frame, set push_return_address to
50         i386_push_return_address and set frame_chain_valid to
51         generic_file_frame_chain_valid.
52
53 2002-07-04  Michal Ludvig  <mludvig@suse.cz>
54
55         * gdbserver/linux-x86-64-low.c (x86_64_regmap): Make it an array of 
56         byte offsets instead of an array of indexes.
57         (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
58
59 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
60
61         * gdbarch.sh (struct regcache): Add opaque declaration.
62         (EXTRACT_RETURN_VALUE): New architecture method.
63         (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
64         * gdbarch.h, gdbarch.c: Regenerate.
65         * arch-utils.c (legacy_extract_return_value): New function.
66         * arch-utils.h (legacy_extract_return_value): Declare.
67         * values.c (value_being_returned): Re-enable code handling
68         EXTRACT_STRUCT_VALUE_ADDRESS.  Move
69         deprecated_grub_regcache_for_registers call to block handling
70         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
71         (EXTRACT_RETURN_VALUE): Do not define.
72
73 2002-07-03  Grace Sainsbury  <graces@redhat.com>
74
75         * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
76         (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
77         (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
78         (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
79         (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
80         (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
81         (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
82         (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
83         (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
84         (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
85         * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
86         argument so the function fits the prototype in the architecture
87         vector.
88         (mcore_pop_frame): Remove argument so the function fits the
89         prototype. Use get_current_frame instead of the argument.
90         (mcore_push_arguments): Change type of struct_return so the
91         function can be used in the architecture vector.
92         (mcore_store_struct_return): Add.
93         (mcore_frame_init_saved_regs): Add.
94         (mcore_gdbarch_init): Add function calls to replace the macros
95         removed from tm-mcore.h
96
97 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
98
99         * infcmd.c (print_return_value): Remove compatibility code calling
100         deprecated_grub_regcache_for_registers.
101         
102         * values.c: Include "regcache.h".
103         (value_being_returned): Update.  Use
104         deprecated_grub_regcache_for_registers to extract the register
105         buffer address.  
106         * value.h (value_being_returned): Change ``retbuf'' parameter to a
107         ``struct regcache''.
108         * Makefile.in (values.o): Add dependency on $(regcache_h).
109
110         * inferior.h (run_stack_dummy): Change type of second parameter to
111         a ``struct regcache''.
112         * valops.c (hand_function_call): Change type of retbuf to ``struct
113         regcache''.  Allocate using regcache_xmalloc, clean using
114         make_cleanup_regcache_xfree.
115         * infcmd.c (run_stack_dummy): Update.  Use
116         regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
117
118         * regcache.c (do_regcache_xfree): New function.
119         (make_cleanup_regcache_xfree): New function.
120         * regcache.h (make_cleanup_regcache_xfree): Declare.
121
122 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
123
124         * event-top.c (command_line_handler): Don't read past
125         beginning of buffer.
126
127 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
128         
129         * varobj.c (struct varobj_root): Change frame from CORE_ADDR to 
130         struct frame_id. 
131         (varobj_create): Store frame_id for root.
132         (varobj_gen_name): Use xasprintf.
133         (varobj_update): Save and restore frame using get_frame_id() and
134         frame_find_by_id().
135         (create_child): Use xasprintf.
136         (new_root_variable): Initialize frame_id.
137         (c_name_of_child): Use xasprintf. Call find_frame_by_id().
138         (c_value_of_variable): Use xasprintf. Move mem_fileopen call
139         to prevent memory leak.
140
141 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
142
143         * valops.c (hand_function_call): Move declaration of retbuf to
144         start of function, allocate using malloc, add a cleanup but before
145         the inf_status cleanup, cleanup the buffer.  Rename local variable
146         old_chain to inf_status_cleanup.
147
148 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
149
150         * top.c (execute_command): Use cmd_func() and cmd_func_p().
151
152         * cli/cli-decode.c (cmd_func_p): New function.
153         (cmd_func): New function.
154
155         * command.h: Add cmd_func() and cmd_func_p().   
156         
157 2002-07-03  Grace Sainsbury  <graces@redhat.com>
158
159         * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
160         (REGISTER_SIZE): Remove.
161         (MAX_REGISTER_RAW_SIZE): Remove.
162         (REGISTER_VIRTUAL_TYPE): Remove.
163         (MAX_REGISTER_VIRTUAL_SIZE): Remove.
164         (REGISTER_NAME): Remove.
165         (USE_GENERIC_DUMMY_FRAMES): Remove.
166         (CALL_DUMMY): Remove.
167         (CALL_DUMMY_START_OFFSET): Remove.
168         (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
169         (CALL_DUMMY_LOCATION): Remove.
170         (FIX_CALL_DUMMY): Remove.
171         (CALL_DUMMY_ADDRESS): Remove.
172         (SIZEOF_CALL_DUMMY_WORDS): Remove.
173         (SAVE_DUMMY_FRAME_TOS): Remove.
174         * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
175         (mcore_register_virtual_type): New function.
176         (mcore_register_byte): New function.
177         (mcore_register_size): New function.
178         (mcore_register_name): New function.
179         (mcore_gdbarch_init): New function. Add set_gdbarch calls for
180         macros removed from tm-mcore.h.
181         (mcore_dump_tdep): Add.
182         (_initialize_mcore_tdep): Add gdbarch_register call.
183
184 2002-07-03  Mark Kettenis  <kettenis@gnu.org>
185
186         * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
187         frameless_look_for_prologue, such that we actually call this
188         function.
189
190 2002-07-02  Joel Brobecker  <brobecker@gnat.com>
191
192         * frame.h (frame_address_in_block): New function.
193
194         * blockframe.c (frame_address_in_block): New function extracted
195         from get_frame_block().
196         (get_frame_block): Use frame_address_in_block().
197         (block_innermost_frame): Use frame_address_in_block() to match
198         the frame pc address against the block boundaries rather than
199         the frame pc directly. This prevents a failure when a frame pc
200         is actually a return-address pointing immediately after the end
201         of the given block. 
202
203 2002-07-02  Grace Sainsbury  <graces@redhat.com>
204
205         * MAINTAINERS: Add self under write after approval. 
206
207 2002-07-02  Grace Sainsbury  <graces@redhat.com>
208
209         * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
210         used in architecture vector. The default is
211         m68k_local_breakpoint_from_pc.
212         (m68k_local_breakpoint_from_pc): Add.
213         (enum): Add register numbers from tm-m68k.h.
214         (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
215         vector.  
216         * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
217         GDB_MULTI_ARCH_PARTIAL.
218         (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
219         (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
220         m68k-tdep.c.
221         (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
222         (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
223         to enum in m68k-tdep.c
224
225 2002-07-02  Joel Brobecker  <brobecker@gnat.com>
226
227         * solib-osf.c (open_map): Compute the list of shared libraries
228         loaded by the inferior, rather than the list of libraries loaded
229         by GDB itself.  Otherwise, GDB ends up reading the symbols from
230         the wrong shared libraries...
231
232 2002-07-02  Mark Kettenis  <kettenis@gnu.org>
233
234         * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
235         (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
236         macros.
237         (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
238         Remove functions.
239         (FRAMELESS_SIGNAL): Remove function.
240         (i386_linux_frame_chain, i386_linux_frame_saved_pc,
241         i386_linux_saved_pc_after_call): Removed.
242         (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
243         tdep->sc_pc_offset and tdep->sc_sp_offset.  Don't override
244         frame_chain, frame_saved_pc and saved_pc_after_call any longer.
245
246         * i386-tdep.c (i386_frameless_signal_p): New function.
247         (i386_frame_chain): Deal with frameless signals.
248         (i386_sigtramp_saved_sp): New function.
249         (i386_frame_saved_pc): Deal with frameless signals.
250         (i386_saved_pc_after_call): Make sure the correct value is
251         returned just after entry into a sigtramp.
252         * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
253         i386fbsd4_sc_sp_offset): New variables.
254         (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
255         these variables to initialize tdep->sc_sp_offset.  * i386bsd-nat.c
256         (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
257         similiar to what we already did for sc_pc_offset.
258         * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
259         tdep->sc_sp_offset.
260
261         * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
262
263 2002-07-02  Michal Ludvig  <mludvig@suse.cz>
264
265         * config/i386/tm-x86-64linux.h: New.
266         * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
267         definitions.
268         * config/i386/nm-x86-64.h: Rename to ...
269         * config/i386/nm-x86-64linux.h: ... this one.
270         * config/i386/x86-64linux.mh: Reflect the above change.
271         
272 2002-07-01  Mark Kettenis  <kettenis@gnu.org>
273
274         * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
275         with sigcontext_addr.  Add sc_sp_offset.
276         (i386bsd_sigtramp_saved_pc): Remove prototype.
277         (i386bsd_sicontext_addr): Add prototype.
278         * i386-tdep.c (i386_sigtramp_saved_pc): New function.
279         (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
280         (i386_svr4_sigtramp_saved_pc): Removed.
281         (i386_svr4_sigcontext_addr): New function.
282         (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
283         Initialize tdep->sigcontext_addr instead.  Initialize
284         tdep->sc_pc_offset and tdep->sc_sp_offset.
285         (i386_gdbarch_init): Likewise.
286         * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
287         any more.
288         (i386bsd_sigtramp_saved_pc): Remove function.
289         (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
290         Initialize tdep->sigcontext_addr instead.  Initialize
291         tdep->sc_pc_offset.
292         * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
293         of tdep->sigtramp_saved_pc.
294         * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
295         tdep->sigtramp_saved_pc.  Initialize tdep->sigcontext_addr
296         instead.
297
298         * i386-tdep.c (i386_frameless_function_invocation,
299         i386_frame_num_args, i386_frame_init_saved_regs,
300         i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
301         i386_pop_frame, i386_push_arguments, i386_store_struct_return,
302         i386_extract_return_value, i386_store_return_value,
303         i386_extract_struct_value_address, i386_register_virtual_type,
304         i386_register_convertible, i386_register_convert_to_virtual,
305         i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
306         i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
307         static.
308
309 2002-07-01  Mark Kettenis  <kettenis@gnu.org>
310
311         * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
312
313         * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
314         * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
315         this macro.  Include "value.h".
316
317 2002-06-30  Aidan Skinner  <aidan@velvet.net>
318
319         * ada-exp.tab.c: remove as it's a generated file
320         * ada-lex.c: remove as it's a generated file
321                 
322 2002-06-30  Mark Kettenis  <kettenis@gnu.org>
323
324         * config/i386/tm-i386.h (struct frame_info, struct
325         frame_saved_regs, struct value, struct type): Remove forward
326         declarations.
327
328         * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
329         (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
330         * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
331         (FILL_FPXREGSET): Define.
332
333         * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
334
335         * configure.tgt (i[3456]86-*-openbsd*): Fold into
336         i[3456]86-*-netbsd* case.
337         * config/i386/tm-obsd.h: Removed.
338         * config/i386/obsd.mt: Removed.
339         * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
340         core-aout.o.
341         (MH_CFLAGS): Add -DYYDEBUG=0.
342
343         * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
344         i386nbsd_sc_pc_offset on OpenBSD too.
345
346         * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
347         (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
348         * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
349         define.
350         * i386bsd-tdep.c: Include "arch-utils.h".
351         (i386bsd_aout_in_solib_call_trampoline): New function.
352         (i386bsd_init_abi): Set in_solib_call_trampoline to
353         i386bsd_aout_in_solib_call_trampoline.
354         (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
355         in_solib_call_trampoline to generic_in_solib_call_trampoline.
356
357 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
358
359         * macrotab.h: Do not include "obstack.h" or "bcache.h".
360         (struct obstack, struct bcache): Add opaque declarations.
361         * Makefile.in (macrotab_h): Update
362
363 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
364
365         * blockframe.c (generic_find_dummy_frame): Change return type to
366         ``struct regcache''.
367         (struct dummy_frame): Replace field ``registers'' with regcache, a
368         struct regcache object.
369         (generic_find_dummy_frame): Update.
370         (generic_push_dummy_frame): Update.  Use regcache_xfree,
371         regcache_xmalloc and regcache_cpy.
372         (generic_pop_dummy_frame): Update.  Use regcache_cpy and
373         regcache_xfree.
374         (deprecated_generic_find_dummy_frame): Update.
375         (generic_read_register_dummy): Update.  Use
376         regcache_read_as_address.
377         (generic_call_dummy_register_unwind): Update.  Use regcache_read.
378         (generic_get_saved_register): Update.  Use regcache_read.
379
380 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
381
382         * Makefile.in (objfiles_h): Add $(bcache_h).
383         * objfiles.h: Include "bcache.h".
384
385         * Makefile.in (symtab_h): Remove $(bcache_h).
386         * symtab.h: Do not include "bcache.h".
387
388 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
389
390         * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
391         generic_func_frame_chain_valid.
392
393 2002-06-28  David O'Brien  <obrien@FreeBSD.org>
394
395         * config/i386/nm-fbsd.h: Include <sys/param.h>.
396         * config/i386/tm-fbsd.h: Likewise.
397
398 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
399
400         * rs6000-tdep.c (rs6000_gdbarch_init): Use
401         generic_unwind_get_saved_register.
402
403 2002-06-27  Andrew Cagney  <ac131313@redhat.com>
404
405         From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
406         * regcache.c (supply_register): Add missing argument to
407         register_buffer call.
408
409 2002-06-27  Andrew Cagney  <ac131313@redhat.com>
410
411         * Makefile.in (init.c): Drop -e option to grep.  Not necessary and
412         Solaris /bin/grep does not not like it.  From Peter Schauer.
413
414 2002-06-26  Tom Tromey  <tromey@redhat.com>
415
416         * command.h (add_setshow_cmd): Declare.
417         (add_setshow_cmd_full): Declare.
418         * cli/cli-decode.c (add_setshow_cmd): No longer static.  Now
419         returns void.  Use add_setshow_cmd_full.
420         (add_setshow_cmd_full): New function.
421         (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
422         (add_setshow_boolean_cmd): Likewise.
423
424 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
425
426         * config/vax/tm-vax.h: Protect from multiple inclusion.
427         (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
428         (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
429         * config/vax/tm-vaxbsd.h: ...here.  New file.
430         * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
431
432 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
433
434         * config/vax/tm-vax.h (BREAKPOINT): Remove.
435         (BELIEVE_PCC_PROMOTION): Remove.
436         (AP_REGNUM): Move to...
437         * config/vax/nm-vax.h: ...here.
438         * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
439         (vax_breakpoint_from_pc): New function.
440         (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
441         and gdbarch_believe_pcc_promotion.
442
443 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
444
445         * Makefile.in (vax_tdep_h): Define.  
446         (vax-tdep.o): Use $(vax_tdep_h).
447         * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
448         (vax_dump_tdep): New function. 
449         (_initialize_vax_tdep): Register vax_dump_tdep.
450         * vax-tdep.h: Include osabi.h.     
451         (struct gdbarch_tdep): New. 
452
453 2002-06-26  Andrew Cagney  <cagney@redhat.com>
454
455         * frame.h (deprecated_generic_find_dummy_frame): Rename
456         generic_find_dummy_frame.
457         * blockframe.c (generic_find_dummy_frame): Make static.
458         (deprecated_generic_find_dummy_frame): New function.
459         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
460         generic_find_dummy_frame with deprecated_find_dummy_frame.
461         (sh64_nofp_frame_init_saved_regs): Ditto.
462         (sh_fp_frame_init_saved_regs): Ditto.
463         * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
464         (s390_frame_chain): Ditto.
465         * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
466
467 2002-06-26  Grace Sainsbury  <graces@redhat.com>
468
469         * config/m68k/tm-m68k.h: Rearrange code so macros not in the
470         gdbarch vector are at the top.
471         (NUM_REGS): Remove.
472         (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
473         (FRAME_ARGS_ADDRESS): Remove.
474         (FRAME_LOCALS_ADDRESS): Remove.
475         (FRAME_NUM_ARGS): Remove.
476         (FRAME_ARGS_SKIP): Remove.  
477         * m68k-tdep.c (enum): Add eumeration of special register numbers.
478         (m68k_gdbarch_init): Add gdbarch initializations for macros
479         undefined in tm-m68k.h
480
481 2002-06-26  Grace Sainsbury  <graces@redhat.com>
482
483         * monitor.h: Add the function regname to monitor_ops
484         structure. This way NUM_REGS does not have to be a constant.
485         * monitor.c (monitor_fetch_register): Added support for regname
486         function. The function is called if the array regnames is NULL.
487         (monitor_store_register): Same.
488         * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
489         regnames array.
490         (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
491         cpu32bug_cmds.regname to point to new function.
492         * abug-rom.c (abug_regname): Same as above.
493         (init_abug_cmds): Same.
494         * dbug-rom.c (dbug_regname): Same as above.
495         (init_dbug_cmds): Same.
496         * remote-est.c (est_regname): Same. 
497         (init_est_cmds): Same.
498         * rom68k-rom.c (rom68k_regname): Same. 
499         (init_rom68k_cmds): Same.
500
501 2002-06-25  Tom Tromey  <tromey@redhat.com>
502
503         * breakpoint.c (delete_command): Don't repeat `delete' commands.
504
505 2002-06-25  Andrew Cagney  <cagney@redhat.com>
506
507         * infrun.c (stop_registers): Change variable's type to ``struct
508         regcache'''.
509         (xmalloc_inferior_status): Delete function.
510         (free_inferior_status): Delete function.
511         (normal_stop): Use regcache_cpy.
512         (struct inferior_status): Change type of fields ``stop_registers''
513         and ``registers'' to ``struct regcache''.
514         (write_inferior_status_register): Use regcache_write.
515         (save_inferior_status): Instead of calling
516         xmalloc_inferior_status, allocate the inf_status buffer directly.
517         Use regcache_dup_no_passthrough and regcache_dup to save the
518         buffers.
519         (restore_inferior_status): Use regcache_xfree and regcache_cpy.
520         Replace the stop_registers regcache instead of overriding it.  Use
521         regcache_xfree.  Instead of calling free_inferior_status, xfree
522         the buffer directly.
523         (discard_inferior_status): Use regcache_xfree.  Instead of calling
524         free_inferior_status, xfree the buffer directly.
525         (build_infrun): Use regcache_xmalloc.
526         (_initialize_infrun): Delete redundant call to build_infrun.
527
528         * Makefile.in (infcmd.o): Add $(regcache_h).
529
530         * infcmd.c: Include "regcache.h".
531         (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
532         obtain the address of `stop_registers' register buffer.
533         (print_return_value): Ditto.
534
535         * inferior.h (struct regcache): Add opaque declaration.
536         (stop_registers): Change variable's declared type to ``struct
537         regcache''.
538
539 2002-06-24  Tom Tromey  <tromey@redhat.com>
540
541         * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
542         * target.c (initialize_targets): Fixed typo in
543         trust-readonly-sections `show' documentation.
544
545         * main.c: Marked all strings with _().
546
547 2002-06-24  Don Howard  <dhoward@redhat.com>
548
549         * memattr.c (create_mem_region): Treat hi == 0 as a special case
550         that means max CORE_ADDR+1.
551         (lookup_mem_region): Ditto.
552         (mem_info_command): Ditto.
553
554 2002-06-24  Grace Sainsbury  <graces@redhat.com>
555
556         * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
557         (REGISTER_BYTES_OK): Remove.
558         (REGISTER_BYTES): Remove.
559         (STORE_STRUCT_RETURN): Remove.
560         (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
561         (STORE_RETURN_VALUE): Remove.
562         (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
563         (FRAME_CHAIN): Remove.
564         (FRAMELESS_FUNCTION_INVOCATION): Remove.
565         (FRAME_SAVED_PC): Remove.  
566         * m68k-tdep.c (m68k_register_bytes_ok):Add.
567         (m68k_store_struct_return): Add.
568         (m68k_deprecated_extract_return_value): Add.
569         (m68k_deprecated_extract_struct_value_address): Add.
570         (m68k_store_return_value): Add.
571         (m68k_frame_chain): Add.
572         (m68k_frameless_function_invocation): Add.
573         (m68k_frame_saved_pc): Add.
574         (m68k_gdbarch_init): added set_gdbarch calls for new 
575         functions and deleted macros.
576
577 2002-06-23  Tom Tromey  <tromey@redhat.com>
578
579         * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
580         (ALLDEPFILES): Likewise.
581         (udiheaders): Removed.
582         (udip2soc.o): Likewise.
583         (udi2go32.o): Likewise.
584         (udr.o): Likewise.
585         (HFILES_WITH_SRCDIR): Don't mention udiheaders.
586
587 2002-06-22  Andrew Cagney  <ac131313@redhat.com>
588
589         * infrun.c (_initialize_infrun): Delete unnecessary call to
590         build_infrun.
591
592         * regcache.h: Update comments describing the regcache_cpy family
593         of functions.
594         (regcache_save, regcache_restore): Delete declaration.
595         (regcache_save_no_passthrough): Delete declaration.
596         (regcache_restore_no_passthrough): Delete declaration.
597         * regcache.c (regcache_save): Delete function.
598         (regcache_save_no_passthrough): Delete function.
599         (regcache_restore): Delete function.
600         (regcache_restore_no_passthrough): Delete function.
601
602 2002-06-21  Andrew Cagney  <ac131313@redhat.com>
603
604         * config/m68k/tm-m68k.h: Fix typo.
605         (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
606         (m68k_frame_init_saved_regs): Declare.
607
608 2002-06-21  Jim Blandy  <jimb@redhat.com>
609
610         Remove some vestiges of Harris 88k support.
611         * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
612         register numbering quirk.
613         * elfread.c (elf_symtab_read): Remove `#if' block for skipping
614         odd symbols occurring in Harris 88k ELF targets.
615
616 2002-06-21  Tom Tromey  <tromey@redhat.com>
617
618         * gdb_locale.h: New file.
619         * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
620         (defs_h): Added gdb_locale.h.
621         * configure, config.in: Rebuilt.
622         * configure.in (PACKAGE): Define.
623         * defs.h: Include gdb_locale.h.
624         * main.c (captured_main): Call setlocale, bindtextdomain,
625         textdomain.
626
627 2002-06-21  Dave Brolley  <brolley@redhat.com>
628
629         From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
630         * config/frv/frv.mt: New file.
631         * config/frv/tm-frv.h: New file.
632         * configure.tgt: Support frv-*-*.
633         * Makefile.in (frv-tdep.o): New target.
634         * frv-tdep.c: New file.
635         * NEWS: Mention frv.
636
637 2002-06-21  Dave Brolley  <brolley@redhat.com>
638
639         * MAINTAINERS: Add self to "Write After Approval" list.
640
641 2002-06-21  Grace Sainsbury  <graces@redhat.com>
642
643         * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
644         (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
645         (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
646         (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
647         (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
648
649         * m68k-tdep.c: Include arch-utils.h
650         (m68k_register_raw_size): Add.
651         (m68k_register_virtual_size): Add.
652         (m68k_register_virtual_type): Add.
653         (m68k_register_name): Add.
654         (m68k_stack_align): Add.
655         (m68k_register_byte): Add.
656         (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
657         tm-m68k.h.
658
659 2002-06-21  Grace Sainsbury  <graces@redhat.com>
660
661         * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
662         m68k_find_saved_regs.
663         (m68k_pop_frame): Removed saved_regs structure, and replaced
664         references to it with frame->saved_regs.
665         (m68k_gdbarch_init): Added function calls to initialize the
666         gdbarch structure.
667         (m68k_fix_call_dummy): Add. 
668         * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
669         (CALL_DUMMY): Remove.
670         (CALL_DUMMY_LENGTH): Remove.
671         (CALL_DUMMY_START_OFFSET): Remove.
672         (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
673         (FIX_CALL_DUMMY): Remove.
674         (PUSH_DUMMY_FRAME): Remove.
675         (POP_FRAME): Remove.
676
677 2002-06-19  Pierre Muller  <muller@ics.u-strasbg.fr>
678
679         * parse.c (parse_fprintf): New function used to avoid calls to
680         fprintf in bison parser generated debug code.
681         * parser-defs.h: Declaration of new parse_fprintf function.
682         * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
683         Set YYDEBUG to 1 by default.
684         Set YYFPRINTF as parse_fprintf.
685
686 2002-06-21  Michal Ludvig  <mludvig@suse.cz>
687
688         * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer 
689         encoding anymore.
690         (pointer_encoding, enum ptr_encoding): New.
691         (execute_cfa_program): Take care about pointer encoding.        
692         (dwarf2_build_frame_info): Only call parse_frame_info for 
693         .debug_frame and .eh_frame.
694         (parse_frame_info): New, derived from former dwarf2_build_frame_info.
695         fixed augmentation handling, added relative addressing, 
696         ignore duplicate FDEs. Added comments.
697         * dwarf2cfi.c: Reindented.
698         
699 2002-06-20  Elena Zannoni  <ezannoni@redhat.com>
700
701         * event-top.c (command_handler): Don't use space_at_cmd_start
702         unless there is sbrk() on the host. Assign time and space data
703         to union fields of the appropriate length.
704
705 2002-06-20  Michal Ludvig  <mludvig@suse.cz>
706
707         * x86-64-tdep.c (x86_64_register_nr2name): Rename to 
708         x86_64_register_name. Return type changed to 'const char *'.
709         (x86_64_register_name2nr): Rename to x86_64_register_number.
710         (x86_64_gdbarch_init): Update to reflect the change.
711         * x86-64-tdep.h: Ditto.
712         * x86-64-linux-nat.c (x86_64_fxsave_offset)
713         (supply_fpregset): Ditto.
714
715 2002-06-19  Andrew Cagney  <cagney@redhat.com>
716
717         * regcache.h: Update copyright.
718         (struct regcache, struct gdbarch): Add opaque declarations.
719         (current_regcache): Declare global variable.
720         (regcache_read, regcache_write): Add gdbarch parameter.
721         (regcache_save, regcache_save_no_passthrough)
722         (regcache_restore, regcache_restore_no_passthrough)
723         (regcache_dup, regcache_dup_no_passthrough)
724         (regcache_cpy, regcache_cpy_no_passthrough)
725         (deprecated_grub_regcache_for_registers)
726         (deprecated_grub_regcache_for_register_valid)
727         (regcache_valid_p): Add function declarations.
728         
729         * regcache.c: Update copyright.
730         (regcache_descr_handle): New global variable.
731         (struct regcache_descr): Define.
732         (init_legacy_regcache_descr, init_regcache_descr): New functions.
733         (regcache_descr, xfree_regcache_descr): New functions.
734         (struct regcache): Define.
735         (regcache_xmalloc, regcache_xfree): New functions.
736         (regcache_cpy, regcache_cpy_no_passthrough): New functions.
737         (regcache_dup, regcache_dup_no_passthrough): New functions.
738         (regcache_valid_p, regcache_read_as_address): New functions.
739         (deprecated_grub_regcache_for_registers): New function.
740         (deprecated_grub_regcache_for_register_valid): New function.
741         (current_regcache): New global variable.
742         (register_buffer): Add regcache parameter.  Update calls.
743         (regcache_read, regcache_write): Add regcache parameter.  Rewrite.
744         (read_register_gen, write_register_gen): Update register_buffer
745         call.  Test for legacy_p instead of gdbarch_register_read_p or
746         gdbarch_register_write_p.
747         (regcache_collect): Update register_buffer call.
748         (build_regcache): Rewrite.  Use deprecated grub functions.
749         (regcache_save, regcache_save_no_passthrough): New functions.
750         (regcache_restore, regcache_restore_no_passthrough): New
751         functions.
752         (_initialize_regcache): Create the regcache_data_handle. Swap
753         current_regcache global variable.
754         
755         * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
756         parameter to regcache_read and regcache_write calls.
757         (sh4_register_read): Ditto.
758         (sh64_pseudo_register_read): Ditto.
759         (sh64_register_read): Ditto.
760         (sh_pseudo_register_write): Ditto.
761         (sh4_register_write): Ditto.
762         (sh64_pseudo_register_write): Ditto.
763         (sh64_register_write): Ditto.
764
765         * defs.h (XCALLOC): Define.
766
767 2002-06-19  Grace Sainsbury  <graces@redhat.com>
768
769         * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
770         * m68k-tdep.c (m68k_gdbarch_init): Added.
771         (m68k_dump_tdep): Added.
772
773 2002-06-19  Daniel Jacobowitz  <drow@mvista.com>
774
775         * ada-lang.c (fill_in_ada_prototype): Update comment.
776
777 2002-06-19  Daniel Jacobowitz  <drow@mvista.com>
778
779         * mips-tdep.c (enum mips_abi): Explicitly start at 0.  Add
780         MIPS_ABI_LAST.
781         (mips_abi_string, mips_abi_strings): New.
782         (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
783         (mips_gdbarch_init): Set tdep->found_abi.  Don't set
784         tdep->mips_abi_string.  Honor mips_abi_string.  Default to
785         O32 if no ABI is found.
786         (mips_dump_tdep): Use mips_abi_strings.
787         (mips_abi_update): New function.
788         (_initialize_mips_tdep): Initialize mips_abi_string.  Add  
789         ``set mips abi'' and ``show mips abi''.  Check the size of
790         mips_abi_strings.
791
792 2002-06-19  Andrew Cagney  <cagney@redhat.com>
793
794         * i386-linux-tdep.c (i386_linux_register_name): Make return type
795         constant.
796
797 2002-06-18  Joel Brobecker  <brobecker@gnat.com>
798
799         * alpha-tdep.c (heuristic_proc_desc): Compute the size of the  
800         current frame using only the first stack size adjustment. All
801         subsequent size adjustments are not considered to be part of
802         the "static" part of the current frame.
803         Compute the address of the saved registers relative to the
804         Frame Pointer ($fp) instead of the Stack Pointer if $fp is
805         in use in this frame.
806
807 2002-06-18  Don Howard  <dhoward@redhat.com>
808  
809         * valops.c (value_ind): Use value_at_lazy() when dereferencing
810         type int expressions.  Thanks to Jim Blandy <jimb@redhat.com> for
811         suggesting this solution.
812
813 2002-06-18  Andrew Cagney  <ac131313@redhat.com>
814
815         * config/romp/xm-rtbsd.h: Delete file.
816         * config/romp/rtbsd.mh: Delete file.
817
818 2002-06-18  Keith Seitz  <keiths@redhat.com>
819
820         * breakpoint.c (condition_command): Post breakpoint_modify
821         when a condition is added to an existing breakpoint.
822         (commands_command): Likewise for commands.
823         (set_ignore_count): Likewise for ignore counts.
824         If no tty, do not simply return, still need to send event
825         notification.
826         (ignore_command): Only print a newline if the command came
827         from a tty.
828         Don't call breakpoints_changed, since this is now properly
829         handled by set_ignore_count.
830
831 2002-06-18  Andrew Cagney  <cagney@redhat.com>
832
833         * MAINTAINERS: Note that cris-elf target can be compiled with
834         -Werror.
835         * cris-tdep.c (cris_register_name): Make return type constant.
836         (cris_breakpoint_from_pc): Ditto.
837
838 2002-06-18  Michal Ludvig  <mludvig@suse.cz>
839
840         * frame.h (struct frame_info): Change type of context to 
841         'struct context'.
842
843 2002-06-17  Andrew Cagney  <cagney@redhat.com>
844
845         * gdbarch.sh (REGISTER_NAME): Change return type a constant string
846         pointer.
847         * gdbarch.h, gdbarch.c: Regenerate.
848         * config/mips/tm-mips.h (mips_register_name): Update.
849         * i386-tdep.h (i386_register_name): Update.
850         * mips-tdep.c (mips_register_name): Update
851         * alpha-tdep.c (alpha_register_name): Update.
852         * arch-utils.c (legacy_register_name): Update.
853         * arch-utils.h (legacy_register_name): Update.
854         * avr-tdep.c (avr_register_name): Update.
855         * ia64-tdep.c (ia64_register_name): Update.
856         * i386-tdep.c (i386_register_name): Update.
857         * sparc-tdep.c (sparc32_register_name): Update.
858         (sparc64_register_name): Update.
859         (sparclite_register_name): Update.
860         (sparclet_register_name): Update.
861         * sh-tdep.c (sh_generic_register_name): Update.
862         (sh_sh_register_name): Update.
863         (sh_sh3_register_name): Update.
864         (sh_sh3e_register_name): Update.
865         (sh_sh_dsp_register_name): Update.
866         (sh_sh3_dsp_register_name): Update.
867         (sh_sh4_register_name): Update.
868         (sh_sh64_register_name): Update.
869         * s390-tdep.c (s390_register_name): Update.
870         * rs6000-tdep.c (rs6000_register_name): Update.
871         * ns32k-tdep.c (ns32k_register_name_32082): Update.
872         (ns32k_register_name_32382): Update.
873         * d10v-tdep.c (d10v_ts2_register_name): Update.
874         (d10v_ts3_register_name): Update.
875         * xstormy16-tdep.c (xstormy16_register_name): Update.
876         * vax-tdep.c (vax_register_name): Update.
877         * v850-tdep.c (v850_register_name): Update.
878         * m68hc11-tdep.c (m68hc11_register_name): Update.
879         * mn10300-tdep.c (mn10300_generic_register_name): Update.
880         (am33_register_name): Update.
881
882 2002-06-17  Grace Sainsbury  <graces@redhat.com>
883
884         * m68k-tdep.c: Reindented.
885
886 2002-06-17  Andrew Cagney  <ac131313@redhat.com>
887
888         * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
889         list of predefined types.
890
891 2002-06-16  Mark Kettenis  <kettenis@gnu.org>
892
893         * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
894         REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
895         REGISTER_CONVERT_TO_RAW): Remove defines.
896         (i386_register_virtual_type, i386_register_convertible,
897         i386_register_convert_to_virtual, i386_register_convert_to_raw):
898         Remove prototypes.
899         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
900         macros mentioned above.
901
902         * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
903         (i386lynx_saved_pc_after_call): Remove prototype.
904         * i386ly-tdep.c: Include "i386-tdep.h".
905         (i386lynx_saved_pc_after_call): Make static.  Use
906         read_memory_nobpt instead of read_memory.  Use
907         read_memory_unsigned_integer instead of read_memory_integer.
908         (i386lynx_init_abi): New function.
909         (i386lynx_coff_osabi_sniffer): New function.
910         (_initialize_i386bsd_tdep): New function.
911
912         * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
913         CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
914         CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
915         (i386_fix_call_dummy): Remove prototype.
916         * i386-tdep.c (i386_call_dummy_words): New variable.
917         (i386_gdbarch_init): Adjust for removal of the
918         macros mentioned above.
919
920 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
921
922         * command.h (add_setshow_auto_boolean_cmd): Replace
923         add_set_auto_boolean_cmd.
924         * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
925         add_set_auto_boolean_cmd.
926         * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
927         * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
928         mask-address'' command.
929         (show_mask_address): Add cmd parameter.
930         * remote.c (add_packet_config_cmd): Update.  Change type of
931         set_func and show_func to cmd_sfunc_ftype.
932         (_initialize_remote): Update `set remote Z-packet'
933         (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
934         (show_remote_protocol_e_packet_cmd): Ditto.
935         (show_remote_protocol_E_packet_cmd): Ditto.
936         (show_remote_protocol_P_packet_cmd): Ditto.
937         (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
938         (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
939         (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
940         (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
941         (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
942         (show_remote_protocol_Z_packet_cmd): Ditto.
943         (show_remote_protocol_binary_download_cmd): Ditto.
944         (show_remote_cmd): Pass NULL to all of above.
945
946 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
947
948         * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
949         DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
950         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
951         POP_FRAME): Remove defines.
952         (i386_push_arguments, i386_store_struct_return,
953         i386_extract_return_value, i386_store_return_value,
954         i386_extract_struct_value_address, i386_push_dummy_frame,
955         i386_pop_frame): Renove prototypes.
956         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
957         macros mentioned above.
958
959 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
960
961         * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
962         add_set_boolean_cmd.
963         (add_setshow_cmd): New function.
964         * command.h (add_setshow_boolean_cmd): Replace
965         add_set_boolean_cmd.
966         * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
967         and ``set rdiromatzero''.
968         * maint.c (_initialize_maint_cmds): Update commented out code.
969         * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
970         * target.c (initialize_targets): Update `set
971         trust-readonly-sections'.
972         * remote.c (_initialize_remote): Update `set remotebreak'.
973
974 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
975
976         * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
977         BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
978         * i386-tdep.c (i386_skip_prologue): Adjust function signature to
979         fit into multi-arch framework.
980         (i386_breakpoint_from_pc): New function.
981         (i386_gdbarch_init): Adjust for removal of the macros mentioned
982         above.
983
984         * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
985         FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
986         FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
987         (i386_frameless_function_invocation, i386_frame_num_args,
988         i386_frame_init_saved_regs): Remove prototypes.
989         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
990         macros mentioned above.
991
992 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
993
994         * cli/cli-decode.c (set_cmd_cfunc): Update.
995         (set_cmd_sfunc): Update.
996         * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
997         (set_cmd_sfunc, set_cmd_cfunc): Update.
998         * cli/cli-decode.h: Update.
999
1000 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
1001
1002         * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
1003         (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
1004
1005 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
1006
1007         * defs.h (auto_boolean): Declare enum.
1008         * command.h (cmd_auto_boolean): Delete enum.
1009         * mips-tdep.c (mask_address_var): Update.
1010         (mips_mask_address_p): Update.
1011         (show_mask_address): Update.
1012         * remote.c (struct packet_config): Update.
1013         (update_packet_config): Update.
1014         (show_packet_config_cmd): Update.
1015         (packet_ok): Update.
1016         (add_packet_config_cmd): Update.
1017         (_initialize_remote): 
1018         * command.h: Update.
1019         * cli/cli-setshow.c (parse_auto_binary_operation): Update.
1020         (do_setshow_command): Update.
1021         * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
1022         * cli/cli-decode.h: Update.
1023
1024 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
1025
1026         * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
1027         config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
1028         config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
1029         config/i386/tm-linux.h, config/i386/tm-nbsd.h,
1030         config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
1031         * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
1032
1033         * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
1034         list of DJGPP COFF targets.
1035
1036         * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
1037         (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
1038         (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
1039         (FP0_REGNUM): Remove define.
1040         (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
1041         MAX_REGISTER_VIRTUAL_SIZE): Remove define.
1042         (i386_register_virtual_size): Remove protoype.
1043         * i386-tdep.c (i386_register_virtual_size): Removed.
1044         (i386_extract_return_value, i386_store_return_value): Use
1045         FP0_REGNUM instead of NUM_FREGS to determine whether the
1046         floating-point registers are available.
1047         (i386_gdbarch_init): Tweak FIXME about FPU registers.
1048         Adjust for removal of macros mentioned above.
1049
1050 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
1051
1052         * i386v4-nat.c: Include "i386-tdep.h".  Reformat and tweak various
1053         comments.
1054         (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
1055         Remove prototypes.
1056         (supply_gregset, fill_gregset): Remove use of register keyword and
1057         remove declaration for regmap.  Use I386_NUM_GREGS instead of
1058         NUM_REGS and NUM_FREGS.
1059         (FPREGSET_FSAVE_OFFSET): Remove.
1060         (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
1061         NUM_FREGS to determine whether the floating-point registers are
1062         available.
1063
1064         * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
1065         gnu_store_registers): Replace usage of NUM_GREGS with
1066         I386_NUM_GREGS.
1067
1068         * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
1069         OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
1070         usage of NUM_GREGS with I386_NUM_GREGS.
1071
1072         * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
1073
1074         * i386bsd-nat.c: Include "i386-tdep.h".
1075         (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
1076         I386_NUM_GREGS.
1077
1078         * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
1079         and associated comment.  They no longer make any sense, since we
1080         don't use this file anymore on Linux.
1081
1082         * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
1083         * i386-tdep.c (i386_register_offset, i386_register_size): Use
1084         I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
1085         elements in these arrays.
1086         (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
1087         MAX_NUM_REGS.
1088
1089 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
1090
1091         * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
1092         * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
1093
1094 2002-06-14  Andrew Cagney  <cagney@redhat.com>
1095
1096         * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
1097         EXTRACT_RETURN_VALUE.
1098         (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
1099         EXTRACT_STRUCT_VALUE_ADDRESS.
1100         * gdbarch.h, gdbarch.c: Regenerate.
1101         
1102         * values.c (value_being_returned): Handle
1103         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
1104         (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
1105
1106         * arm-linux-tdep.c (arm_linux_init_abi): Update. 
1107         * arm-tdep.c (arm_gdbarch_init): Update.
1108         * avr-tdep.c (avr_gdbarch_init): Update.
1109         * cris-tdep.c (cris_gdbarch_init): Update.
1110         * d10v-tdep.c (d10v_gdbarch_init): Update.
1111         * ia64-tdep.c (ia64_gdbarch_init): Update.
1112         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1113         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1114         * s390-tdep.c (s390_gdbarch_init): Update.
1115         * sh-tdep.c (sh_gdbarch_init): Update.
1116         * s390-tdep.c (s390_gdbarch_init): Update.
1117         * sparc-tdep.c (sparc_gdbarch_init): Update.
1118         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
1119         * v850-tdep.c (v850_gdbarch_init): Update.
1120         * vax-tdep.c (vax_gdbarch_init): Update.
1121         * x86-64-tdep.c (x86_64_gdbarch_init): Update.
1122         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
1123
1124         * config/arc/tm-arc.h: Update.
1125         * config/d30v/tm-d30v.h: Update.
1126         * config/fr30/tm-fr30.h: Update.
1127         * config/h8300/tm-h8300.h: Update.
1128         * config/h8500/tm-h8500.h: Update.
1129         * config/i386/tm-i386.h: Update.
1130         * config/i386/tm-ptx.h: Update.
1131         * config/i386/tm-symmetry.h: Update.
1132         * config/i960/tm-i960.h: Update.
1133         * config/m32r/tm-m32r.h: Update.
1134         * config/m68k/tm-delta68.h: Update.
1135         * config/m68k/tm-linux.h: Update.
1136         * config/m68k/tm-m68k.h: Update.
1137         * config/m88k/tm-m88k.h: Update.
1138         * config/mcore/tm-mcore.h: Update.
1139         * config/mips/tm-mips.h: Update.
1140         * config/mn10200/tm-mn10200.h: Update.
1141         * config/pa/tm-hppa.h: Update.
1142         * config/pa/tm-hppa64.h: Update.
1143         * config/sparc/tm-sp64.h: Update.
1144         * config/sparc/tm-sparc.h: Update.
1145         * config/sparc/tm-sparclet.h: Update.
1146         * config/z8k/tm-z8k.h: Update.
1147
1148 2002-06-14  Andrew Cagney  <cagney@redhat.com>
1149
1150         * Makefile.in (i386_linux_tdep_h): Define.
1151         (i386_tdep_h, i387_tdep_h): Define.
1152         (i386-linux-nat.o): Add $(i386_linux_tdep_h),
1153         $(i386_tdep_h) and $(i387_tdep_h).
1154         * i386-linux-nat.c: Include "i386-linux-tdep.h".
1155
1156 2002-06-14  Mark Kettenis  <kettenis@gnu.org>
1157
1158         * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
1159         Already covered by the default.
1160
1161         * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
1162         TARGET_LONG_DOUBLE_BIT): Remove.  * i386-tdep.c
1163         (i386_gdbarch_init): Initialize long_double_format and long_double
1164         bit.
1165
1166         * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
1167         i386bsd-tdep.o.  Remove solib.o, solib-svr4.o and solib-legacy.o.
1168         Move these to ...
1169         * config/i386/i386sol2.mh: ... here.
1170         * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
1171         (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
1172         (SIGCONTEXT_PC_OFFSET): Remove define.
1173         (IN_SIGTRAMP): Remove define.
1174         * i386-sol2-tdep.c: New file.
1175         
1176         * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
1177         * config/i386/tm-i386nw.h: Removed.
1178
1179         * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
1180         USE_STRUCT_CONVENTION): Remove defines.
1181         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
1182         (get_longjmp_target): Remove prototype.
1183         (IN_SIGTRAMP): Remove define.
1184         (i386bsd_in_sigtramp): Remove prototype.
1185         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
1186         function.  Update comment accordingly
1187         (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
1188         (FRAME_SAVED_PC): Remove define.
1189         (i386bsd_frame_saved_pc): Remove prototype.
1190         * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
1191         GET_LONGJMP_TARGET): Remove defines.
1192         (get_longjmp_target): Remove prototype.
1193         (IN_SIGTRAMP): Remove define.
1194         (i386bsd_in_sigtramp): Remove prototype.
1195         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
1196         function.  Update comment accordingly
1197         (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
1198         (FRAME_SAVED_PC): Remove define.
1199         (i386bsd_frame_saved_pc): Remove prototype.
1200         * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
1201         Remove prototype.
1202         (USE_STRUCT_CONVENTION): Remove prototype.
1203         * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
1204         declaration.
1205         (_initialize_i386bsd_nat): Revise logic to determine some
1206         constants at compile time when compiling a native GDB.  Warn if
1207         things don't match up with what we expect.
1208         * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
1209         Remove variables.
1210         (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp.  Rewrite
1211         to use date stored in `struct gdbarch_tdep'.
1212         (i386bsd_sigcontext_offset): Remove varaible.
1213         (i386bsd_sigtramp_saved_pc): Make public.  Rewrite to use data
1214         stored in `struct gdbarch_tdep'.
1215         (i386bsd_frame_saved_pc): Make static.
1216         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
1217         (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
1218         i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
1219         i386fbsd4_sc_pc_offset): New variables.
1220         (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
1221         i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
1222         functions.
1223         (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
1224         functions.
1225         * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
1226         Modify the value of i386fbsd_sigtramp_start and
1227         i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
1228         i386fbsd_sigtramp_end.
1229         * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
1230         function.
1231
1232         * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
1233         define to i386-linux-tdep.h.
1234         (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
1235         REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
1236         defines.
1237         (i386_linux_register_name, i386_linux_register_byte,
1238         i386_linux_register_raw_size): Remove prototypes.
1239         (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
1240         (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
1241         (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
1242         TARGET_WRITE_PC): Remove defines.
1243         (i386_linux_in_sigtramp, i386_linux_frame_chain,
1244         i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
1245         i386_linux_write_pc): Remove prototypes.
1246         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
1247         (get_longjmp_target): Remove prototype.
1248         * i386-linux-tdep.h: New file.
1249         * i386-linux-nat.c: Include "i386-linux-tdep.h".
1250         * i386-linux-tdep.c: Include "i386-tdep.h" and
1251         "i386-linux-tdep.h".
1252         (i386_linux_register_name, i386_linux_register_byte,
1253         i386_linux_register_raw_size, i386_linux_in_sigtramp,
1254         i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
1255         Make static.
1256         (i386_linux_init_abi): New function.
1257         (_initialize_i386_linux_tdep): New function.
1258
1259         * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
1260         (i386_saved_pc_after_call): Remove prototype.
1261         (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
1262         (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
1263         DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
1264         (i386_register_name, i386_stab_reg_to_regnum,
1265         i386_dwarf_reg_to_regnum): Remove prototypes.
1266         (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
1267         SIZEOF_SSE_REGS): Remove defines.
1268         (REGISTER_BYTES): Remove define.
1269         (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
1270         (i386_register_byte, i386_register_raw_size): Remove prototypes.
1271         (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
1272         (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
1273         * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
1274         (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
1275         JB_EDX, GET_LONGJMP_TARGET): Remove defines.
1276         (get_longjmp_target): Remove prototype.
1277         (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
1278         (sigtramp_saved_pc): Remove define.
1279         (i386v4_sigtramp_saved_pc): Remove prototype.
1280         * config/i386/tm-go32.h (FRAME_CHAIN,
1281         FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
1282         (i386go32_frame_saved_pc): Remove prototype.
1283         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
1284         (get_longjmp_target): Remove prototype.
1285         * i386-tdep.h: Include "osabi.h".
1286         (enum i386_abi): Removed.
1287         (enum struct_return): New enum.
1288         (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
1289         struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
1290         sc_pc_offset members.
1291         (i386_gdbarch_register_os_abi): Remove prototype.
1292         (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
1293         I386_SSE_NUM_REGS): New defines.
1294         (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
1295         I386_SSE_SIZEOF_REGS): New defines.
1296         (i386_register_name, i386_register_byte, i386_register_raw_size):
1297         New prototypes.
1298         (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
1299         (i386bsd_sigtramp_saved_pc): New prototype.
1300         * i386-tdep.c: Don't include "elf-bfd.h".
1301         (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
1302         i386_frame_chain, i386_saved_pc_after_call): Make static.
1303         (i386_frame_saved_pc): Rewrite to call architecture dependent
1304         function to deal with signal handlers.  Make static.
1305         (i386go32_frame_saved_pc): Removed.
1306         [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
1307         Removed.
1308         (i386_get_longjmp_target): New function.
1309         (default_struct_convention, pcc_struct_convention,
1310         reg_struct_convention, valid_conventions, struct_convention): New
1311         variables.
1312         (i386_use_struct_convention): New function.
1313         (i386v4_sigtramp_saved_pc): Renamed to
1314         i386_svr4_sigtramp_saved_pc.  Made static.  Moved.
1315         (i386_pc_in_sigtramp): New function.
1316         (i386_abi_names): Removed.
1317         (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
1318         ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
1319         Removed.
1320         (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
1321         i386_gdbarch_register_os_abi): Removed.
1322         (struct i386_abi_handler): Removed.
1323         (i386_abi_handler_list): Removed.
1324         (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
1325         functions.
1326         (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
1327         i386_nw_init_abi): New functions.
1328         (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
1329         Use set_gdbarch_xxx() calls instead of relying on macros for a
1330         number of calls.
1331         (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
1332         (_initialize_i386_tdep): Add new 'struct-convcention' command.
1333         Register the various architecture variants defined in this file.
1334
1335 2002-06-14  Daniel Jacobowitz  <drow@mvista.com>
1336
1337         * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
1338         (struct main_type): Remove arg_types member.  Update comments for
1339         struct field.
1340         (TYPE_ARG_TYPES): Remove.
1341         (TYPE_FN_FIELD_ARGS): Update.
1342         (smash_to_method_type): Update prototype.
1343
1344         * c-typeprint.c (cp_type_print_method_args): Take method type
1345         instead of argument list.  Use new argument layout.  Simplify.
1346         (c_type_print_args): Use new argument layout.  Simplify.
1347         (c_type_print_base): Update call to cp_type_print_method_args.
1348         * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
1349         argument; use die->type instead.  Update call to
1350         smash_to_method_type.
1351         (read_structure_scope): Update call to dwarf2_add_member_fn.
1352         * gdbtypes.c (allocate_stub_method): Update comment.
1353         (smash_to_method_type): Take new NARGS and VARARGS arguments.
1354         Use new argument layout.
1355         (check_stub_method): Use new argument layout.  Don't count
1356         void as an argument.
1357         (print_arg_types): Update comments.  Use new argument layout.
1358         (recursive_dump_type): Don't print arg_types member.
1359         * hpread.c (hpread_read_struct_type): Use new argument layout.
1360         (fixup_class_method_type): Likewise.
1361         (hpread_type_lookup): Likewise.
1362         * stabsread.c (read_type): Update calls to read_args and
1363         smash_to_method_type.
1364         (read_args): Use new argument layout.  Simplify.
1365         * valops.c (typecmp): Use new argument layout.  Update parameters
1366         and comments.  Simplify.
1367         (hand_function_call): Use new argument layout.
1368         (search_struct_method): Update call to typecmp.
1369         (find_overload_match): Use new argument layout.
1370
1371 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
1372
1373         * NEWS: Mention multithreaded debug support for gdbserver.
1374
1375 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
1376
1377         * MAINTAINERS: Mention NEWS.
1378
1379 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
1380
1381         * gdbserver/regcache.c: Add comment.
1382
1383 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
1384
1385         * mips-tdep.c (PROC_SYMBOL): Add warning comment.
1386         (struct mips_objfile_private, compare_pdr_entries): New.
1387         (non_heuristic_proc_desc): Read the ".pdr" section if it
1388         is present.
1389
1390 2002-06-12  Andrew Cagney  <ac131313@redhat.com>
1391
1392         * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
1393         (arm_debug): New static variable.
1394         (_initialize_arm_tdep): Add ``set debug arm'' command.
1395
1396 2002-06-12  Andrew Cagney  <ac131313@redhat.com>
1397
1398         * Makefile.in (sim_arm_h): Define.
1399         (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
1400         * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
1401         (arm_register_sim_regno): New function, map an internal REGNUM
1402         onto a simulator register number.
1403         (arm_gdbarch_init): Set register_sim_regno.
1404
1405 2002-06-09  Aldy Hernandez  <aldyh@redhat.com>
1406
1407         * MAINTAINERS: Add self.
1408
1409 2002-06-11  Jim Blandy  <jimb@redhat.com>
1410
1411         * source.c (source_info): Mention whether the symtab has
1412         information about preprocessor macros.
1413
1414         Call the command `info macro', not `show macro'.
1415         * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
1416         Fix error message.
1417         (_initialize_macrocmd): Register `info_macro_command' in
1418         `infolist', not `showlist'.
1419
1420 2002-06-11  Daniel Jacobowitz  <drow@mvista.com>
1421
1422         * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
1423         (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
1424         (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
1425         (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
1426         (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions.  Define
1427         unconditionally.
1428         (set_mipsfpu_single_command, set_mipsfpu_double_command)
1429         (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
1430         (_initialize_mips_tdep): Remove dead code.
1431         * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
1432         (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
1433         * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
1434         (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
1435         * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
1436         MIPS_LAST_FP_ARG_REGNUM): Remove.
1437
1438 2002-06-11  Daniel Jacobowitz  <drow@mvista.com>
1439
1440         * gdbserver/thread-db.c: New file.
1441         * gdbserver/proc-service.c: New file.
1442         * gdbserver/acinclude.m4: New file.
1443         * gdbserver/Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
1444         proc-service.o, and thread-db.o.
1445         (linux-low.o): Add USE_THREAD_DB.
1446         * gdbserver/acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
1447         HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
1448         * gdbserver/aclocal.m4: Regenerated.
1449         * gdbserver/config.in: Regenerated.
1450         * gdbserver/configure: Regenerated.
1451         * gdbserver/configure.in: Check for proc_service.h, sys/procfs.h,
1452         thread_db.h, and linux/elf.h headrs.
1453         Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
1454         PRFPREGSET_T_BROKEN.  Introduce srv_thread_depfiles and USE_THREAD_DB.
1455         Check for -lthread_db and thread support.
1456         * gdbserver/configure.srv: Enable thread_db support for ARM, i386, MIPS,
1457         PowerPC, and SuperH.
1458         * gdbserver/i387-fp.c: Constify arguments.
1459         * gdbserver/i387-fp.h: Likewise.
1460         * gdbserver/inferiors.c: (struct thread_info): Renamed from
1461         `struct inferior_info'.  Remove PID member.  Use generic inferior
1462         list header.  All uses updated.
1463         (inferiors, signal_pid): Removed.
1464         (all_threads): New variable.
1465         (get_thread): Define.
1466         (add_inferior_to_list): New function.
1467         (for_each_inferior): New function.
1468         (change_inferior_id): New function.
1469         (add_inferior): Removed.
1470         (remove_inferior): New function.
1471         (add_thread): New function.
1472         (free_one_thread): New function.
1473         (remove_thread): New function.
1474         (clear_inferiors): Use for_each_inferior and free_one_thread.
1475         (find_inferior): New function.
1476         (find_inferior_id): New function.
1477         (inferior_target_data): Update argument type.
1478         (set_inferior_target_data): Likewise.
1479         (inferior_regcache_data): Likewise.
1480         (set_inferior_regcache_data): Likewise.
1481         * gdbserver/linux-low.c (linux_bp_reinsert): Remove.
1482         (all_processes, stopping_threads, using_thrads)
1483         (struct pending_signals, debug_threads, pid_of): New.
1484         (inferior_pid): Replace with macro.
1485         (struct inferior_linux_data): Remove.
1486         (get_stop_pc, add_process): New functions.
1487         (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
1488         Use add_process and add_thread.
1489         (linux_attach_lwp): New function, based on old linux_attach.  Use
1490         add_process and add_thread.  Set stop_expected for new threads.
1491         (linux_attach): New function.
1492         (linux_kill_one_process): New function.
1493         (linux_kill): Kill all LWPs.
1494         (linux_thread_alive): Use find_inferior_id.
1495         (check_removed_breakpoints, status_pending_p): New functions.
1496         (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
1497         Update.  Use WNOHANG.  Wait for cloned processes also.  Update process
1498         struct for the found process.
1499         (linux_wait_for_event): New function.
1500         (linux_wait): Use it.  Support LWPs.
1501         (send_sigstop, wait_for_sigstop, stop_all_processes)
1502         (linux_resume_one_process, linux_continue_one_process): New functions.
1503         (linux_resume): Support LWPs.
1504         (REGISTER_RAW_SIZE): Remove.
1505         (fetch_register): Use register_size instead.  Call supply_register.
1506         (usr_store_inferior_registers): Likewise.  Call collect_register.
1507         Fix recursive case.
1508         (regsets_fetch_inferior_registers): Improve error message.
1509         (regsets_store_inferior_registers): Add debugging.
1510         (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
1511         (unstopped_p, linux_signal_pid): New functions.
1512         (linux_target_ops): Add linux_signal_pid.
1513         (linux_init_signals): New function.
1514         (initialize_low): Call it.  Initialize using_threads.
1515         * gdbserver/regcache.c (inferior_regcache_data): Add valid
1516         flag.
1517         (get_regcache): Fetch registers lazily.  Add fetch argument
1518         and update all callers.
1519         (regcache_invalidate_one, regcache_invalidate): New
1520         functions.
1521         (new_register_cache): Renamed from create_register_cache.
1522         Return the new regcache.
1523         (free_register_cache): Change argument to a void *.
1524         (registers_to_string, registers_from_string): Call get_regcache
1525         with fetch flag set.
1526         (register_data): Make static.  Pass fetch flag to get_regcache.
1527         (supply_register): Call get_regcache with fetch flag clear.
1528         (collect_register): Call get_regcache with fetch flag set.
1529         (collect_register_as_string): New function.
1530         * gdbserver/regcache.h: Update.
1531         * gdbserver/remote-utils.c (putpkt): Flush after debug output and use
1532         stderr.
1533         Handle input interrupts while waiting for an ACK.
1534         (input_interrupt): Use signal_pid method.
1535         (getpkt): Flush after debug output and use stderr.
1536         (outreg): Use collect_register_as_string.
1537         (new_thread_notify, dead_thread_notify): New functions.
1538         (prepare_resume_reply): Check using_threads.  Set thread_from_wait
1539         and general_thread.
1540         (look_up_one_symbol): Flush after debug output.
1541         * gdbserver/server.c (step_thread, server_waiting): New variables.
1542         (start_inferior): Don't use signal_pid.  Update call to mywait.
1543         (attach_inferior): Update call to mywait.
1544         (handle_query): Handle qfThreadInfo and qsThreadInfo.
1545         (main): Don't fetch/store registers explicitly.  Use
1546         set_desired_inferior.  Support proposed ``Hs'' packet.  Update
1547         calls to mywait.
1548         * gdbserver/server.h: Update.
1549         (struct inferior_list, struct_inferior_list_entry): New.
1550         * gdbserver/target.c (set_desired_inferior): New.
1551         (write_inferior_memory): Constify.
1552         (mywait): New function.
1553         * gdbserver/target.h: Update.
1554         (struct target_ops): New signal_pid method.
1555         (mywait): Removed macro, added prototype.
1556
1557         * gdbserver/linux-low.h (regset_func): Removed.
1558         (regset_fill_func, regset_store_func): New.
1559         (enum regset_type): New.
1560         (struct regset_info): Add type field.  Use new operation types.
1561         (struct linux_target_ops): stop_pc renamed to get_pc.
1562         Add decr_pc_after_break and breakpoint_at.
1563         (get_process, get_thread_proess, get_process_thread)
1564         (strut process_info, all_processes, linux_attach_lwp)
1565         (thread_db_init): New.
1566
1567         * gdbserver/linux-arm-low.c (arm_get_pc, arm_set_pc,
1568         arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
1569         (the_low_target): Add new members.
1570         * gdbserver/linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
1571         (i386_store_fpxregset): Constify.
1572         (target_regsets): Add new kind identifier.
1573         (i386_get_pc): Renamed from i386_stop_pc.  Simplify.
1574         (i386_set_pc): Add debugging.
1575         (i386_breakpoint_at): New function.
1576         (the_low_target): Add new members.
1577         * gdbserver/linux-mips-low.c (mips_get_pc, mips_set_pc)
1578         (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
1579         (mips_breakpoint_at): New.
1580         (the_low_target): Add new members.
1581         * gdbserver/linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
1582         (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
1583         (the_low_target): Add new members.
1584         * gdbserver/linux-sh-low.c (sh_get_pc, sh_set_pc)
1585         (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
1586         (the_low_target): Add new members.
1587         * gdbserver/linux-x86-64-low.c (target_regsets): Add new kind
1588         identifier.
1589
1590 2002-06-11  Michal Ludvig  <mludvig@suse.cz>
1591
1592         * dwarf2cfi.c (unwind_tmp_obstack_init): New.
1593         (unwind_tmp_obstack_free, parse_frame_info)
1594         (update_context, cfi_read_fp, cfi_write_fp)
1595         (cfi_frame_chain, cfi_init_extra_frame_info)
1596         (cfi_virtual_frame_pointer): Use the above function.
1597         * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
1598
1599 2002-06-11  Corinna Vinschen  <vinschen@redhat.com>
1600
1601         * v850-tdep.c (v850_type_is_scalar): New function.
1602         (v850_use_struct_convention): Match current gcc implementation
1603         as close as possible.
1604         (v850_push_arguments): Fix stack_offset handling.  Don't write
1605         struct_addr into register.  This is done by v850_store_struct_return.
1606         (v850_extract_return_value): Care for structs.
1607         (v850_store_return_value): Ditto.
1608         (v850_store_struct_return): Actually write address.
1609
1610 2002-06-11  Michal Ludvig  <mludvig@suse.cz>
1611
1612         * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
1613         without debug information too.
1614
1615 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
1616
1617         * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
1618         Make multi-arch pure.
1619         * gdbarch.h, gdbarch.c: Re-generate.
1620         * arm-tdep.c (arm_print_float_info): Update.
1621         * arch-utils.h (default_print_float_info): Update.
1622         * arch-utils.c (default_print_float_info): Update.
1623         * infcmd.c (float_info): Update call.
1624
1625 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
1626
1627         * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
1628         the front of the initialize list.
1629
1630 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
1631
1632         * infrun.c (struct inferior_status): Replace fields
1633         selected_frame_address and selected_level with field
1634         selected_frame_id.
1635         (save_inferior_status): Update.  Use get_frame_id.
1636         (struct restore_selected_frame_args): Delete.
1637         (restore_selected_frame): Update.  Use frame_find_by_id.
1638         (restore_inferior_status): Update.
1639
1640         * breakpoint.h (struct breakpoint): Change type of
1641         watchpoint_frame to frame_id.
1642         * breakpoint.c (insert_breakpoints): Use frame_find_by_id.  Remove
1643         call to get_current_frame.
1644         (do_enable_breakpoint): Use frame_find_by_id.  Remove call to
1645         get_current_frame.
1646         (watchpoint_check): Use frame_find_by_id.
1647
1648         * frame.h (record_selected_frame): Delete declaration.
1649         * stack.c (record_selected_frame): Delete function.
1650         
1651         * frame.h (struct frame_id): Define.
1652         (get_frame_id): Declare.
1653         (frame_find_by_id): Declare.
1654         * frame.c (frame_find_by_id): New function.
1655         (get_frame_id): New function.
1656
1657 2002-06-10  Andrey Volkov <avolkov@transas.com>
1658
1659         * ser-e7kpc.c: Fix duplicated define and call of 
1660         _initialize_ser_e7000pc
1661             
1662 2002-06-09  Daniel Jacobowitz  <drow@mvista.com>
1663
1664         * signals/signals.c (target_signal_from_host): Fix #ifdef
1665         SIGRTMIN case.
1666         (do_target_signal_to_host): Likewise.
1667
1668 2002-06-09  Daniel Jacobowitz  <drow@mvista.com>
1669
1670         * mips-tdep.c (mips_find_abi_section): New function.
1671         (mips_gdbarch_init): Call it.
1672
1673 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
1674
1675         * solib-svr4.c (init_fetch_link_map_offsets): Simply return
1676         legacy_fetch_link_map_offsets.  Adjust comment to reflect reality
1677         after Andrew's 2002-06-08 gdbarch change.
1678
1679 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
1680
1681         * i386-linux-nat.c (suppy_gregset): Don't supply
1682         I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
1683         register cache.
1684         (fill_gregset): Don't fetch it under the same circumstances.
1685
1686 2002-06-09  Andrew Cagney  <cagney@redhat.com>
1687
1688         * Makefile.in (callback_h): Define.
1689         (remote_sim_h): Update path to remote-sim.h.
1690         (remote-rdp.o): Add $(callback_h).
1691         (remote-sim.o): Use $(callback_h).
1692         * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
1693         * remote-rdp.c: Include "gdb/callback.h".
1694
1695 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
1696
1697         * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
1698         * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
1699
1700 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
1701
1702         * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
1703         * rdi-share/serpardr.c: Ditto.
1704         * rdi-share/unixcomm.c: Ditto.
1705         * rdi-share/serdrv.c: Ditto.
1706         * rdi-share/hostchan.h: Ditto.
1707         * rdi-share/hostchan.c: Ditto.
1708         * rdi-share/host.h: Ditto.
1709         * rdi-share/devsw.c: Ditto.
1710
1711         * objfiles.h: Change type of obj_private to void pointer.
1712         * pa64solib.c: Update copyright.  Don't include "assert.h", use
1713         strcmp instead of STREQ, use LONGEST, do not use PTR
1714         * somsolib.c: Ditto.
1715
1716         * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
1717         bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
1718         bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
1719
1720 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
1721
1722         * frame.c (GET_SAVED_REGISTER): Delete macro definition.
1723         (default_get_saved_register): Delete function.
1724         * gdbarch.sh (GET_SAVED_REGISTER): Set default to
1725         generic_unwind_get_saved_register.
1726         * gdbarch.h, gdbarch.c: Re-generate.
1727         
1728 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
1729
1730         * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
1731         generic_func_frame_chain_valid.
1732         * gdbarch.h, gdbarch.c: Re-generate.
1733         * blockframe.c (generic_func_frame_chain_valid): Only check
1734         PC_IN_CALL_DUMMY when generic dummy frames.  Don't worry about
1735         passing FP to PC_IN_CALL_DUMMY.
1736         Fix PR gdb/360.
1737
1738 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
1739
1740         * gdbarch.sh (struct gdbarch_data): Add field init_p.
1741         (register_gdbarch_data): Initialize init_p.
1742         (gdbarch_data): Initialize data pointer using the init function.
1743         (init_gdbarch_data): Delete function.
1744         (gdbarch_update_p): Update.
1745         (initialize_non_multiarch): Update.
1746         (struct gdbarch): Add field initialized_p.
1747         * gdbarch.h, gdbarch.c: Re-generate.
1748
1749 2002-06-07  Michal Ludvig  <mludvig@suse.cz>
1750
1751         * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
1752         (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
1753         better do the things actually here.
1754         * x86-64-tdep.c (x86_64_register_name2nr): New.
1755         (x86_64_register_name): Renamed to x86_64_register_nr2name.
1756         (x86_64_gdbarch_init): Respect the above change.
1757         * x86-64-tdep.h (x86_64_register_name2nr)
1758         (x86_64_register_nr2name): Add prototypes.
1759         * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
1760
1761 2002-06-06  Michael Snyder  <msnyder@redhat.com>
1762
1763         * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
1764         Delete extra braces and re-indent.
1765         (d10v_store_return_value): Char return values
1766         must be shifted over by one byte in R0.
1767         (d10v_extract_return_value): Delete extra braces, re-indent.
1768
1769 2002-06-06  Elena Zannoni  <ezannoni@redhat.com>
1770
1771         * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
1772         (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
1773         (d10v_integer_to_address): Rewrite.
1774         (d10v_frame_init_saved_regs): When reading fp and sp registers use
1775         the d10v specific functions which take care of converting to the
1776         correct space.
1777
1778 2002-06-06  Elena Zannoni  <ezannoni@redhat.com>
1779
1780         * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
1781         altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
1782
1783 2002-06-02  Andrew Cagney  <ac131313@redhat.com>
1784
1785         * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
1786         includes.
1787         * config/tm-linux.h: Ditto.
1788         * config/alpha/tm-alphalinux.h: Ditto.
1789         * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
1790         * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
1791         * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
1792         * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
1793         * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
1794         * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
1795         * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
1796         * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
1797         * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
1798         * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
1799         * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
1800         * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
1801         * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
1802         * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
1803         * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
1804         * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
1805         * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
1806         * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
1807         * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
1808         * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
1809         * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
1810         * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
1811         * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
1812         * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
1813         * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
1814         * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
1815         * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
1816         * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
1817         * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
1818         * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
1819         * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
1820         * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
1821         * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
1822         * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
1823         * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
1824         * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
1825         * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
1826
1827 2002-05-04  Aidan Skinner <aidan@velvet.net>
1828
1829         * ada-exp.tab.c: New file
1830         * ada-exp.y: New file
1831         * ada-lang.c: New file
1832         * ada-lang.h: New file
1833         * ada-lex.c: New file
1834         * ada-lex.l: New file
1835         * ada-tasks.c: New file
1836         * ada-typeprint.c: New file
1837         * ada-valprint.c: New file
1838         
1839 2002-06-02  Jason Thorpe  <thorpej@wasabisystems.com>
1840
1841         * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
1842         use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
1843
1844 2002-06-02  Jason Thorpe  <thorpej@wasabisystems.com>
1845
1846         * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
1847         insetead of ppc-linux-tdep.o.
1848         * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
1849         * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
1850
1851 2002-06-02  Andrew Cagney  <ac131313@redhat.com>
1852
1853         2002-05-07 Christian Groessler <chris@groessler.org>
1854         * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
1855         bit register contents for little endian hosts.
1856
1857 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
1858
1859         * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
1860         any maintainer.
1861
1862 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
1863
1864         * gdbarch.h: Regenerate.
1865
1866 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
1867
1868         * MAINTAINERS: Add everyone to write-after-approval list.
1869
1870 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
1871
1872         * stack.c (frame_info): Use frame_register_unwind instead of
1873         saved_regs.  Mention when the SP is on the stack or in a register.
1874
1875         * frame.h (frame_register_unwind_ftype): Define.  Document.
1876         (struct frame_info): Add field register_unwind and
1877         register_unwind_cache.
1878         (frame_register_unwind): Declare.
1879         (generic_unwind_get_saved_register): Declare.
1880
1881         * frame.c (frame_register_unwind): New function.
1882         (generic_unwind_get_saved_register): New function.
1883
1884         * blockframe.c (generic_call_dummy_register_unwind): New function.
1885         (frame_saved_regs_register_unwind): New function.
1886         (set_unwind_by_pc): New function.
1887         (create_new_frame): New function.
1888         (get_prev_frame): New function.
1889
1890 2002-05-30  Andrew Cagney  <ac131313@redhat.com>
1891
1892         * a29k-share/: Delete directory.
1893         * remote-vx29k.c: Delete file.
1894
1895 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
1896
1897         * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
1898         ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
1899
1900 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
1901
1902         * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
1903         sparcnbsd-nat.c, and sparcnbsd-tdep.c.
1904         (sparc64nbsd-nat.o)
1905         (sparcnbsd-nat.o)
1906         (sparcnbsd-tdep.o): New dependency lists.
1907         * NEWS: Note new UltraSPARC NetBSD native configuration.
1908         * configure.host (sparc64-*-netbsd*): New host.
1909         * configure.tgt (sparc-*-netbsdelf*)
1910         (sparc-*-netbsd*): Set gdb_target to nbsd.
1911         (sparc64-*-netbsd*): New target.
1912         * sparc64nbsd-nat.c: New file.
1913         * sparcnbsd-nat.c: New file.
1914         * sparcnbsd-tdep.c: New file.
1915         * sparcnbsd-tdep.h: New file.
1916         * config/sparc/nbsd.mt: New file.
1917         * config/sparc/nbsd64.mh: New file.
1918         * config/sparc/nbsd64.mt: New file.
1919         * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
1920         sparc-nat.o, and solib.o.  Add sparcnbsd-nat.o.
1921         (HOST_IPC): Remove.
1922         * config/sparc/nbsdaout.mt: Remove.
1923         * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
1924         sparc-nat.o, and solib.o.  Add sparcnbsd-nat.o.
1925         (HOST_IPC): Remove.
1926         * config/sparc/nbsdelf.mt: Remove.
1927         * config/sparc/nm-nbsd.h: Update copyright years.  Remove all
1928         sparc-nat.c compatiblity defines.
1929         * config/sparc/tm-nbsd.h: Update copyright years.  Include solib.h.
1930         (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
1931         * config/sparc/tm-nbsd64.h: New file.
1932         * config/sparc/tm-nbsdaout.h: Remove.
1933         * config/sparc/xm-nbsd.h: Remove.
1934
1935 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
1936
1937         * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
1938         * sparc-tdep.c: Include osabi.h.
1939         (gdbarch_tdep): Add osabi member.
1940         (_initialize_sparc_tdep): Use gdbarch_register.
1941         (sparc_gdbarch_init): Use generic OS ABI framework.
1942         (sparc_dump_tdep): New function.
1943
1944 2002-05-30  Kevin Buettner  <kevinb@redhat.com>
1945
1946         * corefile.c (do_captured_read_memory_integer): Return non-zero
1947         result.
1948         (safe_read_memory_integer): Copy result of memory read when
1949         status is non-zero.  Also, add comments.
1950
1951 2002-05-20  Jason Thorpe  <thorpej@wasabisystems.com>
1952
1953         * Makefile.in (ppc_tdep_h): Define.
1954         (ppc-linux-nat.o)
1955         (ppc-linux-tdep.o)
1956         (rs6000-tdep.o): Use $(ppc_tdep_h).
1957         (ppc-sysv-tdep.o)
1958         (ppcnbsd-nat.o)
1959         (ppcnbsd-tdep.o): New dependency lists.
1960         * ppc-tdep.h: Use generic OS ABI framework.
1961         * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
1962         (ppc_linux_init_abi): New functions.
1963         (ppc_sysv_abi_broken_use_struct_convention)
1964         (ppc_sysv_abi_use_struct_convention)
1965         (ppc_sysv_abi_push_arguments): Move to...
1966         * ppc-sysv-tdep.c: ...here.
1967         * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
1968         * rs6000-tdep.c (process_note_abi_tag_sections)
1969         (get_elfosabi): Remove.
1970         (rs6000_gdbarch_init): Use generic OS ABI framework.
1971         (rs6000_dump_tdep): New function.
1972         (_initialize_rs6000_tdep): Use gdbarch_register.
1973         * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
1974         * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
1975         * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
1976         of ppc-linux-tdep.o.
1977         * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
1978         * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
1979         * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
1980         * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
1981         * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
1982         * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
1983
1984 2002-05-29  Jim Blandy  <jimb@redhat.com>
1985
1986         * macroscope.c (default_macro_scope): Put `void' in empty argument
1987         list.
1988
1989 2002-05-29  Andrew Cagney  <ac131313@redhat.com>
1990
1991         * Makefile.in (arch-utils.o): Add $(sim_regno_h).
1992         * arch-utils.c: Include "sim-regno.h".
1993         * gdbarch.sh: Don't include "sim-regno.h".
1994         * gdbarch.h, gdbarch.c: Regenerate.
1995         * sim-regno.h (legacy_register_sim_regno): Move declaration from
1996         here.
1997         * arch-utils.h (legacy_register_sim_regno): To here.
1998         * remote-sim.c (legacy_register_sim_regno): Move function from
1999         here.
2000         * arch-utils.c (legacy_register_sim_regno): To here.
2001
2002 2002-05-28  Andrew Cagney  <ac131313@redhat.com>
2003
2004         * sim-regno.h: New file.
2005         * Makefile.in (sim_regno_h): Define.
2006         (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
2007         * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
2008         (legacy_register_sim_regno): New function.
2009         (one2one_register_sim_regno): New function.
2010         (gdbsim_fetch_register): Rewrite.
2011         (gdbsim_store_register): Only store a register when
2012         REGISTER_SIM_REGNO is valid.
2013         * d10v-tdep.c: Include "sim-regno.h".
2014         (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
2015         (d10v_ts3_register_sim_regno): Ditto.
2016         * gdbarch.sh: Include "sim-regno.h".
2017         (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
2018         * gdbarch.h, gdbarch.c: Regenerate.
2019         * arch-utils.h (default_register_sim_regno): Delete declaration.
2020         * arch-utils.c (default_register_sim_regno): Delete function.
2021
2022 2002-05-28  Jason Thorpe  <thorpej@wasabisystems.com>
2023
2024         * ppcnbsd-nat.c: Rewrite.
2025         * ppcnbsd-tdep.c: New file.
2026         * ppcnbsd-tdep.h: New file.
2027         * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
2028         solib.o, and solib-svr4.o.
2029         * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
2030         nbsd-tdep.o, and corelow.o.
2031
2032 2002-05-28  Andrew Cagney  <ac131313@redhat.com>
2033
2034         * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
2035         `tr' and `sed'.  Mention that `broken' targets are not expected to
2036         build.
2037
2038 2002-05-27  Michal Ludvig  <mludvig@suse.cz>
2039
2040         * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
2041         Let PC point right after the prologue before looking up symbols.
2042         
2043 2002-05-27  Martin M. Hunt  <hunt@redhat.com>
2044
2045         * i386-tdep.c (i386_register_virtual_type): Return 
2046         builtin_type_vec128i for SSE registers.
2047
2048         * gdbtypes.h (builtin_type_vec128i): Declare.
2049
2050         * gdbtypes.c (build_builtin_type_vec128i): New function.
2051         (builtin_type_v2_double, builtin_type_v4_int64): New types.
2052         (builtin_type_vec128i): New type for SSE2 128-bit registers.
2053         (build_gdbtypes): Initialize new builtin vector types.
2054         (_initialize_gdbtypes): Register new vector types with gdbarch.
2055
2056 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
2057
2058         * MAINTAINERS: ns32k is not longer an obsolete candidate,
2059         since it has been multi-arch'd.
2060         * NEWS: Note that ns32k-*-* is now partial multi-arch.
2061         Move Alpha and VAX multi-arch news entries to same section
2062         as other multi-arch news.
2063
2064 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
2065
2066         * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
2067         target.s, arch-utils.h, ns32k-tdep.h.  Make many functions
2068         static.  Rename some register numbers to put them in ns32k-tdep
2069         private namespace.
2070         (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
2071         ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
2072         functions.
2073         (_initialize_ns32k_tdep): Use gdbarch_register.
2074         * ns32k-tdep.h: New file.
2075         * ns32knbsd-tdep.c: New file.
2076         * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
2077         * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
2078         (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
2079         REGISTER_BYTES, REGISTER_BYTE): Remove.
2080         * config/ns32k/tm-ns32k.h: New file.
2081         * config/ns32k/tm-umax.h: Remove.
2082
2083 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
2084
2085         * ns32k-tdep.c (ns32k_saved_pc_after_call,
2086         ns32k_store_struct_return, ns32k_extract_return_value,
2087         ns32k_store_return_value, ns32k_extract_struct_value_address): New
2088         functions.
2089         * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
2090         ns32k_saved_pc_after_call.
2091         (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
2092         (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
2093         (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
2094         (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
2095         ns32k_extract_struct_value_address.
2096
2097 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
2098
2099         * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
2100         ns32k_fix_call_dummy): New.
2101         * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
2102         ns32k_call_dummy_words.
2103         (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
2104         (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
2105         CALL_DUMMY_NARGS): Remove.
2106         (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
2107
2108 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
2109
2110         * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
2111         ns32k_frame_saved_pc, ns32k_frame_args_address,
2112         ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
2113         ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
2114         * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
2115         * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
2116         (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
2117         (BREAKPOINT): Remove..
2118         (FRAME_CHAIN): Define as ns32k_frame_chain.
2119         (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
2120         (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
2121         (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
2122         (FRAME_FIND_SAVED_REGS): Remove.
2123         (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
2124         (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
2125         (POP_FRAME): Define as ns32k_pop_frame.
2126
2127 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
2128
2129         * ns32k-tdep.c (ns32k_register_byte_32082,
2130         ns32k_register_byte_32382, ns32k_register_raw_size,
2131         ns32k_register_virtual_size, ns32k_register_virtual_type): New
2132         functions.
2133         * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
2134         ns32k_register_byte_32382.
2135         * config/ns32k/tm-umax.h: Update copyright years.
2136         (REGISTER_BYTE): Define as ns32k_register_byte_32082.
2137         (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
2138         (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
2139         (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
2140         (ns32k_get_enter_addr): Fix prototype.
2141
2142 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
2143
2144         * ns32k-tdep.c: Update copyright years.
2145         (ns32k_register_name_32082): New function.
2146         (ns32k_register_name_32382): Ditto.
2147         * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
2148         (REGISTER_NAME): Define as ns32k_register_name_32382.
2149         * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
2150         (REGISTER_NAME): Define as ns32k_register_name_32082.
2151
2152 2002-05-24  Jim Blandy  <jimb@redhat.com>
2153
2154         * dwarf2read.c (free_line_header): Use xfree, not free.
2155
2156 2002-05-24  Jason Thorpe  <thorpej@wasabisystems.com>
2157
2158         * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
2159         alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
2160
2161 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
2162
2163         * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
2164
2165 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
2166
2167         From Ross Alexander at NEC Europe:
2168         * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
2169
2170 2002-05-23  Michael Snyder  <msnyder@redhat.com>
2171
2172         * cli/cli-dump.c (restore_command): Use parse_and_eval_long
2173         for input, rather than parse_and_eval_address.  
2174
2175 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
2176
2177         * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
2178         * Makefile.in (sim_d10v_h): Update definition.
2179
2180 2002-05-24  Andrew Cagney  <cagney@redhat.com>
2181
2182         * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
2183         change `2002-05-22 Michael Snyder' below.
2184         (d10v_push_arguments): Ditto.
2185         (d10v_extract_return_value): Ditto.
2186
2187 2002-05-23  Jim Blandy  <jimb@redhat.com>
2188
2189         * macrotab.c (check_for_redefinition): Don't complain if the new
2190         definition is the same as the previous one.  Take more arguments
2191         to allow the comparison.
2192         (macro_define_object, macro_define_function): Pass more arguments
2193         to check_for_redefinition.
2194
2195 2002-05-22  Michael Snyder  <msnyder@redhat.com>
2196
2197         * d10v-tdep.c: Change a few macros to enums for ease of debugging.
2198         (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
2199         (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
2200         (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
2201         Don't bail if return_pc is PC_IN_CALL_DUMMY.
2202         Add a temp variable to save a call (and a memory read).
2203         (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
2204         if possible (so that PC_IN_CALL_DUMMY will work).
2205
2206 2002-05-22  Corinna Vinschen  <vinschen@redhat.com>
2207
2208         * MAINTAINERS: Remove status `OBSOLETE' from v850.
2209
2210 2002-05-22  Michal Ludvig  <mludvig@suse.cz>
2211
2212         * dwarf2cfi.c (frame_state_for): Added safety check for a valid
2213         fde->cie_ptr.
2214         (dwarf2_build_frame_info): Corrected handling of eh_frame.
2215         (dwarf2_build_frame_info): Add offset to fde->initial_location 
2216         so that frames of shared libraries are mapped correctly.
2217         (execute_stack_op): Change type of 'result' from ULONGEST to
2218         CORE_ADDR.
2219         
2220 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
2221
2222         * config/alpha/tm-nbsd.h: Include solib.h.
2223
2224 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
2225
2226         * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
2227         assumptions about the host's byte order.
2228
2229 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
2230
2231         * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
2232         to dependency list.
2233         * alphanbsd-tdep.c: Include solib-svr4.h.
2234         * shnbsd-tdep.c: Ditto.
2235
2236 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
2237
2238         * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
2239         nbsd-tdep.h to dependency list.
2240         * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
2241         i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
2242         ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
2243         nbsdaout.mh and nbsdelf.mh consistently.
2244         * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
2245         ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
2246         nbsdaout.mt and nbsdelf.mh consistently.
2247         * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h. 
2248         (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
2249         to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
2250         * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS.  Move
2251         a.out shared library stuff from here...
2252         * config/nm-nbsdaout.h: ...to here.
2253         * config/tm-nbsd.h: Remove.
2254         * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
2255         * config/arm/nbsd.mh: Remove.
2256         * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
2257         nbsd-tdep.o.
2258         * config/arm/nbsdaout.mh: New file. 
2259         * config/arm/nbsdelf.mh: New file.
2260         * config/arm/nm-nbsdaout.h: New file.
2261         * config/i386/nbsd.mh: Remove.
2262         * config/i386/nbsd.mt: Remove.
2263         * config/i386/nbsdaout.mh: New file.
2264         * config/i386/nbsdaout.mt: New file.
2265         * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
2266         * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
2267         * config/i386/nm-nbsd.h (REGISTER_U_ADDR, 
2268         i386_register_u_addr): Remove.
2269         * config/i386/nm-nbsdaout.h: New file.
2270         * config/i386/nm-nbsdelf.h: Remove.
2271         * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
2272         (USE_STRUCT_CONVENTION): Remove.
2273         * config/i386/tm-nbsdaout.h: New file.
2274         * config/i386/tm-nbsdelf.h: Remove.
2275         * config/m68k/nbsd.mh: Remove.
2276         * config/m68k/nbsd.mt: Remove.
2277         * config/m68k/nbsdaout.mh: New file.
2278         * config/m68k/nbsdaout.mt: New file. 
2279         * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
2280         * config/m68k/nm-nbsdaout.h: New file.
2281         * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
2282         (IN_SOLIB_CALL_TRAMPOLINE): Define.
2283         * config/ns32k/nbsd.mh: Remove.
2284         * config/ns32k/nbsd.mt: Remove. 
2285         * config/ns32k/nbsdaout.mh: New file.
2286         * config/ns32k/nbsdaout.mt: New file.
2287         * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h. 
2288         * config/ns32k/nm-nbsdaout.h: New file.
2289         * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.  
2290         (IN_SOLIB_CALL_TRAMPOLINE): Define.
2291         * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
2292         (SVR4_SHARED_LIBS): Remove.
2293         * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
2294         * config/sparc/nbsd.mh: Remove.
2295         * config/sparc/nbsd.mt: Remove.
2296         * config/sparc/nbsdaout.mh: New file.
2297         * config/sparc/nbsdaout.mt: New file.
2298         * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
2299         * config/sparc/nbsdelf.mt: New file.
2300         * config/sparc/nm-nbsdaout.h: New file.   
2301         * config/sparc/nm-nbsdelf.h: Remove.
2302         * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
2303         * config/sparc/tm-nbsdaout.h: New file.
2304
2305 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
2306
2307         * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
2308         mipsnbsd-tdep.c
2309         (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
2310
2311 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
2312
2313         * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
2314         shnbsd-nat.c.
2315         (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
2316
2317 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
2318
2319         * NEWS: Note new MIPS NetBSD native configuration. 
2320         * configure.host (mips*-*-netbsd*): New host. 
2321         * configure.tgt (mips*-*-netbsd*): New target. 
2322         * mipsnbsd-nat.c: New file.
2323         * mipsnbsd-tdep.c: New file.
2324         * mipsnbsd-tdep.h: New file.
2325         * config/mips/nbsd.mh: New file.
2326         * config/mips/nbsd.mt: New file.
2327         * config/mips/nm-nbsd.h: New file.
2328         * config/mips/tm-nbsd.h: New file.
2329
2330 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
2331
2332         * Makefile.in (SFILES): Add osabi.c.
2333         (COMMON_OBS): Add osabi.o.
2334         (osabi.o): New dependency list.
2335         * osabi.c: New file.
2336         * osabi.h: New file.
2337         * doc/gdbint.texinfo: Document new generic OS ABI framework.
2338
2339         * Makefile.in (alpha_tdep_h): Define and use instead of
2340         alpha-tdep.h.
2341         * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
2342         get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
2343         Remove.
2344         (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
2345         * alpha-tdep.h: Include osabi.h.
2346         (alpha_abi): Remove.
2347         (gdbarch_tdep): Use generic OS ABI framework.
2348         * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
2349         gdbarch_register_osabi.
2350         * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
2351         * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
2352         * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
2353
2354         * Makefile.in (sh_tdep_h): Add osabi.h.
2355         * sh-tdep.h (sh_osabi): Remove.
2356         (gdbarch_tdep): Use generic OS ABI framework.
2357         * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
2358         sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
2359         (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
2360         * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
2361
2362         * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
2363         * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
2364         gdbarch_register_osabi.
2365         * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
2366         arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
2367         (get_elfosabi): Rename to...
2368         (arm_elf_osabi_sniffer): ...this.  Adjust to use generic OS
2369         ABI framework support routines.
2370         (arm_gdbarch_init): Use generic OS ABI framework.
2371         (arm_dump_tdep): Likewise.
2372         (_initialize_arm_tdep): Likewise.
2373         * arm-tdep.h: Include osabi.h.
2374         (arm_abi): Remove.
2375         (gdbarch_tdep): Remove arm_abi and abi_name members.  Add
2376         osabi member.
2377         (arm_gdbarch_register_os_abi): Remove prototype.
2378         * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
2379         (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
2380
2381         * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
2382         * mips-tdep.c: Include osabi.h.
2383         (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
2384         OS ABI framework.
2385
2386 2002-05-20  Kazu Hirata  <kazu@cs.umass.edu>
2387
2388         * h8300-tdep.c: Fix formatting.
2389
2390 2002-05-20  Elena Zannoni  <ezannoni@redhat.com>
2391
2392         * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
2393         printing vector registers.
2394
2395 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
2396
2397         From Fernando Nasser:
2398         * remote.c (remote_async_open_1): Re-throw the exception when the
2399         connection fails.
2400         (remote_cisco_open): Ditto.
2401         (remote_open_1): Ditto.
2402
2403 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
2404
2405         * remote.c (remote_start_remote_dummy): Add uiout parameter.
2406         (remote_start_remote): Add uiout parameter.  Pass through to
2407         remote_start_remote_dummy.
2408         (remote_open_1): Use catch_exception instead of catch_errors.
2409         (remote_async_open_1): Ditto.
2410         (remote_cisco_open): Ditto.
2411
2412 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
2413
2414         * remote.c (remote_start_remote): Replace PTR with void pointer.
2415         (sigint_remote_twice_token, sigint_remote_token): Ditto.  Make
2416         static.
2417
2418 2002-05-18  Andrew Cagney  <ac131313@redhat.com>
2419
2420         * gdb_indent.sh: Allow the script to be run in the sim directory.
2421
2422 2002-05-18  Mark Kettenis  <kettenis@gnu.org>
2423
2424         * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
2425         * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
2426
2427         * corelow.c (core_open): Only call set_gdbarch_from_file if
2428         exec_bfd is NULL.
2429
2430 2002-05-17  Andrey Volkov <avolkov@transas.com>
2431
2432         * h8300-tdep.c: Add support of EXR register
2433         * config/h8300/tm-h8300.h: Ditto. 
2434         
2435 2002-05-17  Andrey Volkov <avolkov@transas.com>
2436
2437         * h8300-tdep.c: Add additional CCR flags (I,UI,H,U) 
2438         
2439 2002-05-17  Andrey Volkov <avolkov@transas.com>
2440
2441         * h8300-tdep.c: Change literal regnums to REGNO.
2442         
2443 2002-05-17  Jim Blandy  <jimb@redhat.com>
2444
2445         * NEWS: Note addition of macro support.
2446
2447         Expand preprocessor macros in C expressions.
2448         * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
2449         (scan_macro_expansion, scanning_macro_expansion,
2450         finished_macro_expansion): New function declarations.
2451         (expression_macro_lookup_func, expression_macro_lookup_baton): New
2452         variable declarations.
2453         * parser-defs.h (expression_context_pc): New declaration.
2454         * parse.c (expression_context_pc): New variable.
2455         (parse_exp_1): Set expression_context_pc, as well as
2456         expression_context_block.
2457         * c-exp.y (yylex): If we're not already reading the result of a
2458         macro expansion, try to macro-expand the next token.  When we're
2459         done scanning a macro expansion, switch back to the mainline text.
2460         Commas and `if's in a macro's expansion don't terminate the input.
2461         * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
2462         (macro_original_text, macro_expanded_text,
2463         expression_macro_lookup_func, expression_macro_lookup_baton): New
2464         variables.
2465         (scan_macro_expansion, scanning_macro_expansion,
2466         finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
2467         c_preprocess_and_parse): New functions.
2468         (c_language_defn, cplus_language_defn, asm_language_defn): Call
2469         c_preprocess_and_parse, instead of c_parse.
2470         * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
2471         (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
2472
2473 Fri May 17 14:26:19 2002  J"orn Rennecke <joern.rennecke@superh.com>
2474
2475         * sh-tdep.c (gdb_print_insn_sh64): Delete.
2476         (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
2477         (sh_gdbarch_init): Always use gdb_print_insn_sh.
2478
2479 2002-05-17  Corinna Vinschen  <vinschen@redhat.com>
2480
2481         * NEWS: Add section for multi-arched targets.  Add v850 to that section.
2482
2483 2002-05-17  Jason Thorpe  <thorpej@wasabisystems.com>
2484
2485         * Makefile.in (sh_tdep_h): Define and use.
2486         * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
2487         register enum): Move to...
2488         * * sh-tdep.h: ...here.
2489         * sh-tdep.c: Include sh-tdep.h.
2490         * sh3-rom.c: Likewise.
2491         * shnbsd-tdep.c: Likewise.
2492
2493 2002-05-16  Michael Snyder  <msnyder@redhat.com>
2494
2495         * arm-tdep.c: Spelling fix in comment.
2496
2497 2002-05-16  Jim Blandy  <jimb@redhat.com>
2498
2499         Add commands for manually expanding macros and showing their
2500         definitions.
2501         * macrocmd.c, macroscope.c, macroscope.h: New files.
2502         * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
2503         (macroscope_h): New variable.
2504         (HFILES_NO_SRCDIR): Add macroscope.h.
2505         (COMMON_OBS): Add macrocmd.o, macroscope.o.
2506         (macroscope.o, macrocmd.o): New rules.
2507
2508         Teach the Dwarf 2 reader to read macro information.
2509         * dwarf2read.c: #include "macrotab.h".
2510         (dwarf_macinfo_buffer): New variable.
2511         (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
2512         dwarf_macinfo_size.
2513         (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
2514         (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
2515         dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
2516         dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
2517         dwarf2_macro_spaces_in_definition): New complaints.
2518         (dwarf2_has_info): Initialize dwarf_macinfo_offset.
2519         (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
2520         (dwarf2_build_psymtabs_hard): Record the buffer and its size in
2521         the partial symbol table.
2522         (psymtab_to_symtab_1): Set the macinfo buffer and size globals
2523         from what's recorded in the partial symbol table.
2524         (read_file_scope): If the compilation unit has a
2525         `DW_AT_macro_info' attribute, read its macro information.
2526         * Makefile.in (dwarf2read.o): Depend on macrotab.h.
2527
2528 2002-05-16  Daniel Jacobowitz  <drow@mvista.com>
2529
2530         Fix PR gdb/546
2531         * ser-tcp.c: Don't include <netinet/udp.h>.
2532
2533 2002-05-16  Stephane Carrez  <stcarrez@nerim.fr>
2534
2535         * MAINTAINERS: Update my email address.
2536
2537 2002-05-16  Richard Earnshaw  <rearnsha@arm.com>
2538
2539         * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
2540         include file of the same name.
2541
2542 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
2543
2544         * configure.tgt: Mark v850 as multi-arched.
2545         * config/v850/tm-v850.h: Remove file.
2546         * config/v850/v850.mt: Eliminate TM_FILE.
2547
2548 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
2549
2550         * v850-tdep.c: Full multi-arch.
2551         * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
2552         Define GDB_MULTI_ARCH to 2.
2553
2554 2002-05-16  Pierre Muller  <muller@ics.u-strasbg.fr>
2555
2556         * p-exp.y (current_type): New static variable.
2557         Carries the type of the expression at the position that is parsed.
2558         (push_current_type, pop_current_type): Two new functions. Used
2559         to store/restore current_type in expression on specific tokens.
2560         (search_field): New static variable. Set to one after parsing a point
2561         as at that point only a FIELDNAME token should be searched.
2562         (FIELDNAME): New token. After a point only a token belonging to 
2563         current_type type definition is allowed.
2564         (all over token rules): reset and change current_type according
2565         to rules.
2566         (exp '[' rule): insert implicit array index field if
2567         exp is a pascal string type.
2568
2569 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
2570
2571         * v850-tdep.c: Fix comment for v850_scan_prologue.  Remove extra
2572         frame info.  Use frame_info's saved_regs instead of matching member
2573         in extra_frame_info throughout.
2574         (v850_frame_init_saved_regs): New function.
2575         (v850_init_extra_frame_info): Move most functionality into
2576         v850_frame_init_saved_regs().
2577         * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
2578         (v850_frame_find_saved_regs): Remove declaration.
2579         (FRAME_FIND_SAVED_REGS): Remove definition.
2580         (v850_frame_init_saved_regs): Add declaration.
2581         (FRAME_INIT_SAVED_REGS): Add definition.
2582
2583 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
2584
2585         * v850-tdep.c: Begin multi-arch'ing v850.
2586         (v850_target_architecture_hook): Remove function.
2587         (v850_gdbarch_init): New function.  Add code previously in
2588         v850_target_architecture_hook().
2589         (_initialize_v850_tdep): Don't  set target_architecture_hook.
2590         Call register_gdbarch_init() instead.
2591
2592 2002-05-16 Daniel Jacobowitz  <drow@mvista.com>
2593
2594         * gdbtypes.h (struct cplus_struct_type): Remove args field.
2595         * hpread.c (hpread_read_struct_type): Remove assignments to args.
2596         (fixup_class_method_type): Likewise.
2597
2598 2002-05-15  Daniel Jacobowitz  <drow@mvista.com>
2599
2600         From Martin Pool <mbp@samba.org>:
2601         * gdbserver/server.c (gdbserver_usage): New function.
2602         (main): Call it.
2603
2604 2002-05-15  Jim Blandy  <jimb@redhat.com>
2605
2606         Add macro structures to GDB's symbol tables.  Nobody puts anything
2607         in them yet.
2608         * symtab.h (struct symtab): New member: `macro_table'.
2609         * buildsym.h (pending_macros): New global variable.
2610         * buildsym.c: #include "macrotab.h".
2611         (buildsym_init): Initialize `pending_macros'.
2612         (end_symtab): If we found macro information while reading a CU's
2613         debugging info, do build a symtab structure for it.  Make the
2614         symtab point to the macro information, and clear the
2615         `pending_macros' pointer which held it while we were reading the
2616         debug info.
2617         (really_free_pendings): Free any pending macro table.
2618         * objfiles.h (struct objfile): New member: `macro_cache'.
2619         * objfiles.c (allocate_objfile): Set allocate and free functions
2620         for the macro cache's objstack.
2621         (free_objfile): Empty the macro cache's obstack.
2622         * symfile.c (reread_symbols): Empty the macro cache's obstack, and
2623         set new allocate and free functions for it.
2624         * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
2625         free functions for the macro cache's objstack.  (Why is this
2626         function building its own objfile?)
2627         * symmisc.c (print_objfile_statistics): Print statistics on the
2628         macro bcache.
2629         * Makefile.in: Note that buildsym.o depends on macrotab.h.
2630
2631 2002-05-15  Richard Earnshaw  <rearnsha@arm.com>
2632
2633         * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
2634         (REGISTER_U_ADDR): Delete definition.
2635         (arm_register_u_addr): Delete declaration.
2636
2637 2002-05-15  Richard Earnshaw  <rearnsha@arm.com>
2638
2639         * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
2640         (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
2641
2642 2002-05-14  Daniel Jacobowitz  <drow@mvista.com>
2643
2644         * gdbserver/mem-break.c (reinsert_breakpoint_by_bp): Correct typo
2645         stop_at -> stop_pc.
2646
2647 2002-05-14  Andrew Cagney  <ac131313@redhat.com>
2648
2649         * regcache.c (register_valid): Revise comments refering to "Not
2650         available" and "unavailable".
2651         * frame.c (frame_register_read): Ditto.
2652         * findvar.c (value_of_register): Ditto.
2653
2654 2002-05-15  Andrew Cagney  <cagney@redhat.com>
2655
2656         * Makefile.in (remote_sim_h): Replace remote-sim_h.
2657         (remote-sim.o): Update dependencies.
2658         (d10v-tdep.o): Specify dependencies.
2659         (sim_d10v_h): Define.
2660
2661 2002-05-14  Jim Blandy  <jimb@redhat.com>
2662
2663         * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
2664         * macrotab.c (macro_lookup_inclusion, find_definition,
2665         new_macro_table): Same.
2666         
2667         * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
2668         not `! strcmp ()'.  This is a dubious improvement.
2669         * macrotab.c (macro_lookup_inclusion, find_definition): Same.
2670
2671         * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
2672         although it's not necessary, to avoid a warning.
2673
2674 2002-05-14  Daniel Jacobowitz  <drow@mvista.com>
2675
2676         * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
2677         (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
2678         TYPE_INSTANCE_FLAGS.
2679         (struct main_type): New.
2680         (struct type): Move most members to struct main_type.  Change
2681         cv_type and as_type to new type_chain member.  Add instance_flags.
2682         (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
2683         (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
2684         (finish_cv_type): Remove prototype.
2685         * gdbtypes.c (alloc_type): Update comment.  Allocate TYPE_MAIN_TYPE.
2686         Set TYPE_CHAIN.
2687         (alloc_type_instance): New function.
2688         (smash_type): New function.
2689         (make_pointer_type, make_reference_type, make_function_type)
2690         (smash_to_member_type, smash_to_method_type): Call smash_type.
2691         (make_qualified_type): New function.
2692         (make_type_with_address_space): Call make_qualified_type.
2693         (make_cv_type): Likewise.
2694         (finish_cv_type): Remove unnecessary function.
2695         (replace_type): Update comment.  Copy TYPE_MAIN_TYPE.
2696         (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
2697         remove TYPE_CV_TYPE and TYPE_AS_TYPE.
2698         * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
2699         * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
2700         * hpread.c (hpread_read_struct_type): Likewise.
2701         * stabsread.c (read_struct_type): Likewise.
2702
2703 2002-05-14  Elena Zannoni  <ezannoni@redhat.com>
2704
2705         * configure.tgt: Add a catch all sh* target, for cases like
2706         sh[2,3,4]-elf and sh-hms.
2707
2708 2002-05-14  Keith Seitz  <keiths@redhat.com>
2709
2710         * event-loop.c (create_file_handler): Don't do anything but
2711         update data when we are given a fd which we are already
2712         monitoring.
2713
2714 2002-05-14  Michal Ludvig  <mludvig@suse.cz>
2715
2716         * dwarf2cfi.c (context_cpy): Copy registers correctly.
2717         (update_context): Use __func__ in warnings.
2718         
2719 2002-05-14  Daniel Jacobowitz  <drow@mvista.com>
2720
2721         * ser-tcp.c: Include <netinet/udp.h>.  Rename tcp_open
2722         and tcp_close to net_open and net_close.
2723         (net_open): Accept "udp:" and "tcp:" specifications.  Connect
2724         using UDP if requested.  Don't try to disable Nagle on UDP
2725         sockets.
2726         * remote.c (remote_serial_open): New function.  Warn about UDP.
2727         (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
2728
2729 2002-05-13  Elena Zannoni  <ezannoni@redhat.com>
2730
2731         * MAINTAINERS: List sh-elf as buildable with ,-Werror.
2732
2733 2002-05-13  Elena Zannoni  <ezannoni@redhat.com>
2734
2735         * configure.tgt: Remove sh-hms target.
2736         * MAINTAINERS: Don't list sh-hms as a separate target.
2737
2738 2002-05-13  Jim Blandy  <jimb@redhat.com>
2739
2740         Add first preprocessor macro-expansion files.
2741         * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
2742         * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
2743         (splay_tree_h, macroexp_h, macrotab_h): New variable.
2744         (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
2745         (COMMON_OBS): Add macrotab.o, macroexp.o.
2746         (macroexp.o, macrotab.o): New rules.
2747
2748 2002-05-13  Andrew Cagney  <ac131313@redhat.com>
2749
2750         * config/m88k/tm-m88k.h: Update copyright.
2751         (m88k_target_write_pc): Declare
2752         (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
2753         (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
2754         (SHIFT_INST_REGS): Update definition.
2755         * m88k-tdep.c (m88k_target_write_pc): New function.  Implement
2756         using old definition of TARGET_WRITE_PC.
2757         * regcache.c (generic_target_write_pc): Delete code handling
2758         NNPC_REGNUM.
2759         * gdbarch.sh (NNPC_REGNUM): Delete.
2760         * gdbarch.h, gdbarch.c: Regenerate.
2761
2762 2002-05-13  Richard Earnshaw  <rearnsha@arm.com>
2763
2764         * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
2765         builtin reg number.
2766
2767 2002-05-13  Daniel Jacobowitz  <drow@mvista.com>
2768
2769         * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
2770         (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
2771         (gen_address_of, gen_struct_ref, gen_repeat): Use type
2772         access macros.
2773         * c-typeprint.c (cp_type_print_method_args): Likewise.
2774         (c_type_print_args): Likewise.
2775         * d10v-tdep.c (d10v_push_arguments): Likewise.
2776         (d10v_extract_return_value): Likewise.
2777         * expprint.c (print_subexp): Likewise.
2778         * gdbtypes.c (lookup_primitive_typename): Likewise.
2779         (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
2780         * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
2781         (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
2782         (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
2783         (TYPE_VECTOR): Likewise.
2784         * hpread.c (hpread_read_struct_type)
2785         (fix_static_member_physnames, fixup_class_method_type)
2786         (hpread_type_lookup): Likewise.
2787         * mdebugread.c (parse_symbol, parse_type): Likewise.
2788         * p-lang.c (is_pascal_string_type): Likewise.
2789         * valops.c (hand_function_call): Likewise.
2790         * x86-64-tdep.c (classify_argument): Likewise.
2791
2792         * hpread.c (hpread_read_function_type)
2793         (hpread_read_doc_function_type): Call replace_type.
2794         * dstread.c (create_new_type): Delete.
2795         (decode_dst_structure, process_dst_function): Call alloc_type.
2796         Use type access macros.
2797
2798 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
2799
2800         * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
2801         the're not supported by the current architecture.
2802         (i387_fill_fxsave): Likewise.
2803
2804 2002-05-12  Fred Fish  <fnf@redhat.com>
2805
2806         * symfile.c (default_symfile_offsets): Arrange for uninitialized
2807         sect_index_xxx members to index the first slot in section_offsets
2808         if all of the section_offsets are zero.
2809
2810 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
2811
2812         * configure.tgt (sparc-*openbsd): Remove entry accidentially
2813         checked in with last change.
2814
2815 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
2816
2817         * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
2818         Remove targets.  These are canonicalized to i386-*-sysv4.2uw by
2819         config.sub.
2820
2821 2002-05-12  Daniel Jacobowitz  <drow@mvista.com>
2822
2823         * Makefile.in: Update dependencies.
2824
2825 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
2826
2827         * language.c (local_hex_string_custom): Simplify.  Do not depend
2828         on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
2829
2830         * memattr.c (mem_info_command): Replace calls to
2831         longest_local_hex_string and longest_local_hex_string_custom.
2832         * buildsym.c (make_blockvector): Ditto.
2833         * solib.c (info_sharedlibrary_command): Ditto.
2834         * tracepoint.c (tracepoints_info): Ditto.
2835         * symtab.c (print_msymbol_info): Ditto.
2836
2837         * language.c (local_hex_string): Delete.
2838         (local_hex_string_custom): Delete.
2839         (longest_local_hex_string): Rename to local_hex_string.
2840         (longest_local_hex_string_custom): Rename to
2841         local_hex_string_custom.
2842         * language.h (local_hex_string): Change parameter type to LONGEST.
2843         (local_hex_string_custom): Ditto.
2844         (longest_local_hex_string): Delete declaration.
2845         (longest_local_hex_string_custom): Ditto.
2846
2847         * solib.c: Update copyright.
2848         * memattr.c: Update copyright.
2849         
2850 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
2851
2852         * arch-utils.h (legacy_register_to_value): Declare.
2853         (legacy_value_to_register): Declare.
2854         (legacy_convert_register_p): Declare.
2855         * arch-utils.c (legacy_register_to_value): New function.
2856         (legacy_value_to_register): New function.
2857         (legacy_convert_register_p): New function.
2858
2859         * gdbarch.sh (REGISTER_TO_VALUE): Define.
2860         (VALUE_TO_REGISTER): Define.
2861         (CONVERT_REGISTER_P): Define.
2862         * gdbarch.h, gdbarch.c: Regenerate.
2863
2864         * valops.c (value_assign): Use CONVERT_REGISTER_P and
2865         VALUE_TO_REGISTER.
2866         * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
2867         CONVERT_REGISTER_P.
2868
2869 2005-05-11  Daniel Jacobowitz  <drow@mvista.com>
2870             Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
2871
2872         * Makefile.in: Update dependencies for valops.c.
2873         * valops.c: Include "gdb_assert.h".
2874         (typecmp): Skip THIS parameter to methods.
2875         (find_method_list): Remove static_memfuncp argument,
2876         update callers.  Check for stub methods.
2877         (find_value_oload_method_list): Don't set *static_memfuncp.
2878         (find_overload_match): Don't check for stub methods.  Assert
2879         that methods are not stubbed.  Handle static methods.
2880         (value_find_oload_method_list): Remove static_memfuncp argument.
2881         * gdbtypes.c (check_stub_method): Do not add THIS pointer
2882         to the argument list for static stub methods.
2883         * value.h (value_find_oload_method_list): Update prototype.
2884
2885 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
2886
2887         * arch-utils.h (generic_register_size): Declare.
2888         (generic_register_raw_size, generic_register_virtual_size): Delete
2889         declarations.
2890         * arch-utils.c (generic_register_raw_size): Delete.
2891         (generic_register_size): New function.
2892         (generic_register_virtual_size): Delete.
2893
2894         * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
2895         default generic_register_size.
2896         * gdbarch.h, gdbarch.c: Re-generate.
2897         
2898         * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
2899         register_virtual_size.
2900         * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
2901         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
2902
2903 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
2904
2905         * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
2906         * gdbarch.h, gdbarch.c: Regenerate.
2907         * gnu-v3-abi.c: Update copyright.
2908         (vtable_address_point_offset): Update.
2909         (gnuv3_rtti_type): Update.
2910         (gnuv3_baseclass_offset): Update.
2911         * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
2912         (init_fetch_link_map_offsets): Update.
2913         * remote.c (get_remote_state): Update.
2914         
2915 2002-05-11  Daniel Jacobowitz  <drow@mvista.com>
2916
2917         * TODO: Remove value_headof/value_from_vtable_info comment.
2918         * printcmd.c (print_command_1): Don't call value_from_vtable_info.
2919         * values.c (value_headof, value_from_vtable_info): Delete.
2920         * value.h (value_from_vtable_info): Delete prototype.
2921
2922 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
2923
2924         * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
2925         gdb_string.h with $(gdb_string_h) and gdb_regex.h with
2926         $(gdb_regex_h).
2927         (gdb_assert_h): Define.
2928         (gdb_wait_h): Define.
2929         (gdb_regex_h): Define.
2930
2931 2002-05-11 Daniel Jacobowitz  <drow@mvista.com>
2932
2933         From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
2934         * linespec.c (find_methods): Handle GCC 3.x template constructors.
2935
2936 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
2937
2938         * nbsd-tdep.c: Fix comment.
2939
2940 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
2941
2942         * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
2943         (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
2944         (nbsd-tdep.o): New dependency list.
2945         * alphanbsd-tdep.c: Don't include solib-svr4.h.  Include
2946         nbsd-tdep.h.
2947         (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
2948         (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
2949         * nbsd-tdep.c: New file.
2950         * nbsd-tdep.h: New file.
2951         * shnbsd-tdep.c: Don't include solib-svr4.h.  Include
2952         nbsd-tdep.h.
2953         (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
2954         (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
2955         * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
2956         * config/sh/nbsd.mt (TDEPFILES): Ditto.
2957
2958 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
2959
2960         * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
2961         * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
2962         * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
2963         * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
2964         * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
2965         * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
2966
2967 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
2968
2969         * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
2970         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
2971         * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
2972         * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
2973         * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
2974         * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
2975         * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
2976
2977 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
2978
2979         * i386nbsd-nat.c: Delete file.  Move fetch_core_registers and
2980         fetch_elfcore_registers to...
2981         * i386nbsd-tdep.c: ...here.
2982         (i386nbsd_use_struct_convention): Rename to...
2983         (i386nbsd_aout_use_struct_convention): ...this.
2984         (i386nbsd_supply_reg): New function.
2985         (i386nbsd_fill_reg): New function.
2986         (fetch_core_registers): Use i386nbsd_supply_reg.
2987         (fetch_elfcore_registers): Likewise.
2988         (_initialize_i386nbsd_tdep): New function.
2989         * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
2990         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
2991         * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
2992         * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
2993         (i386nbsd_aout_use_struct_convention): ...this.
2994
2995 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
2996
2997         * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
2998         (store_inferior_registers): Use shnbsd_fill_reg.
2999         * shnbsd-tdep.c (sh_nbsd_supply_registers, 
3000         sh_nbsd_supply_register): Collapse into...
3001         (shnbsd_supply_reg): ...this.
3002         (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
3003         (shnbsd_fill_reg): ...this.
3004         (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
3005         (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
3006         (fetch_core_registers): Use shnbsd_supply_reg.
3007         (fetch_elfcore_registers): Use shnbsd_supply_reg.
3008         (sh_nbsd_core_fns): Rename to...
3009         (shnbsd_core_fns): ...this.
3010         (sh_nbsd_elfcore_fns): Rename to...
3011         (shnbsd_elfcore_fns): ...this.
3012         (sh_nbsd_init_abi): Rename to...
3013         (shnbsd_init_abi): ...this.
3014         (_initialize_sh_nbsd_tdep): Rename to...
3015         (_initialize_shnbsd_tdep): ...this.
3016         * shnbsd-tdep.h (sh_nbsd_supply_registers,
3017         sh_nbsd_supply_register, sh_nbsd_fill_registers,
3018         sh_nbsd_fill_register): Remove prototypes.
3019         (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
3020
3021 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
3022
3023         * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
3024         (i387-nat.o): Delete dependency list.
3025         (go32-nat.o): Change i387-nat.h to i387-tdep.h.
3026         (x86-64-linux-nat.o): Likewise.
3027         * i387-nat.c: Delete file, moving contents to...
3028         * i387-tdep.c: ...here.
3029         * i387-nat.h: Rename...
3030         * i387-tdep.h: ...to this.
3031         * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
3032         * i386-linux-nat.c: Likewise.
3033         * i386bsd-nat.c: Likewise.
3034         * i386gnu-nat.c: Likewise.
3035         * i386nbsd-nat.c: Likewise.
3036         * i386v4-nat.c: Likewise.
3037         * x86-64-linux-nat.c: Likewise.
3038         * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
3039         * config/i386/go32.mh (NATDEPFILES): Likewise.
3040         * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
3041         * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
3042         * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
3043         * config/i386/linux.mh (NATDEPFILES): Likewise.
3044         * config/i386/nbsd.mh (NATDEPFILES): Likewise.
3045         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
3046         * config/i386/obsd.mh (NATDEPFILES): Likewise.
3047         * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
3048
3049 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
3050
3051         * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
3052         (alphanbsd-nat.o): Remove dependency list.
3053         (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
3054         * alphanbsd-nat.c: Delete.  Contents moved to...
3055         * alphanbsd-tdep.c: ...here.
3056         (_initialize_alphanbsd_tdep): Register core functions.
3057         * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
3058
3059 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
3060
3061         * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
3062         (alphabsd-nat.o): Depend on alphabsd-tdep.h.
3063         (alphanbsd-nat.o): Likewise.
3064         (alphabsd-tdep.o): New dependency list.
3065         * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
3066         (fill_gregset): Use alphabsd_fill_reg.
3067         (supply_fpregset): Use alphabsd_supply_fpreg.
3068         (fill_fpregset): Use alphabsd_fill_fpreg.
3069         (fetch_inferior_registers): Use struct reg and struct fpreg
3070         rather than gregset_t and fpregset_t.  Use alphabsd_supply_reg
3071         and alphabsd_supply_fpreg.
3072         (store_inferior_registers): Use struct reg and struct fpreg
3073         rather than gregset_t and fpregset_t.  Use alphabsd_fill_reg
3074         and alphabsd_fill_fpreg.
3075         * alphabsd-tdep.c: New file.
3076         * alphabsd-tdep.h: New file.
3077         * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
3078         (fetch_elfcore_registers): Use alphabsd_supply_reg and
3079         alphabsd_supply_fpreg.
3080         * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
3081         * config/alpha/nbsd.mt (TDEPFILES): Likewise.
3082
3083 2002-05-11  Eric Christopher  <echristo@redhat.com>
3084
3085         * mips-tdep.c (mips_double_register_type): Fix thinko.
3086         (mips_single_register_type): Ditto.
3087         * MAINTAINERS: Add self.
3088
3089 2002-05-11  Mark Kettenis  <kettenis@gnu.org>
3090
3091         * i387-nat.c (i387_supply_register, i387_fill_fsave,
3092         i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
3093         right thing on architectures with different endianness and/or
3094         integer sizes.
3095
3096 2002-05-10  Jason Thorpe  <thorpej@wasabisystems.com>
3097
3098         From Christian Limpach <chris@Pin.LU>
3099         * configure.in: Change sed expression which comments out
3100         NATDEPFILES to also comment out continuation lines.
3101         * configure: Regenerate.
3102
3103 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
3104
3105         * sh-tdep.c: Clean up code erroneously reintroduced by previous
3106         big patch.
3107
3108 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
3109
3110         * sh-tdep.c: Include correct file.
3111
3112 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
3113
3114         New support for sh64-elf (sh5) target.
3115
3116         * configure.tgt: For sh64-elf target, default to sh-elf.
3117
3118         * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
3119         (struct gdbarch_tdep): Add new fields for new registers and ABI
3120         info.
3121
3122         * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
3123         (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
3124         MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
3125         UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
3126         IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
3127         IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
3128         IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
3129         IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
3130         IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
3131         IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
3132         IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
3133         (sh_sh64_register_name, sh64_elf_make_msymbol_special,
3134         pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
3135         sh64_skip_prologue_hard_way, sh64_use_struct_convention,
3136         gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
3137         sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
3138         sh64_get_gdb_regnum, sh64_media_reg_base_num,
3139         sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
3140         sign_extend, sh64_nofp_frame_init_saved_regs,
3141         sh64_init_extra_frame_info, sh64_get_saved_register,
3142         sh64_extract_struct_value_address, sh64_pop_frame,
3143         sh64_push_arguments, sh64_extract_return_value,
3144         sh64_store_return_value, sh64_show_media_regs,
3145         sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
3146         sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
3147         sh_sh64_register_virtual_type,
3148         sh_sh64_register_convert_to_virtual,
3149         sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
3150         sh64_register_read, sh64_pseudo_register_write,
3151         sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
3152         do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
3153         sh64_do_pseudo_register, sh_compact_do_registers_info,
3154         sh64_do_registers_info, sh_gdbarch_init): New functions.
3155
3156 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
3157
3158         * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
3159
3160 2002-05-10 Daniel Jacobowitz  <drow@mvista.com>
3161
3162         * linespec.c (decode_line_1): Check for a double quote after
3163         a filename correctly.
3164
3165 2002-05-10  Jim Blandy  <jimb@redhat.com>
3166
3167         Properly track the size of the current objfile's .debug_line section.
3168         * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
3169         (DWARF_LINE_SIZE): New macro.
3170         (dwarf2_build_psymtabs_hard): Record the line section's size in
3171         the partial symbol table.
3172         (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
3173         symbol table.
3174
3175 2002-05-10  Petr Sorfa  <petrs@caldera.com>
3176
3177         * ia64-tdep.c: Handle breakpoints on L instruction type
3178         in MLX instruction bundle by moving the breakpoint to
3179         the third slot (X instruction type) as L holds only data.
3180
3181 2002-05-10  Kevin Buettner  <kevinb@redhat.com>
3182
3183         * dbxread.c (discarding_local_symbols_complaint): New complaint.
3184         (process_one_symbol): Complain about discarding local symbols
3185         due to a misplaced N_LBRAC entry.
3186
3187 2002-05-09  Elena Zannoni  <ezannoni@redhat.com>
3188
3189         From Daniel Berlin <dan@cgsoftware.com>
3190         * linespec.c (find_toplevel_char): '<' and '>' also increase and
3191         decrease the depth we are at, in the case of templates.
3192
3193 2002-05-09  Daniel Jacobowitz  <drow@mvista.com>
3194
3195         * mips-tdep.c (mips_float_register_type): New function.
3196         (mips_double_register_type): New function.
3197         (mips_print_register): Use them.
3198         (do_fp_register_row): Likewise.
3199
3200 2002-05-09  Daniel Jacobowitz  <drow@mvista.com>
3201
3202         * signals/signals.c (signals): Remove conditional compilation around
3203         Mach-specific signals.  Move them to after TARGET_SIGNAL_DEFAULT.
3204         (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
3205
3206 2002-05-09  Michael Snyder  <msnyder@redhat.com>
3207
3208         * remote-rdp.c (remote_rdp_can_run): Remove.
3209
3210 2002-05-09  Tom Tromey  <tromey@redhat.com>
3211
3212         * jv-valprint.c (java_val_print): Handle `char' as a special case
3213         of TYPE_CODE_INT.
3214
3215 2002-05-09  Michael Snyder  <msnyder@redhat.com>
3216
3217         * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
3218         strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
3219         strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
3220         str r(0123),[sp,#nn].
3221         (arm_skip_prologue): Ditto.  Also make disassembly
3222         order-independent by placing it in a loop.
3223
3224 2002-05-06  Michael Snyder  <msnyder@redhat.com>
3225
3226         * stabsread.c (read_type): Add recognition for new attribute:
3227         "@V;" means that an array type is actually a vector.
3228         This is analogous to the vector flag that's been added to dwarf2.
3229
3230 2002-05-09  Mark Kettenis  <kettenis@gnu.org>
3231
3232         * i386-tdep.h (i386_abi): New enum.
3233         (struct gdbarch_tdep): Replace os_ident member with abi.
3234         (i386_gdbarch_register_os_abi): New prototype.
3235         * i386-tdep.c (i386_abi_names): New array.
3236         (process_note_abi_tag_sections): Removed.
3237         (process_note_sections): New function.
3238         (i386_elf_abi_from_note, i386_elf_abi): New functions.
3239         (struct i386_abi_handler): New struct.
3240         (i386_abi_handler_list): New variable.
3241         (i386_gdbarch_register_os_abi): New function.
3242         (i386_gdbarch_init): Adapt for the changes given above.
3243
3244 2002-05-08  Daniel Jacobowitz  <drow@mvista.com>
3245
3246         * gregset.h: Say "GNU/Linux".
3247
3248 2002-05-08  Elena Zannoni  <ezannoni@redhat.com>
3249
3250         * gdbtypes.c : Add new builtin type for 64 bit vectors.
3251         (build_gdbtypes): Build builtin_type_v2_float.
3252         (_initialize_gdbtypes): Register new builtin type.
3253
3254 2002-05-08  Andrew Cagney  <ac131313@redhat.com>
3255
3256         * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
3257         (clear_gdbarch_swap): New function.
3258         (initialize_non_multiarch): Call.
3259         (gdbarch_update_p): Before calling init(), swap out and clear the
3260         existing architecture.
3261         * gdbarch.c: Regenerate.
3262
3263 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
3264
3265         * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
3266         alphanbsd-tdep.c.
3267
3268 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
3269
3270         * sh-nbsd-nat.c: Rename to...
3271         * shnbsd-nat.c: ...this.
3272         * sh-nbsd-tdep.c: Rename to...
3273         * shnbsd-tdep.c: ...this.
3274         * sh-nbsd-tdep.h: Rename to...
3275         * shnbsd-tdep.h: ...this.
3276         * config/sh/nbsd.mh: Use shnbsd-nat.o.
3277         * config/sh/nbsd.mt: Use shnbsd-tdep.o.
3278
3279 2002-05-08  Richard Earnshaw  <rearnsha@arm.com>
3280
3281         * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
3282         concatenation for command help messages.
3283
3284 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
3285
3286         * NEWS: Note new sh*-*-netbsdelf* configuration.
3287         * configure.host: Set gdb_host_cpu to sh for all sh*.
3288         (sh*-*-netbsdelf*): New host.
3289         * configure.tgt: Set gdb_target_cpu to sh for all sh*.
3290         (sh*-*-netbsdelf*): New target.
3291         * sh-nbsd-nat.c: New file.
3292         * sh-nbsd-tdep.c: New file.
3293         * sh-nbsd-tdep.h: New file.
3294         * config/sh/nbsd.mh: New file.
3295         * config/sh/nbsd.mt: New file.
3296         * config/sh/nm-nbsd.h: New file.
3297         * config/sh/tm-nbsd.h: New file.
3298
3299 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
3300
3301         * sh-tdep.c (sh_osabi_names): Declare.
3302         (process_note_abi_tag_sections): New function.
3303         (get_elfosabi): Ditto.
3304         (sh_gdbarch_register_os_abi): Ditto.
3305         (sh_dump_tdep): Ditto.
3306         _initialize_sh_tdep): Use gdbarch_register to register
3307         sh_gdbarch_init and sh_dump_tdep.
3308         * config/sh/tm-sh.h (sh_osabi): Declare.
3309         (gdbarch_tdep): Add sh_osabi and osabi_name members.
3310
3311 2002-05-07  Andrew Cagney  <ac131313@redhat.com>
3312
3313         * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
3314         (thumb_scan_prologue): Ditto.
3315         (arm_find_callers_reg): Ditto.
3316         (arm_frame_chain): Ditto.
3317         (arm_init_extra_frame_info): Ditto.
3318         (arm_frame_saved_pc): Ditto.
3319         (arm_pop_frame): Ditto.
3320         (arm_push_return_address): New function.
3321         (arm_gdbarch_init): Initialize use_generic_dummy_frames,
3322         call_dummy_location, call_dummy_breakpoint_offset_p,
3323         call_dummy_breakpoint_offset, call_dummy_p,
3324         call_dummy_stack_adjust_p, call_dummy_words,
3325         sizeof_call_dummy_words, call_dummy_start_offset,
3326         call_dummy_length, fix_call_dummy, pc_in_call_dummy,
3327         call_dummy_address, push_return_address and push_dummy_frame for
3328         generic dummy frames.
3329
3330 2002-05-07  Jason Thorpe  <thorpej@wasabisystems.com>
3331
3332         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
3333         size computation for alloca.
3334         (sh_fp_frame_init_saved_regs): Likewise.
3335
3336 2002-05-07  Richard Earnshaw  <rearnsha@arm.com>
3337
3338         * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
3339         (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
3340         * arm-tdep.c (arm_store_return_value): Use them.
3341         Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
3342         * remote-rdp.c (remote_rdp_fetch_register): Use
3343         ARM_MAX_REGISTER_RAW_SIZE.
3344         (remote_rdp_store_register): Likewise.
3345
3346 2002-05-07  Michal Ludvig  <mludvig@suse.cz>
3347
3348         * dwarf2cfi.c: Code cleanup, removed unused variables,
3349         added default labels to switch {} statements.
3350         * x86-64-tdep.c: Ditto.
3351         * x86-64-linux-nat.c: Ditto.
3352
3353 2002-05-07  Jason Thorpe  <thorpej@wasabisystems.com>
3354
3355         * solib.h: Protect against multiple inclusion.
3356
3357 2002-05-06  Jim Blandy  <jimb@redhat.com>
3358
3359         Add first preprocessor macro-expansion files.
3360         * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
3361         * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
3362         (splay_tree_h, macroexp_h, macrotab_h): New variable.
3363         (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
3364         (COMMON_OBS): Add macrotab.o, macroexp.o.
3365         (macroexp.o, macrotab.o): New rules.
3366
3367         Separate the job of reading the line number info statement program
3368         header (...expialidocious) out into its own function.
3369         * dwarf2read.c (struct line_head, struct filenames, struct
3370         directories): Replace with...
3371         (struct line_header): New structure, containing the full
3372         contents of the statement program header, including the
3373         include directory and file name tables.
3374         (read_file_scope): If we have line number info, instead of just
3375         calling dwarf_decode_lines to do all the work, call
3376         dwarf_decode_line_header first to get a `struct line_header'
3377         containing the data in the statement program header, and then
3378         pass that to dwarf_decode_lines, which will pick up where that
3379         left off.  Be sure to clean up the `struct line_header' object.
3380         (dwarf_decode_line_header, free_line_header, add_include_dir,
3381         add_file_name): New functions.
3382         (dwarf_decode_lines): Move all the code to read the statement
3383         program header into dwarf_decode_line_header.  Take the line
3384         header it built as the first argument, instead of the offset to
3385         the compilation unit's line number info.  Use the new `struct
3386         line_header' type instead of the old structures.  No need to do
3387         cleanups here now, since we don't allocate anything.
3388         (dwarf2_statement_list_fits_in_line_number_section,
3389         dwarf2_line_header_too_long): New complaints.
3390
3391 2002-05-06  Elena Zannoni  <ezannoni@redhat.com>
3392
3393         * gdbtypes.c (init_vector_type): New function.
3394         (build_builtin_type_vec128): Simplify the representation of SIMD
3395         registers.
3396         (build_gdbtypes): Initialize new builtin vector types.
3397         (_initialize_gdbtypes): Register new vector types with gdbarch.
3398         (builtin_type_v4_float, builtin_type_v4_int32,
3399         builtin_type_v8_int16, builtin_type_v16_int8,
3400         builtin_type_v2_int32, builtin_type_v4_int16,
3401         builtin_type_v8_int8): New (renamed) SIMD types.
3402
3403 2002-05-06  Mark Kettenis  <kettenis@gnu.org>
3404
3405         * i387-nat.c (i387_fill_fsave): Use regcache_collect.
3406         (i387_fill_fxsave): Likewise.
3407
3408 2002-05-05  Alexandre Oliva  <aoliva@redhat.com>
3409
3410         * alpha-tdep.c (alpha_extract_return_value): Don't use
3411         non-constant array size in prototype.
3412
3413 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
3414
3415         From Brian Taylor <briant at model dot com>:
3416         * ui-out.c (ui_out_field_core_addr): Use the function
3417         longest_local_hex_string_custom'to format addresses > 32 bits
3418         wide.
3419
3420         * ui-out.c (ui_out_field_core_addr): Update comment.
3421
3422 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
3423
3424         * stack.c (select_and_print_frame): Make static.  Delete the
3425         parameter `level'.
3426         (func_command): Update call.
3427         (select_frame_command): Delete code computing the frame level.
3428         * frame.h (select_and_print_frame): Delete declaration.
3429
3430 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
3431
3432         * sparc-tdep.c (sparc_get_saved_register): Comment why
3433         get_prev_frame call is safe.
3434
3435 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
3436
3437         * frame.h (select_frame): Delete level parameter.
3438         * stack.c (select_frame): Update.  Use frame_relative_level to
3439         obtain the frame's level.
3440         (select_and_print_frame): Update call.
3441         (select_frame_command): Ditto.
3442         (up_silently_base): Ditto.
3443         (down_silently_base): Ditto.
3444         * ocd.c (ocd_start_remote): Ditto.
3445         * remote-rdp.c (remote_rdp_open): Ditto.
3446         * remote-mips.c (mips_initialize): Ditto.
3447         (common_open): Ditto.
3448         * remote-e7000.c (e7000_start_remote): Ditto.
3449         * m3-nat.c (select_thread): Ditto.
3450         * hppa-tdep.c (child_get_current_exception_event): Ditto.
3451         (child_get_current_exception_event): Ditto.
3452         * varobj.c (varobj_create): Ditto.
3453         (varobj_update): Ditto.
3454         (c_value_of_root): Ditto.
3455         * tracepoint.c (finish_tfind_command): Ditto.
3456         * corelow.c (core_open): Ditto.
3457         * arch-utils.c (generic_prepare_to_proceed): Ditto.
3458         * thread.c (info_threads_command): Ditto.
3459         (switch_to_thread): Ditto.
3460         * infrun.c (normal_stop): Ditto.
3461         (restore_selected_frame): Ditto.
3462         (restore_inferior_status): Ditto.
3463         * breakpoint.c (insert_breakpoints): Ditto.
3464         (watchpoint_check): Ditto.
3465         (bpstat_stop_status): Ditto.
3466         (do_enable_breakpoint): Ditto.
3467         * blockframe.c (flush_cached_frames): Ditto.
3468         (reinit_frame_cache): Ditto.
3469
3470 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
3471
3472         * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
3473         maintainer.
3474
3475 2002-05-04  Jim Blandy  <jimb@redhat.com>
3476
3477         * gdbtypes.c (replace_type): Doc fix.
3478
3479 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
3480
3481         * valprint.c (strcat_longest): Delete commented out function.
3482         Update copyright.
3483
3484 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
3485
3486         * MAINTAINERS: Mark a29k as deleted.
3487         * NEWS: Mention that a29k was removed.  Add OBSOLETE section.
3488         Move new configurations to the top.
3489         * configure.tgt: Remove a29k.
3490         * config/a29k/tm-vx29k.h: Delete.
3491         * config/a29k/vx29k.mt: Delete.
3492         * config/a29k/tm-a29k.h: Delete.
3493         * config/a29k/a29k-udi.mt: Delete.
3494         * config/a29k/a29k.mt: Delete.
3495         * a29k-tdep.c: Delete.
3496         * remote-udi.c: Delete.
3497         * remote-mm.c: Delete.
3498         * remote-eb.c: Delete.
3499         * remote-adapt.c: Delete.
3500         * Makefile.in: Remove obsolete code.
3501         * gdbserver/Makefile.in: Ditto.
3502         * config/s390/s390x.mt: Ditto.
3503         * config/s390/s390.mt: Ditto.
3504         * config/sparc/sparclynx.mh: Ditto.
3505         * config/sparc/linux.mh: Ditto.
3506         * config/pa/hppaosf.mh: Ditto.
3507         * config/pa/hppabsd.mh: Ditto.
3508         * config/ns32k/nbsd.mt: Ditto.
3509         * config/mips/vr5000.mt: Ditto.
3510         * config/m68k/sun3os4.mh: Ditto.
3511         * config/m68k/nbsd.mt: Ditto.
3512         * config/m68k/m68klynx.mh: Ditto.
3513         * config/m32r/m32r.mt: Ditto.
3514         * config/i386/x86-64linux.mt: Ditto.
3515         * config/i386/nbsdelf.mt: Ditto.
3516         * config/i386/nbsd.mt: Ditto.
3517         * config/i386/i386lynx.mh: Ditto.
3518
3519 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
3520
3521         * target.c (debug_print_register): New function.  Handle oversize
3522         registers.
3523         (debug_to_fetch_registers): Call.
3524         (debug_to_store_registers): Call.
3525
3526 2002-05-03  Jim Blandy  <jimb@redhat.com>
3527
3528         * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
3529         (read_type): Doc fix.
3530         * gdbtypes.c (replace_type): Doc fix.
3531
3532         * stabsread.c (multiply_defined_struct): New complaint.
3533         (read_struct_type): If the type we were passed isn't empty, or
3534         incomplete, don't read the new struct type into it; complain,
3535         and return the original type unchanged.  Take a new `type_code'
3536         argument, which is the type code for the new type.
3537         (read_type): Rather than storing the type's type code here, pass
3538         it as an argument to read_struct_type, and let that take care of
3539         storing it.  That way, we don't overwrite the original type code,
3540         so read_struct_type can use it to decide whether we're overwriting
3541         something we shouldn't.
3542         (complain_about_struct_wipeout): New function.
3543
3544 2002-05-03  Andrew Cagney  <ac131313@redhat.com>
3545
3546         * gdbarch.sh: Assert that gdbarch is non-NULL.
3547         * gdbarch.c: Regenerate.
3548
3549 2002-05-03  Jason Merrill  <jason@redhat.com>
3550
3551         * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
3552         and return NULL.
3553
3554 2002-05-03  Michal Ludvig  <mludvig@suse.cz>
3555
3556         * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
3557         (x86_64_dwarf2gdb_regno_map_length),
3558         (x86_64_dwarf2_reg_to_regnum): Added.
3559         (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
3560         (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
3561         (_initialize_x86_64_tdep): Synced with the change above.
3562         (x86_64_skip_prologue): Reformulated message.
3563
3564 2002-05-03  Pierre Muller  <muller@ics.u-strasbg.fr>
3565
3566         * f-exp.y: Also use new prev_lexptr variable
3567         to improve error reporting. Based on Michael Snyder
3568         2002-04-24 dated patch to c-exp.y.
3569         * jv-exp.y: Likewise.
3570         * m2-exp.y: Likewise.
3571
3572 2002-05-02  Elena Zannoni  <ezannoni@redhat.com>
3573
3574         * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
3575         we are dealing with vectors.
3576
3577 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
3578
3579         * config/m68k/tm-nbsd.h: Obvious fix,
3580         correct machine name.
3581
3582 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
3583
3584         * p-typeprint.c (pascal_type_print_base): Add support
3585         for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
3586
3587 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
3588
3589         * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
3590         for fondamental pascal 'char' type.
3591
3592 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
3593
3594         * p-lang.h (is_pascal_string_type): Declaration changed,
3595         new sixth argument of type char ** added.
3596         * p-lang.c (is_pascal_string_type): Implementation
3597         changed. Args length_pos, length_size, string_pos, char_size
3598         can now be NULL. New argument arrayname set to the field
3599         name of the char array. Return value set to char array
3600         field index plus one.
3601         * p-valprint.c (pascal_val_print): Adapt to new declaration of
3602         is_pascal_string_type function.
3603
3604 2002-05-02  Andrew Cagney  <cagney@redhat.com>
3605
3606         * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
3607         <cagney@redhat.com> change.
3608         * gdbarch.c: Regenerate.
3609
3610 2002-05-02  Andrew Cagney  <cagney@redhat.com>
3611
3612         * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
3613         before probing for a new one.  Detect errorenous gdbarch_init
3614         functions.
3615         * gdbarch.c: Regenerate.
3616
3617 2002-05-01  Andrew Cagney  <cagney@redhat.com>
3618
3619         * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
3620         * config/mcore/tm-mcore.h: Ditto.  Update copyright.
3621         * config/v850/tm-v850.h: Ditto.  Update copyright.
3622
3623 2002-04-30  Andrew Cagney  <ac131313@redhat.com>
3624
3625         * cris-tdep.c (cris_gdbarch_init): Use arches instead of
3626         current_gdbarch.
3627
3628 2002-04-30  Michael Snyder  <msnyder@redhat.com>
3629
3630         * arm-tdep.c: Whitespace clean-ups.
3631         (arm_skip_prologue): Fix thinko; two lines
3632         should have been removed as part of 4/24 change.
3633
3634 2002-04-30  Kevin Buettner  <kevinb@redhat.com>
3635
3636         * rs6000-tdep.c: Added comment describing how fpscr register
3637         numbers were chosen.
3638
3639 2002-04-30  Michael Snyder  <msnyder@redhat.com>
3640
3641         * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
3642
3643 2002-04-29  Elena Zannoni  <ezannoni@redhat.com>
3644
3645         * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
3646         (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
3647         (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
3648
3649 2002-04-29  Kevin Buettner  <kevinb@redhat.com>
3650
3651         From Louis Hamilton <hamilton@redhat.com>:
3652         * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
3653         * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
3654         * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
3655         not bfd-private xcoff data, to determine wordsize.
3656         * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
3657
3658 2002-04-29  Andrew Cagney  <ac131313@redhat.com>
3659
3660         GDB 5.2 released from 5.2 branch.
3661
3662 2002-04-29  Michal Ludvig  <mludvig@suse.cz>
3663
3664         * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
3665         * x86-64-tdep.c (i386_gdbarch_init): Ditto.
3666         (x86_64_register_info_table): Added comments with register numbers.
3667
3668 2002-04-29  Elena Zannoni  <ezannoni@redhat.com>
3669
3670         * rs6000-tdep.c (rs6000_extract_return_value,
3671         rs6000_store_return_value): Handle returning vectors.
3672         (rs6000_gdbarch_init): Use
3673         ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
3674         * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
3675         New function.
3676         (ppc_sysv_abi_use_struct_convention): Deal with functions returning
3677         vectors.
3678         (ppc_sysv_abi_push_arguments): Handle vector parameters.
3679         * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
3680
3681 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
3682
3683         * hpread.c (hpread_psymtab_to_symtab_1,
3684         hpread_psymtab_to_symtab): Replace fprintf (stderr,...)
3685         with fprintf_unfiltered (gdb_stderr,...).
3686
3687 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
3688
3689         * remote-array.c (printf_monitor, write_monitor,
3690         array_insert_breakpoint, array_remove_breakpoint ):
3691         Replace fprintf (stderr,...
3692         with fprintf_unfiltered (gdb_stderr,....
3693         * remote-es.c: Likewise.
3694         * remote-os9k.c: Likewise.
3695         * remote-st.c: Likewise.
3696
3697 2002-04-28  Andreas Schwab  <schwab@suse.de>
3698
3699         * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
3700         linux-proc.o and gcore.o.
3701
3702 2002-04-26  Michal Ludvig  <mludvig@suse.cz>
3703
3704         * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
3705         code without frame pointers.
3706
3707 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
3708
3709         * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
3710         ON_STACK is needed.
3711
3712 2002-04-26  Ben Elliston  <bje@redhat.com>
3713
3714         * target.c (do_xfer_memory): Correct reference to the new option
3715         "trust-readonly-sections".
3716
3717 2002-04-26  Elena Zannoni  <ezannoni@redhat.com>
3718
3719         * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
3720         * gdbtypes.c (recursive_dump_type): Output the vector flag.
3721         * dwarf2read.c (dwarf_attr_name): Handle new attribute for
3722         vectors.
3723         (read_array_type): Record the fact that this array type is really a
3724         vector (i.e. are passed in by value).
3725
3726 2002-04-26  Jason Thorpe  <thorpej@wasabisystems.com>
3727
3728         * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
3729         * alpha-tdep.c (alpha_sigcontext_addr): New function.
3730         (alpha_find_saved_regs): Use alpha_sigcontext_addr.
3731         (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
3732         * alpha-linux-tdep.c: Include frame.h.
3733         (alpha_linux_sigcontext_addr): New function.
3734         (alpha_linux_init_abi): Set tdep->sigcontext_addr to
3735         alpha_linux_sigcontext_addr.
3736         * alpha-osf1-tdep.c: Include gdbcore.h.
3737         (alpha_osf1_sigcontext_addr): New function.
3738         (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
3739         alpha_osf1_sigcontext_addr.
3740         * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
3741         * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
3742
3743 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
3744
3745         * stack.c (selected_frame_level):
3746         (select_frame): Do not set selected_frame_level.
3747         * frame.h (selected_frame_level): Delete declaration.
3748
3749 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
3750
3751         * rs6000-tdep.c (rs6000_gdbarch_init): Only set
3752         convert_from_func_ptr-addr when AIX / PowerOpen.
3753
3754 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
3755
3756         * valops.c (hand_function_call): Call
3757         generic_save_call_dummy_addr.
3758         * frame.h (generic_save_call_dummy_addr): Declare.
3759         * blockframe.c (struct dummy_frame): Add fields call_lo and
3760         call_hi.
3761         (generic_find_dummy_frame): Check for PC in range call_lo to
3762         call_hi instead of entry_point_address.
3763         (generic_pc_in_call_dummy): Search the dummy frames for a PC in
3764         the call_lo to call_hi range.  Allow for DECR_PC_AFTER_BREAK.
3765         (generic_save_call_dummy_addr): New function.
3766
3767 2002-04-24  David S. Miller  <davem@redhat.com>
3768
3769         * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
3770         sparc_skip_prologue.
3771         (sparc_skip_prologue): Kill frameless_p arg, and use line number
3772         information to find prologue when possible.
3773         (sparc_prologue_frameless_p): Call examine_prologue directly.
3774         (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
3775         * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
3776         second argument.
3777         (SKIP_PROLOGUE): Likewise.
3778
3779 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
3780
3781         * alpha-tdep.c (alpha_skip_prologue_internal): Remove
3782         GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
3783         indicate that the condition it was testing is always true.
3784         * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
3785         * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
3786         * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
3787
3788 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
3789
3790         * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
3791         * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
3792         tdep->jb_pc and tdep->jb_elt_size.
3793         * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
3794         * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
3795         * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
3796         * alpha-nat.c (get_longjmp_target): Remove.
3797         (JB_ELEMENT_SIZE): Ditto.
3798         (JB_PC): Ditto.
3799         * alpha-tdep.c (alpha_get_longjmp_target): New function.
3800         (alpha_gdbarch_init): Default tdep->jb_pc to -1.  If the
3801         OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
3802         to alpha_get_longjmp_target.
3803         (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
3804         * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
3805         * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
3806
3807 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
3808
3809         * README: Update to GDB 5.2.
3810
3811 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
3812
3813         * gdbarch.sh (LC_ALL): Set to `c'.
3814
3815 2002-04-25  Theodore A. Roth  <troth@verinet.com>
3816
3817         * avr-tdep.c: Ran through gdb_indent.sh.
3818
3819 2002-04-25  Theodore A. Roth  <troth@verinet.com>
3820
3821         * MAINTAINERS: Add myself as AVR maintainer.
3822         * NEWS: Note new target avr.
3823
3824 2002-04-25  Theodore A. Roth  <troth@verinet.com>
3825
3826         * Makefile.in: Add support for AVR target.
3827         * configure.tgt: Add support for AVR target.
3828         * avr-tdep.c: New file
3829         * config/avr/avr.mt: New file.
3830
3831 2002-04-25  Theodore A. Roth  <troth@verinet.com>
3832
3833         * MAINTAINERS: Add myself to write-after-approval.
3834
3835 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
3836
3837         * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
3838         with fprintf_unfiltered (gdb_stderr,....
3839
3840 2002-04-25  Pierre Muller  <muller@ics.u-strasbg.fr>
3841
3842         Fix PR gdb/508.
3843         * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
3844
3845 2002-04-25  Pierre Muller  <muller@ics.u-strasbg.fr>
3846
3847         * p-exp.y: Also use new prev_lexptr variable
3848         to improve error reporting. Based on Michael Snyder
3849         2002-04-24 dated patch to c-exp.y.
3850
3851 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
3852
3853         * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
3854         (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
3855         alpha_breakpoint_from_pc.  Set gdbarch_function_start_offset
3856         to 0.
3857         * config/alpha/tm-alpha.h: Remove forward decls of struct type
3858         and struct value.
3859         (FUNCTION_START_OFFSET): Remove.
3860         (BREAKPOINT): Ditto.
3861
3862 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
3863
3864         * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
3865         * NEWS: Ditto.
3866
3867 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
3868
3869         * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
3870         (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
3871         alpha_linux_pc_in_sigtramp.
3872         * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
3873         (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
3874         alpha_osf1_pc_in_sigtramp.
3875         * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
3876         * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
3877         (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
3878         alphafbsd_pc_in_sigtramp.
3879         * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
3880         (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
3881         alphanbsd_pc_in_sigtramp.
3882         * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
3883         * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
3884
3885 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
3886
3887         * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
3888
3889 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
3890
3891         * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
3892         alphanbsd-tdep.c.
3893         (alphanbsd-nat.o): New dependency list.
3894         (alphanbsd-tdep.o): Ditto.
3895         * NEWS: Note new native NetBSD/alpha configuration.
3896         * alphanbsd-nat.c: New file.
3897         * alphanbsd-tdep.c: Ditto.
3898         * configure.host (alpha*-*-netbsd*): New host.
3899         * configure.tgt (alpha*-*-netbsd*): New target.
3900         * config/alpha/nbsd.mh: New file.
3901         * config/alpha/nbsd.mt: Ditto.
3902         * config/alpha/nm-nbsd.h: Ditto.
3903         * config/alpha/tm-nbsd.h: Ditto.
3904
3905 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
3906
3907         * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
3908         (alpha-osf1-tdep.o): New dependency list.
3909         * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
3910         and skip_sigtramp_frame members.
3911         * alpha-linux-tdep.c: Include gdbcore.h.
3912         (alpha_linux_sigtramp_offset): Change return type to LONGEST.
3913         (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
3914         * alpha-osf1-tdep.c: New file.
3915         * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
3916         alpha-osf1-dep.c.
3917         (alpha_frame_past_sigtramp_frame): New function.
3918         (alpha_dynamic_sigtramp_offset): Ditto.
3919         (alpha_proc_desc_is_dyn_sigtramp): Ditto.
3920         (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
3921         (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
3922         (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
3923         (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
3924         (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
3925         (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
3926         (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
3927         (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
3928         (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
3929         and tdep->skip_sigtramp_frame.  Set gdbarch_skip_trampoline_code
3930         to find_solib_trampoline_target.
3931         * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
3932         * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
3933         (SKIP_TRAMPOLINE_CODE): Remove.
3934         (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
3935         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
3936         (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
3937         (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
3938         * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
3939         (PROC_SIGTRAMP_MAGIC): Ditto.
3940         (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
3941         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
3942         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
3943         (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
3944         (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
3945
3946 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
3947
3948         * NEWS: Note that Alpha targets are now multi-arch.
3949
3950 2002-04-24  Michael Snyder  <msnyder@redhat.com>
3951
3952         * parser-defs.h (prev_lexptr): New external variable.
3953         * parse.c (parse_exp_1): Set prev_lexptr to null before
3954         calling the language-specific parser.
3955         * c-exp.y (yylex): Set prev_lexptr to start of current token.
3956         (yyerror): Use prev_lexptr in error reporting.
3957
3958 2002-04-24  Daniel Jacobowitz  <drow@mvista.com>
3959
3960         * config/i386/tm-linux.h: Define FILL_FPXREGSET.
3961         * gregset.h: If FILL_FPXREGSET is defined, provide
3962         gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
3963         * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
3964         is defined, call fill_fpxregset.
3965
3966 2002-04-24  Roland McGrath  <roland@frob.com>
3967
3968         * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
3969         * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
3970         (supply_gregset, supply_fpregset): New functions.
3971
3972         * gnu-nat.c (gnu_find_memory_regions): New function.
3973         (init_gnu_ops): Set `to_find_memory_regions' hook to that.
3974         (gnu_xfer_memory): Add a cast.
3975
3976 2002-04-24  Michael Snyder  <msnyder@redhat.com>
3977
3978         * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
3979         loop.  Add handling for "str lr, [sp, #-4]!" and for saves
3980         of argument regs ("str r(0123), [r11, #-nn"]).
3981         (arm_skip_prologue): Better handling for frameless functions.
3982         Treat "mov ip, sp" as optional.  Recognize "str lr, [sp, #-4]".
3983         (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
3984
3985 Wed Apr 24 14:22:21 2002  Andrew Cagney  <cagney@redhat.com>
3986
3987         * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
3988         NUM_PSEUDO_REGS can be used.
3989
3990 2002-04-24  Andrew Cagney  <ac131313@redhat.com>
3991
3992         * arch-utils.h: Update copyright.
3993
3994         * gdbarch.sh (PC_IN_SIGTRAMP): Add.
3995         * gdbarch.h, gdbarch.c: Re-generate.
3996
3997         * inferior.h (IN_SIGTRAMP): Delete definition.
3998         * arch-utils.c (legacy_pc_in_sigtramp): New function.
3999         * arch-utils.h (legacy_pc_in_sigtramp): Declare.
4000
4001         * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
4002         (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
4003         * hppa-tdep.c (pc_in_interrupt_handler):  Use PC_IN_SIGTRAMP.
4004         (find_proc_framesize): Ditto.
4005         * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
4006         (alpha_init_extra_frame_info): Ditto.
4007         * infrun.c (handle_inferior_event): Ditto.
4008         (handle_inferior_event): Ditto.
4009         (check_sigtramp2): Ditto.
4010         * blockframe.c (create_new_frame): Ditto.
4011         (get_prev_frame): Ditto.
4012         * ppc-linux-tdep.c: Update comments.
4013         * i386-linux-tdep.c: Update comments.
4014         * breakpoint.c (bpstat_what): Update comment.
4015
4016 2002-04-24  Michal Ludvig  <mludvig@suse.cz>
4017
4018         * gdbserver/linux-low.c (regsets_fetch_inferior_registers),
4019         (regsets_store_inferior_registers): Removed cast to int from
4020         ptrace() calls.
4021         * gdbserver/regcache.h: Added declaration of struct inferior_info.
4022
4023 2002-04-24  David S. Miller  <davem@redhat.com>
4024
4025         * i960-tdep.c (register_in_window_p): New function.
4026         (i960_find_saved_register): Use it instead of
4027         REGISTER_IN_WINDOW_P.
4028         * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
4029
4030         * symtab.h (find_stab_function_addr): Kill extern.
4031         * minsyms.c (find_stab_function_addr): Remove from here...
4032         * dbxread.c: ... to here, and mark it static.
4033
4034 2002-04-20  David S. Miller  <davem@redhat.com>
4035
4036         * sparc-tdep.c (sparc_pop_frame): Only need to allocate
4037         SPARC_INTREG_SIZE * 16 bytes for reg_temp.
4038
4039 2002-04-21  David S. Miller  <davem@redhat.com>
4040
4041         * remote-vxsparc.c (vx_read_register): Fix typo, we want
4042         REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
4043         (vx_write_register): Likewise.
4044
4045 2002-04-23  J. Brobecker  <brobecker@gnat.com>
4046
4047         * source.c (is_regular_file): New function.
4048         (openp): Check wether file to open is a regular file
4049         to avoid opening directories.
4050
4051 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
4052
4053         * findvar.c (extract_signed_integer): Cast printf argument
4054         to suppress format warning.
4055         (extract_unsigned_integer): Likewise.
4056         * infcmd.c (registers_info): Likewise.
4057         * top.c (get_prompt_1): Likewise.
4058         * valops.c (value_assign): Likewise.
4059         * valprint.c (print_decimal): Likewise.
4060
4061 2002-04-22  H.J. Lu  (hjl@gnu.org)
4062
4063         * c-exp.y (typebase): Support
4064
4065         [long|long long|short] [signed|unsigned] [int|]
4066
4067         and
4068
4069         signed [long|long long|short] int
4070
4071 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
4072
4073         * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
4074         and vax-tdep.h.
4075         * vax-tdep.h: New file.
4076         * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
4077         Make several routines static.
4078         (vax_get_saved_register): New function.
4079         (vax_gdbarch_init): New function.
4080         (_initialize_vax_tdep): Register vax_gdbarch_init.
4081         * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
4082         Remove macros now under the control of gdbarch.
4083
4084 2002-04-22  Michael Snyder  <msnyder@redhat.com>
4085
4086         * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
4087         Some whitespace and coding standards tweaks.
4088
4089 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
4090
4091         * vax-tdep.c: Include regcache.h.
4092         (vax_call_dummy_words): New.
4093         (sizeof_vax_call_dummy_words): New.
4094         (vax_fix_call_dummy): New function.
4095         (vax_saved_pc_after_call): Ditto.
4096         * config/vax/tm-vax.h: Don't include regcache.h.
4097         (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
4098         (CALL_DUMMY): Remove.
4099         (CALL_DUMMY_WORDS): Define.
4100         (SIZEOF_CALL_DUMMY_WORDS): Define.
4101         (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
4102
4103 2002-04-18  Michael Snyder  <msnyder@redhat.com>
4104
4105         * arm-tdep.h: Change regnum defines to enums for ease of debugging.
4106
4107 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
4108
4109         * vax-tdep.c (vax_frame_chain): New function.
4110         (vax_push_dummy_frame): Ditto.
4111         (vax_pop_frame): Ditto.
4112         * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
4113         (FRAMELESS_FUNCTION_INVOCATION): Use
4114         generic_frameless_function_invocation_not.
4115         (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
4116         (POP_FRAME): Use vax_pop_frame.
4117
4118 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
4119
4120         * vax-tdep.c (vax_store_struct_return): New function.
4121         (vax_extract_return_value): Ditto.
4122         (vax_store_return_value): Ditto.
4123         (vax_extract_struct_value_address): Ditto.
4124         * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
4125         vax_store_struct_return.
4126         (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
4127         (STORE_RETURN_VALUE): Use vax_store_return_value.
4128         (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
4129
4130 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
4131
4132         * vax-tdep.c (vax_frame_saved_pc): New function.
4133         (vax_frame_args_address_correct): Ditto.
4134         (vax_frame_args_address): Ditto.
4135         (vax_frame_locals_address): Ditto.
4136         (vax_frame_num_args): Move code to be in proximity to
4137         other frame-related functions.
4138         * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
4139         (FRAME_SAVED_PC): Use vax_frame_saved_pc.
4140         (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
4141         (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
4142         (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
4143
4144 2002-04-22  H.J. Lu  (hjl@gnu.org)
4145
4146         * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
4147         includedir.
4148
4149 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
4150
4151         * vax-tdep.c (vax_frame_init_saved_regs): New function.
4152         * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
4153         (FRAME_INIT_SAVED_REGS): New macro.
4154
4155 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
4156
4157         * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
4158
4159 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
4160
4161         * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
4162         where needed.
4163         (fetch_osf_core_registers): Likewise.
4164         (supply_gregset): Likewise.
4165
4166 2002-04-22  J. Brobecker  <brobecker@gnat.com>
4167
4168         * symfile.h (get_section_index): Define.
4169         * symfile.c (get_section_index): New function.
4170         * mdebugread.c (SC_IS_SBSS): New macro.
4171         (SC_IS_BSS): Return true for the scBss storage class only, as
4172         the scSBss storage class refers to the .sbss section.
4173         (parse_partial_symbols): Discard the symbols which associated
4174         section does not exist.
4175         Make sure to use the .sbss section index for symbols which
4176         storage class is scBss, rather than using the .bss section index.
4177
4178 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
4179
4180         * vax-tdep.c: Update copyright years.
4181         (vax_register_name): New function.
4182         (vax_register_byte): Ditto.
4183         (vax_register_raw_size): Ditto.
4184         (vax_register_virtual_size): Ditto.
4185         (vax_register_virtual_type): Ditto.
4186         * config/vax/tm-vax.h: Update copyright years.
4187         (REGISTER_NAMES): Remove.
4188         (REGISTER_NAME): Define.
4189         (REGISTER_BYTE): Use vax_register_byte.
4190         (REGISTER_RAW_SIZE): Use vax_register_raw_size.
4191         (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
4192         (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
4193
4194 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
4195
4196         * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
4197         declaration
4198         * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
4199
4200 2002-04-21  David S. Miller  <davem@redhat.com>
4201
4202         * arch-utils.c (generic_prologue_frameless_p): Kill
4203         SKIP_PROLOGUE_FRAMELESS_P code.
4204         * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
4205         references.
4206         (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
4207         * arc-tdep.c (arc_prologue_frameless_p): Implement.
4208         * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
4209         references.
4210         (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
4211         * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
4212         (sparc_gdbarch_init): Pass it to
4213         set_gdbarch_prologue_frameless_p.
4214
4215 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
4216
4217         * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
4218         (alphabsd-nat.o): New dependency list.
4219
4220 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
4221
4222         * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
4223         alphafbsd-tdep.c.
4224         (alpha-linux-tdep.o): New dependency list.
4225         (alphafbsd-tdep.o): Likewise.
4226
4227 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
4228
4229         * alpha-linux-tdep.c: New file.  Move alpha_linux_sigtramp_offset
4230         to here...
4231         * alpha-tdep.c: ...from here.
4232         * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
4233
4234 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
4235
4236         * config/alpha/tm-alpha.h: Move alpha_software_single_step
4237         prototype from here...
4238         * alpha-tdep.h: ...to here.
4239
4240 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
4241
4242         * frame.h (selected_frame_level): Document as deprecated.
4243         (frame_relative_level): Declare.
4244         * stack.c (frame_relative_level): New function.
4245         (selected_frame_level): Document as deprecated.
4246         (select_frame): Do not set the selected_frame_level.
4247
4248         * stack.c (frame_info, record_selected_frame): Update.
4249         (frame_command, current_frame_command): Update.
4250         (up_silently_base, up_command, down_silently_base): Update.
4251         (down_command): Update.
4252         * inflow.c (kill_command): Update.
4253         * tracepoint.c (finish_tfind_command): Update.
4254         * corelow.c (core_open): Update.
4255         * thread.c (info_threads_command): Update.
4256         (do_captured_thread_select): Update.
4257         * infcmd.c (finish_command): Update.
4258         * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
4259
4260 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
4261
4262         * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
4263
4264 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
4265
4266         * arm-tdep.c (arm_breakpoint_from_pc): Make static.  Make return
4267         type const.
4268
4269 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
4270
4271         * alphafbsd-tdep.c: Update copyright years.  Include
4272         alpha-tdep.h.
4273         (alphafbsd_use_struct_convention): Make static.
4274         (alphafbsd_init_abi): New function.
4275         (_initialize_alphafbsd_tdep): New function.
4276         * config/alpha/tm-fbsd.h: Update copyright years.
4277         (USE_STRUCT_CONVENTION): Remove.
4278
4279 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
4280
4281         * alpha-tdep.c (alpha_abi_handler): New structure to describe
4282         an Alpha ABI variant.
4283         (alpha_abi_handler_list): Declare.
4284         (alpha_gdbarch_register_os_abi): New function.
4285         (alpha_gdbarch_init): Give registered ABI variant handlers a
4286         chance to tweak the gdbarch once we have set up defaults.
4287         * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
4288
4289 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
4290
4291         * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
4292         to standard_coerce_float_to_double.
4293         * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
4294
4295 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
4296
4297         * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
4298         * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
4299         from gdbarch_tdep rather than a constant.
4300         (alpha_gdbarch_init): Initialize tdep->vm_min_address to
4301         the default text address for all Alpha Unix ABIs.
4302         (alpha_dump_tdep): Report the value of tdep->vm_min_address.
4303         * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
4304
4305 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
4306
4307         * alpha-tdep.h: New file.  Includes several Alpha target constants
4308         taken from...
4309         * config/alpha/tm-alpha.h: ...here.  Remove macros that we now
4310         let gdbarch deal with.
4311         (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
4312         * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
4313         to dependency list.
4314         * alpha-nat.c: Include alpha-tdep.h.  Update for adjusted
4315         Alpha target register names.
4316         * alphabsd-nat.c: Likewise.
4317         * alpha-tdep.c: Include alpha-tdep.h.  Update for adjusted
4318         Alpha target register names.  Make serveral routines static.
4319         (alpha_get_saved_register): New function.
4320         (alpha_abi_names): New.
4321         (process_note_abi_tag_sections): New function.
4322         (get_elfosabi): New function.
4323         (alpha_gdbarch_init): New function.
4324         (alpha_dump_tdep): New function.
4325         (_initialize_alpha_tdep): Register alpha_gdbarch_init.
4326
4327 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
4328
4329         * frame.c (find_saved_register): Delete #ifdef
4330         HAVE_REGISTER_WINDOWS code.
4331         * config/sparc/tm-sparc.h: Update comments.
4332         * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
4333
4334 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
4335
4336         * i960-tdep.c (i960_find_saved_register): New function.
4337         (i960_get_saved_register): New function.
4338         * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
4339         (i960_get_saved_register): Declare.
4340         * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
4341
4342 2002-04-20  David S. Miller  <davem@redhat.com>
4343
4344         * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
4345
4346 2002-04-20  Andrew Cagney  <ac131313@redhat.com>
4347
4348         * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
4349         instead of NUM_PSEUDO_REGS.
4350
4351 2002-04-20  David S. Miller  <davem@redhat.com>
4352
4353         * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
4354         GDB_MULTI_ARCH_PARTIAL
4355         * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
4356         define, let tm-sp64.h do it.
4357
4358 2002-04-20  Jason Thorpe  <thorpej@wasabisystems.com>
4359
4360         * frame.c (find_saved_register): Avoid a NULL pointer
4361         dereference and actually walk the frame list.
4362
4363 2002-04-20  Andrew Cagney  <ac131313@redhat.com>
4364
4365         * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
4366         sorted in most most-recent-used order.  Document.
4367         * gdbarch.h, gdbarch.c: Regenerate.
4368
4369 2002-04-20  Daniel Jacobowitz  <drow@mvista.com>
4370
4371         * gdbserver/inferiors.c (struct inferior_info): Add regcache_data.
4372         (add_inferior): Call create_register_cache.
4373         (clear_inferiors): Call free_register_cache.
4374         (inferior_regcache_data, set_inferior_regcache_data): New functions.
4375         * gdbserver/regcache.c (struct inferior_regcache_data): New.
4376         (registers): Remove.
4377         (get_regcache): New function.
4378         (create_register_cache, free_register_cache): New functions.
4379         (set_register_cache): Don't initialize the register cache here.
4380         (registers_to_string, registers_from_string, register_data): Call
4381         get_regcache.
4382         * gdbserver/regcache.h: Add prototypes.
4383         * gdbserver/server.h: Likewise.
4384
4385 2002-04-20  Daniel Jacobowitz  <drow@mvista.com>
4386
4387         * gdbserver/mem-break.c: New file.
4388         * gdbserver/mem-break.h: New file.
4389         * gdbserver/Makefile.in: Add mem-break.o rule; update server.h
4390         dependencies.
4391         * gdbserver/inferiors.c (struct inferior_info): Add target_data
4392         member.
4393         (clear_inferiors): Free target_data member if set.
4394         (inferior_target_data, set_inferior_target_data): New functions.
4395         * gdbserver/linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
4396         (i386_stop_pc, i386_set_pc): New.  Add to the_low_target.
4397         * gdbserver/linux-low.c (linux_bp_reinsert): New variable.
4398         (struct inferior_linux_data): New.
4399         (linux_create_inferior): Use set_inferior_target_data.
4400         (linux_attach): Likewise.  Call add_inferior.
4401         (linux_wait_for_one_inferior): New function.
4402         (linux_wait): Call it.
4403         (linux_write_memory): Add const.
4404         (initialize_low): Call set_breakpoint_data.
4405         * gdbserver/linux-low.h (struct linux_target_ops): Add breakpoint
4406         handling members.
4407         * gdbserver/server.c (attach_inferior): Remove extra add_inferior
4408         call.
4409         * gdbserver/server.h: Include mem-break.h.  Update inferior.c
4410         prototypes.
4411         * gdbserver/target.c (read_inferior_memory)
4412         (write_inferior_memory): New functions.
4413         * gdbserver/target.h (read_inferior_memory)
4414         (write_inferior_memory): Change macros to prototypes.
4415         (struct target_ops): Update comments.  Add const to write_memory
4416         definition.
4417
4418 2002-04-19  Andrew Cagney  <ac131313@redhat.com>
4419
4420         * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
4421         instead of ->prev.
4422         * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
4423         * s390-tdep.c (s390_frame_chain): Do not use ->prev.
4424         * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
4425         instead of ->prev.
4426
4427 2002-04-19  Elena Zannoni  <ezannoni@redhat.com>
4428
4429         Fix PR gdb/471.
4430         * gdbtypes.c (init_simd_type): Rewrite using new functions.
4431         (build_builtin_type_vec128): Ditto.
4432         (append_composite_type_field): Fix calculation of type length in
4433         union case.
4434
4435 2002-04-19  Eli Zaretskii  <eliz@is.elta.co.il>
4436
4437         * config/djgpp/README: Update.
4438
4439         * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
4440         compiler warnings.
4441
4442 2002-04-19  Jason Thorpe  <thorpej@wasabisystems.com>
4443
4444         * alpha-tdep.c (setup_arbitrary_frame): Rename...
4445         (alpha_setup_arbitrary_frame): ...to this.
4446         * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
4447         for alpha_setup_arbitrary_frame.
4448
4449 2002-04-18  Andrew Cagney  <cagney@redhat.com>
4450
4451         * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
4452         * gdbarch.h, gdbarch.c: Regenerate.
4453
4454         * defs.h (breakpoint_from_pc_fn): Delete type definition.
4455         * target.h (memory_breakpoint_from_pc): Update declaration.
4456         * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
4457
4458         * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
4459         * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
4460         * mem-break.c (memory_breakpoint_from_pc): Ditto.
4461         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
4462         * s390-tdep.c (s390_breakpoint_from_pc): Ditto
4463         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
4464         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
4465         * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
4466         * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
4467         * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
4468         * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
4469         * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
4470
4471         * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
4472         const pointer.
4473         * monitor.c (monitor_insert_breakpoint): Ditto.
4474         * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
4475
4476         * config/mcore/tm-mcore.h: Update copyright.
4477         * mem-break.c: Ditto.
4478         * xstormy16-tdep.c: Ditto.
4479
4480 2002-04-18  Pierre Muller  <muller@ics.u-strasbg.fr>
4481
4482         * p-exp.y: Add precedence rule for '^' token.
4483         This removes the shift/reduce conflicts.
4484         Remove the comment concerning these shift/reduce conflicts.
4485
4486 2002-04-18  Elena Zannoni  <ezannoni@redhat.com>
4487
4488         * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
4489         (registers_powerpc_nofp): New register set for processors
4490         without floating point unit.
4491
4492 2002-04-18  David S. Miller  <davem@redhat.com>
4493
4494         * MAINTAINERS: Add myself to write-after-approval.
4495
4496 2002-04-17  Michael Snyder  <msnyder@redhat.com>
4497
4498         * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
4499
4500 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
4501
4502         * rs6000-tdep.c (frame_initial_stack_address): Use
4503         frame_register_read to read the alloca_reg.
4504
4505 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
4506
4507         * frame.c (find_saved_register): Find saved registers in the next
4508         not prev frame.
4509         Fix PR gdb/365.
4510
4511 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
4512
4513         * gdbarch.sh (LANG): Set to ``c''.
4514
4515 2002-04-15  Andrew Cagney  <ac131313@redhat.com>
4516
4517         * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
4518
4519 2002-04-15  Andrew Cagney  <ac131313@redhat.com>
4520
4521         * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
4522         Update copyright.
4523
4524         * hpread.c (hpread_get_lntt): Add declaration.
4525         Also fix PR gdb/391.
4526
4527 2002-04-14  Andrew Cagney  <ac131313@redhat.com>
4528
4529         * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
4530         * aclocal.m4, configure: Re-generate.
4531         Fix PR gdb/391.
4532
4533 2002-04-14  Elena Zannoni  <ezannoni@redhat.com>
4534
4535         * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
4536         instead of tm_print_insn.
4537
4538 2002-04-14  Elena Zannoni  <ezannoni@redhat.com>
4539
4540         * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
4541
4542 2002-04-14  Andrew Cagney  <ac131313@redhat.com>
4543
4544         * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
4545         * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
4546         (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
4547
4548 2002-04-12  Don Howard  <dhoward@redhat.com>
4549
4550         * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
4551         max_user_call_depth.
4552         (init_cmd_lists): Initialize the new value;
4553         * cli/cli-script.c (execute_user_command): Limit the call depth of
4554         user defined commands.  This avoids a core-dump when user commands
4555         are infinitly recursive.
4556
4557 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
4558
4559         * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
4560         * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
4561         from tdep struct instead of DEFAULT_LR_SAVE.
4562         (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
4563         * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
4564         * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
4565
4566 2002-04-12  Michael Snyder  <msnyder@redhat.com>
4567
4568         * Remote.c: Spelling fix.
4569         * gcore.c (default_derive_heap_segment): Use bfd_section_name.
4570         If no symbol found for "sbrk", try "_sbrk".
4571         (make_output_phdrs): Use bfd_section_name.
4572         (gcore_copy_callback): Use bfd_section_name.
4573         * eval.c: Indentation fix-ups.
4574         * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
4575         in case it gets applied to an address that is already
4576         in the instruction space.
4577         * cli/cli-decode.c (help_list): Allow long lines to wrap.
4578         * symfile.c: Fix indentation, long lines.
4579         * source.c: White space fix-up.
4580
4581 2002-04-12  Andrew Cagney  <cagney@redhat.com>
4582
4583         * defs.h (read_relative_register_raw_bytes): Delete declaration.
4584         * frame.c (frame_register_read): New function.  Return non-zero on
4585         success.
4586         (read_relative_register_raw_bytes_for_frame): Delete.
4587         (read_relative_register_raw_bytes): Delete.
4588         * frame.h (frame_register_read): Declare.
4589         * d30v-tdep.c: Update Copyright.  Use frame_register_read.
4590         * sh-tdep.c: Ditto.
4591         * infcmd.c (do_registers_info): Ditto.
4592         * hppa-tdep.c: Ditto.
4593         * rs6000-tdep.c: Ditto.
4594         * h8500-tdep.c: Ditto.
4595         * mips-tdep.c: Ditto.
4596         * h8300-tdep.c: Ditto.
4597         * z8k-tdep.c: Ditto.
4598
4599 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
4600
4601         From Jimi X <jimix@watson.ibm.com>:
4602         * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
4603         64-bit SysV ABI.
4604
4605 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
4606
4607         From Jimi X <jimix@watson.ibm.com>:
4608         * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
4609         bfd info.
4610
4611 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
4612
4613         From Jimi X <jimix@watson.ibm.com>:
4614         * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
4615         register sets for these processor variants.
4616
4617 2002-04-11  Daniel Jacobowitz  <drow@mvista.com>
4618
4619         * gdbserver/linux-low.c (usr_store_inferior_registers): Support
4620         registers which are allowed to fail to store.
4621         * gdbserver/linux-low.h (linux_target_ops): Likewise.
4622         * gdbserver/linux-ppc-low.c (ppc_regmap): Support FPSCR.
4623         (ppc_cannot_store_register): FPSCR may not be storable.
4624         * regformats/reg-ppc.dat: Support FPSCR.
4625
4626 2002-04-11  Kevin Buettner  <kevinb@redhat.com>
4627
4628         * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
4629         * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
4630         Add fpscr as an invalid/unfetchable register.
4631         * ppc-linux-nat.c (ppc_register_u_addr, store_register)
4632         (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
4633         (fill_fpregset): Add support for register fpscr.
4634         (fetch_ppc_registers, store_ppc_registers, supply_gregset)
4635         (fill_gregset): Account for the fact that register ``mq'' might
4636         not exist.
4637         * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
4638         (registers_power): Add fpscr to register set at slot 71.
4639         (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
4640         exist on most PPC architectures.  Initialize ppc_fpscr_regnum.
4641
4642 2002-04-11  Michael Snyder  <msnyder@redhat.com>
4643
4644         * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
4645         * configure: Regenerate.
4646         * config.in: Regenerate.
4647         * acconfig.h: Add define for _SYSCALL32.
4648         * core-sol2.c: Remove #define _SYSCALL32.
4649         * solib-legacy.c: Remove #define _SYSCALL32.
4650
4651 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
4652
4653         * stack.c (select_frame): Cleanup internal error message, do not
4654         use %p.
4655
4656 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
4657
4658         * stack.c (select_frame): Check that selected_frame and the
4659         specified level are as expected.
4660         * blockframe.c (get_prev_frame): Set the `level' from next_frame.
4661         Update copyright.
4662         * frame.h (struct frame_info): Add field `level'.  Update
4663         copyright.
4664         Work-in-progress PR gdb/464.
4665
4666 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
4667
4668         * maint.c (maint_print_section_info): Rename print_section_info.
4669         (print_bfd_section_info, print_objfile_section_info): Update.
4670         * inferior.h (struct gdbarch): Add opaque declaration.
4671         * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
4672         * gdbarch.h: Regenerate.
4673
4674 2002-04-10  Michal Ludvig  <mludvig@suse.cz>
4675
4676         * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
4677         (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
4678         (kernel_u_size): Added.
4679         * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
4680         (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
4681
4682 2002-04-04  Jim Ingham  <jingham@apple.com>
4683
4684        * valarith.c (find_size_for_pointer_math): New function, either returns
4685        the size for a pointer's target, returns 1 for void *, or errors for
4686        incomplete types.
4687        (value_add, value_sub): use find_size_for_pointer_math.
4688
4689 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
4690
4691         * linux-low.c (linux_look_up_symbols): New hook.
4692         (linux_target_ops): Add linux_look_up_symbols.
4693         * remote-utils.c (decode_address): New function.
4694         (look_up_one_symbol): New function.
4695         * server.c (handle_query): Call target look_up_symbols hook.
4696         * server.h (look_up_one_symbol): Add prototype.
4697         * target.h (struct target_ops): Add look_up_symbols hook.
4698
4699 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
4700
4701         * gdbserver/server.h: Include <string.h> if HAVE_STRING_H.
4702         * ChangeLog: Correct paths in last ChangeLog entry.
4703
4704 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
4705
4706         * gdbserver/linux-low.h: Remove obsolete prototypes.
4707         (struct linux_target_ops): New.
4708         (extern the_low_target): New.
4709         * gdbserver/linux-low.c (num_regs, regmap): Remove declarations.
4710         (register_addr): Use the_low_target explicitly.
4711         (fetch_register): Likewise.
4712         (usr_fetch_inferior_registers): Likewise.
4713         (usr_store_inferior_registers): Likewise.
4714         * gdbserver/linux-arm-low.c (num_regs): Remove.
4715         (arm_num_regs): Define.
4716         (arm_regmap): Renamed from regmap, made static.
4717         (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
4718         made static.
4719         (arm_cannot_store_register): Renamed from cannot_store_register,
4720         made static.
4721         (the_low_target): New.
4722         * gdbserver/linux-i386-low.c (num_regs): Remove.
4723         (i386_num_regs): Define.
4724         (i386_regmap): Renamed from regmap, made static.
4725         (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
4726         made static.
4727         (i386_cannot_store_register): Renamed from cannot_store_register,
4728         made static.
4729         (the_low_target): New.
4730         * gdbserver/linux-ia64-low.c (num_regs): Remove.
4731         (ia64_num_regs): Define.
4732         (ia64_regmap): Renamed from regmap, made static.
4733         (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
4734         made static.
4735         (ia64_cannot_store_register): Renamed from cannot_store_register,
4736         made static.
4737         (the_low_target): New.
4738         * gdbserver/linux-m68k-low.c (num_regs): Remove.
4739         (m68k_num_regs): Define.
4740         (m68k_regmap): Renamed from regmap, made static.
4741         (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
4742         made static.
4743         (m68k_cannot_store_register): Renamed from cannot_store_register,
4744         made static.
4745         (the_low_target): New.
4746         * gdbserver/linux-mips-low.c (num_regs): Remove.
4747         (mips_num_regs): Define.
4748         (mips_regmap): Renamed from regmap, made static.
4749         (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
4750         made static.
4751         (mips_cannot_store_register): Renamed from cannot_store_register,
4752         made static.
4753         (the_low_target): New.
4754         * gdbserver/linux-ppc-low.c (num_regs): Remove.
4755         (ppc_num_regs): Define.
4756         (ppc_regmap): Renamed from regmap, made static.
4757         (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
4758         made static.
4759         (ppc_cannot_store_register): Renamed from cannot_store_register,
4760         made static.
4761         (the_low_target): New.
4762         * gdbserver/linux-s390-low.c (num_regs): Remove.
4763         (s390_num_regs): Define.
4764         (s390_regmap): Renamed from regmap, made static.
4765         (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
4766         made static.
4767         (s390_cannot_store_register): Renamed from cannot_store_register,
4768         made static.
4769         (the_low_target): New.
4770         * gdbserver/linux-sh-low.c (num_regs): Remove.
4771         (sh_num_regs): Define.
4772         (sh_regmap): Renamed from regmap, made static.
4773         (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
4774         made static.
4775         (sh_cannot_store_register): Renamed from cannot_store_register,
4776         made static.
4777         (the_low_target): New.
4778         * gdbserver/linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
4779         (the_low_target): New.
4780
4781 2002-04-09  Andrew Cagney  <ac131313@redhat.com>
4782
4783         * frame.c (read_relative_register_raw_bytes_for_frame): Do not
4784         override FP_REGNUM with frame->fp.  Update copyright.
4785         * parse.c (num_std_regs, std_regs): Delete.
4786         (target_map_name_to_register): Do not search std_regs.  Update
4787         function description.
4788         * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
4789         declarations.  Update copyright.
4790         Fix PR gdb/251.
4791
4792 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
4793
4794         * gdbserver/Makefile.in: Add stamp-h target.
4795         * gdbserver/configure.in: Create stamp-h.
4796         * gdbserver/configure: Regenerated.
4797
4798 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
4799
4800         * gdbserver/inferiors.c: New file.
4801         * gdbserver/target.c: New file.
4802         * gdbserver/target.h: New file.
4803         * gdbserver/Makefile.in:  Add target.o and inferiors.o.  Update
4804         dependencies.
4805         * gdbserver/linux-low.c (inferior_pid): New static variable,
4806         moved from server.c.
4807         (linux_create_inferior): Renamed from create_inferior.
4808         Call add_inferior.  Return 0 on success instead of a PID.
4809         (linux_attach): Renamed from myattach.
4810         (linux_kill): Renamed from kill_inferior.  Call clear_inferiors ().
4811         (linux_thread_alive): Renamed from mythread_alive.
4812         (linux_wait): Renamed from mywait.  Call clear_inferiors () if the
4813         child dies.
4814         (linux_resume): Renamed from myresume.  Add missing ``return 0''.
4815         (regsets_store_inferior_registers): Correct error message.
4816         Add missing ``return 0''.
4817         (linux_fetch_registers): Renamed from fetch_inferior_registers.
4818         (linux_store_registers): Renamed from store_inferior_registers.
4819         (linux_read_memory): Renamed from read_inferior_memory.
4820         (linux_write_memory): Renamed from write_inferior_memory.
4821         (linux_target_ops): New structure.
4822         (initialize_low): Call set_target_ops ().
4823         * gdbserver/remote-utils.c (unhexify): New function.
4824         (hexify): New function.
4825         (input_interrupt): Send signals to ``signal_pid''.
4826         * gdbserver/server.c (inferior_pid): Remove.
4827         (start_inferior): Update create_inferior call.
4828         (attach_inferior): Call add_inferior.
4829         (handle_query): New function.
4830         (main): Call handle_query for `q' packets.
4831         * gdbserver/server.h: Include "target.h".  Remove obsolete prototypes.
4832         Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
4833
4834 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
4835
4836         * gdbserver/Makefile.in: Add WARN_CFLAGS.  Update configury
4837         dependencies.
4838         * gdbserver/configure.in: Check for <string.h>
4839         * gdbserver/configure: Regenerate.
4840         * gdbserver/config.in: Regenerate.
4841         * gdbserver/gdbreplay.c: Include needed system headers.
4842         (remote_open): Remove strchr prototype.
4843         * gdbserver/linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
4844         * gdbserver/regcache.c (supply_register): Change buf argument to const void *.
4845         (supply_register_by_name): Likewise.
4846         (collect_register): Change buf argument to void *.
4847         (collect_register_by_name): Likewise.
4848         * gdbserver/regcache.h: Add missing prototypes.
4849         * gdbserver/remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
4850         * gdbserver/server.c (handle_query): New function.
4851         (attached): New static variable, moved out of main.
4852         (main): Quiet longjmp clobber warnings.
4853         * gdbserver/server.h: Add ATTR_NORETURN and ATTR_FORMAT.  Update prototypes.
4854         * gdbserver/utils.c (error): Remove NORETURN.
4855         (fatal): Likewise.
4856
4857 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
4858
4859         * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
4860         after the last symbol in a block.
4861
4862 2002-04-09  Pierre Muller  <muller@ics.u-strasbg.fr>
4863
4864         * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
4865         is non zero as a found symbol.
4866
4867 2002-04-08  Andrew Cagney  <ac131313@redhat.com>
4868
4869         * findvar.c: Include "builtin-regs.h".
4870         (value_of_register): Call value_of_builtin_reg when applicable.
4871         * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
4872         (target_map_name_to_register): Call
4873         builtin_reg_map_name_to_regnum.
4874         * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
4875         (COMMON_OBS): Add builtin-regs.o and std-regs.o.
4876         (builtin_regs_h): Define.
4877         (builtin-regs.o): New target.
4878         (findvar.o): Add $(builtin_regs_h).
4879         * builtin-regs.c, builtin-regs.h: New files.
4880         * std-regs.c: New file.
4881         Partial fix for PR gdb/251.
4882
4883 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
4884
4885         * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
4886         it's no longer required.
4887
4888 2002-04-08  Andrew Cagney  <ac131313@redhat.com>
4889
4890         * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
4891
4892 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
4893
4894         From Jimi X <jimix@watson.ibm.com>:
4895         * rs6000-tdep.c (rs6000_software_single_step): Use
4896         rs6000_breakpoint_from_pc() to fetch breakpoint instruction
4897         and size.  Use target_insert_breakpoint() and
4898         target_remove_breakpoint() to insert and remove breakpoints
4899         instead of explicit memory reads and writes.
4900
4901 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
4902
4903         * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
4904         * rs6000-tdep.c (rs6000_push_arguments): Eliminate
4905         ELF_OBJECT_FORMAT ifdef.
4906
4907 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
4908
4909         From Jimi X <jimix@watson.ibm.com>:
4910         * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
4911
4912 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
4913
4914         From Jimi X <jimix@watson.ibm.com>:
4915         * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
4916         definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
4917
4918 2002-04-07  Mark Kettenis  <kettenis@gnu.org>
4919
4920         * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
4921         s/asprintf/xasprintf/.
4922         (fbsd_make_corefile_notes): s/strdup/xstrdup/.
4923
4924 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
4925
4926         I believe Jeff Law denies responsability for this one:
4927         * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
4928         * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
4929         * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
4930         Work-around for PR gdb/366.
4931
4932 2002-04-07  Elena Zannoni  <ezannoni@redhat.com>
4933
4934         * remote-e7000.c (write_small, e7000_read_inferior_memory,
4935         e7000_read_inferior_memory_large, e7000_insert_breakpoint,
4936         e7000_remove_breakpoint): Use paddr_nz() to print addresses.
4937
4938 2002-04-07  Elena Zannoni  <ezannoni@redhat.com>
4939
4940         * sh-tdep.c (sh_fp_frame_init_saved_regs,
4941         sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
4942         information.
4943
4944 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
4945
4946         * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
4947         maintainer.
4948
4949 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
4950
4951         * README (Reporting Bugs in GDB): Document the bug web page as the
4952         prefered way of submitting bugs.
4953         Fix PR gdb/402.
4954
4955 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
4956
4957         * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
4958         -1.  Update comment.
4959         * gdbarch.h, gdbarch.c: Re-generate.
4960
4961 2002-04-07  Andreas Schwab  <schwab@suse.de>
4962
4963         * m68klinux-nat.c (fill_fpregset): Properly pass address of
4964         buffer to regcache_collect.
4965
4966 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
4967
4968         * gdbarch.sh (PS_REGNUM): Add.  Document.  Default to -1.
4969         * gdbarch.c, gdbarch.h: Re-generate.
4970
4971 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
4972
4973         * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
4974         declaration.  Fix -Werror.
4975
4976 2002-04-05  Daniel Jacobowitz  <drow@mvista.com>
4977
4978         * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
4979         * gdbarch.c: Regenerate.
4980
4981 2002-04-05  Michael Snyder  <msnyder@redhat.com>
4982
4983         * breakpoint.c (clear_command): Rewrite middle section to
4984         combine two loops with identical control conditions.
4985         Add a cleanup to eliminate a memory leak.
4986         * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
4987
4988 2002-04-05  H.J. Lu  (hjl@gnu.org)
4989
4990         * solib-svr4.c (bkpt_names): Add "__start".
4991
4992 2002-04-04  Andrew Cagney  <ac131313@redhat.com>
4993
4994         * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
4995         as test for 64 bit target.
4996
4997 2002-04-05  Andrew Cagney  <ac131313@redhat.com>
4998
4999         * h8500-tdep.c (h8500_write_fp): Delete function.
5000         * dwarf2cfi.c (cfi_write_fp): Document as not used.
5001         * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
5002         * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
5003         * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
5004         * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
5005         * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
5006         (s390_write_fp):
5007         * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
5008         * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
5009         * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
5010         (d10v_write_fp): Delete function.
5011         * inferior.h (write_fp, generic_target_write_fp): Delete
5012         declarations.
5013         * regcache.c (generic_target_write_fp): Delete function.
5014         (write_fp): Delete function.
5015         * gdbarch.sh (TARGET_WRITE_FP): Delete.
5016         * gdbarch.h, gdbarch.c: Regenerate.
5017         * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
5018         * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
5019         (sparc64_write_fp): Delete declaration.
5020         * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
5021         (h8500_write_fp): Delete declaration.
5022
5023 2002-04-04  Andrew Cagney  <ac131313@redhat.com>
5024
5025         * sparc-tdep.c (sparc64_write_fp): Delete.
5026         (sparc_push_dummy_frame): Replace write_fp call with code to store
5027         the FP directly.
5028         (sparc_gdbarch_init): Do not initialize write_fp.
5029
5030 2002-04-05  Kevin Buettner  <kevinb@redhat.com>
5031
5032         * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
5033         clause.
5034
5035 2002-03-29  Jim Blandy  <jimb@redhat.com>
5036
5037         * stack.c (get_selected_block): Add new argument `addr_in_block',
5038         used to return the exact code address we used to select the block,
5039         not just the block.
5040         * blockframe.c (get_frame_block, get_current_block): Same.
5041         * frame.h (get_frame_block, get_current_block,
5042         get_selected_block): Update declarations.
5043         * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
5044         linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
5045
5046 2002-04-05  Michael Snyder  <msnyder@redhat.com>
5047
5048         * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
5049         warning message.
5050
5051 2002-04-05  J. Brobecker  <brobecker@gnat.com>
5052
5053         * utils.c (xfullpath): New function.
5054         * defs.h (xfullpath): Add declaration.
5055         * source.c (openp): Use xfullpath in place of gdb_realpath to
5056         avoid resolving the basename part of filenames when the
5057         associated file is a symbolic link. This fixes a potential
5058         inconsistency between the filenames known to GDB and the
5059         filenames it prints in the annotations.
5060         * symtab.c (lookup_symtab): Use the new xfullpath function, in order
5061         to be able to match a filename with either the real filename, or
5062         the name of any symbolic link to this file.
5063         (lookup_partial_symtab): Ditto.
5064
5065 2002-04-04  Michael Snyder  <msnyder@redhat.com>
5066
5067         * breakpoint.c: Add support for hardware breakpoints in overlays.
5068         (overlay_events_enabled): New state variable.
5069         (insert_breakpoints): Use overlay_events_enabled to decide
5070         whether to attempt to set a breakpoint at the overlay load addr.
5071         Handle bp_hardware_breakpoint as well as bp_breakpoint.
5072         (remove_breakpoint): Use overlay_events_enabled to decide
5073         whether breakpoints need to be removed from overlay load addr.
5074         Handle bp_hardware_breakpoint as well as bp_breakpoint.
5075         (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
5076         (create_overlay_event_breakpoint, enable_overlay_breakpoints,
5077         disable_overlay_breakpoints): Update overlay_events_enabled.
5078
5079 2002-04-04  Daniel Jacobowitz  <drow@mvista.com>
5080
5081         * dwarf2read.c (struct function_range): New.
5082         (cu_first_fn, cu_last_fn, cu_cached_fn): New.
5083         (check_cu_functions): New.
5084         (read_file_scope): Initialize global function lists.
5085         Call dwarf_decode_line after processing children.
5086         (read_func_scope): Add to global function list.
5087         (dwarf_decode_lines): Call check_cu_functions everywhere
5088         record_line is called.  Call record_line with a linenumber
5089         of 0 to mark sequence ends.
5090
5091 2002-04-04  Michal Ludvig  <mludvig@suse.cz>
5092
5093         * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
5094         change sync with glibc.
5095
5096 2002-04-03  Jim Blandy  <jimb@redhat.com>
5097
5098         * configure.in: Call AC_C_INLINE.
5099         * configure: Regenerated.
5100
5101 2002-04-01  Daniel Jacobowitz  <drow@mvista.com>
5102
5103         * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
5104         and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
5105
5106 2002-03-31  Mark Kettenis  <kettenis@gnu.org>
5107
5108         * NEWS: Mention gcore support on FreeBSD/i386.
5109
5110         * fbsd-proc.c: New file.
5111         * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
5112         * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
5113
5114         * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
5115         while statement.
5116
5117 2002-03-29  Jim Blandy  <jimb@redhat.com>
5118
5119         * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
5120         unescaped newlines in string literals, but newer ones don't.  So
5121         escape them.
5122
5123 2002-03-26  Michael Snyder  <msnyder@redhat.com>
5124             Andrew Cagney <cagney@redhat.com>
5125
5126         * cli/cli-dump.c: New file.  Dump memory to file,
5127         restore file to memory.
5128         * cli/cli-dump.h: New file.
5129         * Makefile.in: Add rules, dependencies for cli-dump.o.
5130         * NEWS: Mention new commands.
5131
5132 2002-03-28  Michael Snyder  <msnyder@redhat.com>
5133
5134         * symfile.c (symbol_file_add): Move test for null symbols to later.
5135
5136 2002-03-27  Andrew Cagney  <ac131313@redhat.com>
5137
5138         From veksler at il.ibm.com:
5139         * utils.c (gdb_realpath): If canonicalize_file_name fails, return
5140         the xstrduped original path.
5141         Fix PR gdb/417.
5142
5143 2002-03-27  Michael Snyder  <msnyder@redhat.com>
5144
5145         * breakpoint.c (_initialize_breakpoint): Clean up help string.
5146         * infcmd.c (_initialize_infcmd): Ditto.
5147         * language.c (_initialize_language): Ditto.
5148         * symfile.c (_initialize_symfile): Ditto.
5149         * top.c (_init_main): Ditto.
5150         * cli/cli-cmds.c (init_cli_cmds): Ditto.
5151
5152 2002-03-27  Elena Zannoni  <ezannoni@redhat.com>
5153
5154         * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
5155         vector registers handling.
5156         (skip_prologue): Handle new AltiVec instructions.  Fill in new
5157         fields of frame data.
5158         (frame_get_saved_regs): Fill in information for AltiVec registers.
5159
5160 2002-03-27  Jim Blandy  <jimb@redhat.com>
5161
5162         * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
5163         a function; leave this macro here to invoke that function.
5164         (symbol_init_mangled_name): Declaration for that function.
5165         * symtab.c (symbol_init_mangled_name): New function.
5166
5167 2002-03-27  Andrew Cagney  <ac131313@redhat.com>
5168
5169         * valarith.c: Replace strerror with safe_strerror.
5170         * tracepoint.c: Ditto.
5171         * lin-lwp.c: Ditto.
5172         * go32-nat.c: Ditto.
5173         * inflow.c: Ditto.
5174         * gnu-nat.c: Ditto.
5175
5176 2002-03-27  Andreas Schwab  <schwab@suse.de>
5177
5178         * event-top.c (command_line_handler): Remove useless if.
5179
5180 2002-03-27  Andreas Jaeger  <aj@suse.de>
5181
5182         * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
5183         comment.
5184
5185 2002-03-27  Michal Ludvig  <mludvig@suse.cz>
5186
5187         * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
5188         (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
5189         * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
5190         (x86_64_linux_dr_get_status, supply_gregset),
5191         (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
5192         * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
5193         (x86_64_register_info_table): Add.
5194         (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
5195         (x86_64_register_raw_size, x86_64_register_virtual_type),
5196         (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
5197         general x86_64_register_info_table.
5198         (i386_gdbarch_init): gdbarch_register_bytes is now set
5199         dynamicaly during initialization.
5200         * regformats/reg-x86-64.dat: Synced with changes to registers above.
5201         * gdbserver/linux-x86-64-low.c: Ditto.
5202
5203 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
5204
5205         * gdbserver/server.c (main): Call target_signal_to_host_p
5206         and target_signal_to_host on signals received from the remote.
5207         * gdbserver/remote-utils.c (prepare_resume_reply): Call
5208         target_signal_from_host on signals sent to the remote.
5209         * gdbserver/server.h: Add prototypes.  Include "gdb/signals.h".
5210         * gdbserver/Makefile.in: Add signals.o.  Add -I${INCLUDE_DIR}.
5211
5212 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
5213
5214         * signals/signals.c: Include "server.h" in gdbserver build.
5215         (target_signal_from_name): Don't use STREQ.
5216         (_initialize_signals): Likewise.  Don't include function in
5217         gdbserver build.
5218
5219 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
5220
5221         * signals.c: Moved to...
5222         * signals/signals.c: Here.
5223         * Makefile (signals.o): Update.
5224
5225 2002-03-26  Jeff Law (law@redhat.com)
5226
5227         * somread.c (som_symtab_read): Remove some commented out code and
5228         updated related comments.  Do not set the minimal symbol table to
5229         mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
5230         in a dynamic executable.
5231         * hppa-tdep.c (find_proc_framesize): Sanely handle the case
5232         where we are unable to find the minimal symbol for the given
5233         PC value.
5234
5235 2002-03-25  Jeff Law (law@redhat.com)
5236
5237         * linux-proc.c (read_mapping): Scan up to end of line for filename.
5238
5239 2002-03-25  Michal Ludvig  <mludvig@suse.cz>
5240
5241         * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
5242
5243 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
5244
5245         * command.h: Update copyright.
5246         (struct cmd_list_element): Replace definition with opaque
5247         declaration.
5248         (enum cmd_types): Document that it will eventually be moved to
5249         cli/cli-decode.h
5250         (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
5251         (MALLOCED_REPLACEMENT): Delete macro.
5252         * Makefile.in (cli_decode_h): Add $(command_h).
5253         (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
5254         * top.c: Include "cli/cli-decode.h".
5255         * completer.c: Include "cli/cli-decode.h".
5256         * maint.c: Include "cli/cli-decode.h".
5257         * cli/cli-decode.h: Include "command.h".
5258         (enum command_class): Delete.
5259         (enum cmd_types): Comment out.
5260         (enum cmd_auto_boolean): Delete.
5261         (enum var_types): Delete.
5262
5263 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
5264
5265         * cli/cli-decode.c: Include "gdb_assert.h".
5266         (add_set_or_show_cmd): New static function.
5267         (add_set_cmd): Rewrite.  Use add_set_or_show_cmd.
5268         (add_show_from_set): Rewrite. Use add_set_or_show_cmd.  Don't copy
5269         all fields, such as func, from the set command.
5270
5271 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
5272
5273         * MAINTAINERS (sh-elf): Change warning flag to -w.
5274
5275 2002-03-23  Andrew Cagney  <cagney@redhat.com>
5276
5277         * defs.h (error): Add printf format attribute.
5278         * thread-db.c (thread_from_lwp): Fix error format string.
5279         * stack.c (parse_frame_specification): Ditto.
5280         * cli/cli-decode.c (undef_cmd_error): Ditto.
5281         * scm-lang.c (scm_lookup_name): Ditto.
5282         * tracepoint.c (trace_error): Ditto.
5283         * remote-utils.c (usage): Ditto.
5284         * remote.c (compare_sections_command): Ditto.
5285         Fix PR gdb/328.
5286
5287 2002-03-22  Andrew Cagney  <ac131313@redhat.com>
5288
5289         * gdbtypes.c (append_composite_type_field): New function.
5290         (init_composite_type): New function.
5291         * gdbtypes.h (append_composite_type_field): Declare.
5292         (init_composite_type): Ditto.
5293
5294 2002-03-22  Elena Zannoni  <ezannoni@redhat.com>
5295
5296         * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
5297         function.
5298         * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
5299         * rs6000-tdep.c (rs6000_gdbarch_init): Use different
5300         structure returning convention for SYSV ABI case, but not
5301         for GNU/Linux, FreeBSD, or NetBSD.
5302
5303 2002-03-22  Daniel Jacobowitz  <drow@mvista.com>
5304
5305         * symtab.h (lookup_block_symbol): Add mangled_name argument
5306         to prototype.
5307
5308         * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
5309         with new mangled_name argument.
5310         * linespec.c (decode_line_1): Likewise.
5311         * valops (value_of_this): Likewise.
5312         * symtab.c (lookup_transparent_type): Likewise.
5313         (lookup_symbol_aux): Likewise.  Accept new mangled_name argument.
5314         (lookup_symbol): If we are given a mangled name, pass it down
5315         to lookup_symbol_aux.
5316         (lookup_block_symbol): If we are given a mangled name to check
5317         against, only return symbols which match it.
5318
5319 2002-03-22  Christopher Faylor  <cgf@redhat.com>
5320
5321         * win32-nat.c (child_create_inferior): Check for proper shell to use
5322         here, in case the user changes it on the fly.
5323         (_initialize_inftarg): Remove shell path considerations.
5324
5325 2002-03-21  Elena Zannoni  <ezannoni@redhat.com>
5326
5327         * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
5328         for gdbarch_max_register_raw_size and max_register_virtual_size.
5329         Adjust copyright year.
5330
5331 2002-03-21  Daniel Jacobowitz  <drow@mvista.com>
5332
5333          * dbxread.c (process_one_symbol): Extend the first N_SLINE
5334          in a function to cover the entire beginning of the function
5335          as well if it does not already.
5336
5337 2002-03-21  Tom Rix  <trix@redhat.com>
5338
5339         * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
5340         (rs6000_ptrace64): Renamed from ptrace64.
5341
5342 2002-03-20  Martin M. Hunt  <hunt@redhat.com>
5343
5344         * gdbserver/remote-utils.c (remote_open): Don't call
5345         getprotobyname, we're all using TCP here so just use
5346         IPPROTO_TCP.
5347         * gdbserver/gdbreplay.c (remote_open): Ditto.
5348
5349 2002-03-20  Martin M. Hunt  <hunt@redhat.com>
5350
5351         * regcache.c (_initialize_regcache): No need to call
5352         build_regcache() at this time; it gets called whenever
5353         the gdbarch changes.
5354
5355 2002-03-20  David O'Brien  <obrien@FreeBSD.org>
5356
5357         * sparc-nat.c:  Include sys/param.h where possible.
5358
5359 2002-03-20  Daniel Jacobowitz  <drow@mvista.com>
5360
5361         Fix PR gdb/422.
5362         * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
5363         FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
5364         * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
5365         complex types.
5366         * stabsread.c (rs6000_builtin_type): Likewise.
5367         (read_sun_floating_type): Likewise.
5368
5369 2002-03-19  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
5370
5371         * stabsread.c (read_member_functions): Remove skip code for duplicate
5372         constructor/destructor methods.  Use standard parsing for these
5373         methods and just do not chain them to the list of methods after
5374         parsing.
5375
5376 2002-03-19  Alexandre Oliva  <aoliva@redhat.com>
5377
5378         * coffread.c: Remove redundant static declarations.  Replace
5379         occurrences of `PTR' with `void *'.
5380         * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
5381         * top.h (quit_cover): Likewise.
5382         * defs.h (catch_errors): Likewise.
5383
5384 2002-03-18  Andrew Cagney  <ac131313@redhat.com>
5385
5386         * defs.h (XMALLOC): Define.
5387         * gdb-events.sh (XMALLOC): Delete macro.
5388         * gdb-events.c, gdb-events.h: Regenerate.
5389         * gdbarch.sh (XMALLOC): Delete macro.
5390         * gdbarch.c: Regenerate.
5391         * serial.c (XMALLOC): Delete macro.
5392         * ui-file.c (XMALLOC): Ditto.
5393         * ser-unix.h (XMALLOC): Ditto.
5394         * sh-tdep.c (XMALLOC): Ditto.
5395         * ui-out.c (XMALLOC): Ditto.
5396         * utils.c (XMALLOC): Ditto.
5397         * i386-tdep.c (XMALLOC): Ditto.
5398         * gdb-events.c (XMALLOC): Ditto.
5399         * d10v-tdep.c (XMALLOC): Ditto.
5400         * cli-out.c (XMALLOC): Ditto.
5401
5402         * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
5403         * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
5404         * ui-file.c, ui-out.c: Ditto.
5405
5406 2002-03-18  Andrew Cagney  <ac131313@redhat.com>
5407
5408         * command.h (struct cmd_list_element): Add field context.
5409         (set_cmd_context, get_cmd_context): Declare.
5410         * cli/cli-decode.h: Ditto.
5411         * cli/cli-decode.c (get_cmd_context): New function.
5412         (set_cmd_context): New function.
5413         (add_cmd): Initialize context.
5414         Part of fixing PR gdb/145 and PR gdb/146.
5415
5416 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
5417
5418         * cli/cli-decode.c (cmd_type): New function.
5419         * command.h (cmd_type): Declare.
5420         * infrun.c (set_schedlock_func): Call function cmd_type.
5421         * kod.c (kod_set_os): Call cmd_type.
5422         * cris-tdep.c (cris_version_update): Use function cmd_type.
5423         (cris_mode_update, cris_abi_update): Ditto.
5424
5425         * command.h: (execute_cmd_post_hook): Declare.
5426         (execute_cmd_pre_hook): Declare.
5427         * cli/cli-script.c (clear_hook_in_cleanup): New function.
5428         (execute_cmd_post_hook, execute_cmd_pre_hook): New
5429         functions. Execute pre/post hook while ensuring that afterwords
5430         hook_in is cleared.
5431         * top.c (execute_command): Use execute_cmd_post_hook, and
5432         execute_cmd_pre_hook to execute pre/post commands.
5433         * infrun.c (normal_stop): Pass stop_command and not pre_hook to
5434         hook_stop_stub.
5435         (hook_stop_stub): Call execute_cmd_pre_hook.
5436
5437 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
5438
5439         * kod.c (kod_set_os): Revert previous change.  Is called by ``info
5440         set'' and this leads to a core dump.  Move xstrdup of
5441         operating_system to after check that it is not NULL.
5442
5443 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
5444
5445         * kod.c (kod_set_os): Remove unnecessary check that
5446         ``command->type'' is set_cmd.
5447
5448         * valprint.c (set_input_radix): Use input_radix.
5449         (set_output_radix): Use output_radix.
5450         (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
5451         isn't reverted.
5452
5453 2002-03-16  Andrew Cagney  <ac131313@redhat.com>
5454
5455         * value.h (struct value): Delete field ``substring_addr''.  Change
5456         aligner fields to force_doublest_align, force_longest_align,
5457         force_core_addr_align and force_pointer_aligh.
5458
5459         * value.h (struct value): Fix typo in above change.
5460
5461 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
5462
5463         * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
5464         to fix internal_error from ``maintenance print architecture''.
5465
5466 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
5467
5468         * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
5469         for gcc versions after gcc-2.8.1.
5470
5471 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
5472
5473         * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
5474         for method resolution.  Restore adjustment of ``this'' pointer after
5475         calling value_struct_elt, which was accidentally removed during the
5476         HP merge.
5477
5478 2002-03-15  Andrew Cagney  <ac131313@redhat.com>
5479
5480         * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
5481         value_of_register.
5482         * findvar.c (value_of_register): Add ``frame'' parameter.  Pass to
5483         get_saved_register.
5484         * value.h (value_of_register): Update.
5485
5486 2002-03-14  Richard Henderson  <rth@redhat.com>
5487
5488         * configure.in: Detect declaration for canonicalize_file_name.
5489         * utils.c (canonicalize_file_name): Declare, if needed.
5490         (gdb_realpath): Prefer realpath if available and usable.
5491         * config.in, configure: Rebuild.
5492
5493 2002-03-14  Richard Henderson  <rth@redhat.com>
5494
5495         * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
5496         a constant array bound.
5497
5498         * MAINTAINERS: Add myself to write-after-approval.
5499
5500 2002-03-14  Michael Snyder  <msnyder@redhat.com>
5501
5502         * symfile.c (syms_from_objfile): Return immediately if no syms.
5503         (symbol_file_add): Return immediately if no syms.
5504         (find_sym_fns): Return immediately if no syms.
5505
5506 2002-03-13  Michal Ludvig  <mludvig@suse.cz>
5507
5508         * gdbserver/remote-util.c (remote_open): Print remote-side's
5509         IP address when remote debugging over the network.
5510
5511 2002-03-12  David O'Brien  <obrien@FreeBSD.org>
5512
5513         * config/sparc/fbsd.mh: Fix copyright.
5514         * config/sparc/fbsd.mt: Likewise.
5515
5516 2002-03-11  Richard Earnshaw  <rearnsha@arm.com>
5517
5518         * MAINTAINERS: Fix typo in name of gdb warnings option.
5519         (x86-64): Fix formating so that this can be parsed by awk.
5520
5521 2002-03-10  Daniel Jacobowitz  <drow@mvista.com>
5522
5523         * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
5524         * defs.h: Include "gdb/signals.h".
5525         (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
5526
5527 2002-03-10  Michal Ludvig  <mludvig@suse.cz>
5528
5529         * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
5530         * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
5531         from x86-64-tdep.h
5532
5533 2002-03-10  Daniel Jacobowitz  <drow@mvista.com>
5534             Don Howard <dhoward@redhat.com>
5535
5536         * mips-tdep.c (ST0_FR): Define.
5537         (mips2_fp_compat): New function, temporarily disabled.
5538         (mips_read_fp_register_single): New function.
5539         (mips_read_fp_register_double): New function.
5540         (mips_print_register): Use them.
5541         (do_fp_register_row): Likewise.
5542
5543 2002-03-09  Andrew Cagney  <ac131313@redhat.com>
5544
5545         * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
5546         approval''.
5547
5548 2002-03-08  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
5549
5550         * stabsread.c (read_member_functions): Fix is_stub test for
5551         static member functions, improve comment.
5552
5553 2002-03-07  Richard Earnshaw  <rearnsha@arm.com>
5554
5555         * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
5556         (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
5557         (_initialize_remote_rdi): Use add_set_boolean_cmd to register
5558         commands that set boolean values.
5559         (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
5560         (arm_rdi_resume): Always initialize PC.
5561         (arm_rdi_open): Don't use rslt as a boolean.
5562         (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
5563         (arm_rdi_fetch_registers, arm_rdi_store_registers)
5564         (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
5565         (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
5566
5567 2002-03-06  Alexandre Oliva  <aoliva@redhat.com>
5568
5569         * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
5570         * configure: Rebuilt.
5571
5572 2002-03-06  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
5573
5574         * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
5575         (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
5576
5577 2002-03-06  Andrew Cagney  <ac131313@redhat.com>
5578
5579         * cli/cli-decode.c (set_cmd_completer): New function.
5580         * command.h (set_cmd_completer): Declare.
5581         * cli/cli-decode.h (set_cmd_completer): Ditto.
5582
5583         * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
5584         * cli/cli-cmds.c (init_cli_cmds): Ditto.
5585         * win32-nat.c (_initialize_inftarg): Ditto.
5586         * remote-rdi.c (_initialize_remote_rdi): Ditto.
5587         * proc-api.c (_initialize_proc_api): Ditto.
5588         * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
5589         * source.c (_initialize_source): Ditto.
5590         * exec.c (_initialize_exec): Ditto.
5591         * solib.c (_initialize_solib): Ditto.
5592         * top.c (init_main): Ditto.
5593         * tracepoint.c (_initialize_tracepoint): Ditto.
5594         * symfile.c (_initialize_symfile): Ditto.
5595         * printcmd.c (_initialize_printcmd): Ditto.
5596         * infcmd.c (_initialize_infcmd): Ditto.
5597         * corefile.c (_initialize_core): Ditto.
5598
5599 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
5600
5601         * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
5602
5603 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
5604
5605         * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
5606
5607 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
5608
5609         * NEWS: Update headings, 5.2 has branched.
5610
5611 2002-03-04  Daniel Jacobowitz  <drow@mvista.com>
5612
5613         * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
5614         (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
5615         (register_addr, REGISTER_RAW_SIZE): Likewise.
5616         (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
5617         * gdbserver/linux-x86-64-low.c: Remove extra #endif.
5618
5619 2002-03-03  Michal Ludvig <mludvig@suse.cz>
5620
5621         * MAINTAINERS (x86-64): Add myself.
5622         * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
5623         changed value_ptr -> struct value *
5624
5625 2002-03-01  David O'Brien  <obrien@FreeBSD.org>
5626
5627         * configure.host (sparc64-*-freebsd): Add.
5628         * configure.tgt: Likewise.
5629         * config/sparc/fbsd.mh: New file.
5630         * config/sparc/fbsd.mt: Likewise.
5631         * config/sparc/nm-fbsd.h: Likewise.
5632         * config/sparc/tm-fbsd.h: Likewise.
5633
5634 2002-03-01  Daniel Jacobowitz  <drow@mvista.com>
5635
5636         * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
5637         regformats/reg-s390x.dat.
5638
5639 2002-03-01  Andrew Cagney  <ac131313@redhat.com>
5640
5641         * utils.c: Add FIXME explaining true/false problem.
5642
5643 2002-02-28  Andrew Cagney  <ac131313@redhat.com>
5644
5645         * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
5646
5647 2002-02-28  Michael Chastain  <mec@shout.net>
5648
5649         * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
5650
5651 2002-02-28  Daniel Jacobowitz  <drow@mvista.com>
5652
5653         * gdbserver/linux-s390-low.c: New file.
5654         * regformats/reg-s390.dat: New file.
5655         * regformats/reg-s390x.dat: New file.
5656         * gdbserver/configure.srv: Add S/390.
5657         * gdbserver/Makefile.in: Add S/390.
5658         * configure.tgt: Enable gdbserver for S/390.
5659
5660 2002-02-28  Eli Zaretskii  <eliz@is.elta.co.il>
5661
5662         * go32-nat.c (_initialize_go32_nat): Don't use periods in the
5663         first line of the doc string for "info dos", except at the end of
5664         the sentence, since the short help stops at the first period.
5665
5666 2002-02-28  Jason Merrill  <jason@redhat.com>
5667
5668         * dwarf2read.c (dwarf_cfi_name): Add new codes.
5669
5670 2002-02-27  Fred Fish  <fnf@redhat.com>
5671
5672         * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
5673         comment (dumy -> dummy).
5674
5675 2002-02-27  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
5676
5677         * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
5678
5679 2002-02-27  Rodney Brown  <rbrown64@csc.com.au>
5680
5681       * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
5682
5683 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
5684
5685         * gdbserver/acconfig.h: New file.
5686         * gdbserver/i387-fp.c: New file.
5687         * gdbserver/i387-fp.h: New file.
5688         * gdbserver/linux-x86-64.c: New file.
5689         * regformats/reg-x86-64.dat: New file.
5690         * configure.tgt: Add x86_64-*-linux* gdbserver support.
5691         * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
5692         * gdbserver/configure.in: Add support for regsets.
5693         * gdbserver/config.in: Regenerate.
5694         * gdbserver/configure: Regenerate.
5695         * gdbserver/Makefile.in: Likewise.  Add $(linux_low_h).
5696         * gdbserver/linux-low.h: New file.
5697         * gdbserver/linux-low.c: Include "linux-low.h".  Add support
5698         for regsets.
5699         * gdbserver/linux-arm-low.c: Include "linux-low.h".
5700         * gdbserver/linux-ia64-low.c: Include "linux-low.h".
5701         * gdbserver/linux-m68k-low.c: Include "linux-low.h".
5702         * gdbserver/linux-mips-low.c: Include "linux-low.h".
5703         * gdbserver/linux-ppc-low.c: Include "linux-low.h".
5704         * gdbserver/linux-sh-low.c: Include "linux-low.h".
5705         * gdbserver/linux-i386-low.c: Include "linux-low.h".  Include
5706         "i387-fp.h".  Add PTRACE_GETREGS and friends.
5707         * gdbserver/regcache.c (supply_register): New function.
5708         (supply_register_by_name): New function.
5709         (collect_register): New function.
5710         (collect_register_by_name): New function.
5711
5712 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
5713
5714         * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
5715         (config.status): Add configure.srv dependency.
5716         (server_h): Add config.h dependency.
5717
5718 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
5719
5720         * regformats/reg-i386-linux.dat: New file, with $orig_eax.
5721         * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
5722         * gdbserver/configure.srv: Change i386-*-linux* to use
5723         reg-i386-linux.o.
5724
5725 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
5726
5727         * x86-64-tdep.c: Re-indent.  Update copyright date.
5728
5729 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
5730
5731         From Michal Ludvig <mludvig@suse.cz>:
5732         * x86-64-tdep.c (value.h): Delete.
5733         (gdb_assert.h): Include.
5734         (x86_64_register_convert_to_virtual,
5735         x86_64_register_convert_to_raw ): Add check which lets only
5736         floating-point values to be converted.
5737         (value_push): Delete.
5738         (x86_64_push_arguments): Order of arguments pushed on stack fixed.
5739         (i386_gdbarch_init): Number of register_bytes fixed.
5740
5741 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
5742
5743         * MAINTAINERS: Add x86-64 target.
5744
5745 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
5746
5747         * memattr.c (mem_command): Eliminate ``true'' and ``false''.
5748         * osfsolib.c (solib_map_sections): Ditto.
5749         * irix5-nat.c (solib_map_sections): Ditto.
5750         * corelow.c (gdb_check_format): Ditto.
5751         * symfile.c (symfile_bfd_open): Ditto.
5752         * solib.c (solib_map_sections): Ditto.
5753         Fix PR gdb/354.
5754
5755 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
5756
5757         * remote.c (_initialize_remote): By default, disable ``e'' and
5758         ``E'' step out-of-range packets.
5759
5760 2002-02-26  Andreas Schwab  <schwab@suse.de>
5761
5762         * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
5763         m68k_linux_frame_saved_pc.
5764         (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
5765         in_sigtramp.
5766         (SIGCONTEXT_PC_OFFSET): Remove.
5767         * m68klinux-nat.c (m68k_linux_frame_saved_pc,
5768         m68k_linux_sigtramp_saved_pc): New functions.
5769         (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
5770         (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
5771         (UCONTEXT_PC_OFFSET): Define.
5772         (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
5773         non-RT and RT signal trampolines.
5774
5775 2002-02-26  Richard Earnshaw  <rearnsha@arm.com>
5776
5777         * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
5778         (TARGET_NBPG, STACK_END_ADDR): Delete
5779         (VARIABLES_INSIDE_BLOCK): Delete.
5780
5781 2002-02-25  Andrew Cagney  <ac131313@redhat.com>
5782
5783         * utils.c (perror_with_name): Make string parameter constant.
5784         (print_sys_errmsg): Ditto.
5785         (query): Ditto.
5786         * defs.h (perror_with_name): Update.
5787         (print_sys_errmsg): Update.
5788         (query): Update.
5789
5790 2002-02-25  Daniel Jacobowitz  <drow@mvista.com>
5791
5792         From Eliot Dresselhaus <eliot@ayrnetworks.com>:
5793         * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
5794
5795 2002-02-25  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
5796
5797         * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
5798         if it already matches the current architecture from the exec file.
5799         Include arch-utils.h for gdbarch_info_init prototype.
5800         * Makefile.in (rs6000-nat.o): Update dependencies.
5801
5802 2002-02-25  Eli Zaretskii  <eliz@is.elta.co.il>
5803
5804         * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
5805          list of exported variables.
5806
5807 2002-02-24  Daniel Jacobowitz  <drow@mvista.com>
5808
5809         * gdbserver/configure.srv: New file.
5810         * gdbserver/configure.in: Use configure.srv instead
5811         of the host/target makefile fragments.  Set GDBSERVER_DEPFILES
5812         from it.
5813         * gdbserver/configure: Regenerated.
5814         * gdbserver/terminal.h: New file.
5815         * gdbserver/Makefile.in: Update for configure changes.  Remove
5816         more unneeded include paths.
5817
5818 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
5819
5820         From wiz at danbala:
5821         * config/sparc/tm-sp64.h: Fix grammar and typos.
5822         Fix PR gdb/287.
5823
5824 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
5825
5826         * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
5827         with either ``GNU/Linux'' or ``Linux kernel''.  Update copyright.
5828         * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
5829         * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
5830         * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
5831         * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
5832         * s390-tdep.c: Ditto.
5833         * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
5834         * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
5835         * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
5836         * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
5837         * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
5838         * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
5839         * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
5840         * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
5841         * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
5842         * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
5843         Fix PR gdb/378.
5844
5845 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
5846
5847         * lin-thread.c: Delete file.
5848         * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
5849         to gdb_proc_service.h.
5850         * configure: Re-generate.
5851
5852         * ocd.c (ocd_open): Do not try to open the "ocd" device.
5853         * serial.c (serial_open): Delete check for "ocd".
5854         Fix PR gdb/349.
5855
5856         * Makefile.in (linux-thread.o): Delete target.
5857         * linux-thread.c: Delete file.
5858
5859         * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c.  Tweak other
5860         renamed SH files to be consistent.
5861
5862         * symtab.c (sort_search_symbols): Use xfree.
5863
5864 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
5865
5866         * arm-linux-tdep.c (arm_linux_init_abi): Register
5867         IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
5868         * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
5869         definition with undef, since we don't want the sysvr4 definition.
5870         (SKIP_TRAMPOLINE_CODE): Likewise.
5871
5872 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
5873
5874         From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
5875
5876         * configure.in: (AC_CHECK_FUNCS) Added test for
5877         canonicalize_file_name Regenerated.
5878         * config.in, configure: Regenerated.
5879         * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
5880         defined use canonicalize_file_name.
5881
5882 2002-02-23  Michael Chastain  <mec@shout.net>
5883
5884         * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
5885
5886 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
5887
5888         * README: Remove references to cygnus.com.
5889         * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
5890         dot com'' form.  Remove references to cygnus.com and sourceware.
5891
5892 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
5893
5894         From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
5895         * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
5896         1003.1-2001 no longer allows "head -1".
5897         * gdb/Makefile.in (version.c): Likewise.
5898         * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
5899         * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
5900         equivalent.  POSIX 1003.1-2001 no longer allows "diff -c3".
5901
5902 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
5903
5904         * cli/cli-decode.c (cmd_cfunc_eq): New function.
5905         * command.h (cmd_cfunc_eq): Declare.
5906         * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
5907
5908         * cli/cli-cmds.h (is_complete_command): Change parameter to a
5909         ``struct cmd_list_element *''.
5910         * cli/cli-cmds.c (is_complete_command): Update.  Use
5911         cmd_cfunc_eq.
5912         * top.c (execute_command): Pass the command to
5913         is_complete_command.
5914         * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
5915
5916 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
5917
5918         From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
5919         * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
5920         architecture defines.
5921         * s390-tdep.c (s390_gdbarch_init): Likewise.
5922
5923 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
5924
5925         * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
5926         (arm_linux_push_arguments): Likewise.
5927         (arm_linux_init_abi): Register them.  Also register linux-specific
5928         call_dummy_words.
5929         (find_minsym_and_objfile): Use strcmp, not STREQ.
5930         * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
5931         (arm_linux_call_dummy_words): Delete declaration.
5932         (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
5933         (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
5934         declarations.
5935         (LOWEST_PC): Delete.
5936
5937 2002-02-23  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
5938
5939         * maint.c (print_section_info): Do not prepend `0x' to filepos
5940         output, it will be handled by local_hex_string_custom.
5941
5942 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
5943
5944         * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
5945         (store_newfpe_double, store_newfpe_extended, store_fpregister)
5946         (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
5947
5948 2002-02-22  Jim Blandy  <jimb@redhat.com>
5949
5950         Indicate that the bcache functions don't change the strings
5951         they're passed.
5952         * bcache.h (bcache, hash): Add `const' keywords to declarations.
5953         * bcache.c (bcache, hash): Add `const' keywords to definitions.
5954
5955 2002-02-22  Pierre Muller  <muller@ics.u-strasbg.fr>
5956
5957         * win32-nat.c (child_create_inferior): Fix create flags setting bug.
5958
5959 2002-02-21  Christopher Faylor  <cgf@redhat.com>
5960
5961         * win32-nat.c (register_loaded_dll): Just use raw name when we can't
5962         find the complete path to a loaded DLL.
5963
5964 2002-02-21  Fred Fish  <fnf@redhat.com>
5965
5966         * dbxread.c (process_one_symbol): When finding an N_FUN symbol
5967         that marks the end of the range of a function, enter a line number
5968         entry that has a line number of zero and a PC offset that matches
5969         the end of the function.  This starts a range of PC's for which no
5970         line number information is known.
5971         * symtab.c (find_pc_sect_line): If our best fit is in a range of
5972         PC's for which no line number info is found (line number is zero)
5973         then we didn't find any valid line information.
5974         * symtab.h: Document use of zero line number entry.
5975
5976 2002-02-21  Elena Zannoni  <ezannoni@redhat.com>
5977
5978         * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
5979         (have_ptrace_getvrregs): Define for run time checks.
5980         (gdb_vrregset_t): New type for Altivec register handling.
5981         (fetch_register, store_register): Fetch/store altivec register
5982         when needed.
5983         (fetch_altivec_register, store_altivec_register): New functions.
5984         (supply_vrregset, fill_vrregset): New functions.
5985         (fetch_altivec_registers, store_altivec_registers): New functions.
5986         (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
5987         registers as well.
5988
5989 2002-02-21  Jiri Smid  <smid@suse.cz>
5990
5991         * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
5992
5993 2002-02-21  Richard Earnshaw  <rearnsha@arm.com>
5994
5995         * Makefile.in (armnbsd-nat.o): Update dependencies.
5996         * armnbsd-nat.c (supply_gregset): New function.  Common code to
5997         supply the integer register set.
5998         (supply_fparegset): New function.  Similar for FPA registers.
5999         (fetch_regs, fetch_fp_regs): Use them.
6000         (fetch_core_registers): Likewise.
6001         (fetch_elfcore_registers): New function.
6002         (arm_netbsd_elfcore_fns): New core-file type specification.
6003         (_initialize_arm_netbsd_nat): Register it.
6004
6005 2002-02-21  Richard Earnshaw  <rearnsha@arm.com>
6006
6007         * armnbsd-nat.c: Include gdbcore.h.
6008         (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
6009         (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
6010         'void' to declaration, to shut up ARI.
6011         (fetch_core_registers): Make static.  Rewrite using supply_register.
6012         (arm_netbsd_core_fns): New core-file type specification.
6013         (_initialize_arm_netbsd_nat): New function.
6014
6015 2002-02-21  Christopher Faylor  <cgf@redhat.com>
6016
6017         * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
6018         value.
6019
6020 2002-02-20  Christopher Faylor  <cgf@redhat.com>
6021
6022         * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
6023         fails.
6024
6025 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
6026
6027         * jv-exp.y (parse_number): Change type of implicit longs
6028         to builtin_type_uint64.
6029
6030 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
6031
6032         * gdbserver/linux-low.c (mywait): Change argument to waitpid
6033         to be an integer instead of a `union wait'.
6034
6035 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
6036
6037         * mips-linux-nat.c: Call the operating system GNU/Linux.
6038         * mips-linux-tdep.c: Likewise.
6039         * mips-tdep.c: Likewise.
6040
6041 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
6042
6043         Fix PR gdb/265.
6044         * jv-exp.y (parse_number): Handle 64-bit integers.
6045
6046 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
6047
6048         * gdbserver/configure.in: Remove AM_PROC_CC_STDC.  Change
6049         AC_STDC_HEADERS to AC_HEADER_STDC.
6050         * gdbserver/configure: Regenerated.
6051
6052 2002-02-20  Richard Earnshaw  <rearnsha@arm.com>
6053
6054         * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
6055         is defined.
6056         * sparc-tdep.c (get_longjmp_target): Likewise.
6057
6058 2002-02-20  Richard Earnshaw  <rearnsha@arm.com>
6059
6060         * News: Add news about ARM and Multi-arch.  Mention the new target
6061         arm*-*-netbsd*.
6062
6063 2002-02-19  Jim Blandy  <jimb@redhat.com>
6064
6065         * stabsread.c (error_type_complaint): Improve error message.
6066
6067 2002-02-19  Daniel Jacobowitz  <drow@mvista.com>
6068
6069         * gdbserver/README: Update documentation.
6070         * gdbserver/configure.in: Update configury to match documentation.
6071         * gdbserver/Makefile.in: Likewise.
6072         * gdbserver/configure: Regenerated.
6073         * gdbserver/aclocal.m4: New file, generated by aclocal.
6074         * gdbserver/config.in: New file, generated by autoheader.
6075
6076 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
6077
6078         * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
6079         armnbsd-nat.c.
6080
6081 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
6082
6083         * arm-tdep.h (enum arm_float_model): New enum.
6084         (struct gdbarch_tdep): Add fp_model.
6085         * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep.  Defer setting
6086         up floating-point conversions until we know the floating-point model
6087         in use by the inferior.  Don't complain about being unable to
6088         determine the ABI of the inferior when we don't have one.
6089         (arm_extract_return_value): Support different floating-point models.
6090         (arm_store_return_value): Likewise.
6091         * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
6092         ARM_FLOAT_SOFT.
6093         (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
6094
6095 2002-02-19  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
6096
6097         * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
6098         of ``current_gdbarch''.
6099
6100 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
6101
6102         * armnbsd-nat.c : ANSIfy all function declarations.
6103         (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
6104         (fetch_inferior_registers): Re-implement in terms of above.
6105         (store_register, store_regs, store_fp_register, store_fp_regs): New.
6106         (store_inferior_registers): Re-implement in terms of above.
6107
6108 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
6109
6110         * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
6111         kernel.
6112         * arm-linux-tdep.c: Likewise.
6113         * config/arm/tm-linux.h: Likewise.
6114
6115 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
6116
6117         * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
6118         * config/arm/nbsd.mt (TM_FILE): Delete.
6119         * config/arm/tm-nbsd.h: Delete.
6120
6121 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
6122
6123         * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
6124         Initialize CALL_DUMMY_LENGTH.
6125
6126 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
6127
6128         * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
6129         function.
6130         (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
6131         * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
6132         defines one thing and that is incorrect for this port.
6133         (IN_SOLIB_CALL_TRAMPOLINE): Delete.
6134
6135 2002-02-18  Pierre Muller  <muller@ics.u-strasbg.fr>
6136
6137         * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
6138
6139 2002-02-18  Pierre Muller  <muller@ics.u-strasbg.fr>
6140
6141         * win32-nat.c (display_selector): New function. Displays information
6142         about the information returned by GetThreadSelectorEntry API function.
6143         (display_selectors): New function. Displays the infomation of
6144         the selector given as argument, or of CS, DS ans FS selectors
6145         if no argument is given.
6146         ( _initialize_inftarg): Add "w32" as info prefix command.
6147         Add "info w32 selector" as command calling display_selectors.
6148
6149 2002-02-19  Pierre Muller  <muller@ics.u-strasbg.fr>
6150
6151         * i386-tdep.c (get_longjmp_target): Fix compilation failure
6152         by setting dummy values to JB_PC and JB_ELEMENT_SIZE
6153         if not defined.
6154
6155 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
6156
6157         * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
6158
6159 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
6160
6161         * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
6162         (arm_fix_call_dummy): Call it.
6163         (arm_call_dummy_breakpoint_offset): Delete.
6164         (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
6165         * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
6166
6167 2002-02-18  Andrew Cagney  <ac131313@redhat.com>
6168
6169         * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
6170         Default to func_frame_chain_valid.
6171         * gdbarch.h, gdbarch.c: Re-generate.
6172         * frame.h (FRAME_CHAIN_VALID): Delete definition.
6173
6174 2002-02-18  Elena Zannoni  <ezannoni@redhat.com>
6175
6176         * ppc-linux-nat.c: Update copyright.
6177         (fetch_register, store_register): Add tid parameter, don't compute
6178         tid here.
6179         (fetch_ppc_registers, store_ppc_registers): Add tid
6180         parameter. Pass it along to callees.
6181         (fetch_inferior_registers, store_inferior_registers): Compute tid
6182         here, and pass it to calleed functions.
6183         (fill_gregset, supply_fpregset): Clean up formatting.
6184
6185 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
6186
6187         * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
6188         * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
6189
6190 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
6191
6192         * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
6193         * gdbarch.c gdbarch.h: Regenerate.
6194         * breakpoint.c (create_longjmp_breakpoint): Always compile this
6195         function.
6196         (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
6197         * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
6198         (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
6199
6200         * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
6201         * arm-tdep.c (arm_get_longjmp_target): New function.
6202         (arm_gdbarch_init): Initialize jb_pc to -1.  If ABI handler changes
6203         this to a positive value register arm_get_longjmp_target as the
6204         longjmp handler.
6205         * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
6206         (arm_linux_init_abi): Set up longjmp description in tdep.
6207         * armnbsd-nat.c (get_longjmp_target): Delete.
6208         * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
6209         description in tdep.
6210         * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
6211         (get_longjmp_target): Delete declaration.
6212         (GET_LONGJMP_TARGET): Delete.
6213         * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
6214         (GET_LONGJMP_TARGET): Delete.
6215
6216 2002-02-17  Kevin Buettner  <kevinb@redhat.com>
6217
6218         From Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>:
6219         * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
6220         of ``current_gdbarch''.
6221
6222 2002-02-17  Tom Tromey  <tromey@redhat.com>
6223
6224         * cli/cli-cmds.c (compare_strings): New function.
6225         (complete_command): Only print each unique item once.
6226         * completer.h (complete_line): Declare.
6227         * completer.c (complete_line): New function.
6228         (line_completion_function): Use it.
6229
6230 2002-02-16  Andrew Cagney  <ac131313@redhat.com>
6231
6232         * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
6233         * gdbarch.h, gdbarch.c: Re-generate.
6234
6235 2002-02-16  Daniel Jacobowitz  <drow@mvista.com>
6236
6237         * valarith.c (value_x_unop): Fix decrement; support post-decrement.
6238
6239 2002-02-16  Daniel Jacobowitz  <drow@mvista.com>
6240
6241         From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
6242         * valops.c (value_arg_coerce): Don't take the address of a reference
6243         to convert an argument to a reference.
6244
6245 2002-02-15  Christopher Faylor  <cgf@redhat.com>
6246
6247         * win32-nat.c (get_image_name): New function.
6248         (handle_load_dll): Use get_image_name function.
6249         (get_child_debug_event): Avoid registering debug events until possibly
6250         execed process is started.
6251         (child_create_inferior): Allow invocation via shell so that command
6252         line redirection, etc.  works ok.
6253         (_initialize_inftarg): Add new command: "set shell" to control whether
6254         a shell is used to start a process.
6255
6256 2002-02-15  Daniel Jacobowitz  <drow@mvista.com>
6257
6258         * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
6259         instead of find_register_by_number.
6260         (cannot_store_register): Likewise.
6261
6262 2002-02-14  Pierre Muller  <muller@ics.u-strasbg.fr>
6263
6264         * dwarf2read.c: Replace fprintf (stderr, ...) by
6265         fprintf_unfiltered (gdb_stderr, ...).
6266
6267 2002-02-15  Daniel Jacobowitz  <drow@mvista.com>
6268
6269         * gdbserver/gdbserver.1: Document --attach.
6270
6271 2002-02-15  Richard Earnshaw  <rearnsha@arm.com>
6272
6273         * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
6274         descriptions.
6275         * arm-tdep.c (arm_default_arm_le_breakpoint)
6276         (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
6277         (arm_default_thumb_be_breakpoint): New.  Initialize them from
6278         traditional breakpoint defines.
6279         (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
6280         (arm_gdbarch_init): Initialize new breakpoint variables.
6281         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
6282         (arm_linux_init_abi): Initialize linux-specific breakpoint.
6283         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
6284         (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
6285         code out to ...
6286         (arm_netbsd_init_abi_common): ... here; new function.
6287         * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
6288         (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
6289         * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
6290         * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
6291
6292 2002-02-15  Richard Earnshaw  <rearnsha@arm.com>
6293
6294         * arm-tdep.h (enum arm_abi): New enum.
6295         (struct gdbarch_tdep): New structure.
6296         (LOWEST_PC): Provide a default.
6297         (arm_gdbarch_register_os_abi): Declare new function.
6298         * arm-tdep.c (arm_abi_names): New array.
6299         (process_note_abi_tag_sections): New function.
6300         (get_elfosabi): New function.
6301         (arm_gdbarch_register_os_abi): New function.
6302         (arm_gdbarch_init): Try to determine the ABI of the inferior.  If
6303         support for that ABI has been built in, then call the appropriate
6304         configuration routine.  Use gdbarch_num_regs() to get the number
6305         of registers.
6306         (arm_dump_tdep): New function.
6307         (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
6308         place-holder functions.
6309         (_initialize_arm_tdep): Register them.
6310         * config/arm/tm-arm.h (LOWEST_PC): Delete.
6311
6312         * armnbsd-tdep.c: New file.
6313         * Makefile.in (armnbsd-tdep.o): Add dependencies.
6314         * config/arm/nbsd.mt (TDEPFILES): Add it.
6315         * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
6316
6317         * armnbsd-nat.c: Include regcache.h.
6318         * Makefile.in (armnbsd-nat.o): Update dependency list.
6319
6320         * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
6321
6322 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
6323
6324         * gdbserver/Makefile.in: Fix typos in target rules.
6325
6326 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
6327
6328         Fix part of PR gdb/267.
6329         * linespec.c (find_methods): Handle constructors specially for now.
6330
6331 2002-02-14  Corinna Vinschen  <vinschen@redhat.com>
6332
6333         * arm-tdep.c (arm_push_arguments): Eliminate special float type
6334         handling.
6335         * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
6336         standard_coerce_float_to_double().
6337
6338 2002-02-14  Christopher Faylor  <cgf@redhat.com>
6339
6340         * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
6341         GDBINIT_FILENAME.
6342
6343 2002-02-14  Elena Zannoni  <ezannoni@redhat.com>
6344
6345         * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
6346         find_variant_by_name, because it confuses the multiarch
6347         framework. Return NULL if there isn't an architecture with the
6348         user supplied name, instead of forcing a different one without
6349         recording the change with the multiarch machinery.
6350         (find_variant_by_name): Delete.
6351
6352 2002-02-14  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
6353
6354         * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
6355         i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
6356
6357 2002-02-13  Martin M. Hunt  <hunt@redhat.com>
6358
6359         * stack.c (print_frame_info_base): When calling
6360         print_frame_info_listing_hook, set current_source_symtab.
6361
6362 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
6363
6364         * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
6365         and remove unused $(INCLUDE_DIR).
6366         Add regcache.c to OBS.
6367         Add generated register protocol files to clean target.
6368         Update dependencies for new objects, obsolete old target code.
6369
6370         * gdbserver/linux-low.c: Remove all platform-specific code to
6371         new files.  Remove various dead code.  Update to use regcache
6372         functionality.
6373         * gdbserver/remote-utils.c (fromhex): Add return statement
6374         to quiet warning.
6375         (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
6376         constant.
6377         (input_interrupt): Add integer parameter to match prototype
6378         of a signal handler.
6379         (outreg): Use register_data ().
6380         (prepare_resume_reply): Use gdbserver_expedite_regs.
6381         * gdbserver/server.c (main): Dynamically allocate own_buf because
6382         PBUFSIZ is no longer constant.  Use registers_to_string () and
6383         registers_from_string ().
6384         * gdbserver/server.h: No longer include "defs.h".  Add prototypes
6385         for error (), fatal (), and warning ().  Update definition of
6386         PBUFSIZ to use regcache functionality.  Add include guard.
6387         * gdbserver/utils.c (fatal): Add missing ``const''.
6388         (warning): New function.
6389
6390         * regformats/regdat.sh: Include "regcache.h" in generated files.
6391         Provide init_registers () function.
6392         * regformats/regdef.h: Add prototype for set_register_cache ().
6393         Add include guard.
6394
6395         * gdbserver/linux-arm-low.c: New file.
6396         * gdbserver/linux-i386-low.c: New file.
6397         * gdbserver/linux-ia64-low.c: New file.
6398         * gdbserver/linux-m68k-low.c: New file.
6399         * gdbserver/linux-mips-low.c: New file.
6400         * gdbserver/linux-ppc-low.c: New file.
6401         * gdbserver/linux-sh-low.c: New file.
6402
6403         * gdbserver/regcache.c: New file.
6404         * gdbserver/regcache.h: New file.
6405
6406         * gdbserver/low-linux.c: Removed obsolete file.
6407
6408 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
6409
6410         * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
6411         * config/i386/linux.mt: Likewise.
6412         * config/ia64/linux.mt: Likewise.
6413         * config/m68k/linux.mh: Likewise.
6414         * config/powerpc/linux.mh: Likewise.
6415         * config/mips/linux.mt: Likewise.
6416
6417         * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
6418
6419         * config/i386/i386lynx.mh: Mark gdbserver variables
6420         as (currently) obsolete for this target.
6421         * config/i386/nbsd.mt: Likewise.
6422         * config/i386/nbsdelf.mt: Likewise.
6423         * config/m32r/m32r.mt: Likewise.
6424         * config/m68k/m68klynx.mh: Likewise.
6425         * config/m68k/nbsd.mt: Likewise.
6426         * config/m68k/sun3os4.mh: Likewise.
6427         * config/mips/vr5000.mt: Likewise.
6428         * config/ns32k/nbsd.mt: Likewise.
6429         * config/pa/hppabsd.mh: Likewise.
6430         * config/pa/hppaosf.mh: Likewise.
6431         * config/powerpc/nbsd.mt: Likewise.
6432         * config/rs6000/rs6000lynx.mh: Likewise.
6433         * config/s390/s390.mt: Likewise.
6434         * config/s390/s390x.mt: Likewise.
6435         * config/sparc/sparclynx.mh: Likewise.
6436         * config/sparc/sun4os4.mh: Likewise.
6437         * config/i386/x86-64linux.mt: Likewise.
6438         * config/sparc/linux.mh: Likewise.
6439
6440 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
6441
6442         * configure.tgt: Configure gdbserver only for known working
6443         targets.  Set ${build_gdbserver} instead of modifying ${configdirs}.
6444         * configure.in: Check ${build_gdbserver}.  Put gdbserver/ into
6445         SUBDIRS if it is configured.  Update comment for ${nativefile}.
6446         * configure: Regenerated.
6447
6448 2002-02-13  Michael Snyder  <msnyder@redhat.com>
6449
6450         * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
6451
6452         * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
6453         (default_gcore_mach): Just return 0, work around a problem in bfd.
6454         (default_gcore_target): OK to return NULL if exec_bfd is null.
6455         (make_mem_sec): Use a cast, avoid a warning.
6456
6457         * procfs.c (find_memory_regions_callback): Use a cast instead of
6458         calling host_pointer_to_address (which complains if
6459         sizeof (host pointer) != sizeof (target pointer)).
6460         (procfs_make_note_section): Avoid overflow in psargs string.
6461
6462         * procfs.c (procfs_make_note_section): Make the default
6463         implementation return an error.
6464
6465 2002-02-13  Rodney Brown  <rbrown64@csc.com.au>
6466
6467         * procfs.c (procfs_make_note_section): Provide a default definition
6468         (for alpha-dec-osf4.0f). Fix typos.
6469
6470 2002-02-13  Elena Zannoni  <ezannoni@redhat.com>
6471
6472         * linux-proc.c: Add include of regcache.h.
6473         * Makefile.in (linux-proc.o): Add dependency on regcache.h.
6474
6475 2002-02-13  Andrew Cagney  <ac131313@redhat.com>
6476
6477         From 2002-01-18 Greg McGary <greg@mcgary.org>:
6478         * memattr.c (create_mem_region): Disallow useless empty region.
6479         Regions are half-open intervals, so allow [A..B) [B..C) as
6480         non-overlapping.
6481
6482 2002-02-13  Michael Chastain <mec@shout.net>
6483
6484         * defs.h: Kill CONST_PTR.
6485         * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
6486         * c-lang.c (c_builtin_types): Likewise.
6487         * ch-lang.c (ch_builtin_types): Likewise.
6488         * f-lang.c (f_builtin_types): Likewise.
6489         * language.c (unknown_builtin_types): Likewise.
6490         * m2-lang.c (m2_builtin_types): Likewise.
6491         * p-lang.c (pascal_builtin_types): Likewise.
6492         * scm-lang.c (c_builtin_types): Likewise.
6493
6494 2002-02-13  Keith Seitz  <keiths@redhat.com>
6495
6496         * arm-tdep.h (arm_get_next_pc): Add declaration.
6497
6498 2002-02-13  Richard Earnshaw  <rearnsha@arm.com>
6499
6500         * arm-tdep.c (arm_use_struct_convention): Make static.  Move to be
6501         with other related struct-returning functions.
6502         (arm_extract_struct_value_address): New function.
6503         (arm_gdbarch_init): Initialize the above in multi-arch vector.  Also
6504         initialize float_format, double_format and long_double_format as
6505         appropriate to the endianness of the target.
6506         * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
6507         (arm_use_struct_convention): Delete declaration.
6508         (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
6509
6510 2002-02-13  Keith Seitz  <keiths@redhat.com>
6511
6512         * defs.h (core_addr_to_string_nz): New function.
6513
6514 2002-02-13  Mark Kettenis  <kettenis@gnu.org>
6515
6516         Apply missing bits of 2002-01-15 patch.
6517         * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
6518         (fill_fpregset): Use i387_fill_fsave.
6519
6520 2002-02-12  Keith Seitz  <keiths@redhat.com>
6521
6522         * utils.c (core_addr_to_string): Use phex instead of phex_nz.
6523         (core_addr_to_string_nz): New function.
6524
6525 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
6526
6527         * arm-linux-nat.c: Really include arm-tdep.h.
6528         * config/arm/tm-linux.h (struct type, struct value): Declare.
6529
6530 2002-02-11  Michael Snyder  <msnyder@redhat.com>
6531
6532         * procfs.c: Include elf-bfd.h (for elfcore_write functions).
6533         (gcore section): Ifdef for Solaris and Unixware only.
6534         (procfs_do_thread_registers): Unixware needs one lwpstatus
6535         per thread (not one prstatus or pstatus).
6536         (procfs_make_note_section): Iterate only over kernel threads (lwps),
6537         not over all gdb threads.  For unixware, call elfcore_write_pstatus
6538         once before iterating over threads.
6539
6540 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
6541
6542         * arm-tdep.h: New file.
6543         * arm-tdep.c: Include arm-tdep.h.
6544         (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
6545         (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
6546         (arm_print_float_info, arm_register_type, convert_to_extended)
6547         (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
6548         (arm_extract_return_value, arm_register_name): Make static.
6549         (arm_software_single_step): Similarly.  Fix types in declaration.
6550         (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
6551         (arm_store_return_value, arm_store_struct_return): New functions.
6552         (arm_gdbarch_init): Register the above functions.  Also register
6553         call_dummy_start_offset, sizeof_call_dummy_words,
6554         function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
6555         sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
6556         max_register_virtual_size, register_size.  Set up
6557         prologue_cache.saved_regs here, rather than ...
6558         (_initialize_arm_tdep): ... here.
6559         * config/arm/tm-arm.h (struct type, struct value): Delete forward
6560         declarations.
6561         (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
6562         (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
6563         (arm_print_float_info, arm_register_type, convert_to_extended)
6564         (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
6565         (arm_extract_return_value, arm_register_name): Delete declarations.
6566         (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
6567         (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
6568         (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
6569         (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
6570         (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
6571         (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
6572         (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
6573         (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
6574         (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
6575         (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
6576         (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
6577         (arm_get_next_pc): No-longer static -- these are needed by the RDI
6578         interface.
6579         * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
6580         * remote-rdi.c remote-rdp.c: Likewise.
6581         * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
6582         (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
6583         * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
6584         definition.
6585
6586         * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
6587         (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
6588         (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
6589         from non-ARM_ prefixed definitions.
6590         * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
6591         all uses of above.
6592         * remote-rdi.c remote-rdp.c: Likewise.
6593         * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
6594
6595 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
6596
6597         * arm-tdep.c (arm_frameless_function_invocation)
6598         (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
6599         (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
6600         (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
6601         (arm_pop_frame, arm_get_next_pc): Make static.
6602         (arm_gdbarch_init): Register above in gdbarch structure.
6603         (arm_read_fp): Renamed from arm_target_read_fp.
6604         (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
6605         * config/arm/tm-arm.h (arm_frameless_function_invocation)
6606         (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
6607         (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
6608         (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
6609         (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
6610         (arm_pc_is_thumb_dummy): Delete declarations.
6611         (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
6612         (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
6613         (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
6614         (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
6615
6616 2002-02-10  Daniel Jacobowitz  <drow@mvista.com>
6617
6618         * symtab.c (compare_search_syms): New function.
6619         (sort_search_symbols): New function.
6620         (search_symbols): Sort symbols after searching rather than
6621         before.
6622
6623 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
6624
6625         * NEWS: Linux -> GNU/Linux.
6626
6627 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
6628
6629         * gdbarch.sh: For for level one methods, disallow a definition
6630         when partially multi-arched.  Add comments explaining rationale.
6631         * gdbarch.h: Re-generate.
6632
6633 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
6634
6635         * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
6636         multi-arch partial.
6637
6638 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
6639
6640         * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL.  Exit on bad
6641         field.  Use diff -u.
6642         * gdbarch.c: Re-generate.
6643
6644 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
6645
6646         * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
6647         * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
6648         partial.
6649
6650 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
6651
6652         * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
6653         multi-arch partial.
6654         (PUSH_ARGUMENTS): Switch to using predefault.
6655         * gdbarch.c: Regenerate.
6656
6657 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
6658
6659         * valops.c (PUSH_ARGUMENTS): Delete definition.
6660         * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
6661         partial.  Default to default_push_arguments.
6662         * gdbarch.h, gdbarch.c: Regenerate.
6663
6664 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
6665
6666         * defs.h (throw_exception): Rename return_to_top_level.  Update
6667         comments.
6668         * utils.c (error_stream, internal_verror, quit): Ditto.
6669         * top.c (throw_exception, catcher): Ditto.
6670         * sparclet-rom.c (sparclet_load): Ditto.
6671         * remote.c (interrupt_query, minitelnet): Ditto.
6672         * remote-sds.c (interrupt_query): Ditto.
6673         * remote-mips.c (mips_error, mips_kill): Ditto.
6674         * ocd.c (interrupt_query): Ditto.
6675         * monitor.c (monitor_interrupt_query): Ditto.
6676         * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
6677         * target.h: Update comment.
6678
6679         * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
6680
6681 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
6682
6683         * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
6684         default_double_format.
6685         * gdbarch.h, gdbarch.c: Re-generate.
6686         * findvar.c (floatformat_unknown): Delete variable definition.
6687         * doublest.h (floatformat_unknown): Delete variable declaration.
6688
6689 2002-02-09  Jim Blandy  <jimb@redhat.com>
6690
6691         * stabsread.c (read_type): Add code to parse Sun's syntax for
6692         prototyped function types.
6693
6694 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
6695
6696         * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
6697         (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
6698
6699 2002-02-09  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
6700
6701         * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
6702         _initialize_solib.  Fixes name clash with solib.c:_initialize_solib,
6703         now _initialize_xcoffsolib gets called again and overrides the
6704         commands from solib.c in a native configuration.
6705
6706 2002-02-09  Mark Kettenis  <kettenis@gnu.org>
6707
6708         * doublest.c (store_typed_floating): Don't try to return a value.
6709         Fixes PR gdb/290.
6710
6711 2002-02-08  Jim Blandy  <jimb@redhat.com>
6712
6713         * c-typeprint.c (c_type_print_varspec_suffix): If a function type
6714         is prototyped and has no arguments, print its argument list as
6715         `(void)'.
6716
6717 2002-02-08  Chris Demetriou  <cgd@broadcom.com>
6718
6719         * MAINTAINERS (write-after-approval): Add myself.
6720         (paper-trail): I've escaped!
6721
6722 2002-02-08  Christopher Faylor  <cgf@redhat.com>
6723
6724         * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
6725         changes.
6726         (_initialize_check_for_gdb_ini): Ditto.
6727
6728 2002-02-08  Martin M. Hunt  <hunt@redhat.com>
6729
6730         * win32-nat.c (cygwin_pid_to_str): Fix typo.
6731         xaprintf -> xasprintf.
6732
6733 2002-02-08  Pierre Muller  <muller@ics.u-strasbg.fr>
6734
6735         * win32-nat.c: Remove use of printf and sprintf functions.
6736
6737 2002-02-08  Richard Earnshaw  <rearnsha@arm.com>
6738
6739         * arm-tdep.c (arm_frame_chain_valid): Make static.
6740         (arm_push_arguments): Likewise.
6741         (arm_gdbarch_init): New function.
6742         (_initialize_arm_tdep): Call it.
6743         * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
6744         (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
6745         (FRAME_CHAIN_VALID): Delete.
6746         (arm_frame_chain_valid): Delete declaration.
6747         (PUSH_ARGUMENTS): Delete.
6748         (arm_push_arguments): Delete declaration.
6749         (CALL_DUMMY_P): Delete.
6750
6751 2002-02-08  Andrew Cagney  <ac131313@redhat.com>
6752             Corinna Vinschen  <vinschen@redhat.com>
6753
6754         * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
6755         on builtin float types.
6756
6757 2002-02-08  Daniel Jacobowitz  <drow@mvista.com>
6758
6759         * utils.c: Include <curses.h> before "bfd.h".
6760         * tui/tui-hooks.c: Likewise.
6761         * tui/tui.c: Likewise.
6762         * tui/tuiCommand.c: Likewise.
6763         * tui/tuiData.c: Likewise.
6764         * tui/tuiDataWin.c: Likewise.
6765         * tui/tuiDisassem.c: Likewise.
6766         * tui/tuiGeneralWin.c: Likewise.
6767         * tui/tuiIO.c: Likewise.
6768         * tui/tuiLayout.c: Likewise.
6769         * tui/tuiRegs.c: Likewise.
6770         * tui/tuiSource.c: Likewise.
6771         * tui/tuiSourceWin.c: Likewise.
6772         * tui/tuiStack.c: Likewise.
6773         * tui/tuiWin.c: Likewise.
6774
6775 2002-02-07  Elena Zannoni  <ezannoni@redhat.com>
6776
6777         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
6778         to include space for pseudoregs as well. Update loops accordingly.
6779         (sh_fp_frame_init_saved_regs): Ditto.
6780         (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
6781
6782 2002-02-07  Andrew Cagney  <ac131313@redhat.com>
6783
6784         * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
6785         Add Richard Earnshaw to Arm maintainers.
6786
6787 2002-02-07  Andrew Cagney  <ac131313@redhat.com>
6788
6789         * defs.h (warning_begin): Delete declaration.
6790
6791         * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
6792         Delete macro.
6793
6794 2002-02-07  Michael Snyder  <msnyder@redhat.com>
6795
6796         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
6797         Logic bug, remove misplaced else.
6798
6799 2002-02-07  Klee Dienes  <klee@apple.com>
6800
6801         * fork-inferior.c (fork_inferior): Add '!' to the list of
6802         characters that need to be quoted when building a string for the
6803         shell.  Quote '!' specifically with a backslash, since CSH chokes
6804         when trying to evaluate "str!str".
6805
6806 2002-02-06  Nick Clifton  <nickc@cambridge.redhat.com>
6807
6808         * rdi-share/host.h: Only provide a typedef for bool if it is not
6809         defined.
6810
6811 2002-02-04  Michael Snyder  <msnyder@redhat.com>
6812
6813         * breakpoint.h (enum bptype): Add new overlay event bp type.
6814         (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
6815
6816         * breakpoint.c (create_internal_breakpoint): New function.
6817         (internal_breakpoint_number): Moved into create_internal_breakpoint.
6818         (create_longjmp_breakpoint): Use create_internal_breakpoint.
6819         (create_thread_event_breakpoint): Ditto.
6820         (create_solib_event_breakpoint): Ditto.
6821         (create_overlay_event_breakpoint): New function.
6822         (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
6823         (update_breakpoints_after_exec): Delete and re-initialize
6824         overlay event breakpoints after an exec.  Add FIXME comment
6825         about longjmp breakpoint.
6826         (print_it_typical): Ignore overlay event breakpoints.
6827         (print_one_breakpoint): Ditto.
6828         (mention): Ditto.
6829         (bpstat_what): Do not stop for overlay event breakpoints.
6830         (delete_breakpoint): Don't delete overlay event breakpoints.
6831         (breakpoint_re_set_one): Delete the overlay event breakpoint.
6832         (breakpoint_re_set): Re-create overlay event breakpoint.
6833
6834         * symfile.c (overlay_auto_command): Enable overlay breakpoints.
6835         (overlay_manual_command): Disable overlay breakpoints.
6836         (overlay_off_command): Disable overlay breakpoints.
6837
6838 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
6839
6840         * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
6841         (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
6842         to here from config/tm-arm.h.
6843         (coff_sym_is_thumb): Make static.
6844         (arm_elf_make_msymbol_special): New function.
6845         (arm_coff_make_msymbol_special): New function.
6846         * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
6847         (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
6848         (coff_sym_is_thumb): Delete declaration.
6849         (arm_elf_make_msymbol_special): Declare.
6850         (arm_coff_make_msymbol_special): Declare.
6851         (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
6852         (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
6853
6854 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
6855
6856         * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
6857
6858 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
6859
6860         * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
6861         * gdbarch.c gdbarch.h: Regenerate.
6862         * arch-utils.c (default_print_float_info): New function.
6863         * arch-utils.h (default_print_float_info): Prototype it.
6864         * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
6865         * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
6866         (PRINT_FLOAT_INFO): Document it.
6867
6868         * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
6869         * config/arm/tm-arm.h (FLOAT_INFO): Delete.
6870         (PRINT_FLOAT_INFO): Define.
6871
6872 2002-02-06  Pierre Muller  <muller@ics.u-strasbg.fr>
6873
6874         * win32-nat.c (_initialize_check_for_gdb_ini):
6875         Add typecast to sprintf argument to suppress a warning.
6876
6877 2002-02-05  Pierre Muller  <muller@ics.u-strasbg.fr>
6878
6879         * win32-nat.c (last_sig): Changed type of variable to target_signal,
6880         to allow easier handling of pass state.
6881         (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
6882         that gives exception name and address.
6883         (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
6884         and set last_sig value to ourstatus->value.sig. Some missing
6885         exceptions added.
6886         (child_continue): Correctly report continue_status.
6887         (get_child_debug_event,do_initial_child_stuff): Set last_sig to
6888         TARGET_SIGNAL_0 (new default value).
6889         (child_resume): consider sig argument passed to decide if
6890         the exception should be passed to debuggee or not.
6891
6892 2002-02-05  Michael Snyder  <msnyder@redhat.com>
6893
6894         * regcache.c (fetch_register): Call target_fetch_register
6895         only if we don't call FETCH_PSEUDO_REGISTER.
6896         (store_register): Call target_store_register only if we
6897         don't call STORE_PSEUDO_REGISTER.
6898
6899 2002-02-05  Elena Zannoni  <ezannoni@redhat.com>
6900
6901         * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
6902         ELF_MAKE_MSYMBOL_SPECIAL.
6903         * gdbarch.c, gdbarch.h: Regenerate.
6904         * arch-utils.c (default_make_msymbol_special): New function.
6905         * arch-utils.h (default_make_msymbol_special): Export.
6906         * elfread.c (elf_symtab_read): Compile use of
6907         ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
6908         multiarched.
6909         * coffread.c (coff_symtab_read): Ditto, for
6910         COFF_MAKE_MSYMBOL_SPECIAL.
6911
6912 2002-02-05  Jim Blandy  <jimb@redhat.com>
6913
6914         * solib-svr4.c (svr4_truncate_ptr): New function.
6915         (svr4_relocate_section_addresses): Do the address arithmetic with
6916         the appropriate truncation for target addresses, even when
6917         CORE_ADDR is larger than a target address.
6918
6919 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
6920
6921         * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
6922         to (int *).
6923
6924 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
6925
6926         * gdbserver/linux-low.c (kill_inferior): Remove commented out
6927         code.
6928
6929 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
6930
6931         * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
6932
6933 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
6934
6935         * gdbserver/linux-low.c: Remove unused include files.
6936
6937 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
6938
6939         * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
6940         (read_inferior_memory): Use it.
6941         (write_inferior_memory): Likewise.
6942
6943 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
6944
6945         * gdbserver/linux-low.c (create_inferior): Call strerror instead of
6946         grubbing through sys_errlist.
6947
6948 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
6949
6950         * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
6951
6952 2002-02-04  Pierre Muller  <muller@ics.u-strasbg.fr>
6953         * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
6954
6955 2002-02-04  Andrew Cagney  <ac131313@redhat.com>
6956
6957         * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
6958         (do_sfunc, set_cmd_sfunc): New functions.
6959
6960         * command.h (struct cmd_list_element): Add field func.
6961         * cli/cli-decode.h (struct cmd_list_element): Ditto.
6962         * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
6963         * cli/cli-decode.h: Ditto.
6964
6965         * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
6966         (help_all, help_cmd_list): Ditto.
6967         (find_cmd, complete_on_cmdlist): Ditto.
6968         * top.c (execute_command): Ditto.
6969
6970         * cli/cli-setshow.c (do_setshow_command): Call func instead of
6971         function.sfunc.
6972
6973         * infcmd.c (notice_args_read): Fix function signature.
6974
6975         * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
6976         * cli/cli-decode.c (add_set_cmd): Ditto.
6977         * utils.c (initialize_utils): Ditto.
6978         * maint.c (_initialize_maint_cmds): Ditto.
6979         * infrun.c (_initialize_infrun): Ditto.
6980         * demangle.c (_initialize_demangler): Ditto.
6981         * remote.c (add_packet_config_cmd): Ditto.
6982         * mips-tdep.c (_initialize_mips_tdep): Ditto.
6983         * cris-tdep.c (_initialize_cris_tdep): Ditto.
6984         * proc-api.c (_initialize_proc_api): Ditto.
6985         * kod.c (_initialize_kod): Ditto.
6986         * valprint.c (_initialize_valprint): Ditto.
6987         * top.c (init_main): Ditto.
6988         * infcmd.c (_initialize_infcmd): Ditto.
6989         * corefile.c (_initialize_core): Ditto.
6990         * arm-tdep.c (_initialize_arm_tdep): Ditto.
6991         * arch-utils.c (initialize_current_architecture): Ditto.
6992         (_initialize_gdbarch_utils): Ditto.
6993         * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
6994
6995         * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
6996         * wince.c (_initialize_inftarg): Ditto.
6997         * symfile.c (_initialize_symfile): Ditto.
6998         * mips-tdep.c (_initialize_mips_tdep): Ditto.
6999         * language.c (_initialize_language): Ditto.
7000         * arc-tdep.c (_initialize_arc_tdep): Ditto.
7001
7002 2002-02-04  Michael Snyder  <msnyder@redhat.com>
7003
7004         * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
7005
7006 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
7007
7008         * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
7009         Add rules for building the register data files.
7010
7011 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
7012
7013         * regformats/regdat.sh: Add braces to the definition of
7014         expedite_regs_${arch}.
7015
7016 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
7017
7018         * regformats/regdef.h (struct reg): Add comment describing the
7019         requirements for offset and size fields.
7020
7021 2002-02-04  Andreas Schwab  <schwab@suse.de>
7022
7023         * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
7024         * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
7025
7026 2002-02-04  Richard Earnshaw  <rearnsha@arm.com>
7027
7028         * gdbarch.sh (copyright): Update years in generated header.
7029         (SMASH_TEXT_ADDRESS): Add rule.
7030         * gdbarch.h, gdbarch.c: Re-generate.
7031         * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
7032         * dbxread.c: Likewise.
7033         * dwarfread.c: Likewise.
7034         * elfread.c: Likewise.
7035         * somread.c: Likewise.
7036
7037         * arm-tdep.c (arm_smash_text_address): New function.
7038         * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
7039
7040 2002-02-04  Pierre Muller  <muller@ics.u-strasbg.fr>
7041
7042         Add support for hardware watchpoints on win32 native.
7043         * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
7044         CONTEXT_DEBUG_REGISTERS.
7045         (dr variable): New variable. Static array containing a local copy
7046         of debug registers.
7047         (debug_registers_changed): New variable.  Reflects when debug registers
7048         are changed and need to be written to inferior.
7049         (debug_registers_used): New variable. Reflects when any debug register
7050         was set, used when new threads are created.
7051         (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
7052         i386-nat code.
7053         (thread_rec): Set dr array if id is the thread of current_event .
7054         (child_continue, child_resume): Change the debug registers for all
7055         threads if debug_registers_changed.
7056         (child_add_thread): Change the debug registers if debug_registers_used.
7057         * config/i386/cygwin.mh: Add use of i386-nat.o file.
7058         Link nm.h to new nm-cygwin.h file.
7059         + config/i386/nm-cygwin.h: New file. Contains the macros used for use
7060         of hardware registers.
7061
7062 2002-02-03  Andrew Cagney  <ac131313@redhat.com>
7063
7064         * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
7065         Restore behavour broken by 2002-01-20 Andrew Cagney
7066         <ac131313@redhat.com> IEEE_FLOAT removal.
7067
7068 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
7069
7070         * c-valprint.c (c_val_print): Pass a proper valaddr to
7071         cp_print_class_method.
7072         * valops.c (search_struct_method): If there is only one method
7073         and args is NULL, return that method.
7074
7075 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
7076
7077         * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
7078         accessing tag_name directly.
7079
7080 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
7081
7082         * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
7083         of accessing tag_name directly.
7084
7085 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
7086
7087         PR gdb/280
7088         * gdbtypes.c (replace_type): New function.
7089         * gdbtypes.h (replace_type): Add prototype.
7090         * stabsread.c (read_type): Use replace_type.
7091
7092 2002-02-03  Richard Earnshaw  <rearnsha@arm.com>
7093
7094         * Makefile.in (memattr.o): Add missing dependencies rule.
7095
7096 2002-02-03  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
7097
7098         * breakpoint.c (break_at_finish_command): Really export.
7099         (break_at_finish_at_depth_command): Ditto.
7100         (tbreak_at_finish_command): Ditto.
7101         * hppa-tdep.c: Include completer.h.
7102         * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
7103         (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
7104
7105 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
7106
7107         * utils.c (do_write): New function.
7108         (error_stream): Rewrite combining the code from error_begin and
7109         verror.
7110         (verror): Rewrite using error_stream.
7111         (error_begin): Delete function.
7112
7113 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
7114
7115         * utils.c (error_begin): Make static.
7116         * defs.h (error_begin): Delete declaration.
7117
7118         * linespec.c (cplusplus_error): Replace cplusplus_hint.
7119         (decode_line_1): Use cplusplus_error instead of error_begin,
7120         cplusplus_hint and return_to_top_level.
7121         * coffread.c (coff_symfile_read): Use error instead of error_begin
7122         and return_to_top_level.
7123         * infrun.c (default_skip_permanent_breakpoint): Ditto.
7124
7125 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
7126
7127         * language.h (type_error, range_error): Make string parameter
7128         constant.
7129         * language.c (warning_pre_print): Delete extern declaration.
7130         * dwarfread.c (warning_pre_print): Ditto.
7131         * language.c (type_error, range_error): Rewrite to use verror and
7132         vwarning instead of warning_begin.
7133
7134 2002-02-01  Michael Snyder  <msnyder@redhat.com>
7135
7136         * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
7137         (set_ignore_count): Move misplaced comment back where it belongs.
7138
7139 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
7140
7141         * command.h (NO_FUNCTION): Delete macro.
7142         * cli/cli-decode.h (NO_FUNCTION): Ditto.
7143         * top.c (execute_command): Replace NO_FUNCTION with NULL.
7144         * tracepoint.c (_initialize_tracepoint): Ditto.
7145         * cli/cli-decode.c (add_set_cmd): Ditto.
7146         * cli/cli-cmds.c (init_cli_cmds): Ditto.
7147
7148 2002-02-01  Daniel Jacobowitz  <drow@mvista.com>
7149
7150         * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
7151         Update ``this'' pointer when calling virtual functions.
7152
7153 2002-02-01  Michael Snyder  <msnyder@redhat.com>
7154
7155         * breakpoint.c (create_temp_exception_breakpoint): Delete.
7156         * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
7157
7158 2002-02-01  Daniel Jacobowitz  <drow@mvista.com>
7159
7160         * regformats/reg-arm.dat: New file.
7161         * regformats/reg-i386.dat: New file.
7162         * regformats/reg-ia64.dat: New file.
7163         * regformats/reg-m68k.dat: New file.
7164         * regformats/reg-mips.dat: New file.
7165         * regformats/reg-ppc.dat: New file.
7166         * regformats/reg-sh.dat: New file.
7167         * regformats/regdef.h: New file.
7168         * regformats/regdat.sh: New file.
7169
7170 2002-02-01  Richard Earnshaw  <reanrsha@arm.com>
7171
7172         * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
7173         (arm_frame_args_address, arm_frame_locals_address): New functions.
7174         (arm_frame_num_args): New function.
7175         * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
7176         (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
7177         (FRMA_NUM_ARGS): Call arm_frame_num_args.
7178
7179 2002-01-31  Michael Snyder  <msnyder@redhat.com>
7180
7181         * breakpoint.c (break_at_finish_command): Export.
7182         (break_at_finish_at_depth_command): Export.
7183         (tbreak_at_finish_command): Export.
7184         (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
7185         * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
7186         "tbreak" commands, which are HPPA specific.
7187
7188         * printcmd.c (disassemble_command): Remove an ancient
7189         artifact of an old merge.
7190
7191         * symfile.h (enum overlay_debugging_state):
7192         Define enum constant values for overlay mode.
7193         * symfile.c (overlay_debugging): Use enums instead of literals.
7194         (overlay_is_mapped, overlay_auto_command,
7195         overlay_manual_command): Ditto.
7196
7197         * breakpoint.c (insert_breakpoints, remove_breakpoint,
7198         breakpoint_here_p, breakpoint_inserted_here_p,
7199         breakpoint_thread_match, bpstat_stop_status,
7200         describe_other_breakpoints, check_duplicates, clear_command):
7201         Coding standard fixes.
7202
7203         * target.c (target_xfer_memory): Add spaces, coding standard.
7204         (do_xfer_memory): Add missing line to trust-readonly
7205         code: check bfd SEC_READONLY flag for section.
7206
7207 2002-01-31  Andrew Cagney  <ac131313@redhat.com>
7208
7209         * PROBLEMS: Fix typo, 5.1->5.1.1.
7210
7211 2002-01-30  Daniel Jacobowitz  <drow@mvista.com>
7212
7213         * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
7214         data symbols, since we search based on textlow and texthigh.
7215         (find_pc_sect_symtab): Likewise.
7216
7217 2002-01-30  Andrew Cagney  <ac131313@redhat.com>
7218
7219         * defs.h (vwarning): Declare.
7220         * utils.c (vwarning): New function.
7221         (warning): Call vwarning.
7222         (warning_begin): Delete function.
7223
7224         * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
7225         the warning message.
7226         * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
7227         warning_begin.
7228
7229 2002-01-30  Michael Snyder  <msnyder@redhat.com>
7230
7231         * NEWS: Mention "set trust-readonly-sections" command.
7232         Mention generate-core-file command.
7233
7234 2002-01-15  Michael Snyder  <msnyder@redhat.com>
7235
7236         * target.c: New command, "set trust-readonly-sections on".
7237         (do_xfer_memory): Honor the suggestion to trust readonly sections
7238         by reading them from the object file instead of from the target.
7239         (initialize_targets): Register command "set trust-readonly-sections".
7240
7241 2002-01-29  Andrew Cagney  <ac131313@redhat.com>
7242
7243         * parse.c (target_map_name_to_register): Simplify, search regs and
7244         pseudo-regs using a single loop.
7245
7246 2002-01-30  Andrew Cagney  <ac131313@redhat.com>
7247
7248         * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
7249
7250 2002-01-15  Rodney Brown  <rbrown64@csc.com.au>
7251
7252         * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
7253         * config/i386/i386v42mp.mh: Add i387-nat.o .
7254         * i386v4-nat.c: Include i387-nat.h.
7255         (supply_fpregset): Use i387_supply_fsave.
7256         (fill_fpregset): Use i387_fill_fsave.
7257
7258 2002-01-30  Richard Earnshaw  <rearnsha@arm.com>
7259
7260         * arm-tdep.c (arm_call_dummy_words): Define.
7261         * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
7262         * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
7263         (CALL_DUMMY_WORDS): Define.
7264         (arm_call_dummy_words): Declare.
7265         * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
7266         (arm_linux_call_dummy_words): Declare.
7267
7268 2002-01-30  Andreas Schwab  <schwab@suse.de>
7269
7270         * m68klinux-nat.c: Fix last change to use regcache_collect
7271         instead of referencing registers[] directly.
7272
7273 2002-01-29  Andrew Cagney  <ac131313@redhat.com>
7274
7275         * parse.c (target_map_name_to_register): Delete code wrapped in
7276         #ifdef REGISTER_NAME_ALIAS_HOOK.
7277
7278 2002-01-28  Michael Snyder  <msnyder@redhat.com>
7279
7280         * regcache.c (legacy_read_register_gen): Need to be able to
7281         read pseudo-register as well as real register.
7282         (legacy_write_register_gen): Ditto.
7283
7284 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
7285
7286         * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
7287         * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
7288         * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
7289         * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
7290         * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
7291         * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
7292         * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
7293         * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
7294         * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
7295         * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
7296         * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
7297         * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
7298         * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
7299         * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
7300         * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
7301         * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
7302         * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
7303         * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
7304         * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
7305         * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
7306
7307 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
7308
7309         * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
7310         (target_byte_order): Initialize to BFD_ENDIAN_BIG.
7311         (initialize_current_architecture): Update target_byte_order using
7312         information from BFD.
7313         * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
7314         * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
7315
7316 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
7317
7318         * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
7319         * vax-tdep.c (INVALID_FLOAT): To here.  Document why it is broken.
7320
7321         * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
7322         #ifdef INVALID_FLOAT.
7323         * infcmd.c (do_registers_info): Ditto.
7324         * values.c (unpack_double): Ditto.  Add comment.
7325
7326         * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
7327         already commented out.
7328
7329 2002-01-26  Andreas Schwab  <schwab@suse.de>
7330
7331         * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
7332         * m68klinux-nat.c: Update ptrace interface for fetching/storing
7333         registers and add support for PTRACE_GETREGS.
7334
7335 2002-01-24  Andrew Cagney  <ac131313@redhat.com>
7336
7337         GDB 5.1.1 released from 5.1 branch.
7338         * NEWS: Add 5.1.1 news.
7339         * README: Sync with 5.1 branch.
7340
7341 2002-01-23  Fred Fish  <fnf@redhat.com>
7342
7343         * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
7344         stabstring on initial malloc.  Reallocing will copy it for us,
7345         if necessary.
7346
7347 2002-01-23  Elena Zannoni  <ezannoni@redhat.com>
7348
7349         * Makefile.in (hpread_h): Delete.
7350         (HFILES_NO_SRCDIR): Remove hpread.h.
7351         (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
7352         (hpread.o): Update dependencies.
7353         (hp-psymtab-read.o, hp-symtab-read.o): Remove.
7354
7355         * hp-psymtab-read.c: Remove file.
7356         * hp-symtab-read.c: Remove file.
7357         * hpread.h: Remove file.
7358
7359         * hpread.c: Merge all contents of hp-psymtab-read.c,
7360         hp-symtab-read.c and hpread.h into this file, as it was prior to
7361         January 1999.
7362
7363         * config/pa/hpux11w.mh, config/pa/hpux11.mh,
7364         config/pa/hpux1020.mh, config/pa/hppaosf.mh,
7365         config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
7366         Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
7367
7368 2002-01-23  Elena Zannoni  <ezannoni@redhat.com>
7369
7370         * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
7371         fill_gregset): Call gdbarch_tdep() just once, assign result to
7372         variable and use that, instead of calling the function several
7373         times.
7374
7375 2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
7376
7377         * configure.host: Accept sparcv9 as alias for sparc64.
7378         * configure.tgt: Likewise.
7379
7380 2002-01-22  Kevin Buettner  <kevinb@redhat.com>
7381
7382         * solib-aix5.c (build_so_list_from_mapfile)
7383         (aix5_relocate_main_executable): Fix xcalloc() calls so order of
7384         arguments is not reversed.
7385         * solib-sunos.c (sunos_relocate_main_executable): Likewise.
7386         * solib-svr4.c (svr4_relocate_main_executable): Likewise.
7387
7388 2002-01-22  Elena Zannoni  <ezannoni@redhat.com>
7389
7390         * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
7391         modified version of obsolete sh_fetch_pseudo_register.
7392         (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
7393         (sh4_register_read): New function.
7394         (sh_pseudo_register_write): New function. Renamed and modified
7395         version of obsolete sh_store_pseudo_register.
7396         (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
7397         (sh4_register_write): New function.
7398         (sh_gdbarch_init): Remove setting of gdbarch function
7399         fetch_pseudo_register and store_pseudo_register. Remove setting of
7400         register_convert_to_raw, register_convert_to_virtual,
7401         register_convertible.
7402         (sh_sh4_register_convertible): Delete. No longer needed. All is
7403         taken care by architecture specific functions
7404         register_read/register_write.
7405         (sh_sh4_register_convert_to_virtual): Make static.
7406         (sh_sh4_register_convert_to_raw): Ditto.
7407
7408 2002-01-22  Andrew Cagney  <ac131313@redhat.com>
7409
7410         * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
7411         (floatformat_is_nan, floatformat_mantissa): Ditto.
7412
7413         * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
7414         for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
7415         builtin_type_ieee_double_little,
7416         builtin_type_ieee_double_littlebyte_bigword,
7417         builtin_type_m68881_ext, builtin_type_i960_ext,
7418         builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
7419         builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
7420         builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
7421         builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
7422
7423 2002-01-22  Corinna Vinschen  <vinschen@redhat.com>
7424
7425         * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
7426         parameter.  Set frameless flag if it exists and depended of
7427         whether the scanned function is frameless or not.
7428         (xstormy16_skip_prologue): If function is frameless, return
7429         result of xstormy16_scan_prologue().
7430         (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
7431         call.
7432
7433 2002-01-21  Elena Zannoni  <ezannoni@redhat.com>
7434
7435         * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
7436         sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
7437         sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
7438         sh_sh4_register_byte, sh_sh4_register_raw_size,
7439         sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
7440         sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
7441         sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
7442         sh_store_pseudo_register, sh_do_pseudo_register): Call
7443         gdbarch_tdep() just once, assign result to variable and use that,
7444         instead of calling the function several times.
7445
7446 2002-01-20  Mark Kettenis  <kettenis@gnu.org>
7447
7448         * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
7449         macros instead of LAST_FPU_CTRL_REGNUM.
7450         (store_register): Likewise.
7451
7452 2002-01-21  Jim Blandy  <jimb@redhat.com>
7453
7454         * infcmd.c (run_command): Check that the `exec' target layer's BFD
7455         is up-to-date before running the program, not just when a program
7456         exits.
7457
7458 2002-01-21  Fred Fish  <fnf@redhat.com>
7459
7460         * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
7461         when we have found all instructions we are looking for.
7462
7463 2002-01-21  Richard Earnshaw  <rearnsha@arm.com>
7464
7465         * arm-tdep.c (arm_register_name): New function.
7466         (arm_registers_names): Make static.
7467         * config/arm/tm-arm.h (arm_register_names): Delete declaration.
7468         (arm_register_name): Declare.
7469         (REGISTER_NAME): Use it.
7470
7471 2002-01-21  Richard Earnshaw  <rearnsha@arm.com>
7472             Kevin Buettner  <kevinb@redhat.com>
7473
7474         Convert arm targets to new FRAME interface.
7475         * arm-tdep.c (struct frame_extra_info): Remove fsr.
7476         (arm_frame_find_save_regs): Delete.
7477         (arm_frame_init_saved_regs): New.
7478         (arm_init_extra_frame_info): Alloacte saved_regs as required.
7479         Allocate extra_info as required.  Convert all uses of fsr.regs
7480         to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
7481         to use extra_info.
7482         (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
7483         (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
7484         (check_prologue_cache, save_prologue_cache): Likewise.
7485         (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
7486         * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
7487         (FRAME_FIND_SAVED_REGS): Delete.
7488         (arm_frame_find_saved_regs): Delete prototype.
7489         (arm_frame_init_saved_regs): New prototype.
7490         (FRAME_INIT_SAVED_REGS): Define.
7491
7492 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
7493
7494         * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
7495
7496 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
7497
7498         From Jeff Law <law@redhat.com>:
7499         * infttrace.c: Include <sys/pstat.h>.
7500         (child_pid_to_exec_file): Revamp.  Use pstat call to get the
7501         exec file if the ttrace equivalent fails.
7502
7503 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
7504
7505         * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
7506         (closeLogFile): Ditto.
7507
7508 2002-01-20  Michael Chastain  <mec@shout.net>
7509
7510         * top.c (print_gdb_version): Bump copyright year to 2002.
7511
7512 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
7513
7514         * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
7515         Zannoni and Eli Zaretskii.
7516
7517 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
7518
7519         * buildsym.c: Update copyright years.
7520         * c-typeprint.c: Likewise.
7521         * dwarf2read.c: Likewise.
7522         * f-typeprint.c: Likewise.
7523         * gdbtypes.c: Likewise.
7524         * gdbtypes.h: Likewise.
7525         * hp-symtab-read.c: Likewise.
7526         * hpread.c: Likewise.
7527         * mdebugread.c: Likewise.
7528         * p-typeprint.c: Likewise.
7529
7530 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
7531
7532         * remote-sim.c (gdbsim_open): Simplify code testing the macro
7533         TARGET_BYTE_ORDER_SELECTABLE_P.  Assume the target is always
7534         byte-order selectable.
7535         * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
7536         * arch-utils.c: Ditto.
7537         (set_endian): Ditto.
7538         (set_endian_from_file): Ditto.
7539         * gdbserver/low-sim.c (create_inferior): Ditto.
7540         * gdbarch.sh: Ditto.
7541         * gdbarch.h: Re-generate.
7542         * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
7543         * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
7544         * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
7545         * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
7546         * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
7547         * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
7548         * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
7549         * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
7550         macro definition.
7551         * config/mips/tm-wince.h: Remove #undef of macro
7552         TARGET_BYTE_ORDER_SELECTABLE.
7553         * config/sh/tm-wince.h: Ditto.
7554
7555 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
7556
7557         * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
7558         member function fields.  Add accessor macro
7559         TYPE_FN_FIELD_ARTIFICIAL.
7560         * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
7561         * c-typeprint.c (c_type_print_base): Skip artificial member
7562         functions.
7563
7564 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
7565
7566         * f-typeprint.c: Delete unused function f_type_print_args.
7567         * p-typeprint.c: Delete unused function pascal_type_print_args.
7568
7569 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
7570
7571         * gdbtypes.h (struct type): Fix whitespace.  Remove obsolete
7572         comment.  Add ``artificial'' to ``union field_location''.
7573
7574         * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
7575
7576         * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
7577         * mdebugread.c (parse_symbol): Likewise.
7578         * stabsread.c (define_symbol): Likewise.
7579         * hp-symtab-read.c (hpread_function_type): Likewise, instead of
7580         initializing TYPE_FIELD_BITPOS to n (obsolete).
7581         (hpread_doc_function_type): Likewise.
7582         * hpread.c (hpread_function_type): Likewise.
7583
7584 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
7585
7586         * configure.in (host_makefile_frag): Only require a host makefile
7587         fragment when a native build.
7588         * configure: Re-generate.
7589
7590 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
7591
7592         * doublest.h (floatformat_from_type): Declare.
7593         * doublest.c (floatformat_from_type): New function.
7594         (convert_typed_floating): Use.
7595
7596         * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
7597         call to function floatformat_from_type.
7598
7599         * gdbarch.sh (IEEE_FLOAT): Delete.
7600         * gdbarch.h, gdbarch.c: Re-generate.
7601         * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
7602         * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
7603         * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
7604         * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
7605         * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
7606         * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
7607         * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
7608         * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
7609         * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
7610         * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
7611         * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
7612         * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
7613
7614         * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
7615         * x86-64-tdep.c (i386_gdbarch_init): Ditto.
7616         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
7617         * sh-tdep.c (sh_gdbarch_init): Ditto.
7618         * mips-tdep.c (mips_gdbarch_init): Ditto.
7619         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
7620         * cris-tdep.c (cris_gdbarch_init): Ditto.
7621
7622 2002-01-20  Jiri Smid  <smid@suse.cz>
7623
7624         * configure.host, configure.tgt: Support x86-64.
7625         * NEWS: Note new target x86-64.
7626
7627         * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
7628         * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
7629         * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
7630         * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
7631         x86-64-linux-nat.o): Fix dependencies.
7632
7633 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
7634
7635         * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
7636         * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
7637         * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
7638         * config/sparc/xm-sun4os4.h: Delete file.
7639         * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
7640
7641 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
7642
7643         * config/sparc/sparclynx.mh (XM_FILE): Delete.
7644         * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
7645         * config/m68k/m68klynx.mh (XM_FILE): Delete.
7646         * config/i386/i386lynx.mh (XM_FILE): Delete.
7647         * config/rs6000/xm-rs6000ly.h: Delete file.
7648         * config/sparc/xm-sparclynx.h: Delete file.
7649         * config/m68k/xm-m68klynx.h: Delete file.
7650         * config/i386/xm-i386lynx.h: Delete file.
7651         * config/xm-lynx.h: Delete file.
7652         * config/djgpp/fnchange.lst: Update.
7653
7654 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
7655
7656         * alpha-tdep.c (alpha_register_byte): New function.
7657         (alpha_register_raw_size): Ditto.
7658         (alpha_register_virtual_size): Ditto.
7659         (alpha_skip_prologue_internal): Renamed from
7660         alpha_skip_prologue.
7661         (alpha_skip_prologue): New version that calls
7662         alpha_skip_prologue_internal.
7663         (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
7664         * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
7665         second argument from alpha_skip_prologue.
7666         (REGISTER_BYTE): Use alpha_register_byte.
7667         (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
7668         (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
7669         (FRAMELESS_FUNCTION_INVOCATION): Use
7670         generic_frameless_function_invocation_not.
7671         (FRAME_NUM_ARGS): Use frame_num_args_unknown.
7672         (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
7673
7674 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
7675
7676         * config/mips/xm-news-mips.h: Delete file.
7677         * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
7678
7679         * config/m88k/xm-m88k.h: Delete file.
7680         * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
7681         * config/m88k/xm-delta88v4.h: Ditto.
7682         * config/m88k/xm-delta88.h: Ditto.
7683
7684         * config/alpha/xm-fbsd.h: Delete file.
7685         * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
7686
7687         * config/sparc/xm-sparc.h: Delete file.
7688         * Makefile.in (xm-sun4os4.h): Delete dependency.
7689         * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
7690         * config/sparc/xm-sun4os4.h: Ditto.
7691         * config/sparc/xm-linux.h: Ditto.
7692
7693         * config/i386/xm-windows.h: Delete file.
7694
7695 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
7696
7697         * utils.c: Include <sys/param.h> for MAXPATHLEN.
7698         (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
7699
7700 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
7701
7702         * alpha-tdep.c (alpha_call_dummy_words): New.
7703         * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
7704         (CALL_DUMMY_P): Define.
7705         (CALL_DUMMY_WORDS): Define.
7706         (SIZEOF_CALL_DUMMY_WORDS): Define.
7707
7708 2002-01-19  Per Bothner  <per@bothner.com>
7709
7710         * gnu-v3-abi.c (gnuv3_rtti_type):  Guard that vtable_symbol_name
7711         isn't NULL, which can happen with some gcj-3.x-produced code.
7712
7713 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
7714
7715         * alpha-tdep.c (alpha_register_virtual_type): New function.
7716         (alpha_init_frame_pc_first): Ditto.
7717         (alpha_fix_call_dummy): Ditto.
7718         (alpha_store_struct_return): Ditto.
7719         (alpha_extract_struct_value_address): Ditto.
7720         * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
7721         alpha_register_virtual_type.
7722         (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
7723         (EXTRACT_STRUCT_VALUE_ADDRESS): Use
7724         alpha_extract_struct_value_address.
7725         (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
7726         (INIT_FRAME_PC): Use init_frame_pc_noop.
7727         (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
7728
7729 2002-01-19  Mark Kettenis  <kettenis@gnu.org>
7730
7731         * i386gnu-nat.c: Include "i386-tdep.h".
7732         (fetch_fpregs): Simplify code dealing with uninitialized floating
7733         point states such that it doesn't require FP7_REGNUM.
7734
7735 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
7736
7737         * alpha-tdep.c (frame_extra_info): New.
7738         (alpha_find_saved_regs): Make static.  Use
7739         frame->extra_info.
7740         (alpha_frame_init_saved_regs): New function.
7741         (alpha_frame_saved_pc): Use frame->extra_info.
7742         (temp_saved_regs): Don't declare as struct frame_saved_regs.
7743         (heuristic_proc_desc): Adjust for temp_saved_regs changes.
7744         (init_extra_frame_info): Rename to...
7745         (alpha_init_extra_frame_info): ...this.  Use frame->extra_info.
7746         (alpha_print_extra_frame_info): New function.
7747         (alpha_frame_locals_address): Ditto.
7748         (alpha_frame_args_address): Ditto.
7749         (alpha_pop_frame): Use frame->extra_info.
7750         * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
7751         alpha_frame_args_address.
7752         (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
7753         (alpha_find_saved_regs): Remove prototype.
7754         (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
7755         (EXTRA_FRAME_INFO): Remove.
7756         (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
7757         (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
7758
7759 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
7760
7761         * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
7762         (alpha_cannot_fetch_register): Ditto.
7763         (alpha_cannot_store_register): Ditto.
7764         (alpha_register_convertible): Ditto.
7765         (alpha_use_struct_convention): Ditto.
7766         * config/alpha/tm-alpha.h: Update copyright years.
7767         (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
7768         (INNER_THAN): Use core_addr_lessthan.
7769         (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
7770         (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
7771         (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
7772         (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
7773         (FRAME_CHAIN): Remove unnecessary cast.
7774
7775 2002-01-18  Andrew Cagney  <ac131313@redhat.com>
7776
7777         * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
7778         obsolete.
7779
7780 2002-01-18  Andrew Cagney  <ac131313@redhat.com>
7781
7782         * infptrace.c: Remove ATTRIBUTE_UNUSED.  Update copyright.
7783         * monitor.c, remote-array.c, remote-bug.c: Ditto.
7784         * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
7785         * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
7786         * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
7787         * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
7788         * x86-64-linux-nat.c: Ditto.
7789
7790 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
7791
7792         * alpha-tdep.c (alpha_register_name): New function.
7793         * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
7794         (REGISTER_NAME): Define.
7795
7796 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
7797
7798         * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
7799
7800 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
7801
7802         * alpha-tdep.c: Update copyright years.
7803         (alpha_next_pc): New function.
7804         (alpha_software_single_step): Ditto.
7805         * config/alpha/tm-alpha.h: Add prototype for
7806         alpha_software_single_step.
7807
7808 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
7809
7810         * alphabsd-nat.c: Update copyright years.
7811         (fill_gregset): Use regcache_collect.
7812         (fill_fpregset): Likewise.
7813         (fetch_inferior_registers): Only fetch integer registers
7814         if requested to do so.
7815         (store_inferior_registers): Only store integer registers
7816         if requested to do so.
7817
7818 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
7819
7820         * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
7821         * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
7822         * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
7823         * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
7824         * config/alpha/fbsd.mh (XDEPFILES): Delete.
7825         * config/arm/linux.mh (XDEPFILES): Delete.
7826         * config/arm/nbsd.mh (XDEPFILES): Delete.
7827         * config/i386/i386dgux.mh (XDEPFILES): Delete.
7828         * config/i386/i386sol2.mh (XDEPFILES): Delete.
7829         * config/i386/i386m3.mh (XDEPFILES): Delete.
7830         (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
7831         * config/i386/i386gnu.mh (XDEPFILES): Delete.
7832         * config/i386/fbsd.mh (XDEPFILES): Delete.
7833         * config/i386/i386bsd.mh (XDEPFILES): Delete.
7834         * config/i386/i386sco5.mh (XDEPFILES): Delete.
7835         * config/i386/i386v4.mh (XDEPFILES): Delete.
7836         * config/i386/i386v42mp.mh (XDEPFILES): Delete.
7837         * config/i386/i386sco4.mh (XDEPFILES): Delete.
7838         * config/i386/i386aix.mh (XDEPFILES): Delete.
7839         * config/i386/go32.mh (XDEPFILES): Delete.
7840         * config/i386/cygwin.mh (XDEPFILES): Delete.
7841         * config/i386/i386lynx.mh (XDEPFILES): Delete.
7842         * config/i386/i386mach.mh (XDEPFILES): Delete.
7843         * config/i386/i386v32.mh (XDEPFILES): Delete.
7844         * config/i386/linux.mh (XDEPFILES): Delete.
7845         * config/i386/nbsdelf.mh (XDEPFILES): Delete.
7846         * config/i386/ncr3000.mh (XDEPFILES): Delete.
7847         * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
7848         * config/i386/i386sco.mh (XDEPFILES): Delete.
7849         * config/i386/i386v.mh (XDEPFILES): Delete.
7850         * config/i386/nbsd.mh (XDEPFILES): Delete.
7851         * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
7852         * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
7853         * config/i386/symmetry.mh (XDEPFILES): Delete.
7854         * config/i386/obsd.mh (XDEPFILES): Delete.
7855         * config/i386/x86-64linux.mh (XDEPFILES): Delete.
7856         * config/ia64/linux.mh (XDEPFILES): Delete.
7857         * config/ia64/aix.mh (XDEPFILES): Delete.
7858         * config/m68k/apollo68b.mh (XDEPFILES): Delete.
7859         * config/m68k/dpx2.mh (XDEPFILES): Delete.
7860         * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
7861         * config/m68k/apollo68v.mh (XDEPFILES): Delete.
7862         * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
7863         * config/m68k/linux.mh (XDEPFILES): Delete.
7864         * config/m68k/m68klynx.mh (XDEPFILES): Delete.
7865         * config/m68k/m68kv4.mh (XDEPFILES): Delete.
7866         * config/m68k/nbsd.mh (XDEPFILES): Delete.
7867         * config/m68k/sun2os3.mh (XDEPFILES): Delete.
7868         * config/m68k/sun2os4.mh (XDEPFILES): Delete.
7869         * config/m68k/sun3os3.mh (XDEPFILES): Delete.
7870         * config/m68k/sun3os4.mh (XDEPFILES): Delete.
7871         * config/m88k/delta88.mh (XDEPFILES): Delete.
7872         * config/m88k/delta88v4.mh (XDEPFILES): Delete.
7873         * config/m88k/m88k.mh (XDEPFILES): Delete.
7874         * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
7875         * config/mips/linux.mh (XDEPFILES): Delete.
7876         * config/mips/irix6.mh (XDEPFILES): Delete.
7877         * config/mips/irix5.mh (XDEPFILES): Delete.
7878         * config/mips/irix4.mh (XDEPFILES): Delete.
7879         * config/mips/irix3.mh (XDEPFILES): Delete.
7880         * config/mips/decstation.mh (XDEPFILES): Delete.
7881         * config/mips/mipsm3.mh (XDEPFILES): Delete.
7882         (NATDEPFILES): Move core-aout.o to here.
7883         * config/ns32k/nbsd.mh (XDEPFILES): Delete.
7884         * config/pa/hpux1020.mh (XDEPFILES): Delete.
7885         * config/pa/hppabsd.mh (XDEPFILES): Delete.
7886         * config/pa/hppahpux.mh (XDEPFILES): Delete.
7887         * config/pa/hpux11w.mh (XDEPFILES): Delete.
7888         * config/pa/hppaosf.mh (XDEPFILES): Delete.
7889         * config/pa/hpux11.mh (XDEPFILES): Delete.
7890         * config/powerpc/aix.mh (XDEPFILES): Delete.
7891         * config/powerpc/nbsd.mh (XDEPFILES): Delete.
7892         * config/powerpc/linux.mh (XDEPFILES): Delete.
7893         * config/romp/rtbsd.mh: Rename XDEPFILES.
7894         * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
7895         * config/rs6000/aix4.mh (XDEPFILES): Delete.
7896         * config/rs6000/rs6000.mh (XDEPFILES): Delete.
7897         * config/s390/s390.mh (XDEPFILES): Delete.
7898         * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
7899         * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
7900         * config/sparc/sun4os4.mh (XDEPFILES): Delete.
7901         * config/sparc/sparclynx.mh (XDEPFILES): Delete.
7902         * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
7903         * config/sparc/nbsd.mh (XDEPFILES): Delete.
7904         * config/sparc/linux.mh (XDEPFILES): Delete.
7905         * config/vax/vaxult.mh (XDEPFILES): Delete.
7906         * config/vax/vaxult2.mh (XDEPFILES): Delete.
7907         * Makefile.in (DEPFILES): Remove XDEPFILES.
7908
7909 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
7910
7911         * utils.c (internal_verror): Fix comments, default is yes not no.
7912         Update queries to match.  Default to quit and dump core.
7913
7914 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
7915
7916         * breakpoint.c: Update assuming #if UI_OUT is always true.  Update
7917         copyright.
7918         * defs.h, event-top.c, gdbcmd.h: Ditto.
7919         * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
7920         * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
7921         * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
7922         * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
7923         * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
7924         * mi/mi-main.c:Ditto.
7925
7926         * stack.c, symfile.c: Update copyright.
7927
7928 2002-01-17  Daniel Jacobowitz  <drow@mvista.com>
7929
7930         * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
7931         gdbserver/low-nbsd.c, gdbserver/low-sim.c,
7932         gdbserver/low-sparc.c, gdbserver/low-sun3.c,
7933         gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
7934
7935 2002-01-17  Daniel Jacobowitz  <drow@mvista.com>
7936
7937         * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
7938         * gdbserver/low-lynx.c (myattach): Likewise.
7939         * gdbserver/low-nbsd.c (myattach): Likewise.
7940         * gdbserver/low-sim.c (myattach): Likewise.
7941         * gdbserver/low-sparc.c (myattach): Likewise.
7942         * gdbserver/low-sun3.c (myattach): Likewise.
7943
7944         * gdbserver/low-linux.c (myattach): New function.
7945
7946         * gdbserver/server.c (attach_inferior): New function.
7947         (main): Handle "--attach".
7948
7949 2002-01-16  Andrew Cagney  <ac131313@redhat.com>
7950
7951         * MAINTAINERS (language support): Daniel Jacobwitz is C++
7952         maintainer.
7953
7954 2002-01-15  Daniel Jacobowitz  <drow@mvista.com>
7955
7956         * c-typeprint.c (is_type_conversion_operator): Add additional
7957         check for non-conversion operators.
7958
7959 2002-01-15  Michael Snyder  <msnyder@redhat.com>
7960
7961         * linux-proc.c: Add "info proc" command, a la procfs.c.
7962         (read_mapping): New function, abstract and re-use code.
7963         (linux_find_memory_regions): Use new func read_mapping.
7964         (linux_info_proc_cmd): New function, implement "info proc".
7965         (_initialize_linux_proc): Add new command "info proc".
7966
7967 2002-01-15  Michael Snyder  <msnyder@redhat.com>
7968
7969         * symfile.c (generic_load): Use bfd_map_over_sections method
7970         instead of manipulating bfd structure members directly.
7971         (add_section_size_callback): New function, bfd sections callback
7972         used by generic_load.
7973         (load_sections_callback): New function, bfd sections callback
7974         used by generic_load.
7975
7976 2002-01-15  Elena Zannoni  <ezannoni@redhat.com>
7977
7978         [Based on work by Jim Blandy]
7979         * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
7980         (builtin_type_vec128): Export.
7981         * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
7982         types.
7983         (builtin_type_vec128): New builtin type for 128 bit vector
7984         registers.
7985         (build_gdbtypes): Initialize builtin_type_v16qi and
7986         builtin_type_v8hi. Create the vec128 register builtin type
7987         structure.
7988         (build_builtin_type_vec128): New function.
7989         (_initialize_gdbtypes): Register builtin_type_v16qi and
7990         builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
7991         * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
7992         AltiVec register to new builtin type.
7993
7994 2001-01-15  Daniel Jacobowitz  <drow@mvista.com>
7995
7996         * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
7997         to make_cv_type.
7998
7999 2002-01-14  Andrew Cagney  <ac131313@redhat.com>
8000
8001         * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
8002         CLEAN_UP_REGISTER_VALUE.
8003         * regcache.c (supply_register): Update only call.
8004
8005 2002-01-14  Andrew Cagney  <ac131313@redhat.com>
8006
8007         * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
8008         a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
8009         a29k-*-vxworks* targets as obsolete.
8010
8011 2002-01-14  Michael Snyder  <msnyder@redhat.com>
8012
8013         * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
8014         until we can resolve portability issues.
8015         * gregset.h: Remove references to fpxregs.
8016         * gcore.c (gcore_command): Initialize note_sec to NULL.
8017
8018 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
8019
8020         * signals.c (target_signal_to_name): Rewrite.  Only use
8021         signals[].name when in bounds and non-NULL.
8022
8023 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
8024
8025         From Petr Ledvina <ledvinap@kae.zcu.cz>:
8026         * signals.c (target_signal_to_name): Verify that SIG is within the
8027         bounds of the signals array.
8028
8029 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
8030
8031         * MAINTAINERS: Remove arm-coff and arm-pe from target list.
8032
8033 2002-01-13  Keith Seitz  <keiths@redhat.com>
8034
8035         * stack.c (print_frame_info_base): Print the frame's pc
8036         only if when print_frame_info_listing_hook is not defined.
8037
8038 2002-01-13  Keith Seitz  <keiths@redhat.com>
8039
8040         * varobj.c (varobj_set_value): Make sure that there were no
8041         errors evaluating the object before attempting to set its
8042         value.
8043         value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
8044         so this offset adjustment is no longer necessary.
8045         (create_child): Don't set the error flag if the child is
8046         a CPLUS_FAKE_CHILD.
8047         (value_of_child): If value_fetch_lazy fails, return NULL
8048         so that callers will be notified that an error occurred.
8049         (c_value_of_variable): Delay check of variable's validity
8050         until later. We actually want all structs and unions to have
8051         the value "{...}".
8052         Do not return "???" for variables which could not be evaluated.
8053         This error condition must be returned to the caller so that it
8054         can get the error condition from gdb.
8055         (cplus_name_of_child): Adjust index for vptr before figuring
8056         out the name of the child.
8057         (cplus_value_of_child): If a child's (real) parent is not valid,
8058         don't even bother trying to give a value for it. Just return
8059         an error. Change all instances in this function.
8060         (cplus_type_of_child): If our parent is one of the "fake"
8061         parents, we need to get at the type of the real parent, and
8062         derive the child's true type using this information.
8063
8064 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
8065
8066         From 2002-01-09 John Marshall <johnm@falch.net>:
8067         * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
8068         sources.redhat.com, and tweak some related URLs which had
8069         suffered from linkrot.
8070
8071 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
8072
8073         From Jeff law:
8074         * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
8075         structures passed in registers.
8076
8077 2002-01-13  Eli Zaretskii  <eliz@is.elta.co.il>
8078
8079         * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
8080         white space which prevented compilation.  Reported by DSK
8081         <dsk@student.unsw.edu.au>.
8082
8083 2002-01-11  Michael Snyder  <msnyder@redhat.com>
8084
8085         * symfile.c (build_section_addr_info_from_section_tab):
8086         Use bfd access method instead of manipulating bfd directly.
8087         (syms_from_objfile): Ditto.
8088         (simple_overlay_update_1): Ditto.
8089         (simple_overlay_update): Ditto.
8090         (generic_load): Ditto.
8091         (overlay_unmapped_address): FIXME comment, bfd access methods.
8092         (sections_overlap): FIXME comment, bfd access methods.
8093         (pc_in_mapped_range): FIXME comment, bfd access methods.
8094         (pc_in_unmapped_range): FIXME comment, bfd access methods.
8095         (section_is_mapped): FIXME comment, bfd access methods.
8096         (section_is_overlay): FIXME comment, bfd access methods.
8097
8098         * symfile.c (generic_load): Whitespace and long line cleanups.
8099         Remove duplicate variable, change several local variables to
8100         more appropriate data types.
8101         (print_transfer_performance): Use %lu instead of %ld for ulongs.
8102
8103 2002-01-12  Andrew Cagney  <ac131313@redhat.com>
8104
8105         From Peter Schauer:
8106         * language.c (longest_local_hex_string_custom): Use phex_nz to
8107         convert NUM to a hex string.
8108
8109 2002-01-12  Elena Zannoni  <ezannoni@redhat.com>
8110
8111         * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
8112         the function.
8113         Update Copyright year.
8114
8115 2002-01-12  Andrew Cagney  <ac131313@redhat.com>
8116
8117         * language.c (longest_raw_hex_string): Delete unused function.
8118
8119 2002-01-11  Petr Sorfa  <petrs@caldera.com>
8120
8121         * MAINTAINERS (write-after-approval): Add myself.
8122         * dwarf2read.c (read_tag_string_type): Handling of
8123         DW_AT_byte_size.
8124         (read_tag_string_type): FORTRAN fix to prevent propagation of
8125         first string size.
8126         (set_cu_language): Handling of DW_LANG_Fortran95
8127
8128 2002-01-11  Richard Earnshaw  <rearnsha@arm.com>
8129
8130         * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
8131         GETPID(inferior_ptid).
8132         (store_inferior_registers): Likewise.
8133
8134 2002-01-10  Jason Merrill  <jason@redhat.com>
8135
8136         * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
8137         Fix DW_OP_minus.
8138
8139 2002-01-10  Andrew Cagney  <ac131313@redhat.com>
8140
8141         * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
8142         and bfd/elf32-sh-nbsd.c.
8143
8144 2002-01-10  Michael Snyder  <msnyder@redhat.com>
8145
8146         * NEWS: Mention --pid and corefile/proc-id behavior change.
8147
8148         * Makefile.in: Add rules for gcore.o and linux-proc.o.
8149         * gcore.c: Include cli/cli-decode.h instead of command.h.
8150
8151         * main.c (captured_main): Add new command line option "--pid".
8152         If the second command line argument (following the symbol-file)
8153         begins with a digit, try to attach to it before trying to open
8154         it as a corefile.
8155         (print_gdb_help): Document the "--pid" argument.
8156
8157 2002-01-10  Eli Zaretskii  <eliz@is.elta.co.il>
8158
8159         * completer.c (command_completer): New function.
8160
8161         * completer.h <command_completer>: Add prototype.
8162
8163         * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
8164         completer for the "help" command.
8165
8166 2002-01-09  Jason Merrill  <jason@redhat.com>
8167
8168         * c-typeprint.c (is_type_conversion_operator): Fix thinko.
8169
8170 2002-01-09  Michael Snyder  <msnyder@redhat.com>
8171
8172         * i386-linux-nat.c (fill_fpxregset): Make global.
8173         (store_fpxregset): Ditto.
8174
8175         * gregset.h (gdb_fpxregset_t): Define.
8176         (supply_fpxregset): Prototype.
8177         (fill_fpxregset): Prototype.
8178
8179         * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
8180
8181 2002-01-09  Richard Earnshaw  <rearnsha@arm.com>
8182
8183         * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
8184         * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
8185         * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
8186
8187 2002-01-09  Andrew Cagney  <ac131313@redhat.com>
8188
8189         * MAINTAINERS: Update target maintainer rules so that any
8190         Maintainer can approve a tested patch for a maintenance-only
8191         target.
8192
8193 2002-01-09  Richard Earnshaw  <rearnsha@arm.com>
8194
8195         * MAINTAINERS (write-after-approval): Add myself.
8196
8197         * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
8198         IN_SIGTRAMP.
8199
8200 2002-01-08  Michael Snyder  <msnyder@redhat.com>
8201
8202         * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
8203         real name of the executable, rather than the /proc name.
8204
8205 2002-01-03  Michael Snyder  <msnyder@redhat.com>
8206
8207         Implement a "generate-core-file" command in gdb, save target state.
8208         * gcore.c: New file.  Implement new command 'generate-core-file'.
8209         Save a corefile image of the current state of the inferior.
8210         * linux-proc.c: Add linux-specific code for saving corefiles.
8211         * target.h (struct target_ops): Add new target vectors for saving
8212         corefiles; to_find_memory_regions and to_make_corefile_notes.
8213         (target_find_memory_regions): New macro.
8214         (target_make_corefile_notes): New macro.
8215         * target.c (update_current_target): Inherit new target methods.
8216         (dummy_find_memory_regions): New place-holder method.
8217         (dummy_make_corefile_notes): New place-holder method.
8218         (init_dummy_target): Initialize new dummy target vectors.
8219         * exec.c (exec_set_find_memory_regions): New function.
8220         Allow the exec_ops vector for memory regions to be taken over.
8221         (exec_make_note_section): New function, target vector method.
8222         * defs.h (exec_set_find_memory_regions): Export prototype.
8223         * procfs.c (proc_find_memory_regions): New function, corefile method.
8224         (procfs_make_note_section): New function, corefile method.
8225         (init_procfs_ops): Set new target vector pointers.
8226         (find_memory_regions_callback): New function.
8227         (procfs_do_thread_registers): New function.
8228         (procfs_corefile_thread_callback): New function.
8229         * sol-thread.c (sol_find_memory_regions): New function.
8230         (sol_make_note_section): New function.
8231         (init_sol_thread_ops): Initialize new target vectors.
8232         * inftarg.c (inftarg_set_find_memory_regions): New function.
8233         Allow to_find_memory_regions vector to be taken over.
8234         (inftarg_set_make_corefile_notes): New function.
8235         Allow to_make_corefile_notes vector to be taken over.
8236         * thread-db.c (thread_db_new_objfile): Don't activate thread-db
8237         interface layer if not target_has_execution (may be a corefile).
8238         * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
8239         * config/sparc/sun4sol2.mh: Ditto.
8240         * config/alpha/alpha-linux.mh: Ditto.
8241         * config/arm/linux.mh: Ditto.
8242         * config/i386/x86-64linux.mh: Ditto.
8243         * config/ia64/linux.mh: Ditto.
8244         * config/m68k/linux.mh: Ditto.
8245         * config/mips/linux.mh: Ditto.
8246         * config/powerpc/linux.mh: Ditto.
8247         * config/sparc/linux.mh: Ditto.
8248
8249 2002-01-07  Michael Snyder  <msnyder@redhat.com>
8250
8251         * arm-linux-nat.c: Remove references to regcache.c internal data
8252         (registers[] and register_valid[]).
8253
8254 2002-01-07  Michael Snyder  <msnyder@redhat.com>
8255
8256         * linux-proc.c: New file.  Implement child_pid_to_exec_file,
8257         so that attaching to a pid will automatically read the process's
8258         symbol file and shlibs.
8259         * Makefile.in: Add rule for linux-proc.o.
8260         * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
8261         * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
8262         * config/arm/linux.mh: Ditto.
8263         * config/i386/linux.mh: Ditto.
8264         * config/i386/x86-64linux.mh: Ditto.
8265         * config/ia64/linux.mh: Ditto.
8266         * config/m68k/linux.mh: Ditto.
8267         * config/mips/linux.mh: Ditto.
8268         * config/powerpc/linux.mh: Ditto.
8269         * config/sparc/linux.mh: Ditto.
8270
8271 2002-01-06  Pierre Muller  <muller@ics.u-strasbg.fr>
8272
8273         * win32-nat.c: Add i386-tdep.h dependency.
8274
8275 2002-01-07  Michael Snyder  <msnyder@redhat.com>
8276
8277         * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
8278         instead of bfd_get_arch_size.  Don't bail out just because
8279         there's no exec_bfd.
8280
8281         * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
8282         * p-valprint.c (pascal_object_print_value): Ditto.
8283         * somread.c (som_symtab_read): Ditto.
8284         * symfile.c (simple_free_overlay_region_table): Ditto.
8285         * valops.c (value_assign): Ditto.
8286
8287         * tracepoint.c (tracepoint_save_command): From Klee Dienes --
8288         use tilde_expand and strerror for opening save-tracepoints file.
8289
8290         * thread-db.c (thread_db_new_objfile): Indendation fix.
8291
8292         * infptrace.c (GDB_MAX_ALLOCA): New define.
8293         (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
8294         size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
8295         can be overridden with whatever value is appropriate to the host).
8296         * infttrace.c (child_xfer_memory): Add FIXME warning about use of
8297         alloca to allocate potentially large buffer.
8298         * rs6000-nat.c (child_xfer_memory): Ditto.
8299         * symm-nat.c (child_xfer_memory): Ditto.
8300         * x86-64-linux-nat.c (child_xfer_memory): Ditto.
8301
8302 2002-01-07  Jackie Smith Cashion  <jsmith@redhat.com>
8303
8304         From Nick Clifton  <nickc@redhat.com>
8305         * d10v-tdep.c: Set STACK_START to 0x200bffe.
8306
8307 2002-01-07  Michael Snyder  <msnyder@redhat.com>
8308
8309         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
8310         Don't use exec_bfd if it's NULL.
8311
8312 2002-01-06  Mark Kettenis  <kettenis@gnu.org>
8313
8314         * valops.c (value_arg_coerce): Fix formatting.
8315
8316 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
8317
8318         * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
8319         * gnu-nat.c: Ditto.
8320
8321 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
8322
8323         * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
8324         arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
8325         i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
8326         ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
8327         z8k-coff have not been multi-arched.  Update z8k-coff build
8328         status.
8329
8330 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
8331
8332         * MAINTAINERS: Mark a29k target as obsolete.
8333         * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
8334         (remote-mm.o, remote-udi.o): Obsolete.  Remove references in
8335         comments.
8336         * NEWS: Note that a29k targets are obsolete.
8337         * a29k-tdep.c: Mark as obsolete.
8338         * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
8339         a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
8340         a29k-*-vxworks* targets as obsolete.
8341         * remote-adapt.c: Obsolete.
8342         * remote-eb.c: Obsolete.
8343         * remote-mm.c: Obsolete.
8344         * remote-udi.c: Obsolete.
8345         * config/a29k/a29k-udi.mt: Obsolete.
8346         * config/a29k/a29k.mt: Obsolete.
8347         * config/a29k/tm-a29k.h: Obsolete.
8348         * config/a29k/tm-vx29k.h: Obsolete.
8349         * config/a29k/vx29k.mt: Obsolete.
8350
8351 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
8352
8353         * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
8354         with BFD_ENDIAN_BIG.
8355
8356 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
8357
8358         * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
8359         * configure, config.in: Re-generate.
8360         * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
8361         * defs.h: Do not include <endian.h>.
8362
8363 2002-01-05  Jason Thorpe  <thorpej@wasabisystems.com>
8364
8365         * acconfig.h (HAVE_PT_GETXMMREGS): New.
8366         * config.in: Regenerate.
8367         * configure.in: Update copyright years.
8368         Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
8369         * configure: Regenerate.
8370         * i386bsd-nat.c: Update copyright years.
8371         (fill_gregset): Use regcache_collect.
8372         (fetch_inferior_registers): Only fetch integer registers
8373         if requested to do so.  Add support for XMM registers
8374         using PT_GETXMMREGS.
8375         (store_inferior_registers): Only store integer registers
8376         if requested to do so.  Add support for XMM registers
8377         using PT_SETXMMREGS.
8378         * i386nbsd-nat.c (fetch_inferior_registers): Remove.
8379         (store_inferior_registers): Remove.
8380         (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
8381         (fetch_elfcore_registers): New function.
8382         (i386nbsd_elfcore_fns): New.
8383         (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
8384         * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
8385         i386bsd-nat.o.
8386         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
8387         * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
8388         * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
8389         * config/i386/tm-nbsd.h: Update copyright years.
8390         (HAVE_SSE_REGS): Define.
8391         (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
8392         (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
8393         (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
8394         (SIGCONTEXT_PC_OFFSET): Remove.
8395         (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
8396
8397 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
8398
8399         * configure.tgt: Remove powerpc-*-macos* target.
8400         * config/m68k/xm-mpw.h: Delete file.
8401         * config/xm-mpw.h: Delete file.
8402         * ser-mac.c: Delete file.
8403         * mpw-make.sed: Delete file.
8404         * mpw-config.in: Delete file.
8405         * mac-xdep.c: Delete file.
8406         * mac-gdb.r: Delete file.
8407         * mac-defs.h: Delete file.
8408         * mac-nat.c: Delete file.
8409         * config/powerpc/macos.mh: Delete file.
8410         * config/powerpc/macos.mt: Delete file.
8411         * config/powerpc/nm-macos.h: Delete file.
8412         * config/powerpc/tm-macos.h: Delete file.
8413         * source.c (openp, open_source_file): Remove obsolete code.
8414         * top.c (gdb_readline): Ditto.
8415         * utils.c (query): Ditto.
8416         * event-top.c (display_gdb_prompt): Ditto.
8417         * Makefile.in (ser-mac.o): Delete obsolete target.
8418         * NEWS: Update.
8419
8420 2002-01-04  Andrew Cagney  <ac131313@redhat.com>
8421
8422         * defs.h (BIG_ENDIAN): Delete macro definition.
8423         * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
8424         coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
8425         findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
8426         printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
8427         remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
8428         stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
8429         config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
8430         config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
8431         config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
8432         config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
8433         config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
8434         config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
8435         mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
8436         * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
8437         * gdbarch.c: Re-generate.
8438
8439 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
8440
8441         * thread-db.c (thread_db_new_objfile): Do not enable thread_db
8442         for core files.
8443
8444 2002-01-04  Jason Thorpe  <thorpej@wasabisystems.com>
8445
8446         * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
8447
8448 2002-01-04  Andrew Cagney  <ac131313@redhat.com>
8449
8450         * value.h (value_ptr): Delete typedef.
8451
8452 2002-01-04  Jason Thorpe  <thorpej@wasabisystems.com>
8453
8454         * i386nbsd-nat.c: Update copyright years.
8455         Include i386-tdep.h.
8456
8457 2002-01-04  Elena Zannoni  <ezannoni@redhat.com>
8458
8459         * stabsread.c: Update copyright years.
8460
8461         From Debashis Mahata <debashis.mahata@wipro.com>:
8462         (read_struct_fields): Deal with Sun C compiler erroneous stab
8463         output for structs and unions.
8464         Fix PR gdb/269.
8465
8466 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
8467
8468         * p-valprint.c: Include "cp-abi.h" for baseclass_offset
8469         prototype.
8470
8471 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
8472
8473         * cp-abi.c: Fix whitespace.
8474         (baseclass_offset): New wrapper function.
8475         * cp-abi.h (baseclass_offset): Add prototype.
8476         (struct cp_abi_ops): Add baseclass_offset pointer.
8477
8478         * valops.c (vb_match): Move to...
8479         * gnu-v2-abi.c (vb_match): here.
8480         * valops.c (baseclass_offset): Move to...
8481         * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
8482
8483         * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
8484
8485         * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
8486         * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
8487         * hpacc-abi.c (init_hpacc_ops): Likewise.
8488
8489 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
8490
8491         * valops.c (find_overload_match): Accept obj as a
8492         reference parameter.  Update it before returning.
8493         * value.h (find_overload_match): Update prototype.
8494         * eval.c (evaluate_subexp_standard): Pass object to
8495         find_overload_match by reference.
8496
8497 2002-01-03  Andrew Cagney  <ac131313@redhat.com>
8498
8499         * valarith.c: Replace value_ptr with struct value pointer.  Remove
8500         register attribute from value declarations.
8501         * valops.c: Ditto.
8502         * value.h: Ditto.
8503         * scm-lang.c (scm_lookup_name): Ditto.
8504
8505 2002-01-03  Michael Snyder  <msnyder@redhat.com>
8506
8507         Abstract the functionality of iterating over mapped memory
8508         regions into a general purpose iterator function.
8509         * procfs.c (iterate_over_mappings): New function, general purpose
8510         iterator for memory sections.
8511         (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
8512         (solib_mappings_callback): New function, callback for above.
8513         (info_proc_mappings): Reimpliment using iterate_over_mappings.
8514         (info_mappings_callback): New function, callback for above.
8515
8516         * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
8517
8518 2002-01-01  Mark Kettenis  <kettenis@gnu.org>
8519
8520         * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
8521         * i386-tdep.c: Include "elf-bfd.h".
8522         (process_note_abi_tag_sections): New function.
8523         (i386_gdbarch_init): Add code to recognize various OS/ABI
8524         combinations.
8525
8526         * maint.c (_initialize_maint_cmds): Add missing \ in
8527         string-literal.
8528
8529 For older changes see ChangeLog-2001
8530 \f
8531 Local Variables:
8532 mode: change-log
8533 left-margin: 8
8534 fill-column: 74
8535 version-control: never
8536 End: