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