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