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