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