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