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