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