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