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