*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
a1b9830c
DJ
12002-03-21 Daniel Jacobowitz <drow@mvista.com>
2
3 * dbxread.c (process_one_symbol): Extend the first N_SLINE
4 in a function to cover the entire beginning of the function
5 as well if it does not already.
6
8b5790f2
TR
72002-03-21 Tom Rix <trix@redhat.com>
8
9 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
10 (rs6000_ptrace64): Renamed from ptrace64.
11
bdbe5747
MH
122002-03-20 Martin M. Hunt <hunt@redhat.com>
13
14 * gdbserver/remote-utils.c (remote_open): Don't call
15 getprotobyname, we're all using TCP here so just use
16 IPPROTO_TCP.
17 * gdbserver/gdbreplay.c (remote_open): Ditto.
18
192002-03-20 Martin M. Hunt <hunt@redhat.com>
20
21 * regcache.c (_initialize_regcache): No need to call
22 build_regcache() at this time; it gets called whenever
23 the gdbarch changes.
24
7781cd62
DB
252002-03-20 David O'Brien <obrien@FreeBSD.org>
26
27 * sparc-nat.c: Include sys/param.h where possible.
28
f65ca430
DJ
292002-03-20 Daniel Jacobowitz <drow@mvista.com>
30
31 Fix PR gdb/422.
32 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
33 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
34 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
35 complex types.
36 * stabsread.c (rs6000_builtin_type): Likewise.
37 (read_sun_floating_type): Likewise.
38
0c867556
PS
392002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
40
41 * stabsread.c (read_member_functions): Remove skip code for duplicate
42 constructor/destructor methods. Use standard parsing for these
43 methods and just do not chain them to the list of methods after
44 parsing.
45
12b9c64f
AO
462002-03-19 Alexandre Oliva <aoliva@redhat.com>
47
48 * coffread.c: Remove redundant static declarations. Replace
49 occurrences of `PTR' with `void *'.
50 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
51 * top.h (quit_cover): Likewise.
52 * defs.h (catch_errors): Likewise.
53
349c5d5f
AC
542002-03-18 Andrew Cagney <ac131313@redhat.com>
55
56 * defs.h (XMALLOC): Define.
57 * gdb-events.sh (XMALLOC): Delete macro.
58 * gdb-events.c, gdb-events.h: Regenerate.
59 * gdbarch.sh (XMALLOC): Delete macro.
60 * gdbarch.c: Regenerate.
61 * serial.c (XMALLOC): Delete macro.
62 * ui-file.c (XMALLOC): Ditto.
63 * ser-unix.h (XMALLOC): Ditto.
64 * sh-tdep.c (XMALLOC): Ditto.
65 * ui-out.c (XMALLOC): Ditto.
66 * utils.c (XMALLOC): Ditto.
67 * i386-tdep.c (XMALLOC): Ditto.
68 * gdb-events.c (XMALLOC): Ditto.
69 * d10v-tdep.c (XMALLOC): Ditto.
70 * cli-out.c (XMALLOC): Ditto.
71
72 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
73 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
74 * ui-file.c, ui-out.c: Ditto.
75
7d0766f3
AC
762002-03-18 Andrew Cagney <ac131313@redhat.com>
77
78 * command.h (struct cmd_list_element): Add field context.
79 (set_cmd_context, get_cmd_context): Declare.
80 * cli/cli-decode.h: Ditto.
81 * cli/cli-decode.c (get_cmd_context): New function.
82 (set_cmd_context): New function.
83 (add_cmd): Initialize context.
84 Part of fixing PR gdb/145 and PR gdb/146.
85
5913bcb0
AC
862002-03-17 Andrew Cagney <ac131313@redhat.com>
87
1868c04e
AC
88 * cli/cli-decode.c (cmd_type): New function.
89 * command.h (cmd_type): Declare.
90 * infrun.c (set_schedlock_func): Call function cmd_type.
91 * kod.c (kod_set_os): Call cmd_type.
92 * cris-tdep.c (cris_version_update): Use function cmd_type.
93 (cris_mode_update, cris_abi_update): Ditto.
94
5913bcb0
AC
95 * command.h: (execute_cmd_post_hook): Declare.
96 (execute_cmd_pre_hook): Declare.
97 * cli/cli-script.c (clear_hook_in_cleanup): New function.
98 (execute_cmd_post_hook, execute_cmd_pre_hook): New
99 functions. Execute pre/post hook while ensuring that afterwords
100 hook_in is cleared.
101 * top.c (execute_command): Use execute_cmd_post_hook, and
102 execute_cmd_pre_hook to execute pre/post commands.
103 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
104 hook_stop_stub.
105 (hook_stop_stub): Call execute_cmd_pre_hook.
106
b51450c9
AC
1072002-03-17 Andrew Cagney <ac131313@redhat.com>
108
109 * kod.c (kod_set_os): Revert previous change. Is called by ``info
110 set'' and this leads to a core dump. Move xstrdup of
111 operating_system to after check that it is not NULL.
112
f66c9f11
AC
1132002-03-17 Andrew Cagney <ac131313@redhat.com>
114
8e694ecf
AC
115 * kod.c (kod_set_os): Remove unnecessary check that
116 ``command->type'' is set_cmd.
117
f66c9f11
AC
118 * valprint.c (set_input_radix): Use input_radix.
119 (set_output_radix): Use output_radix.
120 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
121 isn't reverted.
122
9d01611c
AC
1232002-03-16 Andrew Cagney <ac131313@redhat.com>
124
125 * value.h (struct value): Delete field ``substring_addr''. Change
126 aligner fields to force_doublest_align, force_longest_align,
ee2d3b3a
AC
127 force_core_addr_align and force_pointer_aligh.
128
129 * value.h (struct value): Fix typo in above change.
9d01611c 130
4156bb53
PS
1312002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
132
133 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
134 to fix internal_error from ``maintenance print architecture''.
135
0e5e3ea6
PS
1362002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
137
138 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
139 for gcc versions after gcc-2.8.1.
140
9b013045
PS
1412002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
142
143 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
144 for method resolution. Restore adjustment of ``this'' pointer after
145 calling value_struct_elt, which was accidentally removed during the
146 HP merge.
147
376c9600
AC
1482002-03-15 Andrew Cagney <ac131313@redhat.com>
149
150 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
151 value_of_register.
152 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
153 get_saved_register.
154 * value.h (value_of_register): Update.
155
a4db0f07
RH
1562002-03-14 Richard Henderson <rth@redhat.com>
157
158 * configure.in: Detect declaration for canonicalize_file_name.
159 * utils.c (canonicalize_file_name): Declare, if needed.
160 (gdb_realpath): Prefer realpath if available and usable.
161 * config.in, configure: Rebuild.
162
96383835
RH
1632002-03-14 Richard Henderson <rth@redhat.com>
164
165 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
166 a constant array bound.
167
168 * MAINTAINERS: Add myself to write-after-approval.
169
75245b24
MS
1702002-03-14 Michael Snyder <msnyder@redhat.com>
171
172 * symfile.c (syms_from_objfile): Return immediately if no syms.
173 (symbol_file_add): Return immediately if no syms.
174 (find_sym_fns): Return immediately if no syms.
175
e641a1ca
ML
1762002-03-13 Michal Ludvig <mludvig@suse.cz>
177
178 * gdbserver/remote-util.c (remote_open): Print remote-side's
179 IP address when remote debugging over the network.
180
df08bfec
DB
1812002-03-12 David O'Brien <obrien@FreeBSD.org>
182
183 * config/sparc/fbsd.mh: Fix copyright.
184 * config/sparc/fbsd.mt: Likewise.
185
9a57864f
RE
1862002-03-11 Richard Earnshaw <rearnsha@arm.com>
187
188 * MAINTAINERS: Fix typo in name of gdb warnings option.
189 (x86-64): Fix formating so that this can be parsed by awk.
190
dd7bf85e
DJ
1912002-03-10 Daniel Jacobowitz <drow@mvista.com>
192
193 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
194 * defs.h: Include "gdb/signals.h".
195 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
196
33a0a2ac
ML
1972002-03-10 Michal Ludvig <mludvig@suse.cz>
198
199 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
200 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
201 from x86-64-tdep.h
202
dd824b04
DJ
2032002-03-10 Daniel Jacobowitz <drow@mvista.com>
204 Don Howard <dhoward@redhat.com>
205
206 * mips-tdep.c (ST0_FR): Define.
207 (mips2_fp_compat): New function, temporarily disabled.
208 (mips_read_fp_register_single): New function.
209 (mips_read_fp_register_double): New function.
210 (mips_print_register): Use them.
211 (do_fp_register_row): Likewise.
212
6a41ff59
AC
2132002-03-09 Andrew Cagney <ac131313@redhat.com>
214
215 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
216 approval''.
217
4ea09c10
PS
2182002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
219
220 * stabsread.c (read_member_functions): Fix is_stub test for
221 static member functions, improve comment.
222
6ccc741d
RE
2232002-03-07 Richard Earnshaw <rearnsha@arm.com>
224
225 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
226 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
227 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
228 commands that set boolean values.
229 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
230 (arm_rdi_resume): Always initialize PC.
231 (arm_rdi_open): Don't use rslt as a boolean.
232 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
233 (arm_rdi_fetch_registers, arm_rdi_store_registers)
234 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
235 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
236
438013df
AO
2372002-03-06 Alexandre Oliva <aoliva@redhat.com>
238
239 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
240 * configure: Rebuilt.
241
70ed8774
SC
2422002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
243
244 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
245 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
246
5ba2abeb
AC
2472002-03-06 Andrew Cagney <ac131313@redhat.com>
248
249 * cli/cli-decode.c (set_cmd_completer): New function.
250 * command.h (set_cmd_completer): Declare.
251 * cli/cli-decode.h (set_cmd_completer): Ditto.
252
253 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
254 * cli/cli-cmds.c (init_cli_cmds): Ditto.
255 * win32-nat.c (_initialize_inftarg): Ditto.
256 * remote-rdi.c (_initialize_remote_rdi): Ditto.
257 * proc-api.c (_initialize_proc_api): Ditto.
258 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
259 * source.c (_initialize_source): Ditto.
260 * exec.c (_initialize_exec): Ditto.
261 * solib.c (_initialize_solib): Ditto.
262 * top.c (init_main): Ditto.
263 * tracepoint.c (_initialize_tracepoint): Ditto.
264 * symfile.c (_initialize_symfile): Ditto.
265 * printcmd.c (_initialize_printcmd): Ditto.
266 * infcmd.c (_initialize_infcmd): Ditto.
267 * corefile.c (_initialize_core): Ditto.
268
f779ca99
AC
2692002-03-05 Andrew Cagney <ac131313@redhat.com>
270
271 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
272
01a3934b
AC
2732002-03-05 Andrew Cagney <ac131313@redhat.com>
274
275 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
276
37057839
AC
2772002-03-05 Andrew Cagney <ac131313@redhat.com>
278
279 * NEWS: Update headings, 5.2 has branched.
280
c6ecbae5
DJ
2812002-03-04 Daniel Jacobowitz <drow@mvista.com>
282
283 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
284 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
285 (register_addr, REGISTER_RAW_SIZE): Likewise.
286 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
287 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
288
e9f30c21
ML
2892002-03-03 Michal Ludvig <mludvig@suse.cz>
290
291 * MAINTAINERS (x86-64): Add myself.
292 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
293 changed value_ptr -> struct value *
294
54394ac3
DB
2952002-03-01 David O'Brien <obrien@FreeBSD.org>
296
297 * configure.host (sparc64-*-freebsd): Add.
298 * configure.tgt: Likewise.
299 * config/sparc/fbsd.mh: New file.
300 * config/sparc/fbsd.mt: Likewise.
301 * config/sparc/nm-fbsd.h: Likewise.
302 * config/sparc/tm-fbsd.h: Likewise.
303
bfe95955
DJ
3042002-03-01 Daniel Jacobowitz <drow@mvista.com>
305
306 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
307 regformats/reg-s390x.dat.
308
f33c6cbf
AC
3092002-03-01 Andrew Cagney <ac131313@redhat.com>
310
311 * utils.c: Add FIXME explaining true/false problem.
312
5ecaa7dd
AC
3132002-02-28 Andrew Cagney <ac131313@redhat.com>
314
315 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
316
2a251cc2
MC
3172002-02-28 Michael Chastain <mec@shout.net>
318
319 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
320
6a8031a3 3212002-02-28 Daniel Jacobowitz <drow@mvista.com>
265f716b
DJ
322
323 * gdbserver/linux-s390-low.c: New file.
324 * regformats/reg-s390.dat: New file.
325 * regformats/reg-s390x.dat: New file.
326 * gdbserver/configure.srv: Add S/390.
327 * gdbserver/Makefile.in: Add S/390.
328 * configure.tgt: Enable gdbserver for S/390.
329
ac469903
EZ
3302002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
331
332 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
333 first line of the doc string for "info dos", except at the end of
334 the sentence, since the short help stops at the first period.
335
985cb1a3
JM
3362002-02-28 Jason Merrill <jason@redhat.com>
337
338 * dwarf2read.c (dwarf_cfi_name): Add new codes.
339
c570663e
FF
3402002-02-27 Fred Fish <fnf@redhat.com>
341
342 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
343 comment (dumy -> dummy).
344
43630227
PS
3452002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
346
347 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
348
b84911e8
RB
3492002-02-27 Rodney Brown <rbrown64@csc.com.au>
350
351 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
352
58caa3dc
DJ
3532002-02-27 Daniel Jacobowitz <drow@mvista.com>
354
355 * gdbserver/acconfig.h: New file.
356 * gdbserver/i387-fp.c: New file.
357 * gdbserver/i387-fp.h: New file.
358 * gdbserver/linux-x86-64.c: New file.
359 * regformats/reg-x86-64.dat: New file.
360 * configure.tgt: Add x86_64-*-linux* gdbserver support.
361 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
362 * gdbserver/configure.in: Add support for regsets.
363 * gdbserver/config.in: Regenerate.
364 * gdbserver/configure: Regenerate.
365 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
366 * gdbserver/linux-low.h: New file.
367 * gdbserver/linux-low.c: Include "linux-low.h". Add support
368 for regsets.
369 * gdbserver/linux-arm-low.c: Include "linux-low.h".
370 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
371 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
372 * gdbserver/linux-mips-low.c: Include "linux-low.h".
373 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
374 * gdbserver/linux-sh-low.c: Include "linux-low.h".
375 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
376 "i387-fp.h". Add PTRACE_GETREGS and friends.
377 * gdbserver/regcache.c (supply_register): New function.
378 (supply_register_by_name): New function.
379 (collect_register): New function.
380 (collect_register_by_name): New function.
381
93652174
DJ
3822002-02-27 Daniel Jacobowitz <drow@mvista.com>
383
384 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
385 (config.status): Add configure.srv dependency.
386 (server_h): Add config.h dependency.
387
a02e4a61
DJ
3882002-02-27 Daniel Jacobowitz <drow@mvista.com>
389
390 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
391 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
392 * gdbserver/configure.srv: Change i386-*-linux* to use
393 reg-i386-linux.o.
394
ce0eebec
AC
3952002-02-26 Andrew Cagney <ac131313@redhat.com>
396
397 * x86-64-tdep.c: Re-indent. Update copyright date.
398
82dbc5f7
AC
3992002-02-26 Andrew Cagney <ac131313@redhat.com>
400
401 From Michal Ludvig <mludvig@suse.cz>:
402 * x86-64-tdep.c (value.h): Delete.
403 (gdb_assert.h): Include.
404 (x86_64_register_convert_to_virtual,
405 x86_64_register_convert_to_raw ): Add check which lets only
406 floating-point values to be converted.
407 (value_push): Delete.
408 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
409 (i386_gdbarch_init): Number of register_bytes fixed.
410
e4621584
AC
4112002-02-26 Andrew Cagney <ac131313@redhat.com>
412
413 * MAINTAINERS: Add x86-64 target.
414
81a9a963
AC
4152002-02-26 Andrew Cagney <ac131313@redhat.com>
416
417 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
418 * osfsolib.c (solib_map_sections): Ditto.
419 * irix5-nat.c (solib_map_sections): Ditto.
420 * corelow.c (gdb_check_format): Ditto.
421 * symfile.c (symfile_bfd_open): Ditto.
422 * solib.c (solib_map_sections): Ditto.
423 Fix PR gdb/354.
424
0f017ab9
AC
4252002-02-26 Andrew Cagney <ac131313@redhat.com>
426
427 * remote.c (_initialize_remote): By default, disable ``e'' and
428 ``E'' step out-of-range packets.
429
75738c29
AS
4302002-02-26 Andreas Schwab <schwab@suse.de>
431
432 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
433 m68k_linux_frame_saved_pc.
434 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
435 in_sigtramp.
436 (SIGCONTEXT_PC_OFFSET): Remove.
437 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
438 m68k_linux_sigtramp_saved_pc): New functions.
439 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
440 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
441 (UCONTEXT_PC_OFFSET): Define.
442 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
443 non-RT and RT signal trampolines.
444
7e8ed687
RE
4452002-02-26 Richard Earnshaw <rearnsha@arm.com>
446
447 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
448 (TARGET_NBPG, STACK_END_ADDR): Delete
449 (VARIABLES_INSIDE_BLOCK): Delete.
450
6972bc8b
AC
4512002-02-25 Andrew Cagney <ac131313@redhat.com>
452
453 * utils.c (perror_with_name): Make string parameter constant.
454 (print_sys_errmsg): Ditto.
455 (query): Ditto.
456 * defs.h (perror_with_name): Update.
457 (print_sys_errmsg): Update.
458 (query): Update.
459
aa32f823
DJ
4602002-02-25 Daniel Jacobowitz <drow@mvista.com>
461
462 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
463 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
464
19caaa45
PS
4652002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
466
467 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
468 if it already matches the current architecture from the exec file.
469 Include arch-utils.h for gdbarch_info_init prototype.
470 * Makefile.in (rs6000-nat.o): Update dependencies.
471
d951901f
EZ
4722002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
473
474 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
475 list of exported variables.
476
7ea81414
DJ
4772002-02-24 Daniel Jacobowitz <drow@mvista.com>
478
479 * gdbserver/configure.srv: New file.
480 * gdbserver/configure.in: Use configure.srv instead
481 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
482 from it.
483 * gdbserver/configure: Regenerated.
484 * gdbserver/terminal.h: New file.
485 * gdbserver/Makefile.in: Update for configure changes. Remove
486 more unneeded include paths.
487
080fe24b
AC
4882002-02-24 Andrew Cagney <ac131313@redhat.com>
489
490 From wiz at danbala:
491 * config/sparc/tm-sp64.h: Fix grammar and typos.
492 Fix PR gdb/287.
493
8605d56e
AC
4942002-02-24 Andrew Cagney <ac131313@redhat.com>
495
496 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
a4b6fc86
AC
497 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
498 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
499 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
ca557f44
AC
500 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
501 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
502 * s390-tdep.c: Ditto.
92362027
AC
503 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
504 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
505 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
506 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
507 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
508 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
509 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
510 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
511 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
512 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
8605d56e
AC
513 Fix PR gdb/378.
514
8ed32cc0
AC
5152002-02-23 Andrew Cagney <ac131313@redhat.com>
516
a3007b6f
AC
517 * lin-thread.c: Delete file.
518 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
519 to gdb_proc_service.h.
520 * configure: Re-generate.
521
50a9e2f1
AC
522 * ocd.c (ocd_open): Do not try to open the "ocd" device.
523 * serial.c (serial_open): Delete check for "ocd".
524 Fix PR gdb/349.
525
8b6e7932
AC
526 * Makefile.in (linux-thread.o): Delete target.
527 * linux-thread.c: Delete file.
528
d155c46b
AC
529 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
530 renamed SH files to be consistent.
531
8ed32cc0
AC
532 * symtab.c (sort_search_symbols): Use xfree.
533
0e18d038
RE
5342002-02-23 Richard Earnshaw <rearnsha@arm.com>
535
536 * arm-linux-tdep.c (arm_linux_init_abi): Register
537 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
538 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
539 definition with undef, since we don't want the sysvr4 definition.
540 (SKIP_TRAMPOLINE_CODE): Likewise.
541
27aac7ff
AC
5422002-02-23 Andrew Cagney <ac131313@redhat.com>
543
544 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
545
546 * configure.in: (AC_CHECK_FUNCS) Added test for
547 canonicalize_file_name Regenerated.
548 * config.in, configure: Regenerated.
549 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
550 defined use canonicalize_file_name.
551
65a6e0ee
MC
5522002-02-23 Michael Chastain <mec@shout.net>
553
554 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
555
47b95330
AC
5562002-02-23 Andrew Cagney <ac131313@redhat.com>
557
558 * README: Remove references to cygnus.com.
559 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
560 dot com'' form. Remove references to cygnus.com and sourceware.
561
696f451b
AC
5622002-02-23 Andrew Cagney <ac131313@redhat.com>
563
564 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
565 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
566 1003.1-2001 no longer allows "head -1".
567 * gdb/Makefile.in (version.c): Likewise.
568 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
569 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
570 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
571
bbaca940
AC
5722002-02-23 Andrew Cagney <ac131313@redhat.com>
573
574 * cli/cli-decode.c (cmd_cfunc_eq): New function.
575 * command.h (cmd_cfunc_eq): Declare.
576 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
577
578 * cli/cli-cmds.h (is_complete_command): Change parameter to a
579 ``struct cmd_list_element *''.
580 * cli/cli-cmds.c (is_complete_command): Update. Use
581 cmd_cfunc_eq.
582 * top.c (execute_command): Pass the command to
583 is_complete_command.
584 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
585
b8b8b047
AC
5862002-02-23 Andrew Cagney <ac131313@redhat.com>
587
588 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
589 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
590 architecture defines.
591 * s390-tdep.c (s390_gdbarch_init): Likewise.
592
19d3fc80
RE
5932002-02-23 Richard Earnshaw <rearnsha@arm.com>
594
595 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
596 (arm_linux_push_arguments): Likewise.
597 (arm_linux_init_abi): Register them. Also register linux-specific
598 call_dummy_words.
599 (find_minsym_and_objfile): Use strcmp, not STREQ.
600 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
601 (arm_linux_call_dummy_words): Delete declaration.
602 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
603 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
604 declarations.
605 (LOWEST_PC): Delete.
606
3ab13650
PS
6072002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
608
609 * maint.c (print_section_info): Do not prepend `0x' to filepos
610 output, it will be handled by local_hex_string_custom.
611
19d3fc80 6122002-02-23 Richard Earnshaw <rearnsha@arm.com>
85ae890c
RE
613
614 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
615 (store_newfpe_double, store_newfpe_extended, store_fpregister)
616 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
617
d85a5daf
JB
6182002-02-22 Jim Blandy <jimb@redhat.com>
619
620 Indicate that the bcache functions don't change the strings
621 they're passed.
622 * bcache.h (bcache, hash): Add `const' keywords to declarations.
623 * bcache.c (bcache, hash): Add `const' keywords to definitions.
624
eeb25b8a
PM
6252002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
626
627 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
628
6badb179
CF
6292002-02-21 Christopher Faylor <cgf@redhat.com>
630
631 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
632 find the complete path to a loaded DLL.
633
e8717518
FF
6342002-02-21 Fred Fish <fnf@redhat.com>
635
636 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
637 that marks the end of the range of a function, enter a line number
638 entry that has a line number of zero and a PC offset that matches
639 the end of the function. This starts a range of PC's for which no
640 line number information is known.
641 * symtab.c (find_pc_sect_line): If our best fit is in a range of
642 PC's for which no line number info is found (line number is zero)
643 then we didn't find any valid line information.
644 * symtab.h: Document use of zero line number entry.
645
9abe5450
EZ
6462002-02-21 Elena Zannoni <ezannoni@redhat.com>
647
648 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
649 (have_ptrace_getvrregs): Define for run time checks.
650 (gdb_vrregset_t): New type for Altivec register handling.
651 (fetch_register, store_register): Fetch/store altivec register
652 when needed.
653 (fetch_altivec_register, store_altivec_register): New functions.
654 (supply_vrregset, fill_vrregset): New functions.
655 (fetch_altivec_registers, store_altivec_registers): New functions.
656 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
657 registers as well.
658
aaa38bb5
AJ
6592002-02-21 Jiri Smid <smid@suse.cz>
660
661 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
662
b34db576
RE
6632002-02-21 Richard Earnshaw <rearnsha@arm.com>
664
665 * Makefile.in (armnbsd-nat.o): Update dependencies.
666 * armnbsd-nat.c (supply_gregset): New function. Common code to
667 supply the integer register set.
668 (supply_fparegset): New function. Similar for FPA registers.
669 (fetch_regs, fetch_fp_regs): Use them.
670 (fetch_core_registers): Likewise.
671 (fetch_elfcore_registers): New function.
672 (arm_netbsd_elfcore_fns): New core-file type specification.
673 (_initialize_arm_netbsd_nat): Register it.
674
3e56fc4b
RE
6752002-02-21 Richard Earnshaw <rearnsha@arm.com>
676
677 * armnbsd-nat.c: Include gdbcore.h.
678 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
679 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
680 'void' to declaration, to shut up ARI.
681 (fetch_core_registers): Make static. Rewrite using supply_register.
682 (arm_netbsd_core_fns): New core-file type specification.
683 (_initialize_arm_netbsd_nat): New function.
684
097f6b0b
CF
6852002-02-21 Christopher Faylor <cgf@redhat.com>
686
687 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
688 value.
689
c914e0cc
CF
6902002-02-20 Christopher Faylor <cgf@redhat.com>
691
692 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
693 fails.
694
385fa495
DJ
6952002-02-20 Daniel Jacobowitz <drow@mvista.com>
696
697 * jv-exp.y (parse_number): Change type of implicit longs
698 to builtin_type_uint64.
699
e5f1222d
DJ
7002002-02-20 Daniel Jacobowitz <drow@mvista.com>
701
702 * gdbserver/linux-low.c (mywait): Change argument to waitpid
703 to be an integer instead of a `union wait'.
704
75c9abc6
DJ
7052002-02-20 Daniel Jacobowitz <drow@mvista.com>
706
707 * mips-linux-nat.c: Call the operating system GNU/Linux.
708 * mips-linux-tdep.c: Likewise.
709 * mips-tdep.c: Likewise.
710
551792a5
DJ
7112002-02-20 Daniel Jacobowitz <drow@mvista.com>
712
713 Fix PR gdb/265.
714 * jv-exp.y (parse_number): Handle 64-bit integers.
715
ee6e2b82
DJ
7162002-02-20 Daniel Jacobowitz <drow@mvista.com>
717
718 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
719 AC_STDC_HEADERS to AC_HEADER_STDC.
720 * gdbserver/configure: Regenerated.
721
a48442a0
RE
7222002-02-20 Richard Earnshaw <rearnsha@arm.com>
723
724 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
725 is defined.
726 * sparc-tdep.c (get_longjmp_target): Likewise.
727
fe419ffc
RE
7282002-02-20 Richard Earnshaw <rearnsha@arm.com>
729
730 * News: Add news about ARM and Multi-arch. Mention the new target
731 arm*-*-netbsd*.
732
5832ed7e
JB
7332002-02-19 Jim Blandy <jimb@redhat.com>
734
735 * stabsread.c (error_type_complaint): Improve error message.
736
84563040
DJ
7372002-02-19 Daniel Jacobowitz <drow@mvista.com>
738
739 * gdbserver/README: Update documentation.
740 * gdbserver/configure.in: Update configury to match documentation.
741 * gdbserver/Makefile.in: Likewise.
742 * gdbserver/configure: Regenerated.
743 * gdbserver/aclocal.m4: New file, generated by aclocal.
744 * gdbserver/config.in: New file, generated by autoheader.
745
375fd65b
RE
7462002-02-19 Richard Earnshaw <rearnsha@arm.com>
747
748 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
749 armnbsd-nat.c.
750
08216dd7
RE
7512002-02-19 Richard Earnshaw <rearnsha@arm.com>
752
753 * arm-tdep.h (enum arm_float_model): New enum.
754 (struct gdbarch_tdep): Add fp_model.
755 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
756 up floating-point conversions until we know the floating-point model
757 in use by the inferior. Don't complain about being unable to
758 determine the ABI of the inferior when we don't have one.
759 (arm_extract_return_value): Support different floating-point models.
760 (arm_store_return_value): Likewise.
aaa38bb5 761 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
08216dd7
RE
762 ARM_FLOAT_SOFT.
763 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
764
65d6d66a
PS
7652002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
766
767 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
768 of ``current_gdbarch''.
769
47221191
RE
7702002-02-19 Richard Earnshaw <rearnsha@arm.com>
771
772 * armnbsd-nat.c : ANSIfy all function declarations.
773 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
774 (fetch_inferior_registers): Re-implement in terms of above.
775 (store_register, store_regs, store_fp_register, store_fp_regs): New.
776 (store_inferior_registers): Re-implement in terms of above.
777
fdf39c9a
RE
7782002-02-19 Richard Earnshaw <rearnsha@arm.com>
779
aaa38bb5 780 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
fdf39c9a
RE
781 kernel.
782 * arm-linux-tdep.c: Likewise.
783 * config/arm/tm-linux.h: Likewise.
784
93247f88
RE
7852002-02-19 Richard Earnshaw <rearnsha@arm.com>
786
787 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
788 * config/arm/nbsd.mt (TM_FILE): Delete.
789 * config/arm/tm-nbsd.h: Delete.
790
d7b486e7
RE
7912002-02-19 Richard Earnshaw <rearnsha@arm.com>
792
793 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
794 Initialize CALL_DUMMY_LENGTH.
795
41d39a95
RE
7962002-02-19 Richard Earnshaw <rearnsha@arm.com>
797
798 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
799 function.
800 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
aaa38bb5 801 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
41d39a95
RE
802 defines one thing and that is incorrect for this port.
803 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
804
e1195560
PM
8052002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
806
807 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
808
c1748f97
PM
8092002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
810
811 * win32-nat.c (display_selector): New function. Displays information
812 about the information returned by GetThreadSelectorEntry API function.
813 (display_selectors): New function. Displays the infomation of
814 the selector given as argument, or of CS, DS ans FS selectors
815 if no argument is given.
816 ( _initialize_inftarg): Add "w32" as info prefix command.
817 Add "info w32 selector" as command calling display_selectors.
818
e41e6bbf
PM
8192002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
820
821 * i386-tdep.c (get_longjmp_target): Fix compilation failure
822 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
823 if not defined.
824
0d3a9f48
RE
8252002-02-18 Richard Earnshaw <rearnsha@arm.com>
826
827 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
828
3fb4b924
RE
8292002-02-18 Richard Earnshaw <rearnsha@arm.com>
830
831 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
832 (arm_fix_call_dummy): Call it.
833 (arm_call_dummy_breakpoint_offset): Delete.
834 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
835 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
836
7f55af32
AC
8372002-02-18 Andrew Cagney <ac131313@redhat.com>
838
839 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
840 Default to func_frame_chain_valid.
841 * gdbarch.h, gdbarch.c: Re-generate.
842 * frame.h (FRAME_CHAIN_VALID): Delete definition.
843
05f13b9c
EZ
8442002-02-18 Elena Zannoni <ezannoni@redhat.com>
845
846 * ppc-linux-nat.c: Update copyright.
847 (fetch_register, store_register): Add tid parameter, don't compute
848 tid here.
849 (fetch_ppc_registers, store_ppc_registers): Add tid
850 parameter. Pass it along to callees.
851 (fetch_inferior_registers, store_inferior_registers): Compute tid
852 here, and pass it to calleed functions.
853 (fill_gregset, supply_fpregset): Clean up formatting.
854
d7afb4c9
RE
8552002-02-18 Richard Earnshaw <rearnsha@arm.com>
856
857 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
858 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
859
9df628e0
RE
8602002-02-18 Richard Earnshaw <rearnsha@arm.com>
861
862 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
863 * gdbarch.c gdbarch.h: Regenerate.
864 * breakpoint.c (create_longjmp_breakpoint): Always compile this
865 function.
866 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
867 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
868 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
869
870 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
871 * arm-tdep.c (arm_get_longjmp_target): New function.
872 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
873 this to a positive value register arm_get_longjmp_target as the
874 longjmp handler.
875 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
876 (arm_linux_init_abi): Set up longjmp description in tdep.
877 * armnbsd-nat.c (get_longjmp_target): Delete.
878 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
879 description in tdep.
880 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
881 (get_longjmp_target): Delete declaration.
882 (GET_LONGJMP_TARGET): Delete.
883 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
884 (GET_LONGJMP_TARGET): Delete.
885
57bc8964
KB
8862002-02-17 Kevin Buettner <kevinb@redhat.com>
887
888 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
889 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
890 of ``current_gdbarch''.
891
83d31a92
TT
8922002-02-17 Tom Tromey <tromey@redhat.com>
893
894 * cli/cli-cmds.c (compare_strings): New function.
895 (complete_command): Only print each unique item once.
896 * completer.h (complete_line): Declare.
897 * completer.c (complete_line): New function.
898 (line_completion_function): Use it.
899
17ef5d92
AC
9002002-02-16 Andrew Cagney <ac131313@redhat.com>
901
902 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
903 * gdbarch.h, gdbarch.c: Re-generate.
904
491b8946
DJ
9052002-02-16 Daniel Jacobowitz <drow@mvista.com>
906
907 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
908
9092002-02-16 Daniel Jacobowitz <drow@mvista.com>
910
911 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
912 * valops.c (value_arg_coerce): Don't take the address of a reference
913 to convert an argument to a reference.
914
dfe7f3ac
CF
9152002-02-15 Christopher Faylor <cgf@redhat.com>
916
917 * win32-nat.c (get_image_name): New function.
918 (handle_load_dll): Use get_image_name function.
919 (get_child_debug_event): Avoid registering debug events until possibly
920 execed process is started.
921 (child_create_inferior): Allow invocation via shell so that command
922 line redirection, etc. works ok.
923 (_initialize_inftarg): Add new command: "set shell" to control whether
924 a shell is used to start a process.
925
1d33e73a
DJ
9262002-02-15 Daniel Jacobowitz <drow@mvista.com>
927
928 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
929 instead of find_register_by_number.
930 (cannot_store_register): Likewise.
931
48cd0caa
PM
9322002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
933
aaa38bb5 934 * dwarf2read.c: Replace fprintf (stderr, ...) by
48cd0caa
PM
935 fprintf_unfiltered (gdb_stderr, ...).
936
8656e7d8
DJ
9372002-02-15 Daniel Jacobowitz <drow@mvista.com>
938
939 * gdbserver/gdbserver.1: Document --attach.
940
66e810cd
RE
9412002-02-15 Richard Earnshaw <rearnsha@arm.com>
942
943 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
944 descriptions.
945 * arm-tdep.c (arm_default_arm_le_breakpoint)
946 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
947 (arm_default_thumb_be_breakpoint): New. Initialize them from
948 traditional breakpoint defines.
949 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
950 (arm_gdbarch_init): Initialize new breakpoint variables.
951 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
952 (arm_linux_init_abi): Initialize linux-specific breakpoint.
953 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
954 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
955 code out to ...
956 (arm_netbsd_init_abi_common): ... here; new function.
957 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
958 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
959 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
960 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
961
97e03143
RE
9622002-02-15 Richard Earnshaw <rearnsha@arm.com>
963
964 * arm-tdep.h (enum arm_abi): New enum.
965 (struct gdbarch_tdep): New structure.
966 (LOWEST_PC): Provide a default.
967 (arm_gdbarch_register_os_abi): Declare new function.
968 * arm-tdep.c (arm_abi_names): New array.
969 (process_note_abi_tag_sections): New function.
970 (get_elfosabi): New function.
971 (arm_gdbarch_register_os_abi): New function.
972 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
973 support for that ABI has been built in, then call the appropriate
974 configuration routine. Use gdbarch_num_regs() to get the number
975 of registers.
976 (arm_dump_tdep): New function.
977 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
978 place-holder functions.
979 (_initialize_arm_tdep): Register them.
980 * config/arm/tm-arm.h (LOWEST_PC): Delete.
981
982 * armnbsd-tdep.c: New file.
983 * Makefile.in (armnbsd-tdep.o): Add dependencies.
984 * config/arm/nbsd.mt (TDEPFILES): Add it.
985 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
986
987 * armnbsd-nat.c: Include regcache.h.
988 * Makefile.in (armnbsd-nat.o): Update dependency list.
989
990 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
991
ad68be46
DJ
9922002-02-14 Daniel Jacobowitz <drow@mvista.com>
993
994 * gdbserver/Makefile.in: Fix typos in target rules.
995
003d6d1d
DJ
9962002-02-14 Daniel Jacobowitz <drow@mvista.com>
997
aaa38bb5 998 Fix part of PR gdb/267.
003d6d1d
DJ
999 * linespec.c (find_methods): Handle constructors specially for now.
1000
6b230f1b
CV
10012002-02-14 Corinna Vinschen <vinschen@redhat.com>
1002
1003 * arm-tdep.c (arm_push_arguments): Eliminate special float type
1004 handling.
1005 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
1006 standard_coerce_float_to_double().
1007
1ea98d12
CF
10082002-02-14 Christopher Faylor <cgf@redhat.com>
1009
1010 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
1011 GDBINIT_FILENAME.
1012
dd47e6fd
EZ
10132002-02-14 Elena Zannoni <ezannoni@redhat.com>
1014
1015 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
1016 find_variant_by_name, because it confuses the multiarch
1017 framework. Return NULL if there isn't an architecture with the
1018 user supplied name, instead of forcing a different one without
1019 recording the change with the multiarch machinery.
1020 (find_variant_by_name): Delete.
1021
d7e39b9e
PS
10222002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1023
1024 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
1025 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
1026
76e42a4f
MH
10272002-02-13 Martin M. Hunt <hunt@redhat.com>
1028
aaa38bb5 1029 * stack.c (print_frame_info_base): When calling
76e42a4f
MH
1030 print_frame_info_listing_hook, set current_source_symtab.
1031
0a30fbc4
DJ
10322002-02-14 Daniel Jacobowitz <drow@mvista.com>
1033
1034 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
1035 and remove unused $(INCLUDE_DIR).
1036 Add regcache.c to OBS.
1037 Add generated register protocol files to clean target.
1038 Update dependencies for new objects, obsolete old target code.
1039
1040 * gdbserver/linux-low.c: Remove all platform-specific code to
1041 new files. Remove various dead code. Update to use regcache
1042 functionality.
1043 * gdbserver/remote-utils.c (fromhex): Add return statement
1044 to quiet warning.
1045 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
1046 constant.
1047 (input_interrupt): Add integer parameter to match prototype
1048 of a signal handler.
1049 (outreg): Use register_data ().
1050 (prepare_resume_reply): Use gdbserver_expedite_regs.
1051 * gdbserver/server.c (main): Dynamically allocate own_buf because
1052 PBUFSIZ is no longer constant. Use registers_to_string () and
1053 registers_from_string ().
1054 * gdbserver/server.h: No longer include "defs.h". Add prototypes
1055 for error (), fatal (), and warning (). Update definition of
1056 PBUFSIZ to use regcache functionality. Add include guard.
1057 * gdbserver/utils.c (fatal): Add missing ``const''.
1058 (warning): New function.
1059
1060 * regformats/regdat.sh: Include "regcache.h" in generated files.
1061 Provide init_registers () function.
1062 * regformats/regdef.h: Add prototype for set_register_cache ().
1063 Add include guard.
1064
1065 * gdbserver/linux-arm-low.c: New file.
1066 * gdbserver/linux-i386-low.c: New file.
1067 * gdbserver/linux-ia64-low.c: New file.
1068 * gdbserver/linux-m68k-low.c: New file.
1069 * gdbserver/linux-mips-low.c: New file.
1070 * gdbserver/linux-ppc-low.c: New file.
1071 * gdbserver/linux-sh-low.c: New file.
1072
1073 * gdbserver/regcache.c: New file.
1074 * gdbserver/regcache.h: New file.
1075
1076 * gdbserver/low-linux.c: Removed obsolete file.
1077
4cc841d0
DJ
10782002-02-14 Daniel Jacobowitz <drow@mvista.com>
1079
1080 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
1081 * config/i386/linux.mt: Likewise.
1082 * config/ia64/linux.mt: Likewise.
1083 * config/m68k/linux.mh: Likewise.
1084 * config/powerpc/linux.mh: Likewise.
1085 * config/mips/linux.mt: Likewise.
1086
1087 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
1088
1089 * config/i386/i386lynx.mh: Mark gdbserver variables
1090 as (currently) obsolete for this target.
1091 * config/i386/nbsd.mt: Likewise.
1092 * config/i386/nbsdelf.mt: Likewise.
1093 * config/m32r/m32r.mt: Likewise.
1094 * config/m68k/m68klynx.mh: Likewise.
1095 * config/m68k/nbsd.mt: Likewise.
1096 * config/m68k/sun3os4.mh: Likewise.
1097 * config/mips/vr5000.mt: Likewise.
1098 * config/ns32k/nbsd.mt: Likewise.
1099 * config/pa/hppabsd.mh: Likewise.
1100 * config/pa/hppaosf.mh: Likewise.
1101 * config/powerpc/nbsd.mt: Likewise.
1102 * config/rs6000/rs6000lynx.mh: Likewise.
1103 * config/s390/s390.mt: Likewise.
1104 * config/s390/s390x.mt: Likewise.
1105 * config/sparc/sparclynx.mh: Likewise.
1106 * config/sparc/sun4os4.mh: Likewise.
1107 * config/i386/x86-64linux.mt: Likewise.
1108 * config/sparc/linux.mh: Likewise.
1109
a85f51e7
DJ
11102002-02-14 Daniel Jacobowitz <drow@mvista.com>
1111
1112 * configure.tgt: Configure gdbserver only for known working
1113 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
1114 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
1115 SUBDIRS if it is configured. Update comment for ${nativefile}.
1116 * configure: Regenerated.
1117
65554fef
MS
11182002-02-13 Michael Snyder <msnyder@redhat.com>
1119
6dbdc4a3
MS
1120 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
1121 (default_gcore_mach): Just return 0, work around a problem in bfd.
1122 (default_gcore_target): OK to return NULL if exec_bfd is null.
1123 (make_mem_sec): Use a cast, avoid a warning.
1124
1125 * procfs.c (find_memory_regions_callback): Use a cast instead of
aaa38bb5 1126 calling host_pointer_to_address (which complains if
6dbdc4a3
MS
1127 sizeof (host pointer) != sizeof (target pointer)).
1128 (procfs_make_note_section): Avoid overflow in psargs string.
1129
aaa38bb5 1130 * procfs.c (procfs_make_note_section): Make the default
65554fef
MS
1131 implementation return an error.
1132
11332002-02-13 Rodney Brown <rbrown64@csc.com.au>
1134
1135 * procfs.c (procfs_make_note_section): Provide a default definition
1136 (for alpha-dec-osf4.0f). Fix typos.
1137
1e4d76e7
EZ
11382002-02-13 Elena Zannoni <ezannoni@redhat.com>
1139
1140 * linux-proc.c: Add include of regcache.h.
1141 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
1142
b6d1a1d5
AC
11432002-02-13 Andrew Cagney <ac131313@redhat.com>
1144
1145 From 2002-01-18 Greg McGary <greg@mcgary.org>:
aaa38bb5
AJ
1146 * memattr.c (create_mem_region): Disallow useless empty region.
1147 Regions are half-open intervals, so allow [A..B) [B..C) as
65554fef 1148 non-overlapping.
b6d1a1d5 1149
6c6ea35e
MC
11502002-02-13 Michael Chastain <mec@shout.net>
1151
1152 * defs.h: Kill CONST_PTR.
1153 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
1154 * c-lang.c (c_builtin_types): Likewise.
1155 * ch-lang.c (ch_builtin_types): Likewise.
1156 * f-lang.c (f_builtin_types): Likewise.
1157 * language.c (unknown_builtin_types): Likewise.
1158 * m2-lang.c (m2_builtin_types): Likewise.
1159 * p-lang.c (pascal_builtin_types): Likewise.
1160 * scm-lang.c (c_builtin_types): Likewise.
1161
3e0b0f48
KS
11622002-02-13 Keith Seitz <keiths@redhat.com>
1163
1164 * arm-tdep.h (arm_get_next_pc): Add declaration.
1165
67255d04
RE
11662002-02-13 Richard Earnshaw <rearnsha@arm.com>
1167
1168 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
1169 with other related struct-returning functions.
1170 (arm_extract_struct_value_address): New function.
1171 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
1172 initialize float_format, double_format and long_double_format as
1173 appropriate to the endianness of the target.
1174 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
1175 (arm_use_struct_convention): Delete declaration.
1176 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
1177
079777f6
KS
11782002-02-13 Keith Seitz <keiths@redhat.com>
1179
1180 * defs.h (core_addr_to_string_nz): New function.
1181
34588f23
MK
11822002-02-13 Mark Kettenis <kettenis@gnu.org>
1183
1184 Apply missing bits of 2002-01-15 patch.
1185 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
1186 (fill_fpregset): Use i387_fill_fsave.
1187
49b563f9
KS
11882002-02-12 Keith Seitz <keiths@redhat.com>
1189
49b563f9
KS
1190 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
1191 (core_addr_to_string_nz): New function.
1192
aeb98c60
RE
11932002-02-11 Richard Earnshaw <rearnsha@arm.com>
1194
1195 * arm-linux-nat.c: Really include arm-tdep.h.
1196 * config/arm/tm-linux.h (struct type, struct value): Declare.
1197
65554fef
MS
11982002-02-11 Michael Snyder <msnyder@redhat.com>
1199
1200 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
1201 (gcore section): Ifdef for Solaris and Unixware only.
1202 (procfs_do_thread_registers): Unixware needs one lwpstatus
1203 per thread (not one prstatus or pstatus).
1204 (procfs_make_note_section): Iterate only over kernel threads (lwps),
1205 not over all gdb threads. For unixware, call elfcore_write_pstatus
1206 once before iterating over threads.
1207
34e8f22d
RE
12082002-02-11 Richard Earnshaw <rearnsha@arm.com>
1209
1210 * arm-tdep.h: New file.
1211 * arm-tdep.c: Include arm-tdep.h.
1212 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
1213 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
1214 (arm_print_float_info, arm_register_type, convert_to_extended)
1215 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
1216 (arm_extract_return_value, arm_register_name): Make static.
1217 (arm_software_single_step): Similarly. Fix types in declaration.
1218 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
1219 (arm_store_return_value, arm_store_struct_return): New functions.
1220 (arm_gdbarch_init): Register the above functions. Also register
1221 call_dummy_start_offset, sizeof_call_dummy_words,
1222 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
1223 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
aaa38bb5 1224 max_register_virtual_size, register_size. Set up
34e8f22d
RE
1225 prologue_cache.saved_regs here, rather than ...
1226 (_initialize_arm_tdep): ... here.
1227 * config/arm/tm-arm.h (struct type, struct value): Delete forward
1228 declarations.
1229 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
1230 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
1231 (arm_print_float_info, arm_register_type, convert_to_extended)
1232 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
1233 (arm_extract_return_value, arm_register_name): Delete declarations.
1234 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
1235 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
1236 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
1237 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
1238 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
1239 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
1240 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
1241 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
1242 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
1243 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
1244 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
1245 (arm_get_next_pc): No-longer static -- these are needed by the RDI
1246 interface.
1247 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
1248 * remote-rdi.c remote-rdp.c: Likewise.
1249 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
1250 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
1251 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
1252 definition.
1253
1254 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
1255 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
1256 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
1257 from non-ARM_ prefixed definitions.
1258 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
1259 all uses of above.
1260 * remote-rdi.c remote-rdp.c: Likewise.
1261 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
1262
148754e5
RE
12632002-02-11 Richard Earnshaw <rearnsha@arm.com>
1264
1265 * arm-tdep.c (arm_frameless_function_invocation)
1266 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
1267 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
1268 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
1269 (arm_pop_frame, arm_get_next_pc): Make static.
1270 (arm_gdbarch_init): Register above in gdbarch structure.
1271 (arm_read_fp): Renamed from arm_target_read_fp.
1272 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
1273 * config/arm/tm-arm.h (arm_frameless_function_invocation)
1274 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
1275 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
1276 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
1277 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
1278 (arm_pc_is_thumb_dummy): Delete declarations.
fcfb8836
RE
1279 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
1280 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
1281 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
1282 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
148754e5 1283
434d2d4f
DJ
12842002-02-10 Daniel Jacobowitz <drow@mvista.com>
1285
1286 * symtab.c (compare_search_syms): New function.
1287 (sort_search_symbols): New function.
1288 (search_symbols): Sort symbols after searching rather than
1289 before.
1290
55241689
AC
12912002-02-10 Andrew Cagney <ac131313@redhat.com>
1292
1293 * NEWS: Linux -> GNU/Linux.
1294
028c194b
AC
12952002-02-10 Andrew Cagney <ac131313@redhat.com>
1296
1297 * gdbarch.sh: For for level one methods, disallow a definition
1298 when partially multi-arched. Add comments explaining rationale.
1299 * gdbarch.h: Re-generate.
1300
6acf50cd
AC
13012002-02-10 Andrew Cagney <ac131313@redhat.com>
1302
1303 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
1304 multi-arch partial.
aaa38bb5 1305
50248794
AC
13062002-02-10 Andrew Cagney <ac131313@redhat.com>
1307
1308 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
1309 field. Use diff -u.
1310 * gdbarch.c: Re-generate.
1311
c30e0066
AC
13122002-02-10 Andrew Cagney <ac131313@redhat.com>
1313
9b56c5f3 1314 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
c30e0066
AC
1315 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
1316 partial.
1317
6e6d6484
AC
13182002-02-10 Andrew Cagney <ac131313@redhat.com>
1319
1320 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
1321 multi-arch partial.
1322 (PUSH_ARGUMENTS): Switch to using predefault.
1323 * gdbarch.c: Regenerate.
1324
c203844d
AC
13252002-02-10 Andrew Cagney <ac131313@redhat.com>
1326
1327 * valops.c (PUSH_ARGUMENTS): Delete definition.
1328 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
1329 partial. Default to default_push_arguments.
1330 * gdbarch.h, gdbarch.c: Regenerate.
1331
b5a2688f
AC
13322002-02-09 Andrew Cagney <ac131313@redhat.com>
1333
1334 * defs.h (throw_exception): Rename return_to_top_level. Update
1335 comments.
1336 * utils.c (error_stream, internal_verror, quit): Ditto.
1337 * top.c (throw_exception, catcher): Ditto.
1338 * sparclet-rom.c (sparclet_load): Ditto.
1339 * remote.c (interrupt_query, minitelnet): Ditto.
1340 * remote-sds.c (interrupt_query): Ditto.
1341 * remote-mips.c (mips_error, mips_kill): Ditto.
1342 * ocd.c (interrupt_query): Ditto.
1343 * monitor.c (monitor_interrupt_query): Ditto.
1344 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
1345 * target.h: Update comment.
aaa38bb5 1346
b5a2688f 1347 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
aaa38bb5 1348
2fa5c1e0
AC
13492002-02-09 Andrew Cagney <ac131313@redhat.com>
1350
1351 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
1352 default_double_format.
1353 * gdbarch.h, gdbarch.c: Re-generate.
1354 * findvar.c (floatformat_unknown): Delete variable definition.
1355 * doublest.h (floatformat_unknown): Delete variable declaration.
1356
da966255
JB
13572002-02-09 Jim Blandy <jimb@redhat.com>
1358
1359 * stabsread.c (read_type): Add code to parse Sun's syntax for
1360 prototyped function types.
1361
123a4891
AC
13622002-02-09 Andrew Cagney <ac131313@redhat.com>
1363
1364 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
1365 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
1366
fb39c8f3
PS
13672002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1368
1369 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
1370 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
1371 now _initialize_xcoffsolib gets called again and overrides the
1372 commands from solib.c in a native configuration.
1373
0b87a11d
MK
13742002-02-09 Mark Kettenis <kettenis@gnu.org>
1375
1376 * doublest.c (store_typed_floating): Don't try to return a value.
1377 Fixes PR gdb/290.
1378
bdc2fc72
JB
13792002-02-08 Jim Blandy <jimb@redhat.com>
1380
1381 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
1382 is prototyped and has no arguments, print its argument list as
1383 `(void)'.
1384
da69bbcf
CD
13852002-02-08 Chris Demetriou <cgd@broadcom.com>
1386
1387 * MAINTAINERS (write-after-approval): Add myself.
1388 (paper-trail): I've escaped!
aaa38bb5 1389
b69571f5
CF
13902002-02-08 Christopher Faylor <cgf@redhat.com>
1391
1392 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
1393 changes.
1394 (_initialize_check_for_gdb_ini): Ditto.
1395
f6871398
MH
13962002-02-08 Martin M. Hunt <hunt@redhat.com>
1397
1398 * win32-nat.c (cygwin_pid_to_str): Fix typo.
1399 xaprintf -> xasprintf.
1400
4e52d31c
PM
14012002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
1402
1403 * win32-nat.c: Remove use of printf and sprintf functions.
1404
39bbf761
RE
14052002-02-08 Richard Earnshaw <rearnsha@arm.com>
1406
1407 * arm-tdep.c (arm_frame_chain_valid): Make static.
1408 (arm_push_arguments): Likewise.
1409 (arm_gdbarch_init): New function.
1410 (_initialize_arm_tdep): Call it.
1411 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
1412 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
1413 (FRAME_CHAIN_VALID): Delete.
1414 (arm_frame_chain_valid): Delete declaration.
1415 (PUSH_ARGUMENTS): Delete.
1416 (arm_push_arguments): Delete declaration.
1417 (CALL_DUMMY_P): Delete.
1418
9c9532c9
CV
14192002-02-08 Andrew Cagney <ac131313@redhat.com>
1420 Corinna Vinschen <vinschen@redhat.com>
1421
1422 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
1423 on builtin float types.
1424
4e8f7a8b
DJ
14252002-02-08 Daniel Jacobowitz <drow@mvista.com>
1426
1427 * utils.c: Include <curses.h> before "bfd.h".
1428 * tui/tui-hooks.c: Likewise.
1429 * tui/tui.c: Likewise.
1430 * tui/tuiCommand.c: Likewise.
1431 * tui/tuiData.c: Likewise.
1432 * tui/tuiDataWin.c: Likewise.
1433 * tui/tuiDisassem.c: Likewise.
1434 * tui/tuiGeneralWin.c: Likewise.
1435 * tui/tuiIO.c: Likewise.
1436 * tui/tuiLayout.c: Likewise.
1437 * tui/tuiRegs.c: Likewise.
1438 * tui/tuiSource.c: Likewise.
1439 * tui/tuiSourceWin.c: Likewise.
1440 * tui/tuiStack.c: Likewise.
1441 * tui/tuiWin.c: Likewise.
1442
cd4bffcf
EZ
14432002-02-07 Elena Zannoni <ezannoni@redhat.com>
1444
1445 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
1446 to include space for pseudoregs as well. Update loops accordingly.
1447 (sh_fp_frame_init_saved_regs): Ditto.
1448 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
1449
26806ce2
AC
14502002-02-07 Andrew Cagney <ac131313@redhat.com>
1451
1452 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
1453 Add Richard Earnshaw to Arm maintainers.
1454
97fdab62
AC
14552002-02-07 Andrew Cagney <ac131313@redhat.com>
1456
a6b98203
AC
1457 * defs.h (warning_begin): Delete declaration.
1458
97fdab62
AC
1459 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
1460 Delete macro.
1461
78b29b40
MS
14622002-02-07 Michael Snyder <msnyder@redhat.com>
1463
aaa38bb5 1464 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
78b29b40
MS
1465 Logic bug, remove misplaced else.
1466
d8849953
KD
14672002-02-07 Klee Dienes <klee@apple.com>
1468
1469 * fork-inferior.c (fork_inferior): Add '!' to the list of
1470 characters that need to be quoted when building a string for the
1471 shell. Quote '!' specifically with a backslash, since CSH chokes
1472 when trying to evaluate "str!str".
aaa38bb5 1473
095778a0
NC
14742002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
1475
1476 * rdi-share/host.h: Only provide a typedef for bool if it is not
1477 defined.
1478
1900040c
MS
14792002-02-04 Michael Snyder <msnyder@redhat.com>
1480
1481 * breakpoint.h (enum bptype): Add new overlay event bp type.
1482 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
aaa38bb5 1483
1900040c
MS
1484 * breakpoint.c (create_internal_breakpoint): New function.
1485 (internal_breakpoint_number): Moved into create_internal_breakpoint.
1486 (create_longjmp_breakpoint): Use create_internal_breakpoint.
1487 (create_thread_event_breakpoint): Ditto.
1488 (create_solib_event_breakpoint): Ditto.
1489 (create_overlay_event_breakpoint): New function.
1490 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
1491 (update_breakpoints_after_exec): Delete and re-initialize
1492 overlay event breakpoints after an exec. Add FIXME comment
1493 about longjmp breakpoint.
1494 (print_it_typical): Ignore overlay event breakpoints.
1495 (print_one_breakpoint): Ditto.
1496 (mention): Ditto.
1497 (bpstat_what): Do not stop for overlay event breakpoints.
1498 (delete_breakpoint): Don't delete overlay event breakpoints.
1499 (breakpoint_re_set_one): Delete the overlay event breakpoint.
1500 (breakpoint_re_set): Re-create overlay event breakpoint.
1501
1502 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
1503 (overlay_manual_command): Disable overlay breakpoints.
1504 (overlay_off_command): Disable overlay breakpoints.
1505
082fc60d
RE
15062002-02-06 Richard Earnshaw <rearnsha@arm.com>
1507
1508 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
1509 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
1510 to here from config/tm-arm.h.
1511 (coff_sym_is_thumb): Make static.
1512 (arm_elf_make_msymbol_special): New function.
1513 (arm_coff_make_msymbol_special): New function.
1514 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
1515 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
1516 (coff_sym_is_thumb): Delete declaration.
1517 (arm_elf_make_msymbol_special): Declare.
1518 (arm_coff_make_msymbol_special): Declare.
1519 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
1520 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
1521
039c5766
RE
15222002-02-06 Richard Earnshaw <rearnsha@arm.com>
1523
1524 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
1525
15262002-02-06 Richard Earnshaw <rearnsha@arm.com>
1527
1528 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
1529 * gdbarch.c gdbarch.h: Regenerate.
1530 * arch-utils.c (default_print_float_info): New function.
1531 * arch-utils.h (default_print_float_info): Prototype it.
1532 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
1533 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
1534 (PRINT_FLOAT_INFO): Document it.
1535
1536 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
1537 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
1538 (PRINT_FLOAT_INFO): Define.
1539
58fa08f0
PM
15402002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
1541
aaa38bb5 1542 * win32-nat.c (_initialize_check_for_gdb_ini):
58fa08f0
PM
1543 Add typecast to sprintf argument to suppress a warning.
1544
7393af7c
PM
15452002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
1546
58fa08f0 1547 * win32-nat.c (last_sig): Changed type of variable to target_signal,
7393af7c
PM
1548 to allow easier handling of pass state.
1549 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
1550 that gives exception name and address.
1551 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
aaa38bb5 1552 and set last_sig value to ourstatus->value.sig. Some missing
7393af7c 1553 exceptions added.
aaa38bb5
AJ
1554 (child_continue): Correctly report continue_status.
1555 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
7393af7c 1556 TARGET_SIGNAL_0 (new default value).
aaa38bb5 1557 (child_resume): consider sig argument passed to decide if
7393af7c
PM
1558 the exception should be passed to debuggee or not.
1559
6af4589c
MS
15602002-02-05 Michael Snyder <msnyder@redhat.com>
1561
1562 * regcache.c (fetch_register): Call target_fetch_register
1563 only if we don't call FETCH_PSEUDO_REGISTER.
1564 (store_register): Call target_store_register only if we
1565 don't call STORE_PSEUDO_REGISTER.
1566
a2cf933a
EZ
15672002-02-05 Elena Zannoni <ezannoni@redhat.com>
1568
1569 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
1570 ELF_MAKE_MSYMBOL_SPECIAL.
1571 * gdbarch.c, gdbarch.h: Regenerate.
1572 * arch-utils.c (default_make_msymbol_special): New function.
aaa38bb5 1573 * arch-utils.h (default_make_msymbol_special): Export.
a2cf933a
EZ
1574 * elfread.c (elf_symtab_read): Compile use of
1575 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
1576 multiarched.
1577 * coffread.c (coff_symtab_read): Ditto, for
1578 COFF_MAKE_MSYMBOL_SPECIAL.
1579
6bb7be43
JB
15802002-02-05 Jim Blandy <jimb@redhat.com>
1581
1582 * solib-svr4.c (svr4_truncate_ptr): New function.
1583 (svr4_relocate_section_addresses): Do the address arithmetic with
1584 the appropriate truncation for target addresses, even when
1585 CORE_ADDR is larger than a target address.
1586
e18651ec
DJ
15872002-02-05 Daniel Jacobowitz <drow@mvista.com>
1588
1589 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
1590 to (int *).
1591
6b2725be
DJ
15922002-02-05 Daniel Jacobowitz <drow@mvista.com>
1593
1594 * gdbserver/linux-low.c (kill_inferior): Remove commented out
1595 code.
1596
fca9e603
DJ
15972002-02-05 Daniel Jacobowitz <drow@mvista.com>
1598
1599 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
1600
6c537a52
DJ
16012002-02-05 Daniel Jacobowitz <drow@mvista.com>
1602
1603 * gdbserver/linux-low.c: Remove unused include files.
1604
d844cde6
DJ
16052002-02-05 Daniel Jacobowitz <drow@mvista.com>
1606
1607 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
1608 (read_inferior_memory): Use it.
1609 (write_inferior_memory): Likewise.
1610
d07c63e7
DJ
16112002-02-05 Daniel Jacobowitz <drow@mvista.com>
1612
1613 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
1614 grubbing through sys_errlist.
1615
da6d8c04
DJ
16162002-02-05 Daniel Jacobowitz <drow@mvista.com>
1617
1618 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
1619
5b421780
PM
16202002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
1621 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
1622
9f60d481
AC
16232002-02-04 Andrew Cagney <ac131313@redhat.com>
1624
1625 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
1626 (do_sfunc, set_cmd_sfunc): New functions.
1627
1628 * command.h (struct cmd_list_element): Add field func.
1629 * cli/cli-decode.h (struct cmd_list_element): Ditto.
1630 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
1631 * cli/cli-decode.h: Ditto.
1632
1633 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
1634 (help_all, help_cmd_list): Ditto.
1635 (find_cmd, complete_on_cmdlist): Ditto.
1636 * top.c (execute_command): Ditto.
1637
1638 * cli/cli-setshow.c (do_setshow_command): Call func instead of
1639 function.sfunc.
1640
1641 * infcmd.c (notice_args_read): Fix function signature.
1642
1643 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
1644 * cli/cli-decode.c (add_set_cmd): Ditto.
1645 * utils.c (initialize_utils): Ditto.
1646 * maint.c (_initialize_maint_cmds): Ditto.
1647 * infrun.c (_initialize_infrun): Ditto.
1648 * demangle.c (_initialize_demangler): Ditto.
1649 * remote.c (add_packet_config_cmd): Ditto.
1650 * mips-tdep.c (_initialize_mips_tdep): Ditto.
1651 * cris-tdep.c (_initialize_cris_tdep): Ditto.
1652 * proc-api.c (_initialize_proc_api): Ditto.
1653 * kod.c (_initialize_kod): Ditto.
1654 * valprint.c (_initialize_valprint): Ditto.
1655 * top.c (init_main): Ditto.
1656 * infcmd.c (_initialize_infcmd): Ditto.
1657 * corefile.c (_initialize_core): Ditto.
1658 * arm-tdep.c (_initialize_arm_tdep): Ditto.
1659 * arch-utils.c (initialize_current_architecture): Ditto.
1660 (_initialize_gdbarch_utils): Ditto.
1661 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
1662
1663 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
1664 * wince.c (_initialize_inftarg): Ditto.
1665 * symfile.c (_initialize_symfile): Ditto.
1666 * mips-tdep.c (_initialize_mips_tdep): Ditto.
1667 * language.c (_initialize_language): Ditto.
1668 * arc-tdep.c (_initialize_arc_tdep): Ditto.
1669
f9ba0717
MS
16702002-02-04 Michael Snyder <msnyder@redhat.com>
1671
1672 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
1673
0c74b2a7
DJ
16742002-02-04 Daniel Jacobowitz <drow@mvista.com>
1675
1676 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
1677 Add rules for building the register data files.
1678
c638789f
DJ
16792002-02-04 Daniel Jacobowitz <drow@mvista.com>
1680
1681 * regformats/regdat.sh: Add braces to the definition of
1682 expedite_regs_${arch}.
1683
db253027
DJ
16842002-02-04 Daniel Jacobowitz <drow@mvista.com>
1685
1686 * regformats/regdef.h (struct reg): Add comment describing the
1687 requirements for offset and size fields.
1688
206be19c
AS
16892002-02-04 Andreas Schwab <schwab@suse.de>
1690
1691 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
1692 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
1693
181c1381
RE
16942002-02-04 Richard Earnshaw <rearnsha@arm.com>
1695
1696 * gdbarch.sh (copyright): Update years in generated header.
1697 (SMASH_TEXT_ADDRESS): Add rule.
db253027 1698 * gdbarch.h, gdbarch.c: Re-generate.
181c1381
RE
1699 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
1700 * dbxread.c: Likewise.
1701 * dwarfread.c: Likewise.
1702 * elfread.c: Likewise.
1703 * somread.c: Likewise.
1704
1705 * arm-tdep.c (arm_smash_text_address): New function.
1706 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
1707
fa4ba8da
PM
17082002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
1709
1710 Add support for hardware watchpoints on win32 native.
aaa38bb5 1711 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
fa4ba8da 1712 CONTEXT_DEBUG_REGISTERS.
aaa38bb5 1713 (dr variable): New variable. Static array containing a local copy
fa4ba8da
PM
1714 of debug registers.
1715 (debug_registers_changed): New variable. Reflects when debug registers
1716 are changed and need to be written to inferior.
aaa38bb5 1717 (debug_registers_used): New variable. Reflects when any debug register
fa4ba8da
PM
1718 was set, used when new threads are created.
1719 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
1720 i386-nat code.
1721 (thread_rec): Set dr array if id is the thread of current_event .
1722 (child_continue, child_resume): Change the debug registers for all
1723 threads if debug_registers_changed.
1724 (child_add_thread): Change the debug registers if debug_registers_used.
1725 * config/i386/cygwin.mh: Add use of i386-nat.o file.
1726 Link nm.h to new nm-cygwin.h file.
1727 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
1728 of hardware registers.
1729
a73c86fb
AC
17302002-02-03 Andrew Cagney <ac131313@redhat.com>
1731
1732 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
1733 Restore behavour broken by 2002-01-20 Andrew Cagney
1734 <ac131313@redhat.com> IEEE_FLOAT removal.
1735
acf5ed49
DJ
17362002-02-03 Daniel Jacobowitz <drow@mvista.com>
1737
1738 * c-valprint.c (c_val_print): Pass a proper valaddr to
1739 cp_print_class_method.
1740 * valops.c (search_struct_method): If there is only one method
1741 and args is NULL, return that method.
1742
493d28d5
DJ
17432002-02-03 Daniel Jacobowitz <drow@mvista.com>
1744
1745 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
1746 accessing tag_name directly.
1747
7495dfdb
DJ
17482002-02-03 Daniel Jacobowitz <drow@mvista.com>
1749
1750 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
1751 of accessing tag_name directly.
1752
dd6bda65
DJ
17532002-02-03 Daniel Jacobowitz <drow@mvista.com>
1754
1755 PR gdb/280
1756 * gdbtypes.c (replace_type): New function.
1757 * gdbtypes.h (replace_type): Add prototype.
1758 * stabsread.c (read_type): Use replace_type.
1759
88fe217c
RE
17602002-02-03 Richard Earnshaw <rearnsha@arm.com>
1761
1762 * Makefile.in (memattr.o): Add missing dependencies rule.
1763
e5d66720
PS
17642002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1765
1766 * breakpoint.c (break_at_finish_command): Really export.
1767 (break_at_finish_at_depth_command): Ditto.
1768 (tbreak_at_finish_command): Ditto.
1769 * hppa-tdep.c: Include completer.h.
1770 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
1771 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
1772
fffee0be
AC
17732002-02-01 Andrew Cagney <ac131313@redhat.com>
1774
1775 * utils.c (do_write): New function.
1776 (error_stream): Rewrite combining the code from error_begin and
1777 verror.
1778 (verror): Rewrite using error_stream.
1779 (error_begin): Delete function.
1780
255e7dbf
AC
17812002-02-01 Andrew Cagney <ac131313@redhat.com>
1782
1783 * utils.c (error_begin): Make static.
1784 * defs.h (error_begin): Delete declaration.
1785
1786 * linespec.c (cplusplus_error): Replace cplusplus_hint.
1787 (decode_line_1): Use cplusplus_error instead of error_begin,
1788 cplusplus_hint and return_to_top_level.
1789 * coffread.c (coff_symfile_read): Use error instead of error_begin
1790 and return_to_top_level.
1791 * infrun.c (default_skip_permanent_breakpoint): Ditto.
1792
ddfe3c15
AC
17932002-02-01 Andrew Cagney <ac131313@redhat.com>
1794
1795 * language.h (type_error, range_error): Make string parameter
1796 constant.
1797 * language.c (warning_pre_print): Delete extern declaration.
1798 * dwarfread.c (warning_pre_print): Ditto.
1799 * language.c (type_error, range_error): Rewrite to use verror and
1800 vwarning instead of warning_begin.
1801
03ac34d5
MS
18022002-02-01 Michael Snyder <msnyder@redhat.com>
1803
261c4ca2
MS
1804 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
1805 (set_ignore_count): Move misplaced comment back where it belongs.
03ac34d5 1806
e00d1dc8
AC
18072002-02-01 Andrew Cagney <ac131313@redhat.com>
1808
1809 * command.h (NO_FUNCTION): Delete macro.
1810 * cli/cli-decode.h (NO_FUNCTION): Ditto.
1811 * top.c (execute_command): Replace NO_FUNCTION with NULL.
1812 * tracepoint.c (_initialize_tracepoint): Ditto.
1813 * cli/cli-decode.c (add_set_cmd): Ditto.
1814 * cli/cli-cmds.c (init_cli_cmds): Ditto.
aaa38bb5 1815
76b79d6e
DJ
18162002-02-01 Daniel Jacobowitz <drow@mvista.com>
1817
1818 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
1819 Update ``this'' pointer when calling virtual functions.
1820
799f9e91
MS
18212002-02-01 Michael Snyder <msnyder@redhat.com>
1822
c7bd442c 1823 * breakpoint.c (create_temp_exception_breakpoint): Delete.
799f9e91
MS
1824 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
1825
3cf384d4
DJ
18262002-02-01 Daniel Jacobowitz <drow@mvista.com>
1827
1828 * regformats/reg-arm.dat: New file.
1829 * regformats/reg-i386.dat: New file.
1830 * regformats/reg-ia64.dat: New file.
1831 * regformats/reg-m68k.dat: New file.
1832 * regformats/reg-mips.dat: New file.
1833 * regformats/reg-ppc.dat: New file.
1834 * regformats/reg-sh.dat: New file.
1835 * regformats/regdef.h: New file.
1836 * regformats/regdat.sh: New file.
1837
0defa245
RE
18382002-02-01 Richard Earnshaw <reanrsha@arm.com>
1839
1840 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
1841 (arm_frame_args_address, arm_frame_locals_address): New functions.
1842 (arm_frame_num_args): New function.
1843 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
1844 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
1845 (FRMA_NUM_ARGS): Call arm_frame_num_args.
1846
405f26e6
MS
18472002-01-31 Michael Snyder <msnyder@redhat.com>
1848
502fd408
MS
1849 * breakpoint.c (break_at_finish_command): Export.
1850 (break_at_finish_at_depth_command): Export.
1851 (tbreak_at_finish_command): Export.
1852 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
1853 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
1854 "tbreak" commands, which are HPPA specific.
1855
7d35e135
MS
1856 * printcmd.c (disassemble_command): Remove an ancient
1857 artifact of an old merge.
1858
aaa38bb5 1859 * symfile.h (enum overlay_debugging_state):
d874f1e2
MS
1860 Define enum constant values for overlay mode.
1861 * symfile.c (overlay_debugging): Use enums instead of literals.
aaa38bb5
AJ
1862 (overlay_is_mapped, overlay_auto_command,
1863 overlay_manual_command): Ditto.
d874f1e2 1864
aaa38bb5
AJ
1865 * breakpoint.c (insert_breakpoints, remove_breakpoint,
1866 breakpoint_here_p, breakpoint_inserted_here_p,
1867 breakpoint_thread_match, bpstat_stop_status,
9f04af04
MS
1868 describe_other_breakpoints, check_duplicates, clear_command):
1869 Coding standard fixes.
1870
8add0441 1871 * target.c (target_xfer_memory): Add spaces, coding standard.
9f04af04 1872 (do_xfer_memory): Add missing line to trust-readonly
405f26e6
MS
1873 code: check bfd SEC_READONLY flag for section.
1874
e351066e
AC
18752002-01-31 Andrew Cagney <ac131313@redhat.com>
1876
7d35e135 1877 * PROBLEMS: Fix typo, 5.1->5.1.1.
e351066e 1878
8a48e967
DJ
18792002-01-30 Daniel Jacobowitz <drow@mvista.com>
1880
1881 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
1882 data symbols, since we search based on textlow and texthigh.
1883 (find_pc_sect_symtab): Likewise.
1884
f5a96129
AC
18852002-01-30 Andrew Cagney <ac131313@redhat.com>
1886
1887 * defs.h (vwarning): Declare.
f5a96129
AC
1888 * utils.c (vwarning): New function.
1889 (warning): Call vwarning.
1890 (warning_begin): Delete function.
1891
1892 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
1893 the warning message.
1894 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
1895 warning_begin.
1896
cefd4ef5
MS
18972002-01-30 Michael Snyder <msnyder@redhat.com>
1898
1a703748
MS
1899 * NEWS: Mention "set trust-readonly-sections" command.
1900 Mention generate-core-file command.
cefd4ef5 1901
3a11626d
MS
19022002-01-15 Michael Snyder <msnyder@redhat.com>
1903
1904 * target.c: New command, "set trust-readonly-sections on".
1905 (do_xfer_memory): Honor the suggestion to trust readonly sections
1906 by reading them from the object file instead of from the target.
1907 (initialize_targets): Register command "set trust-readonly-sections".
1908
d1c7e53b
AC
19092002-01-29 Andrew Cagney <ac131313@redhat.com>
1910
1911 * parse.c (target_map_name_to_register): Simplify, search regs and
1912 pseudo-regs using a single loop.
1913
e2c9a72c
AC
19142002-01-30 Andrew Cagney <ac131313@redhat.com>
1915
1916 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
1917
69824b4e
MK
19182002-01-15 Rodney Brown <rbrown64@csc.com.au>
1919
1920 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
1921 * config/i386/i386v42mp.mh: Add i387-nat.o .
1922 * i386v4-nat.c: Include i387-nat.h.
1923 (supply_fpregset): Use i387_supply_fsave.
1924 (fill_fpregset): Use i387_fill_fsave.
1925
6eb69eab
RE
19262002-01-30 Richard Earnshaw <rearnsha@arm.com>
1927
1928 * arm-tdep.c (arm_call_dummy_words): Define.
1929 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
1930 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
1931 (CALL_DUMMY_WORDS): Define.
1932 (arm_call_dummy_words): Declare.
1933 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
1934 (arm_linux_call_dummy_words): Declare.
1935
9852326a
AS
19362002-01-30 Andreas Schwab <schwab@suse.de>
1937
1938 * m68klinux-nat.c: Fix last change to use regcache_collect
1939 instead of referencing registers[] directly.
1940
977a3030
AC
19412002-01-29 Andrew Cagney <ac131313@redhat.com>
1942
1943 * parse.c (target_map_name_to_register): Delete code wrapped in
1944 #ifdef REGISTER_NAME_ALIAS_HOOK.
1945
2076c72b
MS
19462002-01-28 Michael Snyder <msnyder@redhat.com>
1947
1948 * regcache.c (legacy_read_register_gen): Need to be able to
1949 read pseudo-register as well as real register.
1950 (legacy_write_register_gen): Ditto.
1951
8fcc723b
AC
19522002-01-28 Andrew Cagney <ac131313@redhat.com>
1953
1954 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
1955 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
1956 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
1957 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
1958 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
1959 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
1960 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
1961 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
1962 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
1963 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
1964 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
1965 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
1966 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
1967 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
1968 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
1969 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
1970 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
1971 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
1972 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
1973 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
1974
afe64c1a
AC
19752002-01-28 Andrew Cagney <ac131313@redhat.com>
1976
1977 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
1978 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
1979 (initialize_current_architecture): Update target_byte_order using
1980 information from BFD.
aaa38bb5 1981 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
afe64c1a
AC
1982 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
1983
75bc7ddf
AC
19842002-01-28 Andrew Cagney <ac131313@redhat.com>
1985
1986 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
1987 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
1988
1989 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
1990 #ifdef INVALID_FLOAT.
1991 * infcmd.c (do_registers_info): Ditto.
1992 * values.c (unpack_double): Ditto. Add comment.
1993
1994 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
1995 already commented out.
1996
0280a90a
AS
19972002-01-26 Andreas Schwab <schwab@suse.de>
1998
1999 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
2000 * m68klinux-nat.c: Update ptrace interface for fetching/storing
2001 registers and add support for PTRACE_GETREGS.
2002
7072a954
AC
20032002-01-24 Andrew Cagney <ac131313@redhat.com>
2004
2005 GDB 5.1.1 released from 5.1 branch.
2006 * NEWS: Add 5.1.1 news.
2007 * README: Sync with 5.1 branch.
2008
86f902e0
FF
20092002-01-23 Fred Fish <fnf@redhat.com>
2010
2011 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
2012 stabstring on initial malloc. Reallocing will copy it for us,
2013 if necessary.
2014
8af51c36
EZ
20152002-01-23 Elena Zannoni <ezannoni@redhat.com>
2016
aaa38bb5 2017 * Makefile.in (hpread_h): Delete.
8af51c36
EZ
2018 (HFILES_NO_SRCDIR): Remove hpread.h.
2019 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
2020 (hpread.o): Update dependencies.
2021 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
2022
2023 * hp-psymtab-read.c: Remove file.
2024 * hp-symtab-read.c: Remove file.
2025 * hpread.h: Remove file.
2026
2027 * hpread.c: Merge all contents of hp-psymtab-read.c,
2028 hp-symtab-read.c and hpread.h into this file, as it was prior to
2029 January 1999.
2030
2031 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
aaa38bb5 2032 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
8af51c36
EZ
2033 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
2034 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
2035
dc5cfeb6
EZ
20362002-01-23 Elena Zannoni <ezannoni@redhat.com>
2037
2038 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
2039 fill_gregset): Call gdbarch_tdep() just once, assign result to
2040 variable and use that, instead of calling the function several
2041 times.
2042
ea87b71b
AO
20432002-01-24 Alexandre Oliva <aoliva@redhat.com>
2044
2045 * configure.host: Accept sparcv9 as alias for sparc64.
2046 * configure.tgt: Likewise.
2047
13fc0c2f
KB
20482002-01-22 Kevin Buettner <kevinb@redhat.com>
2049
2050 * solib-aix5.c (build_so_list_from_mapfile)
2051 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
2052 arguments is not reversed.
2053 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
2054 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
aaa38bb5 2055
7bd872fe
EZ
20562002-01-22 Elena Zannoni <ezannoni@redhat.com>
2057
2058 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
2059 modified version of obsolete sh_fetch_pseudo_register.
2060 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
2061 (sh4_register_read): New function.
2062 (sh_pseudo_register_write): New function. Renamed and modified
2063 version of obsolete sh_store_pseudo_register.
2064 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
2065 (sh4_register_write): New function.
2066 (sh_gdbarch_init): Remove setting of gdbarch function
2067 fetch_pseudo_register and store_pseudo_register. Remove setting of
2068 register_convert_to_raw, register_convert_to_virtual,
2069 register_convertible.
2070 (sh_sh4_register_convertible): Delete. No longer needed. All is
2071 taken care by architecture specific functions
2072 register_read/register_write.
2073 (sh_sh4_register_convert_to_virtual): Make static.
2074 (sh_sh4_register_convert_to_raw): Ditto.
2075
069e84fd
AC
20762002-01-22 Andrew Cagney <ac131313@redhat.com>
2077
2078 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
2079 (floatformat_is_nan, floatformat_mantissa): Ditto.
2080
2081 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
2082 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
2083 builtin_type_ieee_double_little,
2084 builtin_type_ieee_double_littlebyte_bigword,
2085 builtin_type_m68881_ext, builtin_type_i960_ext,
2086 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
2087 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
2088 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
2089 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
2090
211a4f69
CV
20912002-01-22 Corinna Vinschen <vinschen@redhat.com>
2092
2093 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
2094 parameter. Set frameless flag if it exists and depended of
2095 whether the scanned function is frameless or not.
2096 (xstormy16_skip_prologue): If function is frameless, return
2097 result of xstormy16_scan_prologue().
2098 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
2099 call.
2100
f81353e4
EZ
21012002-01-21 Elena Zannoni <ezannoni@redhat.com>
2102
2103 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
2104 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
2105 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
2106 sh_sh4_register_byte, sh_sh4_register_raw_size,
2107 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
2108 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
2109 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
2110 sh_store_pseudo_register, sh_do_pseudo_register): Call
2111 gdbarch_tdep() just once, assign result to variable and use that,
2112 instead of calling the function several times.
2113
63c73a17
MK
21142002-01-20 Mark Kettenis <kettenis@gnu.org>
2115
2116 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
2117 macros instead of LAST_FPU_CTRL_REGNUM.
2118 (store_register): Likewise.
2119
39ad761d
JB
21202002-01-21 Jim Blandy <jimb@redhat.com>
2121
2122 * infcmd.c (run_command): Check that the `exec' target layer's BFD
2123 is up-to-date before running the program, not just when a program
2124 exits.
2125
3d74b771
FF
21262002-01-21 Fred Fish <fnf@redhat.com>
2127
2128 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
2129 when we have found all instructions we are looking for.
2130
966fbf70
RE
21312002-01-21 Richard Earnshaw <rearnsha@arm.com>
2132
2133 * arm-tdep.c (arm_register_name): New function.
2134 (arm_registers_names): Make static.
2135 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
2136 (arm_register_name): Declare.
2137 (REGISTER_NAME): Use it.
2138
c3b4394c
RE
21392002-01-21 Richard Earnshaw <rearnsha@arm.com>
2140 Kevin Buettner <kevinb@redhat.com>
2141
2142 Convert arm targets to new FRAME interface.
2143 * arm-tdep.c (struct frame_extra_info): Remove fsr.
2144 (arm_frame_find_save_regs): Delete.
2145 (arm_frame_init_saved_regs): New.
2146 (arm_init_extra_frame_info): Alloacte saved_regs as required.
2147 Allocate extra_info as required. Convert all uses of fsr.regs
2148 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
2149 to use extra_info.
2150 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
2151 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
2152 (check_prologue_cache, save_prologue_cache): Likewise.
2153 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
2154 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
2155 (FRAME_FIND_SAVED_REGS): Delete.
2156 (arm_frame_find_saved_regs): Delete prototype.
2157 (arm_frame_init_saved_regs): New prototype.
2158 (FRAME_INIT_SAVED_REGS): Define.
2159
61d99182
AC
21602002-01-20 Andrew Cagney <ac131313@redhat.com>
2161
2162 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
2163
6aaea291
AC
21642002-01-20 Andrew Cagney <ac131313@redhat.com>
2165
2166 From Jeff Law <law@redhat.com>:
2167 * infttrace.c: Include <sys/pstat.h>.
2168 (child_pid_to_exec_file): Revamp. Use pstat call to get the
2169 exec file if the ttrace equivalent fails.
2170
15f698d2
AC
21712002-01-20 Andrew Cagney <ac131313@redhat.com>
2172
2173 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
2174 (closeLogFile): Ditto.
2175
f86ddd7c
MC
21762002-01-20 Michael Chastain <mec@shout.net>
2177
2178 * top.c (print_gdb_version): Bump copyright year to 2002.
2179
904507ce
AC
21802002-01-20 Andrew Cagney <ac131313@redhat.com>
2181
2182 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
2183 Zannoni and Eli Zaretskii.
2184
d7f0b9ce
DJ
21852002-01-20 Daniel Jacobowitz <drow@mvista.com>
2186
2187 * buildsym.c: Update copyright years.
2188 * c-typeprint.c: Likewise.
2189 * dwarf2read.c: Likewise.
2190 * f-typeprint.c: Likewise.
2191 * gdbtypes.c: Likewise.
2192 * gdbtypes.h: Likewise.
2193 * hp-symtab-read.c: Likewise.
2194 * hpread.c: Likewise.
2195 * mdebugread.c: Likewise.
2196 * p-typeprint.c: Likewise.
2197
3fd3d7d2
AC
21982002-01-20 Andrew Cagney <ac131313@redhat.com>
2199
2200 * remote-sim.c (gdbsim_open): Simplify code testing the macro
2201 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
2202 byte-order selectable.
2203 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
2204 * arch-utils.c: Ditto.
2205 (set_endian): Ditto.
2206 (set_endian_from_file): Ditto.
2207 * gdbserver/low-sim.c (create_inferior): Ditto.
2208 * gdbarch.sh: Ditto.
2209 * gdbarch.h: Re-generate.
aaa38bb5
AJ
2210 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
2211 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
2212 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
2213 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
2214 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
2215 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
2216 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
3fd3d7d2
AC
2217 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
2218 macro definition.
2219 * config/mips/tm-wince.h: Remove #undef of macro
2220 TARGET_BYTE_ORDER_SELECTABLE.
2221 * config/sh/tm-wince.h: Ditto.
2222
b02dede2
DJ
22232002-01-20 Daniel Jacobowitz <drow@mvista.com>
2224
2225 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
2226 member function fields. Add accessor macro
2227 TYPE_FN_FIELD_ARTIFICIAL.
2228 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
2229 * c-typeprint.c (c_type_print_base): Skip artificial member
2230 functions.
2231
c3643761
DJ
22322002-01-20 Daniel Jacobowitz <drow@mvista.com>
2233
2234 * f-typeprint.c: Delete unused function f_type_print_args.
2235 * p-typeprint.c: Delete unused function pascal_type_print_args.
2236
8176bb6d
DJ
22372002-01-20 Daniel Jacobowitz <drow@mvista.com>
2238
2239 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
2240 comment. Add ``artificial'' to ``union field_location''.
2241
2242 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
2243
2244 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
2245 * mdebugread.c (parse_symbol): Likewise.
2246 * stabsread.c (define_symbol): Likewise.
2247 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
2248 initializing TYPE_FIELD_BITPOS to n (obsolete).
2249 (hpread_doc_function_type): Likewise.
2250 * hpread.c (hpread_function_type): Likewise.
2251
7fd60527
AC
22522002-01-20 Andrew Cagney <ac131313@redhat.com>
2253
2254 * configure.in (host_makefile_frag): Only require a host makefile
2255 fragment when a native build.
2256 * configure: Re-generate.
2257
c2f05ac9
AC
22582002-01-20 Andrew Cagney <ac131313@redhat.com>
2259
2260 * doublest.h (floatformat_from_type): Declare.
2261 * doublest.c (floatformat_from_type): New function.
2262 (convert_typed_floating): Use.
2263
2264 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
2265 call to function floatformat_from_type.
2266
2267 * gdbarch.sh (IEEE_FLOAT): Delete.
2268 * gdbarch.h, gdbarch.c: Re-generate.
2269 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
2270 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
2271 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
2272 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
2273 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
2274 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
2275 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
2276 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
2277 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
2278 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
2279 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
c2f05ac9
AC
2280 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
2281
2282 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
2283 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
2284 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
2285 * sh-tdep.c (sh_gdbarch_init): Ditto.
2286 * mips-tdep.c (mips_gdbarch_init): Ditto.
2287 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
2288 * cris-tdep.c (cris_gdbarch_init): Ditto.
2289
abf22e64
AJ
22902002-01-20 Jiri Smid <smid@suse.cz>
2291
2292 * configure.host, configure.tgt: Support x86-64.
2293 * NEWS: Note new target x86-64.
2294
b7c4cbf8
AJ
2295 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
2296 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
2297 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
2298 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
2299 x86-64-linux-nat.o): Fix dependencies.
2300
82600034
AC
23012002-01-19 Andrew Cagney <ac131313@redhat.com>
2302
2303 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
2304 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
2305 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
2306 * config/sparc/xm-sun4os4.h: Delete file.
2307 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
abf22e64 2308
bbe5c628
AC
23092002-01-19 Andrew Cagney <ac131313@redhat.com>
2310
2311 * config/sparc/sparclynx.mh (XM_FILE): Delete.
2312 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
2313 * config/m68k/m68klynx.mh (XM_FILE): Delete.
2314 * config/i386/i386lynx.mh (XM_FILE): Delete.
2315 * config/rs6000/xm-rs6000ly.h: Delete file.
2316 * config/sparc/xm-sparclynx.h: Delete file.
2317 * config/m68k/xm-m68klynx.h: Delete file.
2318 * config/i386/xm-i386lynx.h: Delete file.
2319 * config/xm-lynx.h: Delete file.
2320 * config/djgpp/fnchange.lst: Update.
2321
f8453e34
JT
23222002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
2323
2324 * alpha-tdep.c (alpha_register_byte): New function.
2325 (alpha_register_raw_size): Ditto.
2326 (alpha_register_virtual_size): Ditto.
2327 (alpha_skip_prologue_internal): Renamed from
2328 alpha_skip_prologue.
2329 (alpha_skip_prologue): New version that calls
2330 alpha_skip_prologue_internal.
2331 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
2332 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
2333 second argument from alpha_skip_prologue.
2334 (REGISTER_BYTE): Use alpha_register_byte.
2335 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
2336 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
2337 (FRAMELESS_FUNCTION_INVOCATION): Use
2338 generic_frameless_function_invocation_not.
2339 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
2340 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
2341
52d9e613
AC
23422002-01-19 Andrew Cagney <ac131313@redhat.com>
2343
2344 * config/mips/xm-news-mips.h: Delete file.
2345 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
2346
2347 * config/m88k/xm-m88k.h: Delete file.
2348 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
2349 * config/m88k/xm-delta88v4.h: Ditto.
2350 * config/m88k/xm-delta88.h: Ditto.
2351
2352 * config/alpha/xm-fbsd.h: Delete file.
2353 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
2354
2355 * config/sparc/xm-sparc.h: Delete file.
2356 * Makefile.in (xm-sun4os4.h): Delete dependency.
2357 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
2358 * config/sparc/xm-sun4os4.h: Ditto.
2359 * config/sparc/xm-linux.h: Ditto.
2360
2361 * config/i386/xm-windows.h: Delete file.
2362
2d1b2124
AC
23632002-01-19 Andrew Cagney <ac131313@redhat.com>
2364
2365 * utils.c: Include <sys/param.h> for MAXPATHLEN.
2366 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
2367
ee1f65f0
JT
23682002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
2369
2370 * alpha-tdep.c (alpha_call_dummy_words): New.
2371 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
2372 (CALL_DUMMY_P): Define.
2373 (CALL_DUMMY_WORDS): Define.
2374 (SIZEOF_CALL_DUMMY_WORDS): Define.
2375
98081e55
PB
23762002-01-19 Per Bothner <per@bothner.com>
2377
2378 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
2379 isn't NULL, which can happen with some gcj-3.x-produced code.
2380
0d056799
JT
23812002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
2382
2383 * alpha-tdep.c (alpha_register_virtual_type): New function.
2384 (alpha_init_frame_pc_first): Ditto.
2385 (alpha_fix_call_dummy): Ditto.
2386 (alpha_store_struct_return): Ditto.
2387 (alpha_extract_struct_value_address): Ditto.
2388 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
2389 alpha_register_virtual_type.
2390 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
2391 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
2392 alpha_extract_struct_value_address.
2393 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
2394 (INIT_FRAME_PC): Use init_frame_pc_noop.
2395 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
2396
4604bcad
MK
23972002-01-19 Mark Kettenis <kettenis@gnu.org>
2398
2399 * i386gnu-nat.c: Include "i386-tdep.h".
2400 (fetch_fpregs): Simplify code dealing with uninitialized floating
2401 point states such that it doesn't require FP7_REGNUM.
2402
140f9984
JT
24032002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
2404
abf22e64
AJ
2405 * alpha-tdep.c (frame_extra_info): New.
2406 (alpha_find_saved_regs): Make static. Use
140f9984
JT
2407 frame->extra_info.
2408 (alpha_frame_init_saved_regs): New function.
abf22e64
AJ
2409 (alpha_frame_saved_pc): Use frame->extra_info.
2410 (temp_saved_regs): Don't declare as struct frame_saved_regs.
2411 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
140f9984
JT
2412 (init_extra_frame_info): Rename to...
2413 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
abf22e64 2414 (alpha_print_extra_frame_info): New function.
140f9984
JT
2415 (alpha_frame_locals_address): Ditto.
2416 (alpha_frame_args_address): Ditto.
abf22e64 2417 (alpha_pop_frame): Use frame->extra_info.
140f9984
JT
2418 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
2419 alpha_frame_args_address.
abf22e64 2420 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
140f9984 2421 (alpha_find_saved_regs): Remove prototype.
abf22e64
AJ
2422 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
2423 (EXTRA_FRAME_INFO): Remove.
140f9984
JT
2424 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
2425 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
2426
d734c450
JT
24272002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
2428
2429 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
2430 (alpha_cannot_fetch_register): Ditto.
2431 (alpha_cannot_store_register): Ditto.
2432 (alpha_register_convertible): Ditto.
2433 (alpha_use_struct_convention): Ditto.
2434 * config/alpha/tm-alpha.h: Update copyright years.
2435 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
2436 (INNER_THAN): Use core_addr_lessthan.
2437 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
2438 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
2439 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
2440 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
2441 (FRAME_CHAIN): Remove unnecessary cast.
2442
b4ceaee6
AC
24432002-01-18 Andrew Cagney <ac131313@redhat.com>
2444
2445 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
2446 obsolete.
2447
0a65a603
AC
24482002-01-18 Andrew Cagney <ac131313@redhat.com>
2449
2450 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
2451 * monitor.c, remote-array.c, remote-bug.c: Ditto.
2452 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
2453 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
2454 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
2455 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
2456 * x86-64-linux-nat.c: Ditto.
2457
636a6dfc
JT
24582002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
2459
abf22e64 2460 * alpha-tdep.c (alpha_register_name): New function.
636a6dfc
JT
2461 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
2462 (REGISTER_NAME): Define.
2463
acceddb6
JT
24642002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
2465
2466 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
2467
ec32e4be
JT
24682002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
2469
2470 * alpha-tdep.c: Update copyright years.
2471 (alpha_next_pc): New function.
2472 (alpha_software_single_step): Ditto.
2473 * config/alpha/tm-alpha.h: Add prototype for
2474 alpha_software_single_step.
2475
e771a871
JT
24762002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
2477
2478 * alphabsd-nat.c: Update copyright years.
2479 (fill_gregset): Use regcache_collect.
2480 (fill_fpregset): Likewise.
2481 (fetch_inferior_registers): Only fetch integer registers
2482 if requested to do so.
2483 (store_inferior_registers): Only store integer registers
2484 if requested to do so.
2485
7708fa01
AC
24862002-01-17 Andrew Cagney <ac131313@redhat.com>
2487
2488 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
2489 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
2490 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
2491 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
2492 * config/alpha/fbsd.mh (XDEPFILES): Delete.
2493 * config/arm/linux.mh (XDEPFILES): Delete.
2494 * config/arm/nbsd.mh (XDEPFILES): Delete.
2495 * config/i386/i386dgux.mh (XDEPFILES): Delete.
2496 * config/i386/i386sol2.mh (XDEPFILES): Delete.
2497 * config/i386/i386m3.mh (XDEPFILES): Delete.
2498 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
2499 * config/i386/i386gnu.mh (XDEPFILES): Delete.
2500 * config/i386/fbsd.mh (XDEPFILES): Delete.
2501 * config/i386/i386bsd.mh (XDEPFILES): Delete.
2502 * config/i386/i386sco5.mh (XDEPFILES): Delete.
2503 * config/i386/i386v4.mh (XDEPFILES): Delete.
2504 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
2505 * config/i386/i386sco4.mh (XDEPFILES): Delete.
2506 * config/i386/i386aix.mh (XDEPFILES): Delete.
2507 * config/i386/go32.mh (XDEPFILES): Delete.
2508 * config/i386/cygwin.mh (XDEPFILES): Delete.
2509 * config/i386/i386lynx.mh (XDEPFILES): Delete.
2510 * config/i386/i386mach.mh (XDEPFILES): Delete.
2511 * config/i386/i386v32.mh (XDEPFILES): Delete.
2512 * config/i386/linux.mh (XDEPFILES): Delete.
2513 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
2514 * config/i386/ncr3000.mh (XDEPFILES): Delete.
2515 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
2516 * config/i386/i386sco.mh (XDEPFILES): Delete.
2517 * config/i386/i386v.mh (XDEPFILES): Delete.
2518 * config/i386/nbsd.mh (XDEPFILES): Delete.
2519 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
2520 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
2521 * config/i386/symmetry.mh (XDEPFILES): Delete.
2522 * config/i386/obsd.mh (XDEPFILES): Delete.
2523 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
2524 * config/ia64/linux.mh (XDEPFILES): Delete.
2525 * config/ia64/aix.mh (XDEPFILES): Delete.
2526 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
2527 * config/m68k/dpx2.mh (XDEPFILES): Delete.
2528 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
2529 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
2530 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
2531 * config/m68k/linux.mh (XDEPFILES): Delete.
2532 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
2533 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
2534 * config/m68k/nbsd.mh (XDEPFILES): Delete.
2535 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
2536 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
2537 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
2538 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
2539 * config/m88k/delta88.mh (XDEPFILES): Delete.
2540 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
2541 * config/m88k/m88k.mh (XDEPFILES): Delete.
2542 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
2543 * config/mips/linux.mh (XDEPFILES): Delete.
2544 * config/mips/irix6.mh (XDEPFILES): Delete.
2545 * config/mips/irix5.mh (XDEPFILES): Delete.
2546 * config/mips/irix4.mh (XDEPFILES): Delete.
2547 * config/mips/irix3.mh (XDEPFILES): Delete.
2548 * config/mips/decstation.mh (XDEPFILES): Delete.
2549 * config/mips/mipsm3.mh (XDEPFILES): Delete.
2550 (NATDEPFILES): Move core-aout.o to here.
2551 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
2552 * config/pa/hpux1020.mh (XDEPFILES): Delete.
2553 * config/pa/hppabsd.mh (XDEPFILES): Delete.
2554 * config/pa/hppahpux.mh (XDEPFILES): Delete.
2555 * config/pa/hpux11w.mh (XDEPFILES): Delete.
2556 * config/pa/hppaosf.mh (XDEPFILES): Delete.
2557 * config/pa/hpux11.mh (XDEPFILES): Delete.
2558 * config/powerpc/aix.mh (XDEPFILES): Delete.
2559 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
2560 * config/powerpc/linux.mh (XDEPFILES): Delete.
2561 * config/romp/rtbsd.mh: Rename XDEPFILES.
2562 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
2563 * config/rs6000/aix4.mh (XDEPFILES): Delete.
2564 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
2565 * config/s390/s390.mh (XDEPFILES): Delete.
2566 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
2567 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
2568 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
2569 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
2570 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
2571 * config/sparc/nbsd.mh (XDEPFILES): Delete.
2572 * config/sparc/linux.mh (XDEPFILES): Delete.
2573 * config/vax/vaxult.mh (XDEPFILES): Delete.
2574 * config/vax/vaxult2.mh (XDEPFILES): Delete.
2575 * Makefile.in (DEPFILES): Remove XDEPFILES.
2576
375fc983
AC
25772002-01-17 Andrew Cagney <ac131313@redhat.com>
2578
2579 * utils.c (internal_verror): Fix comments, default is yes not no.
2580 Update queries to match. Default to quit and dump core.
2581
8926118c
AC
25822002-01-17 Andrew Cagney <ac131313@redhat.com>
2583
2584 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
2585 copyright.
2586 * defs.h, event-top.c, gdbcmd.h: Ditto.
2587 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
2588 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
2589 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
2590 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
2591 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
2592 * mi/mi-main.c:Ditto.
2593
2594 * stack.c, symfile.c: Update copyright.
2595
45b7b345
DJ
25962002-01-17 Daniel Jacobowitz <drow@mvista.com>
2597
db728ff7
DJ
2598 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
2599 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
2600 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
2601 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
45b7b345 2602
db728ff7
DJ
26032002-01-17 Daniel Jacobowitz <drow@mvista.com>
2604
2605 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
2606 * gdbserver/low-lynx.c (myattach): Likewise.
2607 * gdbserver/low-nbsd.c (myattach): Likewise.
2608 * gdbserver/low-sim.c (myattach): Likewise.
2609 * gdbserver/low-sparc.c (myattach): Likewise.
2610 * gdbserver/low-sun3.c (myattach): Likewise.
2611
2612 * gdbserver/low-linux.c (myattach): New function.
45b7b345 2613
db728ff7 2614 * gdbserver/server.c (attach_inferior): New function.
45b7b345
DJ
2615 (main): Handle "--attach".
2616
8de3c354
AC
26172002-01-16 Andrew Cagney <ac131313@redhat.com>
2618
2619 * MAINTAINERS (language support): Daniel Jacobwitz is C++
2620 maintainer.
2621
b0129042
DJ
26222002-01-15 Daniel Jacobowitz <drow@mvista.com>
2623
2624 * c-typeprint.c (is_type_conversion_operator): Add additional
2625 check for non-conversion operators.
2626
ba8679fb 26272002-01-15 Michael Snyder <msnyder@redhat.com>
2bf543a6
MS
2628
2629 * linux-proc.c: Add "info proc" command, a la procfs.c.
2630 (read_mapping): New function, abstract and re-use code.
2631 (linux_find_memory_regions): Use new func read_mapping.
2632 (linux_info_proc_cmd): New function, implement "info proc".
2633 (_initialize_linux_proc): Add new command "info proc".
2634
e4f9b4d5
MS
26352002-01-15 Michael Snyder <msnyder@redhat.com>
2636
2637 * symfile.c (generic_load): Use bfd_map_over_sections method
2638 instead of manipulating bfd structure members directly.
2639 (add_section_size_callback): New function, bfd sections callback
2640 used by generic_load.
2641 (load_sections_callback): New function, bfd sections callback
2642 used by generic_load.
2643
08cf96df
EZ
26442002-01-15 Elena Zannoni <ezannoni@redhat.com>
2645
abf22e64 2646 [Based on work by Jim Blandy]
08cf96df
EZ
2647 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
2648 (builtin_type_vec128): Export.
2649 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
2650 types.
2651 (builtin_type_vec128): New builtin type for 128 bit vector
2652 registers.
2653 (build_gdbtypes): Initialize builtin_type_v16qi and
2654 builtin_type_v8hi. Create the vec128 register builtin type
2655 structure.
2656 (build_builtin_type_vec128): New function.
abf22e64 2657 (_initialize_gdbtypes): Register builtin_type_v16qi and
08cf96df
EZ
2658 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
2659 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
2660 AltiVec register to new builtin type.
2661
d7242108
DJ
26622001-01-15 Daniel Jacobowitz <drow@mvista.com>
2663
2664 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
2665 to make_cv_type.
2666
4ee3352d
AC
26672002-01-14 Andrew Cagney <ac131313@redhat.com>
2668
2669 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
2670 CLEAN_UP_REGISTER_VALUE.
2671 * regcache.c (supply_register): Update only call.
2672
f015b2e7
AC
26732002-01-14 Andrew Cagney <ac131313@redhat.com>
2674
2675 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
2676 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
2677 a29k-*-vxworks* targets as obsolete.
2678
356ae49d
MS
26792002-01-14 Michael Snyder <msnyder@redhat.com>
2680
2681 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
2682 until we can resolve portability issues.
2683 * gregset.h: Remove references to fpxregs.
2684 * gcore.c (gcore_command): Initialize note_sec to NULL.
2685
ade8f45e
AC
26862002-01-13 Andrew Cagney <ac131313@redhat.com>
2687
2688 * signals.c (target_signal_to_name): Rewrite. Only use
2689 signals[].name when in bounds and non-NULL.
abf22e64 2690
89c49e7a
AC
26912002-01-13 Andrew Cagney <ac131313@redhat.com>
2692
2693 From Petr Ledvina <ledvinap@kae.zcu.cz>:
2694 * signals.c (target_signal_to_name): Verify that SIG is within the
2695 bounds of the signals array.
2696
4daa9f9f
AC
26972002-01-13 Andrew Cagney <ac131313@redhat.com>
2698
2699 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
2700
ba4bbdcb
KS
27012002-01-13 Keith Seitz <keiths@redhat.com>
2702
2703 * stack.c (print_frame_info_base): Print the frame's pc
2704 only if when print_frame_info_listing_hook is not defined.
2705
575bbeb6
KS
27062002-01-13 Keith Seitz <keiths@redhat.com>
2707
2708 * varobj.c (varobj_set_value): Make sure that there were no
2709 errors evaluating the object before attempting to set its
2710 value.
2711 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
2712 so this offset adjustment is no longer necessary.
2713 (create_child): Don't set the error flag if the child is
2714 a CPLUS_FAKE_CHILD.
2715 (value_of_child): If value_fetch_lazy fails, return NULL
2716 so that callers will be notified that an error occurred.
2717 (c_value_of_variable): Delay check of variable's validity
2718 until later. We actually want all structs and unions to have
2719 the value "{...}".
2720 Do not return "???" for variables which could not be evaluated.
2721 This error condition must be returned to the caller so that it
2722 can get the error condition from gdb.
2723 (cplus_name_of_child): Adjust index for vptr before figuring
2724 out the name of the child.
2725 (cplus_value_of_child): If a child's (real) parent is not valid,
2726 don't even bother trying to give a value for it. Just return
2727 an error. Change all instances in this function.
2728 (cplus_type_of_child): If our parent is one of the "fake"
2729 parents, we need to get at the type of the real parent, and
2730 derive the child's true type using this information.
2731
b76898ab
AC
27322002-01-13 Andrew Cagney <ac131313@redhat.com>
2733
2734 From 2002-01-09 John Marshall <johnm@falch.net>:
2735 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
2736 sources.redhat.com, and tweak some related URLs which had
2737 suffered from linkrot.
2738
b6649e88
AC
27392002-01-13 Andrew Cagney <ac131313@redhat.com>
2740
2741 From Jeff law:
2742 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
2743 structures passed in registers.
2744
82cc5033
EZ
27452002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
2746
2747 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
2748 white space which prevented compilation. Reported by DSK
2749 <dsk@student.unsw.edu.au>.
2750
ba5f2f8a
MS
27512002-01-11 Michael Snyder <msnyder@redhat.com>
2752
fbd35540
MS
2753 * symfile.c (build_section_addr_info_from_section_tab):
2754 Use bfd access method instead of manipulating bfd directly.
2755 (syms_from_objfile): Ditto.
2756 (simple_overlay_update_1): Ditto.
2757 (simple_overlay_update): Ditto.
2758 (generic_load): Ditto.
2759 (overlay_unmapped_address): FIXME comment, bfd access methods.
2760 (sections_overlap): FIXME comment, bfd access methods.
2761 (pc_in_mapped_range): FIXME comment, bfd access methods.
2762 (pc_in_unmapped_range): FIXME comment, bfd access methods.
2763 (section_is_mapped): FIXME comment, bfd access methods.
2764 (section_is_overlay): FIXME comment, bfd access methods.
2765
ba5f2f8a
MS
2766 * symfile.c (generic_load): Whitespace and long line cleanups.
2767 Remove duplicate variable, change several local variables to
2768 more appropriate data types.
2769 (print_transfer_performance): Use %lu instead of %ld for ulongs.
2770
17df2af6
AC
27712002-01-12 Andrew Cagney <ac131313@redhat.com>
2772
2773 From Peter Schauer:
2774 * language.c (longest_local_hex_string_custom): Use phex_nz to
2775 convert NUM to a hex string.
2776
ec920329
EZ
27772002-01-12 Elena Zannoni <ezannoni@redhat.com>
2778
2779 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
2780 the function.
538a76d6 2781 Update Copyright year.
ec920329 2782
3abd2e01
AC
27832002-01-12 Andrew Cagney <ac131313@redhat.com>
2784
2785 * language.c (longest_raw_hex_string): Delete unused function.
2786
b21b22e0
PS
27872002-01-11 Petr Sorfa <petrs@caldera.com>
2788
2789 * MAINTAINERS (write-after-approval): Add myself.
2790 * dwarf2read.c (read_tag_string_type): Handling of
2791 DW_AT_byte_size.
2792 (read_tag_string_type): FORTRAN fix to prevent propagation of
2793 first string size.
2794 (set_cu_language): Handling of DW_LANG_Fortran95
2795
747fe712
RE
27962002-01-11 Richard Earnshaw <rearnsha@arm.com>
2797
2798 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
2799 GETPID(inferior_ptid).
2800 (store_inferior_registers): Likewise.
2801
f1bea926
JM
28022002-01-10 Jason Merrill <jason@redhat.com>
2803
2804 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
2805 Fix DW_OP_minus.
2806
ae940673
AC
28072002-01-10 Andrew Cagney <ac131313@redhat.com>
2808
2809 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
2810 and bfd/elf32-sh-nbsd.c.
2811
00546b04
MS
28122002-01-10 Michael Snyder <msnyder@redhat.com>
2813
352ed7b4
MS
2814 * NEWS: Mention --pid and corefile/proc-id behavior change.
2815
c18be923
MS
2816 * Makefile.in: Add rules for gcore.o and linux-proc.o.
2817 * gcore.c: Include cli/cli-decode.h instead of command.h.
2818
00546b04
MS
2819 * main.c (captured_main): Add new command line option "--pid".
2820 If the second command line argument (following the symbol-file)
2821 begins with a digit, try to attach to it before trying to open
2822 it as a corefile.
2823 (print_gdb_help): Document the "--pid" argument.
2824
db60ec62
EZ
28252002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
2826
2827 * completer.c (command_completer): New function.
2828
2829 * completer.h <command_completer>: Add prototype.
2830
2831 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
2832 completer for the "help" command.
2833
39c22d1a
JM
28342002-01-09 Jason Merrill <jason@redhat.com>
2835
2836 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
2837
c564377f
MS
28382002-01-09 Michael Snyder <msnyder@redhat.com>
2839
975aec09
MS
2840 * i386-linux-nat.c (fill_fpxregset): Make global.
2841 (store_fpxregset): Ditto.
2842
db4a10fa
MS
2843 * gregset.h (gdb_fpxregset_t): Define.
2844 (supply_fpxregset): Prototype.
2845 (fill_fpxregset): Prototype.
2846
c564377f
MS
2847 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
2848
c3d45d70
RE
28492002-01-09 Richard Earnshaw <rearnsha@arm.com>
2850
2851 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
2852 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
2853 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
2854
fcc87af1
AC
28552002-01-09 Andrew Cagney <ac131313@redhat.com>
2856
2857 * MAINTAINERS: Update target maintainer rules so that any
2858 Maintainer can approve a tested patch for a maintenance-only
2859 target.
2860
dd96c05b
RE
28612002-01-09 Richard Earnshaw <rearnsha@arm.com>
2862
d4297db9 2863 * MAINTAINERS (write-after-approval): Add myself.
dd96c05b 2864
d4297db9 2865 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
dd96c05b
RE
2866 IN_SIGTRAMP.
2867
145fdc6e
MS
28682002-01-08 Michael Snyder <msnyder@redhat.com>
2869
2870 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
2871 real name of the executable, rather than the /proc name.
2872
be4d1333
MS
28732002-01-03 Michael Snyder <msnyder@redhat.com>
2874
2875 Implement a "generate-core-file" command in gdb, save target state.
2876 * gcore.c: New file. Implement new command 'generate-core-file'.
2877 Save a corefile image of the current state of the inferior.
2878 * linux-proc.c: Add linux-specific code for saving corefiles.
2879 * target.h (struct target_ops): Add new target vectors for saving
2880 corefiles; to_find_memory_regions and to_make_corefile_notes.
2881 (target_find_memory_regions): New macro.
2882 (target_make_corefile_notes): New macro.
2883 * target.c (update_current_target): Inherit new target methods.
2884 (dummy_find_memory_regions): New place-holder method.
2885 (dummy_make_corefile_notes): New place-holder method.
2886 (init_dummy_target): Initialize new dummy target vectors.
2887 * exec.c (exec_set_find_memory_regions): New function.
2888 Allow the exec_ops vector for memory regions to be taken over.
2889 (exec_make_note_section): New function, target vector method.
2890 * defs.h (exec_set_find_memory_regions): Export prototype.
2891 * procfs.c (proc_find_memory_regions): New function, corefile method.
2892 (procfs_make_note_section): New function, corefile method.
2893 (init_procfs_ops): Set new target vector pointers.
2894 (find_memory_regions_callback): New function.
2895 (procfs_do_thread_registers): New function.
2896 (procfs_corefile_thread_callback): New function.
2897 * sol-thread.c (sol_find_memory_regions): New function.
2898 (sol_make_note_section): New function.
2899 (init_sol_thread_ops): Initialize new target vectors.
2900 * inftarg.c (inftarg_set_find_memory_regions): New function.
2901 Allow to_find_memory_regions vector to be taken over.
2902 (inftarg_set_make_corefile_notes): New function.
2903 Allow to_make_corefile_notes vector to be taken over.
2904 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
2905 interface layer if not target_has_execution (may be a corefile).
2906 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
2907 * config/sparc/sun4sol2.mh: Ditto.
2908 * config/alpha/alpha-linux.mh: Ditto.
2909 * config/arm/linux.mh: Ditto.
2910 * config/i386/x86-64linux.mh: Ditto.
2911 * config/ia64/linux.mh: Ditto.
2912 * config/m68k/linux.mh: Ditto.
2913 * config/mips/linux.mh: Ditto.
2914 * config/powerpc/linux.mh: Ditto.
2915 * config/sparc/linux.mh: Ditto.
2916
c6b92abd
MS
29172002-01-07 Michael Snyder <msnyder@redhat.com>
2918
2919 * arm-linux-nat.c: Remove references to regcache.c internal data
2920 (registers[] and register_valid[]).
2921
4b09dc8c
MS
29222002-01-07 Michael Snyder <msnyder@redhat.com>
2923
abf22e64
AJ
2924 * linux-proc.c: New file. Implement child_pid_to_exec_file,
2925 so that attaching to a pid will automatically read the process's
4b09dc8c
MS
2926 symbol file and shlibs.
2927 * Makefile.in: Add rule for linux-proc.o.
2928 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
2929 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
2930 * config/arm/linux.mh: Ditto.
2931 * config/i386/linux.mh: Ditto.
2932 * config/i386/x86-64linux.mh: Ditto.
2933 * config/ia64/linux.mh: Ditto.
2934 * config/m68k/linux.mh: Ditto.
2935 * config/mips/linux.mh: Ditto.
2936 * config/powerpc/linux.mh: Ditto.
2937 * config/sparc/linux.mh: Ditto.
2938
c25b74ac
PM
29392002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
2940
2941 * win32-nat.c: Add i386-tdep.h dependency.
2942
94cd915f
MS
29432002-01-07 Michael Snyder <msnyder@redhat.com>
2944
c7cccb76
MS
2945 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
2946 instead of bfd_get_arch_size. Don't bail out just because
2947 there's no exec_bfd.
abf22e64 2948
34c0bd93
MS
2949 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
2950 * p-valprint.c (pascal_object_print_value): Ditto.
2951 * somread.c (som_symtab_read): Ditto.
2952 * symfile.c (simple_free_overlay_region_table): Ditto.
2953 * valops.c (value_assign): Ditto.
2954
21c1c920
MS
2955 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
2956 use tilde_expand and strerror for opening save-tracepoints file.
2957
5bbd998e
MS
2958 * thread-db.c (thread_db_new_objfile): Indendation fix.
2959
94cd915f
MS
2960 * infptrace.c (GDB_MAX_ALLOCA): New define.
2961 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
abf22e64 2962 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
94cd915f
MS
2963 can be overridden with whatever value is appropriate to the host).
2964 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
2965 alloca to allocate potentially large buffer.
2966 * rs6000-nat.c (child_xfer_memory): Ditto.
2967 * symm-nat.c (child_xfer_memory): Ditto.
2968 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
2969
494e8a93
JSC
29702002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
2971
2972 From Nick Clifton <nickc@redhat.com>
2973 * d10v-tdep.c: Set STACK_START to 0x200bffe.
2974
d0e1d48e
MS
29752002-01-07 Michael Snyder <msnyder@redhat.com>
2976
abf22e64 2977 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
d0e1d48e
MS
2978 Don't use exec_bfd if it's NULL.
2979
290b2c7a
MK
29802002-01-06 Mark Kettenis <kettenis@gnu.org>
2981
abf22e64 2982 * valops.c (value_arg_coerce): Fix formatting.
290b2c7a 2983
aef21287
AC
29842002-01-06 Andrew Cagney <ac131313@redhat.com>
2985
2986 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
2987 * gnu-nat.c: Ditto.
2988
30efa627
AC
29892002-01-06 Andrew Cagney <ac131313@redhat.com>
2990
2991 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
2992 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
2993 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
2994 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
2995 z8k-coff have not been multi-arched. Update z8k-coff build
2996 status.
2997
9b4ff276
AC
29982002-01-06 Andrew Cagney <ac131313@redhat.com>
2999
3000 * MAINTAINERS: Mark a29k target as obsolete.
3001 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
3002 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
3003 comments.
3004 * NEWS: Note that a29k targets are obsolete.
3005 * a29k-tdep.c: Mark as obsolete.
3006 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
3007 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
3008 a29k-*-vxworks* targets as obsolete.
3009 * remote-adapt.c: Obsolete.
3010 * remote-eb.c: Obsolete.
3011 * remote-mm.c: Obsolete.
3012 * remote-udi.c: Obsolete.
3013 * config/a29k/a29k-udi.mt: Obsolete.
3014 * config/a29k/a29k.mt: Obsolete.
3015 * config/a29k/tm-a29k.h: Obsolete.
3016 * config/a29k/tm-vx29k.h: Obsolete.
3017 * config/a29k/vx29k.mt: Obsolete.
3018
a9011d31
AC
30192002-01-05 Andrew Cagney <ac131313@redhat.com>
3020
3021 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
3022 with BFD_ENDIAN_BIG.
3023
9299404e
AC
30242002-01-05 Andrew Cagney <ac131313@redhat.com>
3025
3026 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
3027 * configure, config.in: Re-generate.
3028 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
3029 * defs.h: Do not include <endian.h>.
3030
7e89e357
JT
30312002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
3032
3033 * acconfig.h (HAVE_PT_GETXMMREGS): New.
3034 * config.in: Regenerate.
3035 * configure.in: Update copyright years.
3036 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
3037 * configure: Regenerate.
3038 * i386bsd-nat.c: Update copyright years.
3039 (fill_gregset): Use regcache_collect.
3040 (fetch_inferior_registers): Only fetch integer registers
3041 if requested to do so. Add support for XMM registers
3042 using PT_GETXMMREGS.
3043 (store_inferior_registers): Only store integer registers
3044 if requested to do so. Add support for XMM registers
3045 using PT_SETXMMREGS.
3046 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
3047 (store_inferior_registers): Remove.
3048 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
3049 (fetch_elfcore_registers): New function.
3050 (i386nbsd_elfcore_fns): New.
3051 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
3052 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
3053 i386bsd-nat.o.
3054 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
3055 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
3056 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
3057 * config/i386/tm-nbsd.h: Update copyright years.
3058 (HAVE_SSE_REGS): Define.
3059 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
3060 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
3061 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
3062 (SIGCONTEXT_PC_OFFSET): Remove.
3063 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
3064
a752853e
AC
30652002-01-05 Andrew Cagney <ac131313@redhat.com>
3066
3067 * configure.tgt: Remove powerpc-*-macos* target.
3068 * config/m68k/xm-mpw.h: Delete file.
3069 * config/xm-mpw.h: Delete file.
3070 * ser-mac.c: Delete file.
3071 * mpw-make.sed: Delete file.
3072 * mpw-config.in: Delete file.
3073 * mac-xdep.c: Delete file.
3074 * mac-gdb.r: Delete file.
3075 * mac-defs.h: Delete file.
3076 * mac-nat.c: Delete file.
3077 * config/powerpc/macos.mh: Delete file.
3078 * config/powerpc/macos.mt: Delete file.
3079 * config/powerpc/nm-macos.h: Delete file.
3080 * config/powerpc/tm-macos.h: Delete file.
3081 * source.c (openp, open_source_file): Remove obsolete code.
3082 * top.c (gdb_readline): Ditto.
3083 * utils.c (query): Ditto.
3084 * event-top.c (display_gdb_prompt): Ditto.
3085 * Makefile.in (ser-mac.o): Delete obsolete target.
3086 * NEWS: Update.
3087
d7449b42
AC
30882002-01-04 Andrew Cagney <ac131313@redhat.com>
3089
3090 * defs.h (BIG_ENDIAN): Delete macro definition.
3091 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
3092 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
3093 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
3094 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
3095 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
3096 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
3097 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
3098 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
3099 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
3100 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
3101 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
3102 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
3103 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
3104 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
3105 * gdbarch.c: Re-generate.
3106
356374e8
DJ
31072002-01-04 Daniel Jacobowitz <drow@mvista.com>
3108
3109 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
3110 for core files.
3111
a2b8f8f8
JT
31122002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
3113
3114 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
3115
12466af9
AC
31162002-01-04 Andrew Cagney <ac131313@redhat.com>
3117
3118 * value.h (value_ptr): Delete typedef.
3119
3549ab40
JT
31202002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
3121
3122 * i386nbsd-nat.c: Update copyright years.
3123 Include i386-tdep.h.
3124
fedbd091
EZ
31252002-01-04 Elena Zannoni <ezannoni@redhat.com>
3126
3127 * stabsread.c: Update copyright years.
3128
3129 From Debashis Mahata <debashis.mahata@wipro.com>:
3130 (read_struct_fields): Deal with Sun C compiler erroneous stab
3131 output for structs and unions.
fec8b34f 3132 Fix PR gdb/269.
fedbd091 3133
eb43544b
DJ
31342002-01-04 Daniel Jacobowitz <drow@mvista.com>
3135
3136 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
3137 prototype.
3138
1514d34e
DJ
31392002-01-04 Daniel Jacobowitz <drow@mvista.com>
3140
3141 * cp-abi.c: Fix whitespace.
3142 (baseclass_offset): New wrapper function.
3143 * cp-abi.h (baseclass_offset): Add prototype.
3144 (struct cp_abi_ops): Add baseclass_offset pointer.
3145
3146 * valops.c (vb_match): Move to...
3147 * gnu-v2-abi.c (vb_match): here.
3148 * valops.c (baseclass_offset): Move to...
3149 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
3150
3151 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
3152
3153 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
3154 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
3155 * hpacc-abi.c (init_hpacc_ops): Likewise.
3156
7f8c9282
DJ
31572002-01-04 Daniel Jacobowitz <drow@mvista.com>
3158
3159 * valops.c (find_overload_match): Accept obj as a
3160 reference parameter. Update it before returning.
3161 * value.h (find_overload_match): Update prototype.
3162 * eval.c (evaluate_subexp_standard): Pass object to
3163 find_overload_match by reference.
3164
f23631e4
AC
31652002-01-03 Andrew Cagney <ac131313@redhat.com>
3166
3167 * valarith.c: Replace value_ptr with struct value pointer. Remove
3168 register attribute from value declarations.
3169 * valops.c: Ditto.
3170 * value.h: Ditto.
3171 * scm-lang.c (scm_lookup_name): Ditto.
3172
79e10fab 31732002-01-03 Michael Snyder <msnyder@redhat.com>
abf22e64 3174
79e10fab
AC
3175 Abstract the functionality of iterating over mapped memory
3176 regions into a general purpose iterator function.
abf22e64 3177 * procfs.c (iterate_over_mappings): New function, general purpose
79e10fab
AC
3178 iterator for memory sections.
3179 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
3180 (solib_mappings_callback): New function, callback for above.
3181 (info_proc_mappings): Reimpliment using iterate_over_mappings.
3182 (info_mappings_callback): New function, callback for above.
3183
3184 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
3185
c5ad026a
MK
31862002-01-01 Mark Kettenis <kettenis@gnu.org>
3187
d2a7c97a
MK
3188 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
3189 * i386-tdep.c: Include "elf-bfd.h".
3190 (process_note_abi_tag_sections): New function.
3191 (i386_gdbarch_init): Add code to recognize various OS/ABI
3192 combinations.
3193
c5ad026a
MK
3194 * maint.c (_initialize_maint_cmds): Add missing \ in
3195 string-literal.
3196
a1a5b71e 3197For older changes see ChangeLog-2001
c906108c
SS
3198\f
3199Local Variables:
3200mode: change-log
3201left-margin: 8
3202fill-column: 74
3203version-control: never
3204End:
This page took 0.440444 seconds and 4 git commands to generate.