Enable PowerPC simulator on native linux and netbsd.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
457174f6
AC
12001-10-18 Andrew Cagney <ac131313@redhat.com>
2
3 * config/powerpc/nbsd.mt (SIM_OBS, SIM): Define.
4 * config/powerpc/linux.mt (SIM, SIM_OBS): Ditto
5
4bb5d567
AC
62001-10-18 Andrew Cagney <ac131313@redhat.com>
7
8 * README: Mention problems with HP/UX.
9
03dd37c3
AC
102001-10-16 Andrew Cagney <ac131313@redhat.com>
11
12 Based on code by John Moore <jmore@redhat.com>:
13
14 * utils.c (core_addr_to_string): New function for conversion of
15 CORE_ADDR to string.
16 (string_to_core_addr): New function to convert from string to
17 CORE_ADDR.
18 * defs.h: Added extern statements for the above.
19
1ba7c32c
JM
202001-10-17 Jason Molenda (jason-cl@molenda.com)
21
22 * symtab.c (lookup_block_symbol): Break out of linear search
23 if we're past the range of possible matches.
24
7470a420
CF
252001-10-16 Christopher Faylor <cgf@redhat.com>
26
27 * win32-nat.c (safe_symbol_file_add_stub): Improve logic for avoiding
28 load of already loaded DLL.
29 (register_loaded_dll): Convert loaded DLL name to "posix" format or it
30 will confuse subsequent opening of the filename due to dos paths.
31 (dll_symbol_command): Pass from_tty parameter to safe_symbol_file_add.
32
8cc1c882
EZ
332001-10-15 Elena Zannoni <ezannoni@redhat.com>
34
35 * symtab.c (lookup_block_symbol): Update comment.
36
1aa20aa8
AC
372001-10-15 Andrew Cagney <ac131313@redhat.com>
38
39 * value.h (value_as_address): Rename value_as_pointer.
40 * eval.c, findvar.c, gnu-v2-abi.c, gnu-v3-abi.c, jv-lang.c,
41 jv-valprint.c, printcmd.c, stack.c, top.c, valarith.c, valops.c,
42 values.c: Update.
43
dbbd9c57
AC
44202001-10-15 Jim Ingham <jingham@inghji.apple.com>
45
46 * valarith.c (value_sub): Don't pass a raw type to
47 value_from_pointer, it has to go through check_typedef first.
48
73d3c16e
AC
492001-10-15 Andrew Cagney <ac131313@redhat.com>
50
51 * gdbarch.sh (fallbackdefault): Set to one when predefault is
52 empty.
53 * gdbarch.h: Regenerate.
54
fc0c74b1
AC
552001-10-15 Andrew Cagney <ac131313@redhat.com>
56
57 * mips-tdep.c (mips_integer_to_address): New function.
58 (mips_gdbarch_init): Initialize pointer_to_address,
59 address_to_pointer and integer_to_address.
60
61 * config/mips/tm-mips.h (POINTER_TO_ADDRESS): Delete
62 (ADDRESS_TO_POINTER): Delete.
63
64 * d10v-tdep.c (d10v_integer_to_address): New function.
65 (d10v_gdbarch_init): Initialize integer_to_address.
66
67 * values.c (value_as_pointer): Use INTEGER_TO_ADDRESS when
68 available.
69
70 * gdbarch.sh (INTEGER_TO_ADDRESS): New predicate and function.
71 * gdbarch.h, gdbarch.c: Regenerate.
72
cacab7c4
MK
732001-10-14 Mark Kettenis <kettenis@gnu.org>
74
39024782
MK
75 * config/s390/nm-linux.h: Don't include <signal.h>.
76 (lin_lwp_attach_lwp, ATTACH_LWP, lin_thread_get_thread_signals,
77 GET_THREAD_SIGNAL): Remove.
78
dc17571d
MK
79 * config/nm-linux.h (struct objfile): Remove forward declaration.
80 (linuxthreads_new_objfile): Remove prototype.
81 (linuxthreads_pid_to_str): Remove prototype.
82 (PREPARE_TO_PROCEED): Redefine in terms of
83 lin_lwp_prepare_to_proceed.
84 (struct target_waitstatus): Forward declaration.
85 (child_wait): New prototype.
86 (CHILD_WAIT): Define.
87 (lin_lwp_attach_lwp, ATTACH_LWP, lin_thread_get_thread_signals,
88 GET_THREAD_SIGNAL): Moved here from arch-specific files.
89 * config/alpha/nm-linux.h, config/arm/nm-linux.h,
90 config/ia64/nm-linux.h, config/mips/nm-linux.h,
91 config/powerpc/nm-linux.h: Don't include <signal.h>.
92 (lin_lwp_attach_lwp, ATTACH_LWP, lin_thread_get_thread_signals,
93 GET_THREAD_SIGNAL): Remove.
94 * config/i386/nm-linux.h: Likewise.
95 (struct target_waitstatus, child_wait, CHILD_WAIT): Remove.
96 * config/m68k/linux.mh, config/sparc/linux.mh (NATDEPFILES):
97 Remove linux-thread.o. Add proc-service.o, thread-db.o and
98 lin-lwp.o.
99 (LOADLIBES): New variable.
100
8e4d17db
MK
101 * sparc-nat.c (fetch_core_registers): Remove redundant prototype.
102
c987d8c0
MK
103 * proc-service.c (BUILD_LWP): Redefine in terms of ptid_build.
104
cacab7c4
MK
105 Fix attaching to cloned processes. This fixes PR gdb/61.
106 * lin-lwp.c (struct lwp_info): Add new member `cloned'.
107 (is_cloned) Removed.
108 (lin_lwp_attach_lwp): Don't call stop_wait_callback. Instead call
109 waitpid explicitly. Mark the LWP as cloned if waitpid fails and
110 retry with __WCLONE flag.
111 (lin_lwp_attach): Likewise. Warn if attaching to a cloned process.
112 (detach_callback): Replace use of is_cloned with explicit check on
113 LWP id and process id.
114 (stop_wait_callback): Replace use of is_cloned with check if LWP
115 is marked as cloned.
116 [CHILD_WAIT] (child_wait): New function.
117 (lin_lwp_wait): Replace use of is_cloned with check if LWP is
118 marked as cloned. Mark newly detected LWPs as cloned if detected
119 by waitpid with __WCLONE flag.
120 (kill_wait_callback): Replace use of is_cloned with check if LWP
121 is marked as cloned.
122 * config/i386/nm-linux.h (struct target_waitstatus): Add forward
123 declaration.
124 (child_wait): Add prototype.
125 (CHILD_WAIT): Define.
126
5769d3cd
AC
1272001-10-13 Andrew Cagney <ac131313@redhat.com>
128
129 S/390 31 & 64 bit target and GNU/Linux native support.
130 Contributed by D.J. Barrow <djbarrow@de.ibm.com> of IBM.
131 * s390-nat.c, s390-tdep.c: New file.
132 * config/s390/nm-linux.h, config/s390/s390.mh: New file.
133 * config/s390/s390.mt, config/s390/s390x.mt: New file.
134 * config/s390/tm-linux.h, config/s390/tm-s390.h: New file.
135 * config/s390/xm-linux.h: New file.
136 * NEWS: Update.
137 * MAINTAINERS: Update.
138
83e6b173
AC
1392001-10-13 Andrew Cagney <ac131313@redhat.com>
140
141 From 2001-07-09 D.J. Barrow <djbarrow@de.ibm.com>:
142 * gdbarch.sh: Fixed CALL_DUMMY_BREAKPOINT_OFFSET to check
143 CALL_DUMMY_BREAKPOINT_OFFSET_P.
144 * gdbarch.c: Regenerate.
145
21bf60fe
MK
1462001-10-13 Mark Kettenis <kettenis@gnu.org>
147
148 * thread-db.c: Fix a few formatting mistakes.
149
fefd0a37
CF
1502001-10-12 Christopher Faylor <cgf@redhat.com>
151
152 * win32-nat.c (safe_symbol_file_add_stub): Properly initialize linked
153 list pointer to beginning rather than one beyond beginning.
154
e88c90f2
DJ
1552001-10-12 Daniel Jacobowitz <drow@mvista.com>
156
157 * symtab.h (struct block): (ALL_BLOCK_SYMBOLS): New macro.
158
159 * symtab.c (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
160 (make_symbol_completion_list): Likewise.
161 (make_symbol_overload_list): Likewise.
162 * buildsym.c (finish_block): Likewise.
163 * breakpoint.c (get_catch_sals): Likewise.
164 * mdebugread.c (mylookup_symbol): Likewise.
165 * objfiles.c (objfile_relocate): Likewise.
166 * printcmd.c (print_frame_args): Likewise.
167 * stack.c (print_block_frame_locals): Likewise.
168 (print_block_frame_labels): Likewise.
169 (print_frame_arg_vars): Likewise.
170 * symmisc.c (dump_symtab): Likewise.
171 * tracepoint.c (add_local_symbols): Likewise.
172 (scope_info): Likewise.
173
375f3d86
DJ
1742001-10-12 Daniel Jacobowitz <drow@mvista.com>
175
176 * minsyms.c (msymbol_hash): Use better hash function.
177 (msymbol_hash_iw): Likewise. Terminate loop at '(' properly.
178
179 * objfiles.h: Increase MINIMAL_SYMBOL_HASH_SIZE to match modern
180 binaries.
181
55159471
DJ
1822001-10-12 Daniel Jacobowitz <drow@mvista.com>
183
184 * printcmd.c (print_frame_args): Move symbol iteration explicitly
185 inside the func != NULL block.
186
30ef99d1
FN
1872001-10-12 Fernando Nasser <fnasser@redhat.com>
188
189 * MAINTAINERS (Misc): Add Ian Roxborough as tcl/, tk/ and itcl/
190 maintainer.
191
02e423b9
CF
1922001-10-12 Pierre Muller <muller@ics.u-strasbg.fr>
193
d60dc82a 194 * config/i386/tm-cygwin.h: Include tm-i386.h instead of tm-i386v.h.
02e423b9
CF
195 This fixes errors in "long long" handling for 'finish' and 'return'
196 commands.
197
1982001-10-12 Christopher Faylor <cgf@redhat.com>
199
200 * win32-nat.c (safe_symbol_file_add_stub): Avoid adding a shared
201 library if it has already been loaded.
202 (safe_symbol_file_add_cleanup): Don't mess with stderr or we won't see
203 any error messages.
204 (safe_symbol_file_add): Ditto.
205 (solib_symbols_add): Make static. Accept 'from_tty' parameter. Pass
206 it to safe_symbol_file_add.
207 (core_dll_symbols_add): Accomodate extra solib_symbols_add parameter.
208 (child_solib_add): Ditto.
209
210 * win32-nat.c (handle_exception): Don't print "first chance"
211 exceptions.
212 (get_child_debug_event): Continue from exceptions if !handle_exception.
213
1b15f1fa
TT
2142001-10-11 Tom Tromey <tromey@redhat.com>
215
216 * symtab.c (lookup_symtab): Removed.
217 (lookup_symtab_1): Renamed to lookup_symtab.
218
700b351b
CF
2192001-10-10 Christopher Faylor <cgf@redhat.com>
220
221 * win32-nat.c (get_child_debug_event): Close file handles created after
222 process creation and DLL load.
223 (child_create_inferior): Close unneeded process/thread handle after
224 thread creation.
225
4eab1e18
JB
2262001-10-10 Jim Blandy <jimb@redhat.com>
227
228 * mn10300-tdep.c (mn10300_analyze_prologue): Doc fixes.
229
4abb499e
KS
2302001-10-10 Keith Seitz <keiths@redhat.com>
231
232 * varobj.c (cplus_value_of_child): Deal with a failure
233 to dereference a pointer object.
234
8b2797db
JB
2352001-10-08 J. Brobecker <brobecker@gnat.com>
236
237 * hpux-thread.c: rewrite find_active_thread() and find_tcb()
238 to use ptid_t, instead of overloading the thread and the pid
239 into the same 32-bit value. Make associated necessary adaptations.
240 Also remove unused variable cached_active_thread.
241
420effb8
ND
2422001-10-08 Nicholas Duffek <nsd@redhat.com>
243
244 * MAINTAINERS (powerpc, SCO/Unixware, Solaris/x86): Remove my
245 entries.
246
3eb970a8
MK
2472001-10-06 Mark Kettenis <kettenis@beast.freebsd.org>
248
249 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Define.
250
78f49586
TT
2512001-10-04 Tom Tromey <tromey@redhat.com>
252
253 * main.c (enable_external_editor): Don't declare.
254 (captured_main): Don't set enable_external_editor.
255
ab31aa69
KB
2562001-10-02 Kevin Buettner <kevinb@redhat.com>
257
258 * Makefile.in (ALLDEPFILES): Add solib-svr4.c and solib-sunos.c
259 to this list.
260 (solib-sunos.o): Add dependencies.
261 (solib-svr4.o): Revise dependencies.
262 * solib-svr4.c: Remove SunOS shared library support.
263 * solib-sunos.c: New file, created from solib-svr4.c, which still
264 contains SunOS shared library support, but no SVR4 support.
265
266 * config/i386/nbsd.mh (NATDEPFILES): Remove solib-svr4.o and
267 solib-legacy.o from this list. Add solib-sunos.o.
268 * config/i386/sun386.mt (TDEPFILES): Likewise.
269 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
270 * config/m68k/sun2os4.mt (TDEPFILES): Likewise.
271 * config/m68k/sun3os4.mt (TDEPFILES): Likewise.
272 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
273 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
274 * config/sparc/sun4os4.mt (TDEPFILES): Likewise.
275
39ae698d
EZ
2762001-10-01 Elena Zannoni <ezannoni@redhat.com>
277
278 * Makefile.in (mipsread.o): Remove old dependency on partial-stab.h.
279
d5d0a62f
EZ
2802001-10-01 Elena Zannoni <ezannoni@redhat.com>
281
282 * xcoffread.c (N_UNDF, N_ABS, N_TEXT, N_DATA, N_BSS, N_COMM, N_FN,
283 N_EXT, N_INDR, N_SETA, N_SETT, N_SETD, N_SETB, N_SETV,
284 CUR_SYMBOL_TYPE, CUR_SYMBOL_VALUE, START_PSYMTAB, END_PSYMTAB,
285 SET_NAMESTRING): Delete definitions.
286 Don't include language.h any more.
287 Don't include partial-stab.h any more.
288 (scan_xcoff_symtab): Don't jump through hoops to reuse code in
289 partial-stab.h, include the code directly, instead.
290
291 * Makefile.in (xcoffread.o): Remove dependency on partial-stab.h.
292
447aa9a6
AC
2932001-10-01 Andrew Cagney <ac131313@redhat.com>
294
295 * infcmd.c (do_registers_info): Delete code dumping large
296 registers. Handled by val_print.
297
85de9627
AC
2982001-09-30 Andrew Cagney <ac131313@redhat.com>
299
300 * gdbarch.sh (gdbarch_alloc): Name the new architecture
301 ``current_gdbarch'' so that it, and not the identically named
302 global is refered to by macros.
303 * gdbarch.c: Regenerate.
304
f3796e26
AC
3052001-09-29 Andrew Cagney <ac131313@redhat.com>
306
307 * cli/cli-decode.c (add_set_boolean_cmd): Define.
308 * cli/cli-decode.h (add_set_boolean_cmd): Declare.
309 * command.h (add_set_boolean_cmd): Ditto.
310 * remote.c (_initialize_remote): Use add_set_boolean_cmd for "set
311 remotebreak"
312
08e45a40
AC
3132001-09-29 Andrew Cagney <ac131313@redhat.com>
314
315 * gdbarch.sh (gdbarch_dump): Sort output.
316 * gdbarch.c: Regenerate.
317
e712c1cf
AC
3182001-09-29 Andrew Cagney <ac131313@redhat.com>
319
320 * rs6000-tdep.c (rs6000_gdbarch_init): Don't use the previous
321 architecture to infer the wordsize. Previous architecture may not
322 be a PowerPC.
323
d68f31a9
JB
3242001-09-27 J. Brobecker <brobecker@gnat.com>
325
326 * infttrace.c (kill_inferior): Issue a TT_PROC_EXIT request rather
327 than a TT_PROC_STOP request to kill the inferior and its child
328 processes. Otherwise, the inferior is not killed on HPUX 11.0.
329 Removed the code that detaches the child processes since we just
330 killed them.
331
e3abfe1d
AC
3322001-09-26 Andrew Cagney <ac131313@redhat.com>
333
334 * serial.c (serial_set_cmdlist, serial_show_cmdlist): New
335 variables.
336 (serial_set_cmd, serial_show_cmd): New functions.
337 (_initialize_serial): Add "set/show serial" command.
338
ff1da24e
AC
3392001-09-26 Andrew Cagney <ac131313@redhat.com>
340
341 * CONTRIBUTE: Update.
342
e5e2b9ff
KB
3432001-09-26 Kevin Buettner <kevinb@redhat.com>
344
345 * solib-svr4.h (set_solib_svr4_fetch_link_map_offsets): Add
346 argument ``gdbarch''.
347 * solib-svr4.c (SVR4_FETCH_LINK_MAP_OFFSETS): Change default value.
348 (default_svr4_fetch_link_map_offsets): Rename to
349 legacy_fetch_link_map_offsets().
350 (svr4_fetch_link_map_offsets): New function.
351 (fetch_link_map_offsets, fetch_link_map_offsets_init): Deleted.
352 (fetch_link_map_offsets_gdbarch_data): New static global.
353 (set_solib_svr4_fetch_link_map_offsets): Add argument ``gdbarch''.
354 Revise to invoke set_gdbarch_data().
355 (init_fetch_link_map_offsets): Change return type and add an
356 argument so that it may be used as a gdbarch_data initializer.
357 (_initialize_svr4_solib): Eliminate use of gdbarch swap mechanism.
358 Use gdbarch data mechanism instead.
359
86ed34a9 3602001-09-25 Jiri Smid <smid@suse.cz>
c74ae012
JS
361
362 * x86-64-linux-tdep.c (LINUX_SIGINFO_SIZE): Add.
363 (x86_64_linux_sigcontext_addr): Replace `sizeof (struct siginfo)'
364 by LINUX_SIGINFO_SIZE.
365
4f337972
AC
3662001-09-24 Andrew Cagney <ac131313@redhat.com>
367
368 * maint.c (maintenance_set_cmdlist, maintenance_show_cmdlist): New
369 variables.
370 (maintenance_set_profile_cmd): New function.
371 (maintenance_show_cmd, maintenance_set_cmd): New functions.
372 (_initialize_maint_cmds): Add "maintenance set" and "maintenance
373 show" and, commented out, "maintenance set/show profile" commands.
374
f76febae
AC
3752001-09-24 Andrew Cagney <ac131313@redhat.com>
376
377 * findvar.c (read_var_value): For LOC_INDIRECT and LOC_REF_ARG
378 convert the pointer into a CORE_ADDRs.
379
96d2f608
AC
3802001-09-24 Andrew Cagney <ac131313@redhat.com>
381
382 * doublest.h (store_floating, extract_floating): Add comment
383 indicating these functions are deprecated.
384 (extract_typed_floating, store_typed_floating): Declare.
385 * doublest.c: Include "gdbtypes.h".
386 (extract_typed_floating, store_typed_floating): Define.
387
388 * stabsread.c (define_symbol): Use store_typed_floating.
389 * valarith.c (value_binop): Ditto.
390 * values.c (unpack_long): Use extract_typed_floating.
391 (unpack_double): Ditto.
392
7ab98e9e
OF
3932001-09-24 Orjan Friberg <orjanf@axis.com>
394
395 * cris-tdep.c (reg_mode_add_sub_cmp_and_or_move_op): Fetch operand1
396 from correct register.
397
1dbeeb7b
MK
3982001-09-22 Mark Kettenis <kettenis@gnu.org>
399
400 * x86-64-linux-tdep.c (STRUCT_OFFSET): Removed.
401
c4d82c96
JS
4022001-09-21 Jiri Smid <smid@suse.cz>
403
404 * config/i386/x86-64linux.mh: New file.
405 * config/i386/x86-64linux.mt: New file.
406 * config/i386/nm-x86_64.h: New file.
407 * x86-64-linux-tdep.c: New file.
408 * x86-64-linux-nat.c: New file.
409 * x86-64-tdep.c: New file.
410 * x86-64-tdep.h: New file.
411 * i386-tdep.h: New file.
412 * i387-nat.c: Include i386-tdep.h when multiarch.
413 * i387-tdep.c: Ditto.
414 * config/djgpp/fnchange.lst: Add entries for x86_64-linux-tdep.c
415 and x86_64-linux-nat.c
416 * Makefile.in: Add x86_64-linux-tdep.o, x86_64-tdep.o,
417 x86_64-linux-tdep.o, x86_64-nat.o, update dependencies.
418
cab16195
JS
4192001-09-21 Jiri Smid <smid@suse.cz>
420
421 * MAINTAINERS: Add myself to the write-after-approval list.
422 * i386-nat.c (TARGET_HAS_DR_LEN_8, DR_LEN_8): Declare.
423 (i386_length_and_rw_bits, i386_handle_nonaligned_watchpoint,
424 i386_insert_watchpoint, i386_remove_watchpoint): Add support for
425 8-byte wide watchpoints.
426 (i386_show_dr): Debug message format string change.
427
3e9986d2
MS
4282001-09-21 Michael Snyder <msnyder@redhat.com>
429
430 * c-exp.y (typebase): Accept (signed long long) as a type expr.
431
56e2d25a
MS
4322001-09-20 Michael Snyder <msnyder@redhat.com>
433 Changes by Daniel Berlin <dan@cgsoftware.com>, to support
434 better parsing of const and volatile type expressions.
435 * c-exp.y (const_and_volatile, const_or_volatile_noopt,
436 const_or_volatile): New non-terminals.
437 (ptype): Use new rule for const_or_volatile.
438 (typebase): Use new rule for const_or_volatile_noopt.
439 * parser-defs.h (enum type_pieces): New values tp_const, tp_volatile.
440 * parse.c (follow_types): Handle tp_const and tp_volatile on the
441 type stack: call make_cv_type to create new const/volatile type.
442
1c4dcb57
KB
4432001-09-20 Kevin Buettner <kevinb@redhat.com>
444
445 * solib-svr4.c (fetch_link_map_offsets): Add comment.
446 (fetch_link_map_offsets_init): New static global.
447 (set_solib_svr4_fetch_link_map_offsets, init_fetch_link_map_offsets):
448 Revise implementation to use ``fetch_link_map_offsets_init''
449 instead of ``fetch_link_map_offsets''.
450
3a42e9d0
AM
4512001-09-20 Alan Modra <amodra@bigpond.net.au>
452
453 * coffread.c: Replace all occurrences of bfd_read with bfd_bread.
454 * dbxread.c: Likewise.
455 * dwarf2read.c: Likewise.
456 * dwarfread.c: Likewise.
457 * somread.c: Likewise.
458 * ultra3-nat.c: Likewise.
459 * xcoffread.c: Likewise.
460
e0441cf0
AC
4612001-09-19 Andrew Cagney <ac131313@redhat.com>
462
8535cb38
AC
463 * cris-tdep.c (cris_get_signed_offset): Change return type to an
464 explicitly signed char.
465
e0441cf0
AC
466 * config/mcore/tm-mcore.h (mcore_virtual_frame_pointer): Update
467 function signature to match recent tracepoint.c:encode_actions
468 changes.
469 * mcore-tdep.c (mcore_virtual_frame_pointer): Ditto.
470
2b65245e
AC
4712001-09-18 Andrew Cagney <ac131313@redhat.com>
472
473 * thread.c (do_captured_thread_select): Add uiout parameter.
474 (do_captured_list_thread_ids): Ditto.
475 * breakpoint.c (do_captured_breakpoint_query): Ditto.
476
477 * breakpoint.c (gdb_breakpoint_query): Update. Use
478 catch_exceptions.
479 * thread.c (gdb_list_thread_ids): Ditto.
480 (gdb_thread_select): Ditto.
481 (thread_command): Pass uiout to gdb_thread_select.
482
483 * gdb.h (gdb_breakpoint_query): Add parameter ui_out.
484 (gdb_thread_select, gdb_list_thread_ids): Ditto.
485
2069d78d
KB
4862001-09-13 Kevin Buettner <kevinb@redhat.com>
487
488 From Ilya Golubev <gin@mo.msk.ru>:
489 * solib.c (clear_solib): Call `remove_target_sections' to fix
490 stale pointers in `struct target_ops'.
491 * irix5-nat.c (clear_solib): Likewise.
492 * osfsolib.c (clear_solib): Likewise.
493
348d75a5
JB
4942001-09-13 Jim Blandy <jimb@redhat.com>
495
e8816aac
JB
496 * monitor.c (monitor_load): Don't delete symtab users, or reset
497 inferior_ptid.
498
348d75a5
JB
499 * monitor.c (monitor_load): Fix indentation.
500
5012001-09-11 Jim Blandy <jimb@redhat.com>
502
503 * printcmd.c (print_scalar_formatted): Compare the length of the
504 value against the lengths of the target's floating-point types,
505 not the host's. Add support for `long double'.
506
507 * printcmd.c (print_scalar_formatted): Fix indentation.
508
a5666cc9
JB
5092001-09-10 Jim Blandy <jimb@redhat.com>
510
511 * rom68k-rom.c (init_rom68k_cmds): Set the flag indicating that
512 programs running on the board can produce output.
513
6d6b80e5
JM
5142001-09-10 Jason Molenda (jmolenda@apple.com)
515
516 * NEWS: "ANS/ISO C" -> "ISO C".
517 * MAINTAINERS (write-after-approval): Update my entry.
518
7fc73f38
MK
5192001-09-08 Mark Kettenis <kettenis@gnu.org>
520
df5fdb3d
MK
521 * config/xm-aix4.h (MEM_FNS_DECLARED): Removed.
522
4ad318e6
MK
523 * config/arm/xm-linux.h, config/ia64/xm-linux.h,
524 config/m68k/xm-linux.h, config/mips/xm-linux.h,
525 config/powerpc/xm-linux.h, config/sparc/xm-linux.h: Remove
526 redundant inclusion of <unistd.h>.
527
7fc73f38
MK
528 * gdbtypes.h (struct block): Add forward declaration.
529
f9c696d2
AC
5302001-09-07 Andrew Cagney <ac131313@redhat.com>
531
532 * defs.h (enum return_reason): Renumber so that all values are
533 negative.
534 (RETURN_MASK): Negate reason.
535 (catch_exception_ftype): Declare.
536 (catch_exceptions): Declare.
537 * top.c (catcher): New function, based on catch_errors. Add in
538 parameter func_uiout and out parameters func_val, func_caught and
539 func_cleanup. Change type of func to catch_exceptions_ftype.
540 Save/restore uiout.
541 (struct catch_errors_args): Define.
542 (do_catch_errors): New function.
543 (catch_errors): Rewrite, use do_catch_errors and catcher.
544 (catch_exceptions): New function, use catcher.
545
a2e2dd80
JB
5462001-09-07 Jim Blandy <jimb@redhat.com>
547
548 Correctly parse register values provided by the monitor.
549 * rom68k-rom.c: #include "value.h".
550 (is_hex_digit, hex_digit_value, is_whitespace,
551 rom68k_supply_one_register): New static functions.
552 (rom68k_supply_register): Call rom68k_supply_one_register, instead
553 of monitor_supply_register; the latter was incorrectly parsing
554 the values.
555 * Makefile.in (rom68k-rom.o): Note that this now #includes value.h.
556
93befcf3
MK
5572001-09-07 Mark Kettenis <kettenis@gnu.org>
558
559 * config/rs6000/xm-rs6000.h (setpgrp): Remove macro. GDB defaults
560 to using setpgid if available now.
561
b381d62d
KS
5622001-09-06 Keith Seitz <keiths@redhat.com>
563
564 From Ian Roxborough <irox@redhat.com>
565 * configure.in: Use ITCL_LIB_FULL_PATH and
566 ITK_LIB_FULL_PATH to set Itcl and Itk dependancies
567 for gdb.
568 * configure: Regenerated.
569
9a058a09
KB
5702001-09-06 Kevin Buettner <kevinb@redhat.com>
571
572 * dbxread.c (process_one_symbol): Don't use error result from
573 find_stab_function_addr().
574 * partial-stab.h (case 'F'): Likewise.
575
576 * partial-stab.h (case 'f'): Make SOFUN_ADDRESS_MAYBE_MISSING
577 code match that used for case 'F'. This fixes the divergence
578 that was introduced by my 1999-09-14 changes to partial-stab.h.
579
2bf0cb65
EZ
5802001-09-05 Elena Zannoni <ezannoni@redhat.com>
581
582 * gdbarch.sh: Move include of dis-asm.h so it is generated earlier
583 in gdbarch.h.
584 (TARGET_PRINT_INSN): Multiarch.
585 * gdbarch.h: Regenerate.
586 * gdbarch.c: Regenerate.
587
588 * arch-utils.c (legacy_print_insn): New function.
589 * arch-utils.h (legacy_print_insn): Export.
590
591 * cris-tdep.c (cris_delayed_get_disassembler): Use
592 TARGET_PRINT_INSN, instead of tm_print_insn.
593 * d10v-tdep.c (print_insn): Ditto.
594 * d30v-tdep.c (print_insn): Ditto.
595 * m32r-tdep.c (dump_insn): Ditto.
596 * v850-tdep.c (v850_scan_prologue): Ditto.
597 * mcore-tdep.c (mcore_dump_insn): Ditto.
598 * sh-tdep.c (sh_gdbarch_init): Set print_insn gdbarch field.
599
6369010f
JB
6002001-09-05 Jim Blandy <jimb@redhat.com>
601
602 * gdbtypes.h (struct type): Doc fix.
603
d3d55eeb
EZ
6042001-09-04 Elena Zannoni <ezannoni@redhat.com>
605
606 From Daniel Jacobowitz <drow@mvista.com>
607 * dbxread.c (free_header_files): Make global.
608 (init_header_files): Likewise.
609 * stabsread.h (free_header_files): Add prototype.
610 (init_header_files): Likewise.
611 * mdebugread.c (mdebug_build_psymtabs): Initialize
612 properly before using the stabs debug reader.
613
16db6055 6142001-09-04 Elena Zannoni <ezannoni@redhat.com>
ef96bde8
EZ
615
616 From Daniel Jacobowitz <drow@mvista.com>
617 * dbxread.c (dbx_symfile_read): Only reinitialize
618 the psymbol list if mainline or if both static
619 and global lists are empty.
620 * dwarf2read.c (dwarf2_build_psymtabs): Likewise.
621 * dwarfread.c (dwarf_build_psymtabs): Likewise.
622 * xcoffread.c (xcoff_initial_scan): Likewise.
623 * os9kread.c (os9k_symfile_read): Likewise.
16db6055 624
ef96bde8
EZ
6252001-09-04 Elena Zannoni <ezannoni@redhat.com>
626
16db6055
EZ
627 From Daniel Jacobowitz <drow@mvista.com>
628 * mdebugread.c (psymtab_to_symtab_1): Handle N_SO stabs without
629 a name specially.
630
f77b92bf
MK
6312001-09-01 Mark Kettenis <kettenis@gnu.org>
632
633 Make GDB use libiberty regex implementation.
634 * gdb_regex.h: Normalize protection against multiple inclusion.
635 Include "xregex.h" instead of "gnu-regex.h".
636 * cli/cli-cmds.c: Include "gdb_regex.h" instead of "gnu-regex.h".
637 * cli/cli-decode.c: Likewise.
638 * Makefile.in (REGEX): Remove.
639 (GDB_CFLAGS): Remove reference to gnu-regex.h in comment.
640 (ADD_FILES, ADD_DEPS): Remove $(REGEX).
641 (POSSLIBS): Remove.
642 (TAGFILES_NO_SRCDIR): Remove $(POSSLIBS).
643 (irix5-nat.o, solib.o, solib-svr4.o, source.o, symtab.o,
644 xcoffsolib.o, cli-decode.o, cli-cmd.o): Replace gnu-regex.h with
645 gdb_regex.h in list of dependencies.
646 (gnu-regex.o): Remove rule.
647 * gnu-regex.c, gnu-regex.h: Remove files.
648
a4f30b31
MS
6492001-08-31 Jason Molenda (jmolenda@apple.com)
650
651 * c-valprint.c (c_val_print): Second call to check_typedef ()
652 is no longer necessary.
653
902d7086
KB
6542001-08-31 Kevin Buettner <kevinb@redhat.com>
655
656 * ia64-tdep.c (examine_prologue): Don't let a branch unit nop
657 terminate the prologue scan.
658
2889e661
JB
6592001-08-30 Jim Blandy <jimb@redhat.com>
660
9ec8e6a0
JB
661 * symfile.c (sections_overlap): New function.
662 (map_overlay_command): Call sections_overlap, instead of using
663 incorrect logic to recognize overlapping sections.
664
2889e661
JB
665 * symfile.c (load_command): Invalidate the overlay cache.
666
cd903d53
MK
6672001-08-30 Mark Kettenis <kettenis@gnu.org>
668
669 * config/i386/xm-i386.h (HOST_BYTE_ORDER): Removed.
670
8ad2fcde
KB
6712001-08-29 Kevin Buettner <kevinb@redhat.com>
672
673 From 2001-08-07 Daniel Jacobowitz <drow@mvista.com>:
674 * solib-svr4.c (enable_break): Check the inferior link map
675 before assuming the inferior PC is at the start of the dynamic
676 loader.
677
e8759349
AC
6782001-08-28 Andrew Cagney <cagney@toribio.toronto.redhat.com>
679
680 * frame.h (struct frame_info): Fix documentation on fields
681 saved_regs, next and prev.
682
46711df8
MK
6832001-08-23 Mark Kettenis <kettenis@gnu.org>
684
685 * event-top.c (async_stop_sig) [HAVE_SIGPROCMASK]: Some
686 gratuitious whitespace changes.
687 [!HAVE_SIGPROCMASK]: Call sigsetmask if HAVE_SIGSETMASK is defined.
688 * top.c: Remove redundant logic to define HAVE_SIGSETMASK.
689 (sigsetmask) Don't define macro.
690 (stop_sig) [HAVE_SIGPROCMASK]: Add bit of code snatched from
691 async_stop_sig from event-top.c.
692 [!HAVE_SIGPROCMASK]: Call sigsetmask if HAVE_SIGSETMASK is
693 defined.
694 * configure.in (AC_CHECK_FUNCS): Put functions in alphabetical
695 order. Add sigsetmask.
696 (AC_FUNC_VFORK, AC_FUNC_ALLOCA): Reorder such that they're in
697 alphabetical order.
698 * config/xm-aix4.h, config/alpha/xm-alphalinux.h,
699 config/i386/xm-cygwin.h, config/rs6000/xm-rs6000.h
700 (HAVE_SIGSETMASK): Remove.
964840f7 701 * aclocal.m4, config.in, configure: Regenerated.
46711df8 702
526eeb95
AC
7032001-08-26 Andrew Cagney <ac131313@redhat.com>
704
705 From 2001-06-29 Andrew Cagney <ac131313@redhat.com>:
706 * config/powerpc/nbsd.mh (XM_FILE): Delete.
707
c16ac28f
AC
7082001-08-21 Andrew Cagney <ac131313@redhat.com>
709
710 * doublest.h (HOST_FLOAT_FORMAT): Delete macro.
711 (HOST_DOUBLE_FORMAT): Delete macro.
712
ceacb162
MK
7132001-08-24 Mark Kettenis <kettenis@gnu.org>
714
715 * config/xm-lynx.h, config/xm-nbsd.h, config/xm-sysv4.h,
716 config/i386/xm-i386aix.h, config/m68k/xm-dpx2.h: Remove redundant
717 inclusion of <limits.h>.
718
275f450c
AC
7192001-08-24 Andrew Cagney <ac131313@redhat.com>
720
721 * regcache.c (read_register_bytes): When REGISTER_NAME indicates
722 that a register should be ignored, supply a value for the register
723 from the raw registers[] buffer.
724
12a498f3
AC
7252001-08-24 Andrew Cagney <ac131313@redhat.com>
726
727 * go32-nat.c (go32_create_inferior): Use xfree instead of free.
728 * config/djgpp/fnchange.lst: Add entries for i386bsd-tdep.c and
729 i386bsd-nat.c.
730
598f52df
AC
7312001-08-21 Andrew Cagney <ac131313@redhat.com>
732
733 * gdbtypes.h (builtin_type_ieee_single_big)
734 (builtin_type_ieee_single_little, builtin_type_ieee_double_big)
735 (builtin_type_ieee_double_little)
736 (builtin_type_ieee_double_littlebyte_bigword)
737 (builtin_type_i387_ext, builtin_type_m68881_ext)
738 (builtin_type_i960_ext, builtin_type_m88110_ext)
739 (builtin_type_m88110_harris_ext, builtin_type_arm_ext_big)
740 (builtin_type_arm_ext_littlebyte_bigword)
741 (builtin_type_ia64_spill_big, builtin_type_ia64_spill_little)
742 (builtin_type_ia64_quad_big)
743 (builtin_type_ia64_quad_little): Declare.
744 * gdbtypes.c (builtin_type_ieee_single_big)
745 (builtin_type_ieee_single_little, builtin_type_ieee_double_big)
746 (builtin_type_ieee_double_little)
747 (builtin_type_ieee_double_littlebyte_bigword)
748 (builtin_type_i387_ext, builtin_type_m68881_ext)
749 (builtin_type_i960_ext, builtin_type_m88110_ext)
750 (builtin_type_m88110_harris_ext, builtin_type_arm_ext_big)
751 (builtin_type_arm_ext_littlebyte_bigword)
752 (builtin_type_ia64_spill_big, builtin_type_ia64_spill_little)
753 (builtin_type_ia64_quad_big)
754 (builtin_type_ia64_quad_little): Define.
755 (_initialize_gdbtypes): Initialize builtin floatformat types.
756
1a6fae3c
MK
7572001-08-23 Mark Kettenis <kettenis@gnu.org>
758
759 * tracepoint.c (read_actions): Add FIXME for code depending on
760 STOP_SIGNAL.
761
7829b833
MH
7622001-08-23 Martin M. Hunt <hunt@redhat.com>
763
764 * remote-mips.c (pmon_load_fast): Add ui_load_progress_hook
765 to download loop.
766 (mips_load_srec): Ditto.
767
701c159d
AC
7682001-08-22 Andrew Cagney <ac131313@redhat.com>
769
770 * gdbtypes.c (build_gdbtypes): Initialize TYPE_FLOATFORMAT field
771 of builtin_type_float, builtin_type_double and
772 builtin_type_long_double.
773 (recursive_dump_type): Print the floatformat name.
774 * gdbtypes.h (struct type): Add type_specific field floatformat.
775 (TYPE_FLOATFORMAT): Define
776
99a6d8ba
KS
7772001-08-21 Keith Seitz <keiths@redhat.com>
778
779 * printcmd.c (print_insn): Use the given stream for
780 output.
781
a37b3cc0
AC
7822001-07-24 Andrew Cagney <ac131313@redhat.com>
783
784 * arm-tdep.c (convert_from_extended, convert_to_extended): Delete
785 assembler version of function.
786 (convert_from_extended, convert_to_extended): Rewrite. Use
787 floatformat_to_doublest, floatformat_from_doublest,
788 floatformat_arm_ext_big, floatformat_arm_ext_littlebyte_bigword.
789 (arm_push_arguments): Use extract_floating and store_floating to
790 perform floating point conversions.
791 (SWAP_TARGET_AND_HOST): Delete macro.
792 * arm-linux-tdep.c (arm_linux_push_arguments): Use
793 extract_floating and store_floating to perform floating point
794 conversions.
795
1c72f9b0
AC
7962001-08-20 Andrew Cagney <ac131313@redhat.com>
797
798 * gdbtypes.h (struct type): Clarify meaning of field ``length''.
799
705da579
KS
8002001-08-17 Keith Seitz <keiths@redhat.com>
801
802 * varobj.c (varobj_update): Change first parameter to
803 pointer to struct varobj*. This function can delete
804 varobjs, so we need to give callers the new varobj
805 when this happens.
806 (value_of_root): Update "var", too, if "var_handle"
807 changes.
808 * varobj.h (varobj_update): Likewise.
809
2bf63d86
KS
8102001-08-17 Keith Seitz <keiths@redhat.com>
811
812 * Makefile.in (varobj_h): Define.
813 (mi-cmd-var.o): Depends on varobj_h.
814 (gdbtk-varobj.o): Change varobj.h to $(varobj_h).
815
d1c3b63a
KS
8162001-08-16 Keith Seitz <keiths@redhat.com>
817
818 * configure.in (GDBTK_SRC_DIR): We must have autoconf
819 give us the absolute path to the source directory.
820 * configure: Regenerated.
821 * Makefile.in (GDBTK_SRC_DIR): Add variable so that
822 autoconf can substitue it in for us.
823 (gdbtk.o): Pass in GDBTK_SRC_DIR instead of srcdir. We
824 really do need an absolute pathname.
825
f0b743a9
KS
8262001-08-15 Keith Seitz <keiths@redhat.com>
827
828 * Makefile.in (GDBTK_VERSION): Set a version number.
829 (GDBTK_LIBRARY): New variable to point to location where
830 gdbtk will install its tcl library. Changed all refereneces
831 to $(datadir)/insight1.0 to $(GDBTK_LIBRARY).
832 (SUBDIR_GDBTK_ALL): Remove "all-gdbtk". No longer needed.
833 (SUBDIR_GDBTK_CLEAN): Remove "clean-gdbtk". No longer needed.
834 (all-gdbtk): Remove.
835 (install-gdbtk): Remove.
836 (gdbtk.o): Pass srcdir to file when compiling.
837
8382001-08-15 Ian Roxborough <irox@redhat.com>
839
840 * Makefile.in: Changed all references to the install directory
841 "gdbtcl" to read "insight1.0".
842
bdcd319a
CV
8432001-08-15 Corinna Vinschen <vinschen@redhat.com>
844
845 * arch-utils.c (generic_skip_trampoline_code): New function.
846 * arch-utils.h (generic_skip_trampoline_code): Declare external.
847 * gdbarch.c: Regeberated from gdbarch.sh.
848 * gdbarch.h: Ditto.
849 * gdbarch.sh (SKIP_TRAMPOLINE_CODE): Multi-arch.
850 * infrun.c: Remove default setting of SKIP_TRAMPOLINE_CODE macro.
851
40b3352b
L
8522001-08-14 Daniel Jacobowitz <drow@mvista.com>
853 H.J. Lu (hjl@gnu.org)
854
855 * partial-stab.h: valu should be a CORE_ADDR.
856
8572001-08-14 H.J. Lu (hjl@gnu.org)
858
859 * dbxread.c (SWAP_SYMBOL): Removed.
860 (INTERNALIZE_SYMBOL): Check sign extended vma.
861
ae9d9b96
CF
8622001-08-13 Christopher Faylor <cgf@cygnus.com>
863
864 * top.c (SIGSETJMP): Protect env argument with parentheses.
865 (SIGLONGJMP): Protect env argument with parentheses.
866
6ca173e3
AC
8672001-08-11 Andrew Cagney <ac131313@redhat.com>
868
869 * config/mn10300/mn10300.mt (TM_FILE): Delete.
870 * configure.tgt: Add mn10300 to list of mulit-arch targets.
871 * config/mn10300/tm-mn10300.h: Delete file. Move contents ...
872 * mn10300-tdep.c: To here.
873
5ea92dfe
AC
8742001-08-11 Andrew Cagney <ac131313@redhat.com>
875
876 * config/i386/tm-symmetry.h (REGISTER_CONVERT_TO_VIRTUAL): Make
877 val a DOUBLEST. Use floatformat_to_doublest.
878 (REGISTER_CONVERT_TO_RAW): Ditto. Use foatformat_from_doublest.
879 * config/m88k/tm-m88k.h (REGISTER_CONVERT_TO_VIRTUAL): Ditto.
880 (REGISTER_CONVERT_TO_RAW): Ditto.
881
a15525c1
AC
8822001-08-11 Andrew Cagney <ac131313@redhat.com>
883
884 * config/mn10300/tm-mn10300.h (PC_REGNUM, SP_REGNUM): Delete.
885 * mn10300-tdep.c (mn10300_gdbarch_init): Initialize pc_regnum and
886 sp_regnum.
887
c422e771
AC
8882001-08-11 Andrew Cagney <ac131313@redhat.com>
889
890 * doublest.c (convert_doublest_to_floatformat): Rename
891 floatformat_from_doublest. Make static.
892 (convert_floatformat_to_doublest): Rename floatformat_to_doublest.
893 Make static.
894 (floatformat_to_doublest): New function.
895 (floatformat_from_doublest): New function.
896 (host_float_format, host_double_format, host_long_double_format):
897 New static variables.
898 (store_floating, extract_floating): Always use
899 floatformat_to_doublest and floatformat_from_doublest.
900 * doublest.h (HOST_LONG_DOUBLE_FORMAT): Delete macro.
901
f096a152
AC
9022001-08-11 Andrew Cagney <ac131313@redhat.com>
903
904 * config/mn10300/tm-mn10300.h (INIT_FRAME_PC): Delete.
905 * mn10300-tdep.c (mn10300_gdbarch_init): Initialize init_frame_pc.
906
39d4ef09
AC
9072001-08-07 Andrew Cagney <ac131313@redhat.com>
908
909 * target.h (TARGET_VIRTUAL_FRAME_POINTER): Delete, multi-arched.
910 * gdbarch.sh (TARGET_VIRTUAL_FRAME_POINTER): Add.
911 * gdbarch.h, gdbarch.c: Regenerate.
912
913 * arch-utils.h (legacy_virtual_frame_pointer): Declare.
914 * arch-utils.c: Include "gdb_assert.h".
915 (legacy_virtual_frame_pointer): Define.
916 * Makefile.in (arch-utils.o): Depends on gdb_assert.h.
917
918 * tracepoint.c (encode_actions): Make frame_reg an int. Make
919 frame_offset a LONGEST.
920 * ax-gdb.c (gen_frame_args_address): Ditto.
921 (gen_frame_locals_address): Ditto.
922 * mn10300-tdep.c (mn10300_gdbarch_init): Initialize
923 virtual_frame_pointer.
924 (mn10300_virtual_frame_pointer): Make static. Update parameter
925 list to match function signature.
926 * config/mn10300/tm-mn10300.h (TARGET_VIRTUAL_FRAME_POINTER): Delete.
927
67c2c32c
KS
9282001-08-10 Keith Seitz <keiths@redhat.com>
929
930 * gdb-events.sh: Add architecture_changed event.
931 * gdbarch.sh: Include gdb-event.h.
932 (gdbarch_update_p): Notify UIs when architecture changes.
933 * gdb-events.h: Regenerated.
934 * gdb-events.c: Regenerated.
935 * gdbarch.c: Regenerated.
936
1297a2f0
MS
9372001-08-10 Michael Snyder <msnyder@redhat.com>
938
939 * regcache.c (legacy_write_register_gen): Don't 'optimize out'
940 a write_register to a pseudo-reg. Target_store_pseudo_register
941 needs to get called, because these regs may be computed and may
942 have side-effects.
943
fd969be2
KS
9442001-08-10 Keith Seitz <keiths@redhat.com>
945
946 * gdb-events.sh: Deal with event notifications with no
947 arguments.
948
fb6e5c55
OF
9492001-08-10 Orjan Friberg <orjanf@axis.com>
950
951 * remote.c (read_frame): Correct off-by-one error in condition.
952
a1bab801
DH
9532001-08-08 Don Howard <dhoward@redhat.com>
954
955 * stabsread.c (read_type): Add support for const and volatile
956 modifiers.
957
455ecc72
DJ
9582001-08-02 Daniel Jacobowitz <drow@mvista.com>
959
960 * core-regset.c (fetch_core_registers): Remove HAVE_GREGSET_T
961 and HAVE_FPREGSET_T checks. Use gdb_gregset_t and gdb_fpregset_t.
962
a5cedf2f
KS
9632001-08-02 Keith Seitz <keiths@redhat.com>
964
965 * defs.h (SLASH_STRING): If not defined, set
966 to "/", regardless of _WIN32, __CYGWIN__, or
967 whatnot.
968
d7275149
MK
9692001-08-02 Mark Kettenis <kettenis@gnu.org>
970
cc6dd2c0
MK
971 * cli/cli-decode.h: Include "gdb_regex.h" instead of
972 "gnu-regex.h".
973
d7275149
MK
974 * NEWS: Update.
975
40cd916f
EZ
9762001-08-02 Eli Zaretskii <eliz@is.elta.co.il>
977
978 * config/i386/xm-go32.h: Include xm-i386.h.
979 (HOST_BYTE_ORDER, HOST_LONG_DOUBLE_FORMAT): Remove definitions.
980
b5de0fa7
EZ
9812001-08-02 Eli Zaretskii <eliz@is.elta.co.il>
982
983 The following changes avoid polluting global namespace with the
984 `enable' and `disable' identifiers, because some platforms define
985 in their system headers symbols with global scope that go by those
986 names.
987
988 * breakpoint.h (enum enable_state): Rename from `enum enable'.
989 Also rename all the enum members to have the "bp_" prefix.
990 (struct breakpoint): Rename the `enable' member to `enable_state'.
991 (enum bpdisp): Rename all members to have the "disp_" prefix.
992
993 * breakpoint.c: All users of `enum enable' and `enum bpdisp'
994 changed.
995 (args_for_catchpoint_enable): Rename the `enable' member to
996 `enable_p'. All users changed.
997
998 * tracepoint.h (enum enable): Remove.
999 (struct tracepoint): The member `enabled' is now `int enabled_p'.
1000
1001 * tracepoint.c: All users of the `enabled' member changed.
1002
1003 * printcmd.c (struct display): The `status' member is now an int.
1004
1005 * memattr.h (struct mem_region): Rename the `status' member to
1006 `enabled_p'.
1007 (enum enable): Remove.
1008
1009 * memattr.c: Change all users of the `status' member of struct
1010 mem_region to use `enabled_p' instead.
1011
1012 * infcmd.c (run_stack_dummy): Use disp_del instead of del.
1013
1014 * go32-nat.c: Remove the kludgey work-around for conflicts between
1015 <dos.h> and "breakpoint.h".
1016
ad4571f3
CV
10172001-08-02 Corinna Vinschen <vinschen@redhat.com>
1018
1019 * MAINTAINERS: Add myself to the write-after-approval list.
1020 * ser-tcp.c (tcp_open): Use `localhost' as default host if no
1021 hostname is given.
1022
64f6fcad
AC
10232001-08-01 Andrew Cagney <ac131313@redhat.com>
1024
1025 * doublest.h (store_floating, floatformat_to_doublest): Make IN
1026 paramter a const void pointer.
1027 (floatformat_from_doublest): Make IN const, Make OUT a void
1028 pointer.
1029 * doublest.c (floatformat_to_doublest): Update.
1030 (floatformat_from_doublest): Update.
1031 (extract_floating): Update.
1032
d16aafd8
AC
10332001-07-31 Andrew Cagney <ac131313@redhat.com>
1034
1035 * defs.h (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1036 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1037 (HOST_LONG_DOUBLE_FORMAT, DOUBLEST)
1038 (floatformat_to_doublest, floatformat_from_doublest)
1039 (floatformat_is_negative, floatformat_is_nan)
1040 (floatformat_mantissa, store_floating)
1041 (extract_floating): Move declaration from here.
1042 * doublest.h: To here. New file.
1043 * utils.c (get_field, floatformat_to_doublest, put_field)
1044 (ldfrexp, floatformat_from_doublest, floatformat_is_negative)
1045 (floatformat_is_nan, floatformat_mantissa)
1046 (FLOATFORMAT_CHAR_BIT): Move from here.
1047 * doublest.c: To here. New file.
1048 * findvar.c (store_floating, extract_floating): Move from here.
1049 * doublest.c: To here.
1050 * Makefile.in (SFILES): Add doublest.c.
1051 (COMMON_OBS): Add doublest.o.
1052 (doublest.o): Specify dependencies.
1053 (doublest_h): Define.
1054
1055 * config/m88k/tm-m88k.h: Include "doublest.h".
1056 * config/i960/tm-i960.h: Ditto.
1057 * config/i386/tm-symmetry.h: Ditto.
1058 * rs6000-tdep.c, valarith.c: Ditto.
1059 * valprint.c, stabsread.c, sh-tdep.c: Ditto.
1060 * ia64-tdep.c, i387-tdep.c, i386-tdep.c: Ditto.
1061 * values.c, arm-tdep.c, arm-linux-tdep.c: Ditto.
1062 * alpha-tdep.c, ax.h, expression.h: Ditto.
1063 * sh-tdep.c, parse.c, top.c, value.h: Ditto.
1064
1065 * Makefile.in (arm-tdep.o): Add $(doublest_h).
1066 (i386-tdep.o, i387-tdep.o, ia64-tdep.o): Ditto.
1067 (rs6000-tdep.o, stabsread.o, valarith.o): Ditto.
1068 (values.o, valprint.o, arm-linux-tdep.o): Ditto.
1069 (alpha-tdep.o, ax_h, parse.o, top.o, value_h): Ditto.
1070 (parser_defs_h): Ditto.
1071 (expression_h): Add $(doublest_h) and $(symtab_h).
1072
1b0cad1c
AC
10732001-08-01 Andrew Cagney <ac131313@redhat.com>
1074
1075 * Makefile.in: Sort header definitions.
1076 (parser_defs_h, dis_asm_h, annotate_h, gdbthread_h): Define.
1077 Replace parser-defs.h with $(parser_defs_h). Replace $(dis-asm_h)
1078 and $(dis-asm.h) with $(dis_asm_h). Replace annotate.h with
1079 $(annotate_h). Replace target.h with $(target_h). Replace
1080 gdbthread.h with $(gdb_thread_h). Replace symfile.h with $(symfile_h).
1081
1ca66634
MK
10822001-07-31 Mark Kettenis <kettenis@gnu.org>
1083
1084 * config/i386/xm-i386.h: New file.
1085 * config/i386/xm-fbsd.h: Removed.
1086 * config/i386/xm-linux.h: Removed.
1087 * config/i386/fbsd.mh: Reorganize a bit.
1088 (XM_FILE): Set to xm-i386.h instead of xm-fbsd.h.
1089 * config/i386/linux.mh (XM_FILE): Set to xm-i386.h insread of
1090 xm-linux.h.
1091
9e84cbde
JB
10922001-07-30 Jim Blandy <jimb@redhat.com>
1093
1094 * dwarf2read.c (dwarf2_build_psymtabs_hard): Doc fix.
1095
72473524
DJ
10962001-07-27 Daniel Jacobowitz <drow@mvista.com>
1097
1098 * configure.in: Only invoke AC_FUNC_SETPGRP if not cross-compiling.
1099 Check for SETPGRP_VOID separately if cross-compiling and ISO C
1100 headers are available.
1101
8d7f6b4a
MK
11022001-07-30 Mark Kettenis <kettenis@gnu.org>
1103
4b418e06
MK
1104 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Redefine to call
1105 i386_dwarf_reg_to_regnum.
1106
8d7f6b4a
MK
1107 * i386-tdep.c (i386_register_convert_to_virtual): Replace
1108 assertion with a warning if we're asked to convert towards a
1109 non-floating-point type. Zero out the the buffer where the data
1110 is supposed to be stored in that case.
1111
6c56c069
EZ
11122001-07-29 Eli Zaretskii <eliz@is.elta.co.il>
1113
f959bc41
EZ
1114 * config/djgpp/djconfig.sh: Unset CDPATH.
1115
a3b9cbb3
EZ
1116 * go32-nat.c (get_cr3): Temporary disable support for page tables
1117 in UMBs, as it is incomplete.
1118
6c56c069
EZ
1119 Support for stepping through longjmp in DJGPP programs:
1120
1121 * config/i386/tm-go32.h (JB_ELEMENT_SIZE, JB_PC): New macros.
1122 (GET_LONGJMP_TARGET): Define to call get_longjmp_target.
1123 (get_longjmp_target): Add prototype.
1124
de6ee558
AC
11252001-07-28 Andrew Cagney <ac131313@redhat.com>
1126
1127 Fix some PID/TPID fallout for HP/UX.
1128 From 2001-07-22 Rodney Brown <rbrown64@csc.com.au>:
1129 * infttrace.c (ptrace_wait): Match external declaration,
1130 and match target_post_wait declaration.
1131
93755ae6
AC
11322001-07-28 Andrew Cagney <ac131313@redhat.com>
1133
1134 * MAINTAINERS: Add Orjan Friberg as cris target maintainer.
158ff1e6 1135 (cris): Set --enable-gdb-build-warnings flag to -w.
93755ae6 1136
16f769f3
AC
11372001-07-28 Andrew Cagney <ac131313@redhat.com>
1138
1139 From 2001-07-23 Andreas Schwab <schwab@suse.de>:
1140 * config/m68k/tm-m68k.h (TARGET_LONG_DOUBLE_FORMAT): Define.
1141 (TARGET_LONG_DOUBLE_BIT): Define.
1142 (REGISTER_VIRTUAL_SIZE): Return 12 for floating point registers.
1143 (MAX_REGISTER_VIRTUAL_SIZE): Increase to 12.
1144 (REGISTER_VIRTUAL_TYPE): Return builtin_type_long_double for
1145 floating point registers.
1146 (REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL)
1147 (REGISTER_CONVERT_TO_RAW): Remove.
1148 * config/m68k/xm-linux.h (HOST_LONG_DOUBLE_FORMAT): Define.
1149
5b7f31a4
AC
11502001-07-26 Andrew Cagney <ac131313@redhat.com>
1151
1152 * thread.c, breakpoint.c: Include "gdb.h".
1153 * Makefile.in (gdb_h): Define.
1154 (HFILES_NO_SRCDIR): Add gdb.h.
1155 (mi-cmd-break.o, mi-main.o, thread.o)
1156 (breakpoint.o): Add dependency on $(gdb_h).
1157
1158 * defs.h (enum gdb_rc, gdb_breakpoint_query)
1159 (gdb_breakpoint, gdb_thread_select)
1160 (gdb_list_thread_ids): Move declaration from here ...
1161 * gdb.h: To here. New file.
1162
8aaf581c
SC
11632001-07-28 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1164
1165 * Makefile.in (SUBDIR_TUI_OBS): Add tui-out.o, tui-hooks.o.
1166 (SUBDIR_TUI_SRCS): Add tui-out.c tui-hooks.c
1167 (SFILES): Likewise.
1168 (tui-out.o): Define dependencies.
1169 (tui-hooks.o): Likewise.
1170
f9e2d830
AC
11712001-07-28 Andrew Cagney <ac131313@redhat.com>
1172
1173 * MAINTAINERS: Update e-mail address of active @cygnus.com
1174 maintainers to @redhat.com.
1175
de6ed73f
AC
11762001-07-28 Andrew Cagney <ac131313@redhat.com>
1177
1178 * README (Known bugs): Delete section.
1179 (Kernel debugging): Delete section.
1180 (Languages other than C): Delete section.
1181 (Host/target specific installation notes) New section.
1182
3d261580
MK
11832001-07-28 Mark Kettenis <kettenis@gnu.org>
1184
85540d8c
MK
1185 * config/i386/tm-i386.h (STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
1186 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): New defines.
1187 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum): New
1188 prototypes.
1189 * config/i386/tm-fbsd.h, config/i386/tm-i386gnu.h,
1190 config/i386/tm-linux.h (STAB_REG_TO_REGNUM): Redefine to call
1191 i386_dwarf_reg_to_regnum.
1192 * i386-tdep.c (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum):
1193 New functions.
1194
3d261580
MK
1195 * i386-tdep.c: Include "gdb_assert.h"
1196 (i386_register_convert_to_virtual): Fix such that it can handle
1197 conversion to any floating-point type. Assert that we are dealing
1198 with a floating-point first.
1199 (i386_register_convert_to_raw): Assert that TYPE is a
1200 floating-point type with length 12.
1201
2db5ca22
JM
12022001-07-27 John R. Moore <jmoore@redhat.com>
1203
1204 * configure.in: Added dependency of gdb on tcl/tk libraries.
1205 * Makefile.in: Likewise.
1206 * configure: Regenerated with the above using autoconf.
1207
88e04cc1
EZ
12082001-07-26 Elena Zannoni <ezannoni@redhat.com>
1209
1210 * sh-tdep.c (sh_gdbarch_init): Use SH_DEFAULT_NUM_REGS instead of
1211 NUM_REGS.
1212 (SH_DEFAULT_NUM_REGS): Define.
1213
2033c18a
EZ
12142001-07-26 Eli Zaretskii <eliz@is.elta.co.il>
1215
1216 * go32-nat.c (read_memory_region): Make sure the segment limit was
1217 indeed set, to work around a Windows 2000 bug.
1218
9f30d7f5
DJ
12192001-07-25 Daniel Jacobowitz <drow@mvista.com>
1220
1221 * infptrace.c (child_xfer_memory): Add cast to CORE_ADDR.
1222 * infttrace.c (child_xfer_memory): Likewise.
1223 * symm-nat.c (child_xfer_memory): Likewise.
1224 * gdbserver/low-hppabsd.c (read_inferior_memory): Likewise.
1225 (write_inferior_memory): Likewise.
1226 * gdbserver/low-linux.c (read_inferior_memory): Likewise.
1227 (write_inferior_memory): Likewise.
1228 * gdbserver/low-lynx.c (read_inferior_memory): Likewise.
1229 (write_inferior_memory): Likewise.
1230 * gdbserver/low-nbsd.c (read_inferior_memory): Likewise.
1231 (write_inferior_memory): Likewise.
1232 * gdbserver/low-sparc.c (read_inferior_memory): Likewise.
1233 (write_inferior_memory): Likewise.
1234 * gdbserver/low-sun3.c (read_inferior_memory): Likewise.
1235 (write_inferior_memory): Likewise.
1236
e23194cb
EZ
12372001-07-25 Eli Zaretskii <eliz@is.elta.co.il>
1238
966beb0f
EZ
1239 * README: Mention how to make gdb.pdf.
1240
e23194cb
EZ
1241 * NEWS: Update.
1242
7c542009
SS
12432001-07-24 Stephen P. Smith <ischis2@home.com>
1244
a3f3e535
SS
1245 * MAINTAINERS (Stephen P. Smith): Added to write after approval
1246 list.
1247
675fb869
AC
12482001-07-23 Andrew Cagney <ac131313@redhat.com>
1249
1250 * mips-tdep.c (mips_push_arguments): Add comment explaining
1251 problem with LE o32 GCC.
1252
a7019e23
EZ
12532001-07-23 Elena Zannoni <ezannoni@redhat.com>
1254
1255 * config/powerpc/aix.mh (MH_LDFLAGS): Don't set these, the Gnu linker
1256 doesn't understand them.
1257
ab35b611
EZ
12582001-07-23 Elena Zannoni <ezannoni@redhat.com>
1259
1260 * memattr.c (mem_info_command): Reformat output to look more like
1261 'info break' output.
1262 (_initialize_mem): Improve help.
1263
0200359f
MK
12642001-07-23 Mark Kettenis <kettenis@gnu.org>
1265
1266 * configure.in (AC_CHECK_FUNCS): Add setpggrp.
1267 (AC_FUNC_SETPGRP): Add.
1268 * aclocal.m4, configure, config.in: Regenerated.
1269 * inflow.c (gdb_setpgid): Get rid of NEED_POSIX_SETPGID and
1270 SETPGRP_ARGS. Always use setpgid if it is available, fall back on
1271 setpgrp if it isn't. Use SETPGRP_VOID (defined by autoconf) to
1272 distinguish between the two setpgrp flavours.
1273 * config/xm-sysv4.h, config/arm/xm-linux.h,
1274 config/i386/xm-i386aix.h, config/i386/xm-sco.h,
1275 config/i386/xm-linux.h, config/i386/xm-ptx.h,
1276 config/m68k/xm-linux.h, config/powerpc/xm-linux.h,
1277 config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h,
1278 config/ia64/xm-linux.h (NEED_POSIX_SETPGID): Remove.
1279 * config/rs6000/xm-rs6000.h (SETPGRP_ARGS): Remove.
1280
9f20bf26
EZ
12812001-07-23 Eli Zaretskii <eliz@is.elta.co.il>
1282
1283 * go32-nat.c (read_memory_region): Set the granularity bit of the
1284 allocated segment according to its size, and adjust the limit to
1285 be page-aligned if the segment is page-granular.
1286
1287 * (get_cr3, get_pde, get_pte, display_ptable_entry, go32_pde)
1288 (display_page_table, go32_pte, go32_pte_for_address): New functions.
1289 (_initialize_go32_nat): Initialize and document them.
1290
383d750b
MK
12912001-07-22 Mark Kettenis <kettenis@gnu.org>
1292
1293 * i386gnu-nat.c: Include "i387-nat.h".
1294 (struct env387): Removed.
1295 (reg_offset): Fix comment.
1296 (fetch_fpregs): Use FCTRL_REGNUM and FOP_REGNUM instead of
1297 FIRST_FPU_CONTROL_REGNUM and LAST_FPU_CONTROL_REGNUM. Rewrite to
1298 use i387_supply_fsave.
1299 (gnu_fetch_registers): Remove spurious whitespace.
1300 (convert_to_env387): Remove.
1301 (store_fpregs): Add argument regno. Use i387_fill_fsave instead
1302 of convert_to_env387.
1303 (gnu_store_registers): Remove spurious whitespace. Pass REGNO to
1304 store_fpregs.
1305 * config/i386/i386gnu.mt (TDEPFILES): Add i387-tdep.o.
1306 * config/i386/i386gnu.mh (XDEPFILES): Remove i387-tdep.o.
1307 (NATDEPFILES): Add i387-nat.o.
1308
1a12f22f
SC
13092001-07-22 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1310
1311 * Makefile.in (ALLDEPFILES): Add m68hc11-tdep.c.
1312 (m68hc11-tdep.o): Define dependencies.
1313
7d32ba20
SC
13142001-07-22 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1315
1316 * m68hc11-tdep.c (m68hc11_gdbarch_init): Define int at 16-bits.
1317
5ecb1806
SC
13182001-07-21 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1319
1320 * utils.c (init_page_info): Use tui_get_command_dimension.
1321 * printcmd.c (disassemble_command): Simplify tui specific code,
1322 use tui_is_window_visible, tui_show_assembly.
1323
25630444
MK
13242001-07-21 Mark Kettenis <kettenis@gnu.org>
1325
1326 * i386bsd-nat.c: Do not include <sys/sysctl.h>.
1327 (_initialize_i386bsd_nat) [KERN_PS_STRINGS]: Move FreeBSD-specific
1328 code to ...
1329 * i386fbsd-nat.c: ... here. New file.
1330 * config/i386/fbsd.mh (NATDEPFILES): Add i386-fbsd.o.
1331 * config/i386/nm-fbsd.h (CHILD_RESUME): Define.
1332 * Makefile.in (ALLDEPFILES): Add i386fbsd-nat.c.
1333 (i386fbsd-nat.o): Add dependencies.
1334
0150732f
DJ
13352001-07-19 Daniel Jacobowitz <drow@mvista.com>
1336
1337 * signals.c: New file.
1338 * Makefile.in: Add signals.o.
1339 * target.c (struct signals, target_signal_to_name)
1340 (target_signal_from_name, target_signal_from_host)
1341 (do_target_signal_to_host, target_signal_to_host_p)
1342 (target_signal_to_host, target_signal_from_command): Move to
1343 signals.c.
1344 (initialize_targets): Move check of struct signals to...
1345 * signals.c (_initialize_signals): Here.
1346
e36118e7
AC
13472001-07-19 Andrew Cagney <ac131313@redhat.com>
1348
1349 * MAINTAINERS: Add Michael Chastain as C++ testsuite maintainer.
1350
b4fc7a30
AC
13512001-07-19 Andrew Cagney <ac131313@redhat.com>
1352
1353 From Stephen Smith:
1354 * configure.tgt (i*86-*-pe*): New target.
1355
4b048bc0
AC
13562001-07-19 Andrew Cagney <ac131313@redhat.com>
1357
1358 From 2001-07-16 Rodney Brown <rbrown64@csc.com.au>:
1359 * infttrace.c (child_thread_alive): Fix gdb_tid typo.
1360 * somsolib.c (no_shared_libraries): Provide stub.
1361 * xcoffsolib.c (no_shared_libraries): Provide stub.
1362
227288a0
SC
13632001-07-18 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1364
1365 * Makefile.in (COMMON_OBS): Remove tui-file.o.
1366 (SUBDIR_TUI_OBS): Add it here.
1367 (SUBDIR_TUI_SRCS): Move tui-file.c and tui-file.h here.
1368 (main.o): Remove dependency with tui-file.h.
1369
f9eb4b01
EZ
13702001-07-17 Elena Zannoni <ezannoni@redhat.com>
1371
1372 * Makefile.in (tui-file.o): Update dependencies.
1373
d0c8cdfb
EZ
13742001-07-17 Elena Zannoni <ezannoni@redhat.com>
1375
1376 * top.c (catch_errors): Convert PTR to void * in parameters list.
1377 (quit_cover): Ditto.
1378
063190b6
SC
13792001-07-17 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1380
1381 * source.c (find_source_lines): Remove tui test, must be replaced
1382 by appropriate warning hook.
1383 (print_source_lines): Remove tui hacks, must be replaced by cli.
1384 (forward_search_command): Remove tui hacks, can be replaced by
1385 appropriate calls to identify_source_line when tui scrolls.
1386 (reverse_search_command): Likewise.
1387
cf759d3b
ND
13882001-07-16 Nick Duffek <nsd@redhat.com>
1389
1390 * remote.c (init_remote_ops, init_remote_cisco_ops,
1391 init_remote_async_ops): Set to_pid_to_str and
1392 to_extra_thread_info correctly and in the same order as declared
1393 in target.h.
1394
0caabb7e
AC
13952001-07-16 Andrew Cagney <ac131313@redhat.com>
1396
1397 * remote.c: Revert below. Included more than intended.
1398
943b3971
ND
13992001-07-16 Nick Duffek <nsd@redhat.com>
1400
1401 * remote.c (init_remote_ops, init_remote_cisco_ops,
1402 init_remote_async_ops): Set to_pid_to_str and
1403 to_extra_thread_info correctly and in the same order as declared
1404 in target.h.
1405
9ed10b08
ND
14062001-07-16 Nick Duffek <nsd@redhat.com>
1407
1408 * findvar.c (read_var_value): Apply value_as_pointer() to
1409 addresses retrieved from the target for LOC_BASEREG and
1410 LOC_BASEREG_ARG variables.
1411
24be5c34
OF
14122001-07-16 Orjan Friberg <orjanf@axis.com>
1413
1414 * NEWS: New target CRIS.
1415
314b6fb7
EZ
14162001-07-16 Elena Zannoni <ezannoni@redhat.com>
1417
1418 * top.c (show_commands): Remove extern decl of history_get, it's
1419 already in readline/history.h.
1420
210661e7
EZ
14212001-07-16 Elena Zannoni <ezannoni@redhat.com>
1422
1423 * top.c (is_complete_command, init_cmd_lists, init_cli_cmds,
1424 execute_user_command, do_setshow_command, get_prompt, init_proc,
1425 serial_log_command): Remove extern declarations. Include
1426 cli/cli-cmds.h, cli/cli-script.h, cli/cli-setshow.h, serial.h.
1427 * gdbcmd.h (execute_user_command): Remove declaration, it's already
1428 in cli/cli-script.h.
1429 * command.h (do_setshow_command): Remove declaration, it's already
1430 in cli/cli-setshow.h.
1431 * infrun.c: Include "cli/cli-script.h" for execute_user_command.
1432 * Makefile.in (infrun.o): Update dependencies.
1433 (top.o): Ditto.
1434 * cli/cli-setshow.h: Add comment for do_setshow_command.
1435
2584159e
EZ
14362001-07-16 Eli Zaretskii <eliz@is.elta.co.il>
1437
1438 * cli/cli-cmds.c (shell_escape) [GLOBAL_CURDIR]: Condition the
1439 call to chdir on this symbol rather than on __DJGPP__.
1440 (CANT_FORK) [__MSDOS__]: Move from here...
1441 * defs.h (CANT_FORK) [__MSDOS__]: ...to here.
1442 (GLOBAL_CURDIR) [__MSDOS__]: Define.
1443
cf54db79
OF
14442001-07-16 Orjan Friberg <orjanf@axis.com>
1445
1446 * configure.tgt: Recognise the CRIS architecture.
1447 * config/cris/cris.mt: New file for CRIS target.
1448 * cris-tdep.c: New file for CRIS target.
1449
64cdedad
EZ
14502001-07-15 Elena Zannoni <ezannoni@redhat.com>
1451
1452 * top.c (quit_cover, float_handler): Move definition up before use.
1453 (gdb_init): Move to end of file, to avoid calls to not yet defined
1454 functions.
1455 Delete prototypes.
1456
2cd58942
AC
14572001-07-14 Andrew Cagney <ac131313@redhat.com>
1458
1459 * serial.h (SERIAL_ASYNC): Delete.
1460 (DEPRECATED_SERIAL_FD): Delete.
1461 (SERIAL_DEBUG): Delete.
1462 (SERIAL_DEBUG_P): Delete.
1463 (SERIAL_DRAIN_OUTPUT): Delete.
1464 (SERIAL_FLUSH_OUTPUT): Delete.
1465 (SERIAL_FLUSH_INPUT): Delete.
1466 (SERIAL_SEND_BREAK): Delete.
1467 (SERIAL_RAW): Delete.
1468 (SERIAL_GET_TTY_STATE): Delete.
1469 (SERIAL_SET_TTY_STATE): Delete.
1470 (SERIAL_PRINT_TTY_STATE): Delete.
1471 (SERIAL_NOFLUSH_SET_TTY_STATE): Delete.
1472 (SERIAL_SETBAUDRATE): Delete.
1473 (SERIAL_SETSTOPBITS): Delete.
1474 (SERIAL_CAN_ASYNC_P): Delete.
1475 (SERIAL_IS_ASYNC_P): Delete.
1476 (SERIAL_UN_FDOPEN): Delete.
1477 (SERIAL_READCHAR): Delete.
1478 (SERIAL_CLOSE): Delete.
1479 (SERIAL_FDOPEN): Delete.
1480 (SERIAL_OPEN): Delete.
1481 * ser-unix.c: Update.
1482 * sparclet-rom.c: Update.
1483 * remote-bug.c: Update.
1484 * dsrec.c: Update.
1485 * xmodem.c: Update.
1486 * nindy-share/ttyflush.c: Update.
1487 * nindy-share/Onindy.c: Update.
1488 * utils.c: Update.
1489 * serial.c: Update.
1490 * remote-nindy.c: Update.
1491 * inflow.c: Update.
1492 * sparcl-tdep.c: Update.
1493 * sh3-rom.c: Update.
1494 * remote.c: Update.
1495 * remote-utils.c: Update.
1496 * remote-st.c: Update.
1497 * remote-sds.c: Update.
1498 * remote-rdp.c: Update.
1499 * remote-os9k.c: Update.
1500 * remote-nrom.c: Update.
1501 * remote-mips.c: Update.
1502 * remote-es.c: Update.
1503 * remote-e7000.c: Update.
1504 * remote-array.c: Update.
1505 * ocd.c: Update.
1506 * nindy-share/nindy.c: Update.
1507 * monitor.c: Update.
1508
ea7c478f
AC
15092001-07-14 Andrew Cagney <ac131313@redhat.com>
1510
1511 * mn10200-tdep.c: Replace value_ptr with ``struct value *''.
1512 * mcore-tdep.c: Ditto.
1513 * sparc-tdep.c: Ditto.
1514 * sh-tdep.c: Ditto.
1515 * rs6000-tdep.c: Ditto.
1516 * ppc-linux-tdep.c: Ditto.
1517 * m68hc11-tdep.c: Ditto.
1518 * ia64-tdep.c: Ditto.
1519 * i386-tdep.c: Ditto.
1520 * arm-linux-tdep.c: Ditto.
1521 * hppa-tdep.c: Ditto.
1522 * h8500-tdep.c: Ditto.
1523 * fr30-tdep.c: Ditto.
1524 * arm-tdep.c: Ditto.
1525 * alpha-tdep.c: Ditto.
1526 * d30v-tdep.c: Ditto.
1527 * d10v-tdep.c: Ditto.
1528 * m32r-tdep.c: Ditto.
1529 * mips-tdep.c: Ditto.
1530 * v850-tdep.c: Ditto.
1531
d75b5104
EZ
15322001-07-15 Elena Zannoni <ezannoni@redhat.com>
1533
1534 * top.c (readline_line_completion_function, noop_completer): Move
1535 from here...
1536 * completer.c (readline_line_completion_function, noop_completer):
1537 ...to here.
1538 * gdbcmd.h (readline_line_completion_function, noop_completer):
1539 Move declarations from here...
1540 * completer.h (readline_line_completion_function, noop_completer):
1541 ...to here.
1542 * corefile.c: Include completer.h.
1543 * source.c: Ditto.
1544 * symfile.c: Ditto.
1545 * Makefile.in: Update dependencies.
1546
150985e3
EZ
15472001-07-15 Eli Zaretskii <eliz@is.elta.co.il>
1548
1549 * go32-nat.c (go32_create_inferior): Support command lines longer
1550 than 126 characters.
1551
def90278
SC
15522001-07-14 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1553
1554 * NEWS: New target 68HC11/68HC12.
1555
37767e42
SC
15562001-07-14 Stephane Carrez <Stephane.Carrez@worldnet.fr>
1557
1558 * utils.c (query): Remove tui hacks; tui must use the query_hook.
1559 * top.c (command_loop): Remove tui insert_mode hacks; don't call
1560 tuiCleanUp because this must be made with atexit by tui.
1561 * symfile.c (symbol_file_command): Remove call to TUIDO
1562 * stack.c (show_and_print_stack_frame_stub): Remove tui check;
1563 not necessary when using the selected frame hooks.
1564 (print_stack_frame_stub): Likewise.
1565 (print_frame_info_base): Likewise.
1566 (print_frame_info): Likewise.
1567 (up_silently_command): Likewise.
1568 (down_silently_command): Likewise.
1569 (show_stack_frame): Likewise for TUIDO.
1570 (select_frame): Likewise.
1571 (select_and_print_frame): Likewise.
1572 (stack_publish_stopped_with_no_frame): Remove.
1573 (select_and_maybe_print_frame): Remove.
1574 * main.c (captured_main): Remove tui_fileopen and tuiInit; tui
1575 must use the initialize ui hook.
1576 * infrun.c (normal_stop): Remove call to TUIDO; tui must use the
1577 selected frame hooks.
1578 * event-top.c (command_handler): Remove tui insert_mode hack.
1579 * defs.h: Remove TUIDO; Only include tui.h.
1580 * breakpoint.c (mention): Remove calls to TUIDO.
1581 (delete_breakpoint): Remove tui hacks; tui must install
1582 the breakpoint hooks.
1583
0123ceaf
MK
15842001-07-14 Mark Kettenis <kettenis@gnu.org>
1585
1fe7ac85
MK
1586 * config/i386/xm-linux.h (KERNEL_U_ADDR): Move from here...
1587 * config/i386/nm-linux.h: ...to here. Change comments about user
1588 area/struct a bit.
1589
d0f3ce3c
MK
1590 * config/i386/xm-linux.h (HAVE_TERMIOS): Really remove.
1591
0123ceaf
MK
1592 * Makefile.in (ALLDEPFILES): Add i386bsd-nat.c and i386bsd-tdep.c
1593 (i386bsd-tdep.o, i386bsd-nat.o): New targets.
1594
4902674b
EZ
15952001-07-13 Elena Zannoni <ezannoni@redhat.com>
1596
1597 * remote-e7000.c (fetch_regs_from_dump): If register set is null,
1598 generate an internal error.
1599 (e7000_fetch_registers): Initialize variable 'wanted'.
1600 (e7000_wait): Initialize variable 'wanted_nopc'.
1601 (e7000_store_register): Fix sprintf compiler warnings.
1602 (sub2_from_pc): Ditto.
1603 (e7000_open): Close the descriptor, not the name.
1604 (e7000_load): Fix compiler warnings.
1605 (sub2_from_pc): Ditto.
1606 * Makefile.in (remote-e7000.o): Can now compile with -Werror.
1607
b7247919
MK
16082001-07-13 Mark Kettenis <kettenis@gnu.org>
1609
1610 * i386bsd-nat.c: Include <signal.h>, <stddef.h> and
1611 <sys/sysctl.h>.
1612 (store_inferior_registers): Wrap long line.
1613 (i386bsd_dr_get_status): Fix typo in comment.
1614 (_initialize_i386bsd_nat): New function. * i386bsd-tdep.c: New
1615 file. * config/i386/tm-fbsd.h (IN_SIGTRAMP): New define.
1616 (i386bsd_in_sigtramp): New prototype.
1617 (SIGTRAMP_START, SIGTRAMP_END): Redefine in terms...
1618 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): ...these new
1619 (external) variables.
1620 (SIGCONTEXT_PC_OFFSET): Removed.
1621 (FRAME_SAVED_PC): New define.
1622 (i386bsd_frame_saved_pc): New function. * config/i386/fbsd.mt
1623 (TDEPFILES): Add i386bsd-tdep.o.
1624
d1bacddc
DJ
16252001-07-12 Daniel Jacobowitz <drow@mvista.com>
1626
1627 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Use ISO C
1628 definition.
1629
9a973a8f
MK
16302001-07-13 Mark Kettenis <kettenis@gnu.org>
1631
1632 * lin-lwp.c (lin_lwp_wait): Avoid check for resumed LWPs if there
1633 are no registered LWPs yet.
1634
6ef7fa21
DJ
16352001-07-12 Daniel Jacobowitz <drow@mvista.com>
1636
1637 * config/i386/nm-linux.h (CANNOT_FETCH_REGISTER): Call the right
1638 function.
1639 (CANNOT_STORE_REGISTER): Likewise.
1640
75e266ac
KS
16412001-07-12 Keith Seitz <keiths@redhat.com>
1642
1643 * remote-rdp.c: Include "serial.h"
1644
d0608e50
DJ
16452001-07-12 Daniel Jacobowitz <drow@mvista.com>
1646
1647 * gdbserver/remote-utils.c (remote_open): Set VMIN to 1
1648 in HAVE_TERMIO/HAVE_TERMIOS cases.
1649
1e4fac59
MK
16502001-07-12 Mark Kettenis <kettenis@gnu.org>
1651
de4ca854
MK
1652 * lin-lwp.c (stop_wait_callback): Add support for flushing
1653 signals. Use that in favour of the old code to get rid of
1654 superfluous SIGINTs.
1655 (lin_lwp_wait): Use the new support in stop_wait_callback to
1656 flush all but one SIGINT.
1657
635b0cc1
MK
1658 * i386-tdep.c (i386_extract_return_value): Undo 2001-07-11 changes
1659 to comment.
1660 (i386_store_return_value): Improve comments about storing
1661 floating-point return values.
1662
1e4fac59
MK
1663 * config/arm/xm-linux.h, config/i386/xm-linux.h,
1664 config/m68k/xm-linux.h, config/powerpc/xm-linux.h,
1665 config/sparc/xm-linux.h, config/ia64/xm-linux.h (HAVE_TERMIOS):
1666 Removed. Taken care of by autoconf and terminal.h.
1667
49e790b0
DJ
16682001-07-12 Daniel Jacobowitz <drow@mvista.com>
1669
1670 * mips-tdep.c (mips_type_needs_double_align): New function.
1671 (mips_push_arguments): Align o32 structs to even argument
1672 registers if necessary.
1673
e7df8212
DJ
16742001-07-11 Daniel Jacobowitz <drow@mvista.com>
1675
1676 * config/djgpp/fnchange.lst: Add entries for
1677 mips-linux-nat.c and mips-linux-tdep.c.
1678
2b2d558c
MK
16792001-07-12 Mark Kettenis <kettenis@gnu.org>
1680
9e158af1
MK
1681 * config/powerpc/xm-linux.h: Fix corrupted file.
1682
2b2d558c
MK
1683 * configure.in: Add check for sigsetjmp.
1684 * config/m68k/xm-linux.h (HAVE_SIGSETJMP): Removed.
1685 * config/xm-sysv4.h (HAVE_SIGSETJMP): Removed.
1686 * configure, config.in: Regenerated.
1687
3bbfbb92
EZ
16882001-07-11 Elena Zannoni <ezannoni@redhat.com>
1689
1690 * config/sh/tm-sh.h (struct gdbarch_tdep): Add
1691 FLOAT_ARGLAST_REGNUM, RETURN_REGNUM, ARG0_REGNUM, ARGLAST_REGNUM,
1692 PR_REGNUM fields.
1693
1694 * sh-tdep.c (sh_skip_prologue_hard_way): Rename from
1695 skip_prologue_hard_way().
1696 (skip_prologue_hard_way): Make it a function pointer.
1697 (sh_print_register): Use function pointer do_pseudo_register,
1698 instead of sh_do_pseudo_register.
1699 (sh_do_registers_info): Ditto.
1700 (sh_gdbarch_init): Initialize do_pseudo_register.
1701 (IS_MOV_TO_R14): Rename from IS_MOV_R14.
1702 (skip_prologue_hard_way): Update.
1703 (sh_gdbarch_init): Move setting of frame_chain,
1704 get_saved_register, init_extra_frame_info, push_arguments,
1705 extract_return_value, pop_frame, store_struct_return,
1706 extract_struct_value_address, use_struct_convention,
1707 init_extra_frame_info to before target specific settings.
1708 (sh_gdbarch_init): Initialize new tdep fields
1709 FLOAT_ARGLAST_REGNUM, RETURN_REGNUM, ARG0_REGNUM, ARGLAST_REGNUM,
1710 PR_REGNUM.
1711 (sh_push_arguments): Use new gdbarch_tdep fields
1712 {ARG0,ARGLAST}_REGNUM.
1713 (sh_saved_pc_after_call, sh_nofp_frame_init_saved_regs,
1714 sh_init_extra_frame_info, sh_push_return_address,
1715 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
1716 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs): Update to use
1717 gdbarch_tdep->PR_REGNUM.
1718 (dr_reg_base_num, fv_reg_base_num): Move to earlier in the file.
1719
e64c0717
DJ
17202001-07-11 Daniel Jacobowitz <drow@mvista.com>
1721
1722 * config/mips/tm-linux.h: Include "tm-linux.h" instead of copying
1723 from it. Move definitions of REALTIME_LO and REALTIME_HI above
1724 include.
1725
6c8e04b5
DJ
17262001-07-11 Daniel Jacobowitz <drow@mvista.com>
1727
1728 * MAINTAINERS: List myself for MIPS/Linux
1729 port.
1730
94dfea5d
DJ
17312001-07-11 Daniel Jacobowitz <drow@mvista.com>
1732
1733 * gdbserver/remote-utils.c (remote_open): Only
1734 check for F_SETOWN if we had F_SETFL and FASYNC.
1735
f175af98
DJ
17362001-07-11 Daniel Jacobowitz <drow@mvista.com>
1737
1738 From Michael Fedrowitz <michael.fedrowitz@informatik.uni-ulm.de>:
1739
1740 * config/m68k/linux.mh: Remove core-regset.o.
1741 * m68klinux-nat.c: Fix comment.
1742 (supply_gregset): Change argument to elf_gregset_t *.
1743 (supply_fpregset): Change argument to elf_fpregset_t *.
1744 (fetch_core_registers): New function.
1745 (linux_elf_core_fns): Define.
1746 (_initialize_m68k_linux_nat): New function.
1747
21624696
AC
17482001-07-11 Andrew Cagney <ac131313@redhat.com>
1749
1750 * configure.tgt: Mark d10v as pure multi-arch.
1751 * config/d10v/tm-d10v.h: Delete file.
1752 * config/d10v/d10v.mt (TM_FILE): Delete.
1753
819cc324
AC
17542001-07-10 Andrew Cagney <ac131313@redhat.com>
1755
1756 * serial.h (typedef serial_t): Delete. Replace all references to
1757 serial_t with `struct serial *'.
1758 * serial.c: Update.
1759 * nindy-share/ttyflush.c: Update.
1760 * nindy-share/ttyflush.c: Update.
1761 * nindy-share/Onindy.c: Update.
1762 * nindy-share/nindy.c: Update.
1763 * remote-rdp.c: Update.
1764 * remote-sds.c: Update.
1765 * remote-st.c: Update.
1766 * remote-nindy.c: Update.
1767 * remote-mips.c: Update.
1768 * remote-e7000.c: Update.
1769 * remote-os9k.c: Update.
1770 * remote-nrom.c: Update.
1771 * remote-es.c: Update.
1772 * remote-array.c: Update.
1773 * ocd.c: Update.
1774 * mon960-rom.c: Update.
1775 * dsrec.c: Update.
1776 * inflow.c: Update.
1777 * ser-e7kpc.c: Update.
1778 * sparclet-rom.c: Update.
1779 * srec.h: Update.
1780 * ser-tcp.c: Update.
1781 * ser-go32.c: Update.
1782 * sparcl-tdep.c: Update.
1783 * w89k-rom.c: Update.
1784 * utils.c: Update.
1785 * sh3-rom.c: Update.
1786 * remote.c: Update.
1787 * ser-pipe.c: Update.
1788 * ser-unix.c: Update.
1789 * ser-unix.h: Update.
1790 * xmodem.c: Update.
1791 * xmodem.h: Update.
1792
30120c46
AC
17932001-07-11 J.T. Conklin <jtc@redback.com>
1794
1795 From Greg McGary <greg@mcgary.org>:
cf30a8e1
C
1796 * gdbserver/remote-utils.c (remote_open): Set gdbserver as "owner"
1797 of SIGIO.
1798 (input_interrupt): Don't block on read, in case we got redundant
1799 SIGIO. Don't gripe about redundant SIGIO.
1800 * gdbserver/low-hppabsd.c (mywait): Use waitpid(). Enable SIGIO
1801 handler while waiting.
1802 * gdbserver/low-linux.c (mywait): Likewise.
1803 * gdbserver/low-nbsd.c (mywait): Likewise.
1804 * gdbserver/low-sparc.c (mywait): Likewise.
1805
84c6c83c
KS
18062001-07-11 Keith Seitz <keiths@redhat.com>
1807
1808 * infrun.c (print_stop_reason): Add missing uiout field
1809 "reason" for SIGNAL_RECEIVED case.
1810
e6da861e
MK
18112001-07-11 Mark Kettenis <kettenis@gnu.org>
1812
82de0203
MK
1813 * config/alpha/nm-linux.h (TARGET_ELF64, PSIGNAL_IN_SIGNAL_H):
1814 Remove unused macro's.
1815
e6da861e
MK
1816 * config/powerpc/nm-linux.h (NO_SYS_REG_H): Remove, it's no longer
1817 used.
1818
d8c852a1
EZ
18192001-07-11 Eli Zaretskii <eliz@is.elta.co.il>
1820
1821 * go32-nat.c (info_dos_cmdlist): New variable.
1822 (go32_info_dos_command): New function.
1823 (_initialize_go32_nat): Convert all DOS-specific commands into
1824 subcommands of "info dos". Suggested by Andrew Cagney
1825 <ac131313@redhat.com>.
1826
f8d13125
MK
18272001-07-11 Mark Kettenis <kettenis@gnu.org>
1828
11d18042
MK
1829 * config/nm-linux.h: Fix comments.
1830
936742ab
MK
1831 * thread-db.c (enable_thread_event_reporting): Correct warning
1832 message about getting thread death breakpoint.
1833 Reported by John S Kallal <jskallal@home.com>.
1834
ccb945b8
MK
1835 * i386-tdep.c (i386_extract_return_value): "Fix" comment.
1836 (i386_store_return_value): Frob FPU status and tag word to make
1837 sure the return value is the only value on the FPU stack.
1838
f8d13125
MK
1839 * config/tm-linux.h: Do not include <signal.h>. Instead provide
1840 reasonable defaults for REALTIME_LO and REALTIME_HI if they're not
1841 already defined.
1842 * config/nm-linux.h: Include <signal.h>.
1843 [__SIGRTMIN] (REALTIME_LO, REALTIME_HI): Define to __SIGRTMIN and
1844 (__SIGRTMAX + 1) respectively.
1845
56ff796a
AC
18462001-07-10 Andrew Cagney <ac131313@redhat.com>
1847
1848 * mcore-rom.c: Include "serial.h".
1849 * Makefile.in (mcore-rom.o): Depends on "serial.h".
1850
899ff3a2
AC
18512001-07-10 Andrew Cagney <ac131313@redhat.com>
1852
1853 * Makefile.in (remote-bug.o): Depends on serial.h.
1854 * remote-bug.c: Include "serial.h".
1855 * MAINTAINERS: Mark m88k target as buildable.
1856 * TODO: Update.
1857
2bf1f4a1
JB
18582001-07-10 Jim Blandy <jimb@redhat.com>
1859
75af7f68
JB
1860 Clean up the D10V port so that GDB and the target program no
1861 longer disagree on how big pointers are.
1862 * findvar.c (value_from_register): Remove special case code for D10V.
1863 * printcmd.c (print_frame_args): Same.
1864 * valops.c (value_at, value_fetch_lazy): Same.
1865 * values.c (unpack_long): Same.
1866 * gdbarch.sh: Changes to effect the following:
1867 * gdbarch.h (GDB_TARGET_IS_D10V, D10V_MAKE_DADDR,
1868 gdbarch_d10v_make_daddr_ftype, gdbarch_d10v_make_daddr,
1869 set_gdbarch_d10v_make_daddr, D10V_MAKE_IADDR,
1870 gdbarch_d10v_make_iaddr_ftype, gdbarch_d10v_make_iaddr,
1871 set_gdbarch_d10v_make_iaddr, D10V_DADDR_P,
1872 gdbarch_d10v_daddr_p_ftype, gdbarch_d10v_daddr_p,
1873 set_gdbarch_d10v_daddr_p, D10V_IADDR_P,
1874 gdbarch_d10v_iaddr_p_ftype, gdbarch_d10v_iaddr_p,
1875 set_gdbarch_d10v_iaddr_p, D10V_CONVERT_DADDR_TO_RAW,
1876 gdbarch_d10v_convert_daddr_to_raw_ftype,
1877 gdbarch_d10v_convert_daddr_to_raw,
1878 set_gdbarch_d10v_convert_daddr_to_raw, D10V_CONVERT_IADDR_TO_RAW,
1879 gdbarch_d10v_convert_iaddr_to_raw_ftype,
1880 gdbarch_d10v_convert_iaddr_to_raw,
1881 set_gdbarch_d10v_convert_iaddr_to_raw): Delete declarations.
1882 * gdbarch.c: Delete the corresponding definitions.
1883 (struct gdbarch): Delete members d10v_make_daddr,
1884 d10v_make_iaddr, d10v_daddr_p, d10v_iaddr_p,
1885 d10v_convert_daddr_to_raw, and d10v_convert_iaddr_to_raw.
1886 (startup_gdbarch): Remove initializers for the above.
1887 (verify_gdbarch, gdbarch_dump): Don't verify or dump them any
1888 more.
1889 * d10v-tdep.c (d10v_register_virtual_type): Rather that
1890 claiming the stack pointer and PC are 32 bits long (which they
1891 aren't), say that the stack pointer is an int16_t, and the
1892 program counter is a function pointer. This allows the rest
1893 of GDB to make the appropriate conversions between the code
1894 pointer format and real addresses.
1895 (d10v_register_convertible, d10v_register_convert_to_virtual,
1896 d10v_register_convert_to_raw): Delete function; no registers
1897 are convertible now, so we use
1898 generic_register_convertible_not instead.
1899 (d10v_address_to_pointer, d10v_pointer_to_address): New gdbarch
1900 methods.
1901 (d10v_push_arguments, d10v_extract_return_value): Remove special
1902 cases for code and data pointers.
1903 (d10v_gdbarch_init): Set gdbarch_ptr_bit to 16, so that GDB and
1904 the target agree on how large pointers are. Say that addresses
1905 are 32 bits long. Register the address_to_pointer and
1906 pointer_to_address conversion functions. Since no registers are
1907 convertible now, register generic_register_convertible_not as the
1908 gdbarch_register_convertible method instead of
1909 d10v_register_convertible. Remove registrations for
1910 d10v_register_convert_to_virtual,
1911 d10v_register_convert_to_raw, gdbarch_d10v_make_daddr,
1912 gdbarch_d10v_make_iaddr, gdbarch_d10v_daddr_p,
1913 gdbarch_d10v_iaddr_p, gdbarch_d10v_convert_daddr_to_raw, and
1914 gdbarch_d10v_convert_iaddr_to_raw.
1915
ef166cf4
JB
1916 * printcmd.c (print_scalar_formatted): If we are printing an
1917 address, remember that TARGET_ADDR_BIT is not always equal to
1918 TARGET_PTR_BIT.
1919
2bf1f4a1
JB
1920 * valops.c (value_cast): When casting a pointer to an integer,
1921 don't convert it to an address.
1922
ba3a8523
AC
19232001-07-10 Andrew Cagney <ac131313@redhat.com>
1924
1925 * remote-utils.h (struct serial): Declare as opaque. Remove
1926 include of "serial.h".
1927 * Makefile.in (remote_utils_h): Update.
1928
1929 * monitor.h (struct serial): Declare as opaque. Remove include of
1930 "serial.h".
1931 (struct monitor_ops): Replace serial_t with `struct serial *'.
1932 * monitor.c (monitor_desc): Ditto.
1933
2aa830e4
DJ
19342001-07-10 Daniel Jacobowitz <drow@mvista.com>
1935
1936 * mips-linux-tdep.c: New file.
1937 * mips-linux-nat.c: New file.
1938 * config/mips/linux.mh: New file.
1939 * config/mips/linux.mt: New file.
1940 * config/mips/xm-linux.h: New file.
1941 * config/mips/nm-linux.h: New file.
1942 * config/mips/tm-linux.h: New file.
1943 * configure.host: Recognize mips*-*-linux*.
1944 * configure.tgt: Likewise.
1945 * NEWS: Mention mips*-*-linux* port.
1946
65e2f740
AC
19472001-07-09 Andrew Cagney <ac131313@redhat.com>
1948
1949 * serial.h (struct serial): Rename `struct _serial_t'.
1950 * serial.c (XMALLOC): Define.
1951 (serial_open): Update. Use XMALLOC.
1952 (serial_fdopen): Ditto.
1953
090a2205
AC
19542001-07-07 Andrew Cagney <ac131313@redhat.com>
1955
1956 * gdbtypes.h (builtin_type_void_data_ptr): Rename
1957 builtin_type_ptr.
1958 * gdbtypes.c (builtin_type_void_data_ptr): Update.
1959 (build_gdbtypes): Update.
1960 (_initialize_gdbtypes): Update.
1961 * values.c (value_as_pointer): Update.
1962 * utils.c (host_pointer_to_address): Update.
1963 (address_to_host_pointer): Update.
1964
8059d5aa
AC
19652001-07-08 Andrew Cagney <ac131313@redhat.com>
1966
1967 * remote-udi.c (udi_wait): Make type, instead of name, of first
1968 parameter a ptid_t.
1969
cc61049c
AC
19702001-07-07 Andrew Cagney <ac131313@redhat.com>
1971
1972 * ser-mac.c: Make obsolete.
1973 * Makefile.in (ser-mac.o): Ditto.
1974
10ba702d
EZ
19752001-07-08 Eli Zaretskii <eliz@is.elta.co.il>
1976
1977 * go32-nat.c (go32_get_windows_version, print_mem, go32_sysinfo)
1978 (read_memory_region, get_descriptor, display_descriptor)
1979 (go32_sldt, go32_sgdt, go32_sidt): New functions.
1980 (top-level): Include ctype.h, utsname.h, dos.h, and go32.h. Ifdef
1981 away `disable' from dos.h, since breakpoint.h defines an enum
1982 member of the same name, and GCC 2.7.2 barfs.
1983 (_initialize_go32_nat): Provide new commands dos-sysinfo, dos-ldt,
1984 dos-gdt, and dos-idt, all of them in the "info" class
1985
44312dba
KB
19862001-07-07 Kevin Buettner <kevinb@redhat.com>
1987
1988 * procfs.c (create_procinfo): Allocate space for saved_entryset
1989 and saved_exitset.
1990 (destroy_one_procinfo): Free space allocated to saved_entryset
1991 and saved_exitset.
1992
5329c756
AC
19932001-07-07 Andrew Cagney <ac131313@redhat.com>
1994
1995 * TODO (5.1): Update.
1996
51cc5b07
AC
19972001-07-07 Andrew Cagney <ac131313@redhat.com>
1998
1999 * symtab.c (main_name): New function.
2000 (set_main_name): New function.
2001 * symtab.h: Declare.
2002 * TODO: Update
2003
2004 From 2000-03-05 Anthony Green <green@redhat.com>:
2005 * dbxread.c (process_one_symbol): Handle the N_MAIN stab by
2006 setting main_name.
2007 * blockframe.c (inside_main_func): Use main_name instead of
2008 "main".
2009 * symtab.c (find_main_psymtab): Ditto.
2010 * source.c (select_source_symtab): Ditto.
2011 * nlmread.c (nlm_symfile_read): Ditto.
2012 * rs6000-tdep.c (skip_prologue): Ditto.
2013
56ddd993
AC
20142001-07-07 Andrew Cagney <ac131313@redhat.com>
2015
2016 * TODO: Convert most items into PRs.
2017
58eeadba
MK
20182001-07-07 Mark Kettenis <kettenis@gnu.org>
2019
2020 * lin-lwp.c (status_to_str): New function.
2021 (lin_lwp_wait): Use it to print debug messages where appropriate.
2022
7f1659e6
MC
20232001-07-06 Michael Chastain <chastain@redhat.com>
2024
2025 * i387-tdep.c (print_i387_value): Fix pointer glitch.
2026
00d4fce6
MK
20272001-07-07 Mark Kettenis <kettenis@gnu.org>
2028
2029 * lin-lwp.c (count_events_callback): Fix formatting. Turn check
2030 commented with "paranoia" into gdb_assert.
2031 (select_event_lwp_callback): Likewise.
2032 (cancel_breakpoints_callback): Bail out early if LP is the event
2033 LWP. Add comment about backup up breakpoints. Fix formatting and
2034 debug message.
2035 (select_event_lwp): Make solely repsonsible for switching event
2036 LWP. Fix formatting and remove bogus "ERROR" debug message.
2037 Don't backup breakpoints from here.
2038 (lin_lwp_wait): Don't touch LP->status, let select_event_lwp
2039 handle that. Only call select_event_lwp if we're not waiting for
2040 a specific LWP, i.e. when PID == -1. Backup breakpoints from here.
2041
7de45904
MS
20422001-07-06 Michael Snyder <msnyder@redhat.com>
2043
2044 * procfs.c (procfs_resume): Silence noisy warning.
2045
b1aeb4c5
MS
20462001-06-12 Michael Snyder <msnyder@redhat.com>
2047
2048 * lin-lwp.c: Prevent thread starvation by using a monte carlo
2049 method to choose which of several event threads to handle next.
2050
2051 (stop_wait_callback): Defer pushback of breakpoint events until
2052 later; add SIGTRAP events to the queue of unhandled events.
2053 Keep calling waitpid until SIGSTOP retrieved. If more than one
2054 non-SIGSTOP event is retrieved, push them back onto the process
2055 queue using kill.
2056 (count_events_callback, select_singlestep_lwp_callback,
2057 select_event_lwp_callback, cancel_breakpoints_callback,
2058 select_event_lwp): New functions. Implement monte carlo method
2059 for selecting which of several SIGTRAP threads to handle next.
2060 Push back the breakpoint event for all threads other than the
2061 selected one.
2062 (lin_lwp_wait): Call select_event_lwp to decide which of several
2063 sigtrapped lwps to handle next.
2064 (resume_callback): Disable code that attempts to handle
2065 step_resume breakpoints. Let core gdb handle this.
2066
ee3a7b7f
JB
20672001-07-06 Jim Blandy <jimb@redhat.com>
2068
2069 * gdbtypes.h (builtin_type_void_func_ptr): New builtin type.
2070 * gdbtypes.c (builtin_type_void_func_ptr): Define the variable.
2071 (build_gdbtypes): Initialize it.
2072 (_initialize_gdbtypes): Swap it.
2073
e135b889 20742001-07-04 Daniel Jacobowitz <drow@mvista.com>
ee3a7b7f 2075
e135b889
DJ
2076 * mips-tdep.c (mips32_op): Correct offset.
2077 (itype_op): Likewise.
2078 (itype_rs): Fix formatting.
2079 (itype_immediate): Fix formatting.
2080 (jtype_op): Correct offset.
2081 (jtype_target): Fix formatting.
2082 (rtype_op): Correct offset.
2083 (rtype_rs): Fix formatting.
2084 (rtype_rt): Likewise.
2085 (rtype_rd): Likewise.
2086 (rtype_shamt): Likewise.
2087 (rtype_funct): Likewise.
2088
2089 (mips32_next_pc): Fix formatting and comments. Recognize
2090 coprocessor 1 branches. Check the correct field for BLT family
2091 branches. Use itype_rt instead of itype_rs for the second register
2092 of a BNE or BNEL branch. Move (unreachable) default case.
2093
9dc5e2a9
AC
20942001-07-04 Andrew Cagney <ac131313@redhat.com>
2095
2096 * ui-out.h (struct ui_out_impl): Add field is_mi_like_p.
2097 (ui_out_is_mi_like_p): Declare.
2098 * ui-out.c (ui_out_is_mi_like_p): Define.
2099 (default_ui_out_impl): Initialize is_mi_like_p to zero.
2100 * cli-out.c (cli_ui_out_impl): Ditto.
2101 * breakpoint.c (print_it_typical): Use ui_out_is_mi_like_p.
2102 (watchpoint_check, print_one_breakpoint, mention): Ditto.
2103 * infrun.c (print_stop_reason, normal_stop): Ditto.
2104
9022177c
DJ
21052001-07-05 Daniel Jacobowitz <drow@mvista.com>
2106
2107 * mips-tdep.c (mips_software_single_step): New function.
2108 * config/mips/tm-mips.h: Add prototype for
2109 mips_software_single_step.
2110
2ac44c70
DJ
21112001-07-05 Daniel Jacobowitz <drow@mvista.com>
2112
2113 * ppc-linux-nat.c (supply_gregset): Use elf_greg_t instead
2114 of greg_t.
2115 (fill_gregset): Likewise.
2116
bdda63b0
AC
21172001-07-05 Andrew Cagney <ac131313@redhat.com>
2118
2119 * objfiles.c (open_mapped_file): Use lbasename instead of
2120 basename.
2121
af703f96
JB
21222001-07-05 Jim Blandy <jimb@redhat.com>
2123
7b570125
JB
2124 * d10v-tdep.c (d10v_frame_chain, d10v_frame_init_saved_regs,
2125 show_regs, d10v_read_pc, d10v_write_pc, d10v_read_sp,
2126 d10v_write_sp, d10v_write_fp, d10v_read_fp,
2127 d10v_push_return_address): Call the functions d10v_make_daddr,
2128 d10v_make_iaddr, d10v_convert_iaddr_to_raw, and
2129 d10v_convert_daddr_to_raw, not the global macros D10V_MAKE_DADDR,
2130 D10V_MAKE_IADDR, D10V_CONVERT_IADDR_TO_RAW, and
2131 D10V_CONVERT_DADDR_TO_RAW.
2132
af703f96
JB
2133 * dwarf2read (dwarf2_build_psymtabs_hard): Doc fix.
2134
e087d0d6
MK
21352001-07-05 Mark Kettenis <kettenis@gnu.org>
2136
2137 * config/i386/xm-go32.h (HOST_I386): Removed.
2138 * config/i386/xm-linux.h (HOST_I386): Removed.
2139
c96646d0
MK
21402001-07-04 Mark Kettenis <kettenis@gnu.org>
2141
2142 * i387-tdep.c (print_i387_value): Add extra space after final full
2143 stop in comment.
2144
af6c57ea
AC
21452001-07-04 Andrew Cagney <ac131313@redhat.com>
2146
2147 * TODO (5.1): Update. Doco changes committed.
2148
9da8e4f8
AC
21492001-06-29 Andrew Cagney <ac131313@redhat.com>
2150
2151 * config/arm/tm-arm.h: Include "floatformat.h".
2152
d0df8472
AC
21532001-06-29 Andrew Cagney <ac131313@redhat.com>
2154
2155 * i387-tdep.c: Include "gdb_assert.h".
2156 (print_i387_value): Use extract_floating to extract the FP value
2157 from a zero padded local buffer.
2158
291903b1
AC
21592001-06-28 Andrew Cagney <ac131313@redhat.com>
2160
2161 * TODO: Delete all thread items. The thread code was overhauled.
2162
80629b1b
EZ
21632001-07-04 Elena Zannoni <ezannoni@redhat.com>
2164
2ed3d0b5
EZ
2165 * memattr.c (create_mem_region): Move n to next memory region,
2166 to avoid infinite loop.
2167
80629b1b
EZ
2168 * memattr.h: Add copyright statement.
2169 * memattr.c: Ditto.
2170
2541c7cf
JB
21712001-07-04 Jim Blandy <jimb@redhat.com>
2172
0b010bcc
JB
2173 * dwarf2read.c (struct partial_die_info): New member: has_pc_info.
2174 (read_partial_die): Delete fourth argument; we return this info in
2175 the struct partial_die_info object itself now.
2176 (dwarf2_build_psymtabs_hard, scan_partial_symbols): Use the
2177 has_pc_info field of the partial die struct, rather than passing a
2178 variable by reference to read_partial_die.
2179
2541c7cf 2180 * dwarf2read.c (dwarf2_build_psymtabs_hard): Remove extraneous
9faef8a7 2181 code in loop condition.
2541c7cf 2182
5d12882f
MS
21832001-07-03 Michael Snyder <msnyder@redhat.com>
2184
2185 * thread_db (find_new_threads_callback, thread_db_thread_alive,
2186 attach_thread): Update comments.
2187
00783ba9
MS
21882001-06-29 Ken Whaley <ken@believe.com>
2189
2190 * thread-db.c (attach_thread): Check for TD_THR_ZOMBIE in addition
2191 to TD_THR_UNKNOWN when looking for defunct zombie threads.
2192 (thread_db_thread_alive): Ditto.
2193 (find_new_threads_callback): Ditto.
2194
f7856c8f 21952001-07-02 Daniel Jacobowitz <drow@mvista.com>
2740bf6c
DJ
2196
2197 * MAINTAINERS: Add myself to the write-after-approval list.
2198
21992001-07-02 Daniel Jacobowitz <drow@mvista.com>
2200
f7856c8f
DJ
2201 * solib-svr4.c: Include "elf/mips.h".
2202 (elf_locate_base): Make DT_MIPS_RLD_MAP block unconditional.
2203
f9aca02d
JB
22042001-07-02 Jim Blandy <jimb@redhat.com>
2205
2206 * dwarf2read.c (read_comp_unit, sibling_die, dump_die,
2207 dump_die_list, store_in_ref_table, follow_die_ref): Make these
2208 static; they're private functions.
2209
42a076f0
EZ
22102001-07-01 Mark Elbrecht <snowball@bigfoot.com>
2211
2212 * coffread.c (coff_symfile_read): Parse DWARF2 info if present.
2213
77467810
EZ
22142001-06-28 Elena Zannoni <ezannoni@redhat.com>
2215
2216 * TODO: Add import of readline 4.2 as a gdb 5.2 task.
2217
85593179
AC
22182001-06-29 Andrew Cagney <ac131313@redhat.com>
2219
2220 * config/djgpp/fnchange.lst: Sort.
2221
cde2d0fb
AC
22222001-06-28 Andrew Cagney <ac131313@redhat.com>
2223
2224 * config/djgpp/fnchange.lst: Rename mi0-var-block.exp,
2225 mi0-var-cmd.exp, mi0-var-child.exp and mi0-var-display.exp.
2226
37965979
AJ
22272001-06-29 Andreas Jaeger <aj@suse.de>
2228
2229 * MAINTAINERS: Add myself to the write-after-approval list.
2230
a1337894
AC
22312001-06-28 Andrew Cagney <ac131313@redhat.com>
2232
2233 * remote-array.c (SWAP_TARGET_AND_HOST): Delete macro.
2234 (get_hex_word): Don't use HOST_BYTE_ORDER.
2235 (array_fetch_registers): Add variable ``reg''. Use
2236 store_unsigned_integer to byte-swap the register. Delete unused
2237 local ``regs''.
2238
aa8aac68
AC
22392001-06-28 Andrew Cagney <ac131313@redhat.com>
2240
2241 * MAINTAINERS: Add Per Bothner to Java maintainers.
2242
a8016339
AC
22432001-06-28 Andrew Cagney <ac131313@redhat.com>
2244
2245 * rdi-share/unixcomm.c (SERIAL_PREFIX): Always provide a default.
2246 * rdi-share/hostchan.h (__unix): Hack, provide a default value.
2247 * rdi-share/host.h (__unix): Hack, define when __NetBSD__.
2248 * TODO: Update.
2249 * MAINTAINERS: Update. arm-elf builds.
2250
f5e1cf12
JB
22512001-06-28 Jim Blandy <jimb@redhat.com>
2252
bf93dfed
JB
2253 * d10v-tdep.c (d10v_ts2_dmap_register): Doc fix.
2254
2255 * d10v-tdep.c (d10v_frame_chain_valid, d10v_use_struct_convention,
f5e1cf12
JB
2256 d10v_breakpoint_from_pc, d10v_register_byte,
2257 d10v_register_raw_size, d10v_register_virtual_size,
2258 d10v_register_virtual_type, d10v_register_convertible,
2259 d10v_register_convert_to_virtual, d10v_register_convert_to_raw,
2260 d10v_make_daddr, d10v_make_iaddr, d10v_daddr_p, d10v_iaddr_p,
2261 d10v_convert_iaddr_to_raw, d10v_convert_daddr_to_raw,
2262 d10v_store_struct_return, d10v_store_return_value,
2263 d10v_extract_struct_value_address, d10v_frame_saved_pc,
2264 d10v_saved_pc_after_call, d10v_pop_frame, d10v_skip_prologue,
2265 d10v_frame_chain, d10v_frame_init_saved_regs,
2266 d10v_init_extra_frame_info, d10v_read_pc, d10v_write_pc,
2267 d10v_read_sp, d10v_write_sp, d10v_write_fp, d10v_read_fp,
2268 d10v_push_return_address, d10v_push_arguments,
2269 d10v_extract_return_value): Make these functions static.
2270
100a02e1
AC
22712001-06-28 Andrew Cagney <ac131313@redhat.com>
2272
2273 From Fernando Nasser:
2274 * infrun.c (handle_inferior_event): Handle "nexti" inside function
2275 prologues.
2276
80b34fab
MS
22772001-06-28 Michael Snyder <msnyder@redhat.com>
2278
2279 * infrun.c (handle_inferior_event): Replace prev_pc test in all
2280 calls to bpstat_stop_status (removed in 1999-09-24). This test
2281 helps distinguish stepping over a breakpoint trap from stepping
2282 thru a jump to the instruction after a breakpoint trap.
2283 (handle_inferior_event): Don't bother writing the PC if
2284 DECR_PC_AFTER_BREAK is zero (optimization).
2285 * breakpoint.c (bpstat_stop_status): Add comment explaining the
2286 purpose and usage of the "not_a_breakpoint" argument in computing
2287 the breakpoint address.
2288
1456ad8e
AC
22892001-06-28 Andrew Cagney <ac131313@redhat.com>
2290
2291 From 2000-12-03 Stephane Carrez <Stephane.Carrez@worldnet.fr>:
2292 * monitor.c (setmem_resp_delim_pattern): New regexp pattern.
2293 (setreg_resp_delim_pattern): Likewise.
2294 (setmem_resp_delim_fastmap): New buffer.
2295 (setreg_resp_delim_fastmap): Likewise.
2296 (monitor_open): Initialize above regexp if they are defined.
2297 (monitor_write_memory): Use regexp to check the result of write.
2298 (monitor_store_register): Likewise to check result of register set.
2299
399371f6
AC
23002001-06-28 Andrew Cagney <ac131313@redhat.com>
2301
2302 From 2000-06-14 John Marshall <john_w_marshall@palm.com>:
2303 * coff-solib.c: Include symfile.h and objfiles.h to make
2304 OBJF_SHARED visible.
2305
b0e2e90a
AC
23062001-06-28 Andrew Cagney <ac131313@redhat.com>
2307
2308 * configure.in (--enable-gdbmi): Enable by default.
2309 * configure: Regenerate.
2310 * TODO: Update.
2311 * NEWS: Update
2312
ad98fdaf
JB
23132001-06-28 Joel Brobecker <brobecker@act-europe.fr>
2314
2315 * solib-osf.c (osf_in_dynsym_resolve_code): Add a comment
2316 explaining the consequences of always returning zero. No code
2317 change.
2318
49dd83ba
AC
23192001-06-28 Andrew Cagney <ac131313@redhat.com>
2320
2321 From 2001-06-08 Daniel Jacobowitz <djacobowitz@mvista.com>:
2322 * defs.h (enum target_signal): Add TARGET_SIGNAL_REALTIME_65
2323 to TARGET_SIGNAL_REALTIME_127.
2324 * target.c (struct signals): Add SIG63 to SIG127.
2325 (target_signal_from_host): Handle up to 127 signals.
2326 (do_target_signal_to_host): Likewise.
2327
29372230
AC
23282001-06-27 Andrew Cagney <ac131313@redhat.com>
2329
2330 * remote-sds.c (sds_start_remote): Change type of ``c'' to int
2331 from possibly unsigned char.
2332
a196c81c
AC
23332001-06-27 Andrew Cagney <ac131313@redhat.com>
2334
2335 * ser-ocd.c: Delete file.
2336 * Makefile.in (ALLDEPFILES): Remove ser-ocd.c
2337 (ser-ocd.o): Delete target.
2338 * TODO: Update.
2339 * NEWS: Update.
2340
e7745bde
AC
23412001-06-27 Andrew Cagney <ac131313@redhat.com>
2342
2343 * MAINTAINERS (Write After Approval): Sort.
f4c100a7 2344 (Past Maintainers): Daniel Berlin stepped down as C++ maintainer.
e7745bde 2345
d7faa9e7
AC
23462001-06-26 Andrew Cagney <ac131313@redhat.com>
2347
2348 * breakpoint.c (breakpoint_1): Always output the breakpoint
2349 headings. Leave it to ui-out to decide which
2350
68c81b54
AC
23512001-06-25 Andrew Cagney <ac131313@redhat.com>
2352
2353 * stack.c (print_frame): For ui_out, output a list of arguments.
2354
834091c8
KB
23552001-06-25 Kevin Buettner <kevinb@redhat.com>
2356
2357 * MAINTAINERS (paper trail): Update.
2358
ef5cf84e
MS
23592001-06-25 Michael Snyder <msnyder@redhat.com>
2360
2361 * infrun.c: Eliminate the "thread_step_needed" state variable,
2362 and replace it with a relatively simple test in resume.
2363 (resume): Replace thread_step_needed logic with a test for
2364 stepping, breakpoint_here_p and breakpoints_inserted.
2365 Move CANNOT_STEP_BREAKPOINT logic to after thread_step logic.
2366 (proceed): Discard thread_step_needed logic.
2367 (wait_for_inferior, fetch_inferior_event, handle_inferior_event):
2368 Discard thread_step_needed logic.
2369
cb90e81a
FN
23702001-06-24 Fernando Nasser <fnasser@redhat.com>
2371
2372 * remote-rdi.c (arm_rdi_wait): Fix return type in prototype.
2373 * rdi-share/host.h: Add missing parenthesis in conditional.
2374
39812ceb
C
23752001-06-22 J.T. Conklin <jtc@redback.com>
2376
2377 * configure.in: include nlist.h when checking for member som_addr
2378 in struct so_map.
2379 * configure: regenerate.
2380
8d2139f3
KS
23812001-06-21 Keith Seitz <keiths@redhat.com>
2382
2383 * cli-out.c (cli_out_new): Initialize new structure member
2384 "suppress_output".
2385
b25959ec
AC
23862001-06-20 Andrew Cagney <ac131313@redhat.com>
2387
2388 * ui-out.h (ui_out_table_header): Add parameter ``col_name''.
2389 (table_header_ftype): Ditto.
2390 * cli-out.c (cli_table_header): Update.
2391 * ui-out.c (ui_out_table_header): Update.
2392 (uo_table_header): Update.
2393 (default_table_header): Update.
2394 (append_header_to_list): Update.
2395 (struct ui_out_header): Add field ``col_name''.
2396 (append_header_to_list): Use xstrdup. Initialize col_name.
2397 * breakpoint.c (breakpoint_1): Pass COL_NAME to
2398 ui_out_table_header.
2399
698384cd
AC
24002001-06-19 Andrew Cagney <ac131313@redhat.com>
2401
2402 * cli-out.c: Include "gdb_assert.h'.
2403 (struct ui_out_data): Add field ``suppress_output.
2404 (cli_table_begin): When NR_ROWS is zero, suppress_output.
2405 (cli_table_end): Clear suppress_output.
2406 (cli_table_body): Check suppress_output.
2407 (cli_table_header, cli_begin): Ditto.
2408 (cli_end, cli_field_int, cli_field_skip): Ditto.
2409 (cli_field_string, cli_field_fmt, cli_spaces): Ditto.
2410 (cli_text, cli_message, cli_wrap_hint): Ditto.
2411 * breakpoint.c (breakpoint_1): Close the ui_out table before
2412 printing the breakpoint not found message.
2413
d63f1d40
AC
24142001-06-18 Andrew Cagney <ac131313@redhat.com>
2415
2416 * ui-out.c (ui_out_table_begin): Add parameter ``nr_rows''.
2417 (default_table_begin): Ditto.
2418 (uo_table_begin): Ditto.
2419 * cli-out.c (cli_table_begin): Ditto.
2420 * ui-out.h (ui_out_table_begin): Update
2421 (table_begin_ftype): Update.
2422 * breakpoint.c (breakpoint_1): Pass nr_printable_breakpoints to
2423 ui_out_table_begin.
2424
7f3b0473
AC
24252001-06-16 Andrew Cagney <ac131313@redhat.com>
2426
2427 * breakpoint.c (breakpoint_1): Restructure. Compute the
2428 nr_printable_breakpoints. Move the header output to before the
2429 main print breakpoints loop.
2430 (user_settable_breakpoint): New function.
2431
b30bf9ee
AC
24322001-06-18 Andrew Cagney <ac131313@redhat.com>
2433
2434 * infrun.c, breakpoint.c: Use strncmp as the "mi" test. Allow,
2435 "mi", "mi0" and "mi1".
2436
83905903
AC
24372001-06-17 Andrew Cagney <ac131313@redhat.com>
2438
2439 * gdbarch.sh: Generate an error when conflicting macro
2440 definitions. Generate an error when both pure multi-arch and
2441 "tm.h".
2442 * gdbarch.h, gdbarch.c: Regenerate.
2443 * defs.h (GDB_MULTI_ARCH_TM): Rewrite definition.
2444
c2202abf
AC
24452001-06-17 Andrew Cagney <ac131313@redhat.com>
2446
2447 * config/sparc/tm-sun4sol2.h (GDB_MULTI_ARCH): Down grade to
2448 GDB_MULTI_ARCH_PARTIAL from two.
2449
0d70f41b
FN
24502001-06-17 Fernando Nasser <fnasser@redhat.com>
2451
2452 From 2001-06-15 Eirik Fuller <eirik@hackrat.com>
2453 * cli/cli-script.c (free_command_lines): Reset list pointer.
2454
7824d2f2
AC
24552001-06-16 Andrew Cagney <ac131313@redhat.com>
2456
2457 * arch-utils.c (init_frame_pc_default): New function
2458 * arch-utils.h (init_frame_pc_default): Declare.
2459 * gdbarch.sh (INIT_FRAME_PC): Default to init_frame_pc_default and
2460 not init_frame_pc_noop.
2461 * gdbarch.h, gdbarch.c: Re-generate.
2462 * blockframe.c (INIT_FRAME_PC): Delete macro definition.
2463 * mips-tdep.c (mips_gdbarch_init): Set init_frame_pc to
2464 init_frame_pc_noop.
2465
1622c8f7
AC
24662001-06-16 Andrew Cagney <ac131313@redhat.com>
2467
2468 * gdbarch.c: Regenerate. Out-of-sync with gdbarch.sh.
2469
01fb7433
AC
24702001-06-15 Andrew Cagney <ac131313@redhat.com>
2471
2472 * gdbarch.sh (CANNOT_FETCH_REGISTER): Multi-arch.
2473 (CANNOT_STORE_REGISTER): Ditto.
2474 * infptrace.c (CANNOT_FETCH_REGISTER): Delete definition.
2475 (CANNOT_STORE_REGISTER): Ditto.
2476 * regcache.c (CANNOT_STORE_REGISTER): Ditto.
2477 * lynx-nat.c (CANNOT_STORE_REGISTER): Ditto.
2478 * arch-utils.h (cannot_register_not): Define.
2479 * arch-utils.c (cannot_register_not): Declare.
2480
10312cc4
AC
24812001-06-15 Andrew Cagney <ac131313@redhat.com>
2482
2483 * gdbarch.sh: Clarify pre/post default
2484 (INIT_FRAME_PC_FIRST, INIT_FRAME_PC): Multiarch.
2485 * blockframe.c (get_prev_frame): Remove #ifdef from around
2486 INIT_FRAME_PC_FIRST call.
2487 * arch-utils.c (init_frame_pc_noop): Define.
2488 * arch-utils.h (init_frame_pc_noop): Declare.
2489 * config/mips/tm-mips.h (INIT_FRAME_PC_FIRST): Delete.
2490 (INIT_FRAME_PC, mips_init_frame_pc_first): Ditto.
2491 * mips-tdep.c (mips_init_frame_pc_first): Make static.
2492 (mips_gdbarch_init): Initialize init_frame_pc_first.
2493 (mips_dump_tdep): Update.
2494
dd80620e
MS
24952001-06-15 Michael Snyder <msnyder@redhat.com>
2496
2497 * infrun.c (context_switch): New function. Abstract the operation
2498 of saving and restoring infrun's state when switching threads.
2499 (handle_inferior_event): Normalize the handling of the 'thread hop'
2500 event (when the wrong thread hits a thread-specific breakpoint,
2501 and we need to solo-step that thread past the breakpoint).
2502 Call keep_going, instead of target_resume. Handle the subsequent
2503 singlestep-trap as a normal event instead of just resuming.
2504
875e1767
AC
25052001-06-15 Andrew Cagney <ac131313@redhat.com>
2506
2507 * arch-utils.c (core_addr_identity): New function. Rename
2508 default_convert_from_func_ptr_addr.
2509 * gdbarch.sh (CONVERT_FROM_FUNC_PTR_ADDR): Update.
2510 (ADDR_BITS_REMOVE): Define. Default to core_addr_identity.
2511 * defs.h (ADDR_BITS_REMOVE): Delete macro definition.
2512 * config/mips/tm-mips.h (ADDR_BITS_REMOVE): Delete definition.
2513 * mips-tdep.c (mips_addr_bits_remove): Make static.
2514 (mips_gdbarch_init): Initialize addr_bits_remove.
2515
4009c677
AC
25162001-06-15 Andrew Cagney <ac131313@redhat.com>
2517
2518 From 2001-02-26 D.J. Barrow <djbarrow@de.ibm.com>:
2519 * configure.tgt: Add S/390 31 & 64 bit target configuration.
2520 * configure.host: Ditto for host.
2521
d6dd581e
AC
25222001-06-15 Andrew Cagney <ac131313@redhat.com>
2523
2524 * gdbarch.sh (EXTRACT_STRUCT_VALUE_ADDRESS_P): Delete definition.
2525 (EXTRACT_STRUCT_VALUE_ADDRESS): Change to a function with
2526 predicate.
2527 * gdbarch.h, gdbarch.c: Regenerate.
2528 * values.c (value_being_returned): Change the reference to
2529 EXTRACT_STRUCT_VALUE_ADDRESS_P to a function call.
2530
09843d7f
JB
25312001-06-15 Joel Brobecker <brobecker@act-europe.fr>
2532
2533 * MAINTAINERS: Add Paul Hilfinger and Joel Brobecker to the
2534 Write After Approval list.
2535
dc8acb97
MS
25362001-06-14 Michael Snyder <msnyder@redhat.com>
2537
2538 * remote.c (show_remote_protocol_qSymbol_packet_cmd,
2539 set_remote_protocol_qSymbol_packet_cmd): New functions.
2540 (init_all_packet_configs, show_remote_cmd): Add qSymbol packet.
2541 (remote_check_symbols): New function. Implement qSymbol packet,
2542 allowing target to request symbol lookup service from gdb.
2543 (remote_open_1, remote_async_open_1): Call remote_check_symbols,
2544 allowing symbol lookup from exec_bfd on connection to target.
2545 (remote_new_objfile): New function. Catch new objfile notifications
2546 from shared library module, and call remote_check_symbols.
2547 (_initialize_remote): Hook remote_new_objfile into the shared
2548 library notification chain. Add "set remote symbol-lookup" command.
2549
578c1fe6
KS
25502001-06-14 Keith Seitz <keiths@redhat.com>
2551
2552 * tracepoint.c (trace_command): We now have tracepoint
2553 events. Get rid of those ugly hooks.
2554 (tracepoint_operation): Likewise.
2555 (trace_pass_command): Likewise.
2556
6c0d3f6a
MS
25572001-06-13 Michael Snyder <msnyder@redhat.com>
2558
2559 * gdbthread.h (struct thread_info): Add new fields:
2560 current_line, current_symtab, step_sp, for saved infrun state.
2561 * thread.c (save_infrun_state, load_infrun_state): Save and
2562 restore current_line, current_symtab, and step_sp.
2563 (add_thread): Rather than adding assignments to initialize
2564 the new fields, just use memset (tp, 0, sizeof (*tp).
2565 This way future new fields will not be overlooked.
2566 * infrun.c (handle_inferior_event): Save and restore save_sp,
2567 current_line, and current_symtab when switching threads.
2568
16075ace
EZ
25692001-06-13 Elena Zannoni <ezannoni@redhat.com>
2570
2571 * MAINTAINERS: Add Andrew Cagney as co-maintainer of
2572 testsuite/gdb.mi.
2573
31889e00
AC
25742001-06-11 Andrew Cagney <ac131313@redhat.com>
2575
2576 * symtab.c (lookup_symtab_1): Replace basename with lbasename.
2577 (lookup_partial_symtab, file_matches): Ditto.
2578 (make_source_files_completion_list): Ditto.
2579 (make_file_symbol_completion_list): Ditto. Make local char*
2580 variable ``tail'' constant.
2581 (make_source_files_completion_list): Ditto with ``base_name''.
2582 * source.c (open_source_file): Use lbasename. Make ``p'' const
2583 char *.
2584
4ac40b29
EZ
25852001-06-13 Eli Zaretskii <eliz@is.elta.co.il>
2586
2587 * config/i386/xm-go32.h (SLASH_P, ROOTED_P, SLASH_CHAR)
bfefb583 2588 (SLASH_STRING): Remove unused definitions.
4ac40b29
EZ
2589 * config/i386/xm-cygwin.h: Likewise.
2590
6b28c186
AC
25912001-06-12 Andrew Cagney <ac131313@redhat.com>
2592
2593 * ui-out.c (ui_out_list_begin): Add parameter ``id''.
2594 (make_cleanup_ui_out_list_begin_end): Ditto. Open the list.
2595 * ui-out.h: Update declarations.
2596
1f8cc6db
AC
2597Mon Jun 11 17:26:43 2001 Andrew Cagney <cagney@b1.cygnus.com>
2598
2599 * source.c (openp): Make parameters ``path'' and ``string''
2600 constant.
2601 (openp): Use alloca to safely duplicate ``string''. Make local
2602 variables ``p'' and ``p1'' constant. Delete char* casts.
2603 * defs.h: Update.
2604
2605 * symtab.c (lookup_symtab_1): Make parameter ``name'' constant.
2606 (lookup_symtab, lookup_partial_symtab): Ditto.
2607 * symtab.h (lookup_symtab, lookup_partial_symtab): Update.
2608
88379baf
AC
26092001-06-11 Andrew Cagney <ac131313@redhat.com>
2610
2611 * ui-out.h (ui_out_table_begin): Make char* parameters constant.
2612 (ui_out_table_header, ui_out_field_int): Ditto.
2613 (ui_out_field_core_addr, ui_out_field_string): Ditto.
2614 (ui_out_field_stream, ui_out_field_fmt): Ditto.
2615 (ui_out_field_skip, ui_out_text, ui_out_message): Ditto.
2616 * ui-out.c (ui_out_table_begin, ui_out_table_header): Update.
2617 (ui_out_field_core_addr, ui_out_field_stream): Update.
2618 (ui_out_field_string, ui_out_field_fmt): Update.
2619 (ui_out_text, ui_out_message): Update.
2620 (append_header_to_list): Make char* parameters constant.
2621 (uo_table_header, uo_table_begin): Ditto.
2622 (uo_field_int, uo_field_skip): Ditto.
2623 (uo_field_string, uo_field_fmt): Ditto.
2624 (uo_text, uo_message): Ditto.
2625
c94fdfd0
EZ
26262001-06-11 Eli Zaretskii <eliz@is.elta.co.il>
2627
2628 * completer.c (gdb_completer_loc_break_characters): New variable.
2629 (line_completion_function): If we are completing on locations,
2630 back up the start of word pointer past all characters which can
2631 appear in a location spec.
2632 (location_completer): New function.
2633
2634 * completer.h: Add prototype for location_completer.
2635
2636 * symtab.c (make_source_files_completion_list)
2637 (add_filename_to_list, not_interesting_fname): New functions.
2638 (filename_seen): New function, body extracted from
2639 output_source_filename.
2640 (output_source_filename): Call filename_seen to check if the file
2641 was already printed.
2642 (make_symbol_completion_list): If TEXT includes a
2643 double-quoted string, return an empty list, not NULL.
2644 (make_file_symbol_completion_list): New function, similar to
2645 make_symbol_completion_list but with an additional argument
2646 SRCFILE.
2647
2648 * symtab.h (make_file_symbol_completion_list)
2649 (make_source_files_completion_list): Add prototypes.
2650
2651 * breakpoint.c (_initialize_breakpoint): Make location_completer
2652 be the completion function for all commands which set breakpoints
2653 and watchpoints.
2654 (top-level): #include "completer.h".
2655
2656 * tracepoint.c (_initialize_tracepoint): Make location_completer
2657 be the completion function for the "trace" command.
2658 (top-level): #include "completer.h".
2659
2660 * printcmd.c (_initialize_printcmd): Make location_completer be
2661 the completion function for the "print", "inspect", "call", and
2662 "disassemble" commands.
2663 (top-level): #include "completer.h".
2664
2665 * infcmd.c (_initialize_infcmd): Make location_completer be the
2666 completion function for the "go", "jump", and "until" commands.
2667 (top-level): #include "completer.h".
2668
0b6a968e
CF
26692001-06-10 Christopher Faylor <cgf@redhat.com>
2670
2671 * gnu-regex.c: Eliminate obsolete check for _MSC_VER.
2672 * utils.c (notice_quit): Remove dummy function only used for _MSC_VER.
2673 * values.c (unpack_double): Remove obsolete check for _MSC_VER.
2674 * defs.h: Ditto.
2675 * m32r-rom.c: Ditto.
2676 * p-exp.y: Ditto.
2677 * ser-e7kpc.c: Ditto. Define WIN32_LEAN_AND_MEAN under _WIN32, for
2678 faster compilation.
2679 (get_ds_base): Remove _MSC_VER version of this function.
67bfdb89
CF
2680 * nindy-share/ttyflush.c: Ditto.
2681 * rdi-share/host.h: Ditto.
0b6a968e
CF
2682 * ser-go32.c (dos_readchar): Remove call to obsolete function.
2683 * remote-sim.c (gdb_os_poll_quit): Ditto.
2684 * remote-e7000.c (expect): Remove obsolete #if 0'ed code.
2685
2686 * main.c (captured_main): Eliminate special Cygwin checks.
2687 * ser-tcp.c: Remove unneeded __CYGWIN__ guard against system include.
2688
e2e11a41
AC
26892001-06-09 Andrew Cagney <ac131313@redhat.com>
2690
bf5efbab
AC
2691 * Makefile.in (gdbcmd_h): Add ui_out_h.
2692 (breakpoint.o, infcmd.o, main.o, printcmd.o, stack.o): Ditto.
2693 (thread.o, top.o): Ditto.
2694
e2e11a41
AC
2695 * ui-out.h (table_begin_ftype): Make string parameters constant.
2696 (table_header_ftype): Ditto.
2697 (field_int_ftype): Ditto.
2698 (field_skip_ftype): Ditto.
2699 (field_string_ftype): Ditto.
2700 (field_fmt_ftype): Ditto.
2701 (text_ftype): Ditto.
2702 (message_ftype): Ditto.
2703 * cli-out.c (cli_table_begin): Ditto.
2704 (cli_table_header): Ditto.
2705 (cli_field_int): Ditto.
2706 (cli_field_skip): Ditto.
2707 (cli_field_string): Ditto.
2708 (cli_field_fmt): Ditto.
2709 (cli_text): Ditto.
2710 (cli_message): Ditto.
2711 (out_field_fmt): Ditto.
2712 * ui-out.c (default_table_begin): Ditto.
2713 (default_table_header): Ditto.
2714 (default_field_int): Ditto.
2715 (default_field_skip): Ditto.
2716 (default_field_string): Ditto.
2717 (default_field_fmt): Ditto.
2718 (default_text): Ditto.
2719 (default_message): Ditto.
2720
2e663524
MS
27212001-06-08 Michael Snyder <msnyder@redhat.com>
2722
2723 * breakpoint.c (delete_breakpoint): Pass mark_inserted to
2724 remove_breakpoint, so that the subsequent test for
2725 bpt->inserted will succeed, and duplicates will be fixed up.
2726
bebd888e
PB
27272001-06-08 Per Bothner <per@bothner.com>
2728
2729 * dwarf2read.c (set_cu_language): Handle DW_LANG_Java.
2730
8f45b7fe
KS
27312001-06-07 Keith Seitz <keiths@redhat.com>
2732
2733 * tracepoint.c (tracepoint_opertation): Add ui event
2734 notifications.
2735 (trace_pass_command): Ditto.
2736
b76a2a57
AC
27372001-06-07 Andrew Cagney <ac131313@redhat.com>
2738
2739 * MAINTAINERS (Write After Approval): Note the entry criteria.
a4f1e24f 2740 (HP/PA): Jeff Law stepped down
b76a2a57 2741
72e74a21
JB
27422001-06-07 Jim Blandy <jimb@redhat.com>
2743
2744 * gdbarch.sh: Make sure that '[' doesn't interpret interesting
2745 variable values as operators.
2746
8c6ee715
KS
27472001-06-07 Keith Seitz <keiths@redhat.com>
2748
2749 * gdb-events.sh: Fix quote escaping which was obsoleted
2750 by last patch.
2751
9e791099
KS
27522001-06-07 Keith Seitz <keiths@redhat.com>
2753
2754 * gdb-events.sh: Make if statements and tests
2755 a little more portable.
2756 Don't use shell's echo command to put strings containing
2757 escaped characeters into a file -- different flavors of /bin/sh
2758 require differnt levels of escaping. Use cat <<EOF instead.
2759 Our internal field separator is a colon. Change all
2760 commands which assume it is a space.
2761
fce0e6e1
MK
27622001-06-06 Mark Kettenis <kettenis@gnu.org>
2763
2764 * lin-lwp.c (struct lwp_info): Add member `resumed'.
2765 (iterate_over_lwps): Make sure we can handle CALLBACK deleting the
2766 LWP it's called for.
2767 (lin_lwp_attach): Mark LWP as resumed to make sure the fake
2768 SIGSTOP is reported.
2769 (resume_clear_callback): New function.
2770 (resume_set_callback): New function.
2771 (lin_lwp_resume): Mark all LWP's that we're going to resume as
2772 resumed, and unmark all others.
2773 (status_callback): Only report a pending wait status if we pretend
2774 that LP has been resumed.
2775 (resumed_callback): New function.
2776 (lin_lwp_wait): Add assertions to check that LWP's are properly
2777 marked as resumed. Partially revert 2001-05-25 patch by Michael
2778 Snyder: do not resume all threads. Add comment explaining the
2779 problems associated with this bit of code.
2780
54403c59
KS
27812001-06-07 Keith Seitz <keiths@redhat.com>
2782
2783 * MAINTAINTERS: Syd Polk is stepping down from
2784 maintaining libgui. I am replacing him.
2785
1d06468c
EZ
27862001-06-07 Eli Zaretskii <elis@is.elta.co.il>
2787
2788 * config/mips/tm-irix6.h: New file.
2789
2790 * config/mips/irix6.mh: New file.
2791
2792 * config/mips/irix6.mt: New file.
2793
2794 * config/mips/xm-irix6.h: New file.
2795
2796 * config/mips/nm-irix6.h: New file.
2797
2798 * mips-tdep.c (mips_gdbarch_init) <MIPS_ABI_N32>: Set up the
2799 disassembler info in tm_print_insn_info as appropriate for the N32
2800 ABI. Force N32 ABI to be the default if the CPU is R8000 or
2801 R10000.
2802
2803 * configure.tgt (mips*-sgi-irix6*): Map to irix6.
2804
2805 * configure.host (mips*-sgi-irix6*): Ditto.
2806
3d499020
AC
28072001-06-07 Andrew Cagney <ac131313@redhat.com>
2808
2809 * gnu-v3-abi.c: Include "gdb_assert.h".
2810 (build_gdb_vtable_type): Replace abort() with gdb_assert().
2811
ceaa8edf
JB
28122001-06-06 Jim Blandy <jimb@redhat.com>
2813
c5f5341b
JB
2814 * cp-abi.h: Rearrange code to put documentation comments above the
2815 functions we export. The actual function table itself simply
2816 refers to those functions. Minor doc fixes.
2817
ceaa8edf
JB
2818 * gdbarch.sh: Changes to effect the following:
2819 * gdbarch.c (initialize_non_multiarch): New function.
2820 * gdbarch.h (initialize_non_multiarch): New declaration.
2821 * arch-utils.c (initialize_current_architecture): For
2822 non-multiarch configurations, call initialize_non_multiarch.
2823
0cd64fe2
AC
28242001-06-06 Andrew Cagney <ac131313@redhat.com>
2825
2826 * symfile.c (compare_psymbols): Replace PTR with void*. Delete
2827 declaration.
2828 (compare_symbols): Ditto.
2829
8849f47d
JL
28302001-06-06 Jonathan Larmour <jlarmour@redhat.com>
2831
2832 * arch-utils.c (generic_prepare_to_proceed): Allow for having
2833 stopped due to a Ctrl-C as well as breakpoints.
2834
2835 * hppa-tdep.c (hppa_prepare_to_proceed): Add FIXME as this may not
2836 support thread switches after Ctrl-C.
2837 * lin-lwp.c (lin_lwp_prepare_to_proceed): Ditto.
2838 * linux-thread.c (linuxthreads_prepare_to_proceed): Ditto.
2839 * m3-nat.c (mach3_prepare_to_proceed): Ditto.
2840
b3cc3077
JB
28412001-06-06 Jim Blandy <jimb@redhat.com>
2842
2843 * gdbarch.sh, gdbarch.c: Revert change of 2001-06-01; all
2844 per-architecture data should be registered at initialization time,
2845 before any gdbarch objects get used, so the generality is
2846 unnecessary.
2847
ba9fe036
KS
28482001-06-06 Keith Seitz <keiths@redhat.com>
2849
2850 * gdb-events.sh (function_list): Add tracepoint_create,
2851 tracepoint_delete, and tracepoint_modify events.
2852 * gdb-events.c: Regenerated.
2853 * gdb-events.h: Regenerated.
2854
e28f816a
KS
28552001-06-06 Keith Seitz <keiths@redhat.com>
2856
2857 * gdb-events.sh: Update copyrights.
2858 Change free to xfree.
2859 * gdb-events.c: Regenerated.
2860 * gdb-events.h: Regenerated.
2861
c3690141
EZ
28622001-06-06 Eli Zaretskii <eliz@is.elta.co.il>
2863
2864 * source.c (mod_path, openp): Use #ifdef HAVE_DOS_BASED_FILE_SYSTEM
2865 instead of #if HAVE_DOS_BASED_FILE_SYSTEM.
2866 * completer.c: Ditto.
2867 * cli/cli-cmds.c (cd_command): Ditto.
2868
37ba1196
EZ
28692001-06-04 Eli Zaretskii <eliz@is.elta.co.il>
2870
1012bd0e
EZ
2871 * mips-tdep.c (show_mipsfpu_command): Remove unused variable msg.
2872 (mips_set_processor_type_command): Remove unused variable j.
2873 (mips_breakpoint_from_pc): Declare breakpoint instruction
2874 sequences as unsigned char, to avoid compiler warnings.
2875
fe4e3eb8
EZ
2876 * source.c (mod_path, openp): Use HAVE_DOS_BASED_FILE_SYSTEM
2877 instead of system-specific define's like _WIN32 and __MSDOS__.
2878 Use IS_DIR_SEPARATOR and IS_ABSOLUTE_PATH instead of SLASH_P and
2879 ROOTED_P.
2880 (top-level): #include "filenames.h".
2881
2882 * solib.c (solib_open): Use IS_DIR_SEPARATOR and IS_ABSOLUTE_PATH
2883 instead of SLASH_CHAR, ROOTED_P and SLASH_P.
2884 (top-level): #include "filenames.h".
2885
2886 * defs.h (SLASH_P, SLASH_CHAR, ROOTED_P): Remove definitions.
2887 (SLASH_STRING): Define only for _WIN32.
2888
2889 * completer.c: Use HAVE_DOS_BASED_FILE_SYSTEM instead of
2890 __MSDOS_.
2891
2892 * cli/cli-cmds.c (cd_command): Use IS_DIR_SEPARATOR and
2893 IS_ABSOLUTE_PATH instead of SLASH_P and ROOTED_P. Replace
2894 system-specific ifdefs with HAVE_DOS_BASED_FILE_SYSTEM.
2895 (top-level): #include "filenames.h".
2896
37ba1196
EZ
2897 * go32-nat.c (go32_wait): Change the return value to ptid_t.
2898
2899 * config/djgpp/fnchange.lst: Add two new files in the
2900 gdb/testsuite/gdb.c++/ directory to the remapped names.
2901
2902 * config/djgpp/djconfig.sh (lt_cv_sys_max_cmd_len): Set to 12KB.
2903
3c875b6f
JB
29042001-06-01 Jim Blandy <jimb@redhat.com>
2905
2906 Expand the gdbarch per-architecture data vector as needed, rather
2907 than requiring that all per-architecture data be registered before
2908 the first gdbarch object is allocated.
2909 * gdbarch.sh: Changes to effect the following:
2910 * gdbarch.c (alloc_gdbarch_data, init_gdbarch_data): Delete
2911 declarations and definitions.
2912 (check_gdbarch_data): New function, and declaration.
2913 (gdbarch_alloc): Don't call alloc_gdbarch_data; leaving the fields
2914 zero is good enough.
2915 (free_gdbarch_data): Tolerate a null data pointer. Free only
2916 those data items gdbarch->data actually has allocated.
2917 (set_gdbarch_data, gdbarch_data): Call check_gdbarch_data.
2918 (gdbarch_update_p): No need to call init_gdbarch_data.
2919
98f96ba1
KB
29202001-06-01 Kevin Buettner <kevinb@redhat.com>
2921
2922 * ia64-tdep.c (is_float_or_hfa_type_recurse): Call check_typedef()
2923 on types that we wish to recurse on.
2924 (slot_alignment_is_next_even): New function.
2925 (ia64_push_arguments): Call slot_alignment_is_next_even() to
2926 examine the type in order to decide if it's necessary to skip
2927 an odd slot.
2928
c6ad9598
MS
29292001-06-01 Michael Snyder <msnyder@redhat.com>
2930
8601f500
MS
2931 * thread.c (delete_step_resume_breakpoint): New function.
2932 Maintain internal consistency of the thread list while deleting
2933 a step_resume_breakpoint.
2934 * gdbthread.h (delete_step_resume_breakpoint): Export.
2935 * breakpoint.c (bpstat_find_step_resume_breakpoint):
2936 Make thread-aware: don't return a step_resume_breakpoint
2937 for the wrong thread.
2938 * infrun.c (wait_for_inferior): Call delete_step_resume_breakpoint
2939 instead of delete_breakpoint_current_contents.
2940 (fetch_inferior_event): Ditto.
2941 (handle_inferior_event): Call delete_step_resume_breakpoint
2942 instead of delete_breakpoint.
c6ad9598
MS
2943 * infrun.c (handle_inferior_event): After singlestepping over a
2944 thread-specific breakpoint, use currently_stepping() to decide
2945 whether to step or continue.
2946
531017df
JB
29472001-06-01 Jim Blandy <jimb@redhat.com>
2948
b27b8843
JB
2949 * gnu-v3-abi.c (gnu_v3_abi_ops, vtable_type_gdbarch_data): Make
2950 these static --- there's no reason other files should use these.
2951
d0bbfec7
JB
2952 * partial-stab.h (case N_FUN: case 'f':, case N_FUN: case 'F':)
2953 Fix memory leak.
2954
531017df
JB
2955 * partial-stab.h: New complaint: function_outside_compilation_unit.
2956 (case N_FUN: case 'f':, case N_FUN: case 'F':): If pst is zero,
2957 complain, and don't try to set pst's start address.
2958
d469a809
KB
29592001-05-31 Kevin Buettner <kevinb@redhat.com>
2960
2961 * ia64-linux-tdep.c (IA64_LINUX_SIGCONTEXT_OFFSET): Revise to
2962 match the location at which the kernel is placing the sigcontext
2963 struct.
2964
58ab00f9
KB
2965 * ia64-tdep.c (max_skip_non_prologue_insns): New static global.
2966 (refine_prologue_limit): New function.
2967 (examine_prologue): Further limit number of instructions
2968 scanned by calling refine_prologue_limit(). Revise way in
2969 which the end of prologue address is computed for frameless
2970 functions.
2971
9fd7143a
CF
29722001-05-29 Christopher Faylor <cgf@redhat.com>
2973
2974 * partial-stab.h: Revert previous patch.
2975
34a7837a
CF
29762001-05-29 Christopher Faylor <cgf@redhat.com>
2977
2978 * partial-stab.h: Consistently guard against pst being NULL.
2979
ad53e288
AO
29802001-05-29 Alexandre Oliva <aoliva@redhat.com>
2981
2982 * symfile.c (compare_psymbols, compare_symbols): Declare using
2983 PTR, as in the definition.
09d011c5
AO
2984 * minsyms.c (compare_minimal_symbols): Likewise.
2985 * coffread.c (find_targ_sec): Likewise.
2986 * elfread.c (free_elfinfo, elf_locate_sections): Likewise.
2987 * mipsread.c (alphacoff_locate_sections): Likewise.
2988 * mdebugread.c (compare_blocks): Likewise.
ad53e288 2989
b41be06e
ND
29902001-05-25 Nick Duffek <nsd@redhat.com>
2991
2992 * solib.c (update_solib_list): Move target_resize_to_sections()
2993 into solib_map_sections() loop.
2994 (info_sharedlibrary_command): Try bfd_arch_bits_per_address() if
2995 bfd_get_arch_size() fails.
2996
a1cd1908
ND
29972001-05-25 Nick Duffek <nsd@redhat.com>
2998
2999 * Makefile.in (osfsolib.c, osfsolib.o): Rename to solib-osf.c and
3000 solib-osf.o.
3001 * config/alpha/alpha-osf1.mh (NATDEPFILES): Replace osfsolib.o
3002 with solib-osf.o and solib.o.
3003 * config/alpha/alpha-osf2.mh: Likewise.
3004 * config/alpha/alpha-osf3.mh: Likewise.
3005 * solib-osf.c: New file, renamed and largely rewritten from
3006 osfsolib.c.
3007
aa6c0017
MS
30082001-05-25 Michael Snyder <msnyder@redhat.com>
3009
c4365b19
MS
3010 * lin-lwp.c (lin_lwp_attach_lwp): Call stop_wait_callback,
3011 to consume the SIGSTOP generated by PTRACE_ATTACH.
3012 (stop_wait_callback): If a SIGTRAP or a SIGINT event is consumed,
3013 try again to get the SIGSTOP event.
3014 (lin_lwp_wait): Resume all threads when ignoring a signal.
3015 This will insure that newly attached threads get resumed.
5f885618 3016 * lin-lwp.c (stop_wait_callback): Discard redundant SIGINT events.
aa6c0017
MS
3017 * remote.c (remote_write_bytes): Update 'p' packet pointer.
3018
4b1fedf1
JB
30192001-05-25 Jim Blandy <jimb@redhat.com>
3020
3021 * gnu-v2-abi.c (gnuv2_virtual_fn_field): There's no need to clear
3022 VALUE_POINTED_TO_OFFSET here; if value_cast doesn't return a
3023 useful value, then we should fix that instead.
3024
fa3b51d2
ND
30252001-05-24 Nick Duffek <nsd@redhat.com>
3026
3027 * solist.h (struct so_list): Document the requirement that
3028 current_sos initialize some fields to 0.
3029
2747183e
MK
30302001-05-24 Mark Kettenis <kettenis@gnu.org>
3031
3032 * gnu-nat.c: Include <ctype.h>.
3033 (gnu_pid_to_exec_file): Add PID parameter.
3034 (set_sig_thread_cmd): Use PIDGET on return value from
3035 thread_id_to_pid.
3036 (proc_string): Use MERGEPID to construct argument to
3037 pid_to_thread_id.
3038
e4f237da
KB
30392001-05-22 Kevin Buettner <kevinb@redhat.com>
3040
3041 * breakpoint.c (breakpoint_address_is_meaningful): New function.
3042 (check_duplicates): Don't compare non-meaningful addresses.
3043
5fd913cc
MS
30442001-05-22 Michael Snyder <msnyder@redhat.com>
3045
3046 * thread-db.c: Allow for defunct zombie threads.
3047 (attach_thread): Do not attempt to attach zombie thread.
3048 (thread_db_thread_alive): Return false for defunct zombie thread.
3049 (find_new_threads_callback): Don't add defunct zombie thread to list.
3050
7ed49443
JB
30512001-05-22 Jim Blandy <jimb@redhat.com>
3052
3053 Add support for the GNU V3 C++ ABI.
3054 (Includes changes by Dan Berlin.)
3055
3056 * gnu-v3-abi.c: New file.
3057 * minsyms.c: #include "value.h" and "cp-abi.h".
3058 (install_minimal_symbols): Check the minimal symbol table for
3059 symbols that look mangled in the V3 style, and select the V3 ABI
3060 if we find any.
3061 * Makefile.in (SFILES): Add gnu-v3-abi.c.
3062 (COMMON_OBS): Add gnu-v3-abi.o.
3063 (gnu-v3-abi.o): Add new rule.
3064 (minsyms.o): Depend on $(cp_abi_h) and $(value_h).
3065
a44999d5
JB
30662001-05-21 Jim Blandy <jimb@redhat.com>
3067
8d65888a
JB
3068 * values.c (value_primitive_field): If we're extracting a base
3069 class, then the type of the result should be the base class being
3070 extracted, not the type of which it is a base class.
3071
a44999d5
JB
3072 * value.h (struct value): Doc fix, and rearrange members to place
3073 them near their explanations.
3074
6c3f2dbf
MS
30752001-05-21 Michael Snyder <msnyder@redhat.com>
3076
3077 * remote.c (remote_async_wait): Added new variable fieldsize.
3078 Add fieldsize (return value of hex2bin) to string pointer p.
3079
b4fa4770
SC
30802001-05-20 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3081
3082 * m68hc11-tdep.c (m68hc11_pop_frame): Fix stack pointer computation.
3083 (m68hc11_analyze_instruction): Update the pc correctly.
3084 (m68hc11_guess_from_prologue): Take into account the stack correction
3085 for the saving address.
3086
2b127877
DB
30872001-05-07 Daniel Berlin <dan@cgsoftware.com>
3088
3089 Changes by Jim Ingham:
3090
3091 * values.c (value_change_enclosing_type): New function. If the
3092 new enclosing type is larger than the old one, we need to allocate
3093 more space.
3094 * value.h: Add value_change_enclosing_type prototype.
3095 * valops.c (value_cast): Use it.
3096 (value_assign): Use it.
3097 (value_addr): Use it.
3098 (value_ind): Use it.
3099 (value_full_object): Use it.
3100
31012001-05-07 Daniel Berlin <dan@cgsoftware.com>
3102
984e377c
JB
3103 * values.c (value_static_field): Handle static fields that have a
3104 constant value.
2b127877 3105
736d0890
MS
31062001-05-17 Michael Snyder <msnyder@redhat.com>
3107
3108 * blockframe.c (create_new_frame): Zero all the fields via memset,
3109 rather than zeroing them one by one.
3110
a577b05c
EZ
31112001-05-17 Eli Zaretskii <eliz@is.elta.co.il>
3112
3113 * top.c (user_args): Remove unused declaration.
3114
b8adfa9f
MS
31152001-05-16 Michael Snyder <msnyder@redhat.com>
3116
3117 * infcmd.c (do_registers_info): Move alloca outside of loop.
3118
97345198
MS
31192001-05-15 John S Kallal <jskallal@home.com>
3120
3121 * remote.c (remote_wait): Added new variable fieldsize.
3122 Add fieldsize (return value of hex2bin) to string pointer p.
3123
aca21d9a
MK
31242001-05-15 Mark Kettenis <kettenis@gnu.org>
3125
3126 * sparc-tdep.c (sparc_gdbarch_init): Get the architecture from
3127 info.bfd_arch_info.
3128
b08cfdb6
KB
31292001-05-14 Kevin Buettner <kevinb@redhat.com>
3130
3131 * lin-lwp.c (detach_callback, lin_lwp_wait, lin_lwp_pid_to_str):
3132 Adjust format strings for printing LWPs to account for the fact
3133 that the type returned by GET_LWP() is now a long instead of an
3134 int.
3135
ca6724c1
KB
31362001-05-14 Kevin Buettner <kevinb@redhat.com>
3137
3138 * inferior.h (null_ptid, minus_one_ptid): New variable declarations.
3139 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
3140 (ptid_get_tid, ptid_equal): New function declarations.
3141 * infrun.c (null_ptid, minus_one_ptid): New variables.
3142 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
3143 (ptid_get_tid, ptid_equal): New functions.
3144 (_initialize_infrun): Initialize null_ptid, minus_one_ptid,
3145 inferior_ptid, and target_last_wait_ptid.
3146
3147 * defs.h (ptid_t): Redefine to be a struct rather than an int.
3148 (pid_to_ptid, null_ptid, ptid_equal): Delete these macros.
3149 (PIDGET, TIDGET, MERGEPID): Redefine these macros using the
3150 new ptid accessors and constructor.
3151
3152 * config/i386/tm-i386v42mp.h (PIDGET, TIDGET, LIDGET, MERGEPID,
3153 MKLID, MKTID, ISTID): Provide new definitions for these macros.
3154 The old macros are retained, but disabled via #if 0 in order
3155 to aid in future restructuring. See FIXME.
3156
3157 * arm-linux-nat.c (PIDGET, TIDGET): Delete macro definitions.
3158 * i386-linux-nat.c (PIDGET, TIDGET): Likewise.
3159 * infptrace.c (PIDGET, TIDGET): Likewise.
3160 * lin-lwp.c (PIDGET0, PIDGET, TIDGET, MERGEPID): Likewise.
3161 * lin-thread.c (PIDGET0, PIDGET, TIDGET, MERGEPID): Likewise.
3162 * proc-service.c (MERGEPID): Likewise.
3163 * procfs.c (PIDGET, TIDGET, MERGEPID): Likewise.
3164 * thread-db.c (PIDGET0, PIDGET, TIDGET, MERGEPID): Likewise.
3165 * config/nm-linux.h (PIDGET0, PIDGET, TIDGET, MERGEPID): Likewise.
3166 * config/i386/tm-i386sol2.h (PIDGET0, PIDGET, TIDGET, MERGEPID):
3167 Likewise.
3168 * config/sparc/tm-sun4sol2.h (PIDGET0, PIDGET, TIDGET, MERGEPID):
3169 Likewise.
3170
3171 * lin-lwp.c (THREAD_FLAG): Delete macro definition.
3172 (GET_LWP): Redefine in terms of ptid_get_lwp().
3173 (GET_PID): Redefine in terms of ptid_get_pid().
3174 (is_lwp): Redefine without the need for THREAD_FLAG.
3175 (BUILD_LWP): Redefine in terms of ptid_build().
3176 * lin-thread.c (THREAD_FLAG): Delete macro definition.
3177 (GET_LWP): Redefine in terms of ptid_get_lwp().
3178 (GET_PID): Redefine in terms of ptid_get_pid().
3179 (GET_THREAD): Redefine in terms of ptid_get_tid().
3180 (BUILD_THREAD, BUILD_LWP): Redefine in terms of ptid_build().
3181 (is_lwp, is_thread): Redefine.
3182 (linux_child_wait, check_all_signal_numbers)
3183 (linuxthreads_discard_global_state, attach_thread): Declare these
3184 functions to squash warnings about missing declarations.
3185 * sol-thread.c (THREAD_FLAG): Delete macro definition.
3186 (GET_PID): Redefine in terms of ptid_get_pid().
3187 (GET_LWP): Redefine in terms of ptid_get_lwp().
3188 (GET_THREAD): Redefine in terms of ptid_get_tid().
3189 (BUILD_THREAD, BUILD_LWP): Redefine in terms of ptid_build().
3190 (is_lwp, is_thread): Redefine.
3191 * thread-db.c (THREAD_FLAG): Delete macro definition.
3192 (GET_PID): Redefine in terms of ptid_get_pid().
3193 (GET_LWP): Redefine in terms of ptid_get_lwp().
3194 (GET_THREAD): Redefine in terms of ptid_get_tid().
3195 (BUILD_THREAD, BUILD_LWP): Redefine in terms of ptid_build().
3196 (is_lwp, is_thread): Redefine.
3197
3198 * corelow.c (add_to_thread_list, get_core_register_section):
3199 Eliminate hacks needed to prevent regressions when inferior_ptid
3200 wasn't wide enough to hold the core file thread id in the pid
3201 component of inferior_ptid.
3202
234fa6d1
MS
32032001-05-14 Michael Snyder <msnyder@redhat.com>
3204
3205 * remote.c (hex2bin): Make first argument const.
3206 Require explicit count, don't accept null-terminated str.
3207 (remote_resume, remote_async_resume): White space fix-up.
3208 (remote_write_bytes): Set nr_bytes to return value of bin2hex.
3209
caadab2c
MK
32102001-05-13 Mark Kettenis <kettenis@gnu.org>
3211
3212 * symtab.c (lookup_symtab_1): Use lbasename (NAME) instead of
3213 basename (NAME). The FreeBSD basename returns a pointer to a
3214 static buffer, even if it's simply returning a string identical to
3215 its argument.
3216 (lookup_partial_symtab): Likewise.
3217
2644f393
MS
32182001-05-14 Michael Snyder <msnyder@redhat.com>
3219
cb0ba49e 3220 * solib.c, solib.h: Add comment for function no_shared_libraries.
2644f393 3221
183a2f1a
KB
32222001-05-14 Kevin Buettner <kevinb@redhat.com>
3223
3224 * solib.h (no_shared_libraries): Make declaration match definition
3225 in solib.c.
3226
1dd1751e
AC
32272001-05-14 Andrew Cagney <ac131313@redhat.com>
3228
3229 * remote.c (remote_write_bytes): Set nr_bytes before returning it.
3230 * solib.h (no_shared_libraries): Declare.
3231
b732d07d
AC
32322001-05-12 Andrew Cagney <ac131313@redhat.com>
3233
3234 * gdbarch.sh (struct gdbarch_info): Delete field bfd_architecture.
3235 (gdbarch_update_p): Rewrite logic filling in INFO struct. Use
3236 user specified values when available.
3237 * rs6000-tdep.c (rs6000_gdbarch_init): Update. Get the
3238 architecture from info.bfd_arch_info.
3239 * gdbarch.c, gdbarch.h: Regenerate.
3240
67dd5ca6
FN
32412001-05-12 Fernando Nasser <fnasser@redhat.com>
3242
3243 * remote-e7000.c (e7000_open): Check for bad baud rate.
3244 * remote-st.c (st2000_open): Ditto.
3245
529acb48
JB
32462001-05-11 Jim Blandy <jimb@redhat.com>
3247
f8e42d24
JB
3248 * thread.c (do_captured_list_thread_ids): Use ui_out_tuple_begin
3249 and ui_out_tuple_end instead of ui_out_list_begin and
3250 ui_out_list_end.
3251
529acb48
JB
3252 * Makefile.in (gnu-v2-abi.o): Add $(demangle_h) to list of
3253 dependencies. Reorder dependencies to match #includes in file,
3254 for easier verification.
3255
666547aa
AC
3256Fri May 11 13:32:50 2001 Andrew Cagney <cagney@b1.cygnus.com>
3257
3258 * breakpoint.c: Replace ui_out_list_begin, ui_out_list_end and
3259 make_cleanup_ui_out_list_end with ui_out_tuple_begin,
3260 ui_out_tuple_end and make_cleanup_ui_out_tuple_begin_end.
3261 * cli/cli-setshow.c: Ditto.
3262 * printcmd.c: Ditto.
3263 * stack.c: Ditto.
3264
3265 * ui-out.h (enum ui_out_type): Fix tipo - tupple -> tuple.
3266 * ui-out.c (ui_out_list_begin): Delete ``lstid'' parameter.
3267 (ui_out_tuple_begin): New function.
3268 (ui_out_tuple_end): New function.
3269 (ui_out_tuple_begin_end): New function.
3270 (make_cleanup_ui_out_list_begin_end): Replace
3271 make_cleanup_ui_out_list_end function.
3272 * ui-out.h (ui_out_list_begin): Update declaration.
3273 (make_cleanup_ui_out_list_begin_end): Replace
3274 make_cleanup_ui_out_list_end declaration.
3275 (ui_out_tuple_begin, ui_out_tuple_end): Declare.
3276 (ui_out_tuple_begin_end): Declare.
3277
30c98d84
JB
32782001-05-11 Jim Blandy <jimb@redhat.com>
3279
3280 * gnu-v2-abi.c: Don't #include "gdb_regex.h". We don't use it.
3281
1faa59a8
AC
32822001-05-11 Andrew Cagney <ac131313@redhat.com>
3283
3284 From 2001-03-26 Rodney Brown <RodneyBrown@mynd.com>
3285 * config/pa/tm-hppa.h: Remove trigraph.
3286 * hp-symtab-read.c (hpread_type_translate): Provide return value.
3287 (hpread_read_struct_type): Remove trigraph. Add parameter in
3288 `warning'.
3289 (hpread_read_array_type): Provide return value.
3290 (hpread_type_lookup): Avoid ambiguous `else'. Provide return
3291 value.
3292 * hppa-tdep.c (initialize_hp_cxx_exception_support): Remove
3293 trigraph.
3294
99567b1b
JB
32952001-05-11 Jim Blandy <jimb@redhat.com>
3296
3297 * mips-tdep.c (mips_store_return_value,
3298 mips_extract_return_value): Pass arguments to
3299 return_value_location in the proper order.
3300
d3814881
AC
33012001-05-11 Andrew Cagney <ac131313@redhat.com>
3302
3303 * Makefile.in (VERSION): Delete. Moved to file ``version.in''.
3304 (version.c): Depends on file ``version.in''. Extract version
3305 number from ``version.in'' file.
3306 (clean mostlyclean): Update.
3307 * version.in: New file.
5d6640b1 3308 * NEWS: Update.
d3814881 3309
4d28f7a8
KB
33102001-05-11 Kevin Buettner <kevinb@redhat.com>
3311
3312 * breakpoint.c (set_raw_breakpoint): Add new parameter
3313 representing the breakpoint's type. Adjust all callers.
3314 (create_longjmp_breakpoint, create_temp_exception_breakpoint)
3315 (create_thread_event_breakpoint): Don't test for zero return
3316 value from set_raw_breakpoint(). It can never be zero.
3317 (create_exception_catchpoint, watch_command_1): Move logic
3318 which calculates the breakpoint type prior to the call to
3319 set_raw_breakpoint().
3320
08b4f080
FN
33212001-05-11 Fernando Nasser <fnasser@redhat.com>
3322
3323 * ser-unix.c (rate_to_code): Issue warning if baud rate is invalid.
3324 (hardwire_setbaudrate): Set errno to EINVAL and return with error
3325 if the conversion of the baud rate to code fails.
3326
127431f9
AC
33272001-05-10 Andrew Cagney <ac131313@redhat.com>
3328
3329 * ui-out.h (make_cleanup_ui_out_begin_end): Declare.
3330 * ui-out.c (struct ui_out_end_cleanup_data): Define.
3331 (do_cleanup_end): New function. Replace do_list_end.
3332 (make_cleanup_ui_out_end): New function.
3333 (make_cleanup_ui_out_begin_end): New function.
3334 (make_cleanup_ui_out_list_end): Use make_cleanup_ui_out_end.
3335
5dbc5e5f
EZ
33362001-05-10 Elena Zannoni <ezannoni@redhat.com>
3337
3338 * MAINTAINERS: Declare xcoffread.c open to all maintainers,
3339 and make Kevin Buettner (kevinb@redhat.com) the reference person.
3340
8e40d292
EZ
33412001-05-10 Elena Zannoni <ezannoni@redhat.com>
3342
3343 * proc-api.c (ioctl_with_trace): Fix uninitialized variable.
3344
5a703563
FN
33452001-05-10 Fernando Nasser <fnasser@redhat.com>
3346
3347 * MAINTAINERS: Add testsuite subdirectory co-maintainers.
3348
6311b07d
AC
3349Thu May 10 16:26:47 2001 Andrew Cagney <cagney@b1.cygnus.com>
3350
3351 * Makefile.in (mi-main.o): Compile with -Werror.
3352
30559e10
MS
33532001-05-10 Michael Snyder <msnyder@redhat.com>
3354
f78f6cf1
MS
3355 * remote.c (remote_open_1): Call no_shared_libraries, so that
3356 symbols for shared libraries can be reloaded per session.
3357 (remote_async_open_1): Ditto.
30559e10
MS
3358 * remote.c (bin2hex, hex2bin): New functions. Factor out these
3359 two conversions which are coded for repeatedly in this module.
3360 (remote_threads_extra_info, remote_wait, remote_async_wait,
3361 store_register_using_P, remote_store_registers, remote_write_bytes,
3362 remote_read_bytes, remote_rcmd): Use bin2hex and hex2bin instead
3363 of coding the conversions inline.
3364 (fromhex): Not exported, change from extern to static.
3365
0a1d9791
AC
33662001-05-10 Andrew Cagney <ac131313@redhat.com>
3367
3368 * arch-utils.c (initialize_current_architecture): Delete obsolete
3369 ``info architecture'' command.
3370 (info_architecture): Delete function.
3371
ee055267
AC
33722001-05-10 Andrew Cagney <ac131313@redhat.com>
3373
3374 * TODO (5.1, 5.2): Update.
3375
85886af6
AC
33762001-05-09 Andrew Cagney <ac131313@redhat.com>
3377
3378 * MAINTAINERS: Jim Ingham is no longer maintaining Arm related
3379 stuff.
30559e10 3380
ecb9ce7e
KS
33812001-05-10 Keith Seitz <keiths@cygnus.com>
3382
3383 * Makefile.in (SUBDIR_GDBTK_OBS): Add gdbtk-bp.o, gdbtk-register.o
3384 and gdbtk-stack.o.
3385 (SUBDIR_GDBTK_SRCS): Ditto for the sources.
3386 (gdbtk-bp.o): New rule.
3387 (gdbtk-register.o): New rule.
3388 (gdbtk-stack.o): New rule.
3389 (gdbtk-cmds.o): Update dependencies.
3390 (gdbtk.o): Ditto.
3391 (gdbtk-hooks.o): Ditto.
3392 (gdbtk-varobj.o): Ditto.
3393
f7635dd9
FN
33942001-05-10 Fernando Nasser <fnasser@redhat.com>
3395
3396 * varobj.c (c_number_of_children): Fix memory leak. Delete unwanted old
3397 variables, not just unregister them.
3398
0755e6c1
FN
33992001-05-10 Fernando Nasser <fnasser@redhat.com>
3400
3401 * varobj.c (c_number_of_children): Check for target type of void*,
3402 not the target type name. Allow dereferencing char*.
3403
d7db6da9
FN
34042001-05-10 Fernando Nasser <fnasser@redhat.com>
3405
3406 * symfile.c (symbol_file_add_main_1): New static function.
3407 Passes the flags arguments to symbol_file_add() and takes care
3408 of any necessary reinitializations.
3409 (symbol_file_command): Call symbol_file_add_main_1() instead of
3410 symbol_file_add().
3411 (symbol_file_add_main): Ditto.
3412
3d6e28e2
KB
34132001-05-09 Kevin Buettner <kevinb@redhat.com>
3414
3415 * lin-lwp.c (lin_lwp_pid_to_str): Revert inadvertent format
3416 string change in 2001-05-03 changes.
3417 (lin_lwp_wait): Revert GET_LWP coercion introduced in 2001-05-03
3418 changes.
3419
01263b57
KB
34202001-05-09 Kevin Buettner <kevinb@redhat.com>
3421
3422 * lin-lwp.c (lin_lwp_attach): Use PIDGET() to fetch the pid
3423 component from inferior_ptid.
3424 (lin_lwp_detach): Use pid_to_ptid() to convert from a pid to a
3425 ptid.
3426
74a151fa
EZ
34272001-05-09 Elena Zannoni <ezannoni@redhat.com>
3428
3429 * sh3-rom.c (_initialize_sh3_rom): Get rid of specific _WINDOWS
3430 conditional for help with connections through parallel ports,
3431 given that the actual code for downloading through a parallel port
3432 is not conditionalized.
3433
3434 * sh-tdep.c: Remove WIN32_WCE conditional. The wince sh target is
3435 unmaintaned, and probably on its way to obsolescence.
3436
d7a0d72c
MK
34372001-05-09 Mark Kettenis <kettenis@gnu.org>
3438
0d17c81d
MK
3439 * i386-tdep.c (i386_frame_saved_pc): New function.
3440 * config/i386/tm-i386.h (FRAME_SAVED_PC): Redefine in terms of
3441 i386_frame_saved_pc.
3442 (i386_frame_saved_pc): New prototype.
3443
d7a0d72c
MK
3444 * i386-tdep.c (i386_register_virtual_type): New function.
3445 (i386_register_convertible): New function.
3446 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE): Redefine in terms
3447 of i386_register_virtual_type.
3448 (REGISTER_CONVERTIBLE): Redefine in terms of
3449 i386_register_convertible.
3450 (i386_register_virtual_type, i386_register_convertible): New
3451 prototypes.
3452
ad8fe2ce
JB
34532001-05-08 Jim Blandy <jimb@redhat.com>
3454
33757489
JB
3455 * Makefile.in (mn10300-tdep.o): New rule.
3456
3457 * Makefile.in (gdb_string_h): Define. Use it throughout.
3458 Some rules were already using this, even though it isn't defined.
3459
c2c197ae
JB
3460 * Makefile.in (obstack_h, target_h): Define; these are already
3461 used elsewhere, but have been expanding to the empty string.
3462 (memattr_h): Define; needed by target_h.
3463
c064f384
JB
3464 * mn10300-tdep.c (mn10300_extract_return_value): Mark this as
3465 static. (This was accidentally omitted from the earlier patch.)
3466
23436510
JB
3467 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): New function.
3468 (mn10300_gdbarch_init): Register it as the architecture's
3469 dwarf2_reg_to_regnum method.
3470
ae83b20d
JB
3471 Correct and expand handling of `movm' instruction, and register
3472 saves in general.
3473 * config/mn10300/tm-mn10300.h (D0_REGNUM, A0_REGNUM, MDRQ_REGNUM,
3474 MCRH_REGNUM, MCRL_REGNUM, MCVF_REGNUM): New definitions.
3475 (enum movm_register_bits): New enum.
3476 * mn10300-tdep.c (set_movm_offsets): Use symbolic names for the
3477 bits, not hex literals. Handle the `other', `exreg0', and
3478 `exother' bits. Correct handling of `exreg1': it saves r4, r5,
3479 r6, and r7, not r2, r3, r4, and r5.
3480 (saved_regs_size): New function.
3481 (mn10300_frame_chain, mn10300_frame_saved_pc): Use it, instead
3482 of computing the same thing inline, incorrectly.
3483
bf4b70a5
JB
3484 * mn10300-tdep.c (mn10300_gdbarch_init): We do have a
3485 dummy_breakpoint_offset; it's zero.
3486
ee9f9641
JB
3487 * mn10300-tdep.c (mn10300_pop_frame): Split the mn10300-specific
3488 stuff out into mn10300_pop_frame_regular, and use
3489 generic_pop_current_frame. This lets us share code, and also
3490 makes this function's prototype match that expected by gdbarch.
3491 Make this function static.
3492 (mn10300_pop_frame_regular): New function.
3493 (mn10300_gdbarch_init): Register mn10300_pop_frame as the
3494 gdbarch's pop_frame method.
3495 * config/mn10300/tm-mn10300.h (POP_FRAME): Delete definition.
3496 (mn10300_pop_frame): Delete declaration.
3497
2ac51b36
JB
3498 * mn10300-tdep.c (mn10300_saved_pc_after_call,
3499 mn10300_extract_return_value,
3500 mn10300_extract_struct_value_address, mn10300_store_return_value,
3501 mn10300_use_struct_convention, mn10300_breakpoint_from_pc,
3502 mn10300_frame_chain, mn10300_skip_prologue,
3503 mn10300_push_arguments, mn10300_push_return_address,
3504 mn10300_store_struct_return, mn10300_frame_saved_pc,
3505 mn10300_init_extra_frame_info, mn10300_frame_init_saved_regs):
3506 Make these functions static; they should only be visible to the
3507 outside world as gdbarch methods.
3508
af4e72e9
JB
3509 * config/mn10300/tm-mn10300.h (mn10300_find_callers_reg): Delete
3510 unused declaration.
3511
584f96a8
JB
3512 * mn10300-tdep.c (mn10300_gdbarch_init): Put the gdbarch methods
3513 in some rational order.
3514
82d983b6
JB
3515 * mn10300-tdep.c (mn10300_gdbarch_init): Rather than using
3516 generic_pc_in_call_dummy, use pc_in_call_dummy_at_entry_point.
3517
ad8fe2ce
JB
3518 Use gdbarch for most target parameters for the MN10300, rather
3519 than the tm-*.h file.
3520 * config/mn10300/tm-mn10300.h (MAX_REGISTER_VIRTUAL_SIZE,
3521 REGISTER_BYTES, FP_REGNUM, BREAKPOINT_FROM_PC,
3522 FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK, INNER_THAN,
3523 SAVED_PC_AFTER_CALL, INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS,
3524 FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC,
3525 EXTRACT_RETURN_VALUE, EXTRACT_STRUCT_VALUE_ADDRESS,
3526 STORE_RETURN_VALUE, STORE_STRUCT_RETURN, SKIP_PROLOGUE,
3527 FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
3528 FRAME_NUM_ARGS, POP_FRAME, USE_GENERIC_DUMMY_FRAMES, CALL_DUMMY,
3529 CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
3530 CALL_DUMMY_LOCATION, FIX_CALL_DUMMY, CALL_DUMMY_ADDRESS,
3531 TARGET_READ_FP, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
3532 SAVE_DUMMY_FRAME_TOS, PUSH_ARGUMENTS, PC_IN_CALL_DUMMY,
3533 REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER):
3534 Delete definitions. We register gdbarch methods for these now.
3535 (struct frame_info, struct type, struct value): Delete forward
3536 declarations of these types; they're no longer necessary, since we
3537 don't have function declarations here any more.
3538 * mn10300-tdep.c: #include "arch-utils.h", to get declarations for
3539 some default gdbarch methods.
3540 (mn10300_store_struct_return): Return void, as expected by
3541 gdbarch.
3542 (mn10300_init_extra_frame_info): Take initial `fromleaf' argument,
3543 as expected by gdbarch.
3544 (mn10300_frame_init_saved_regs): Provide dummy definition for
3545 this, as required by gdbarch.
3546 (mn10300_gdbarch_init): Add mn10300_call_dummy_words, as expected
3547 by gdbarch. Register gdbarch methods or values for all the stuff
3548 removed from tm-10300.h, listed above.
3549
631ec795
AC
35502001-05-08 Andrew Cagney <ac131313@redhat.com>
3551
3552 * cli-out.c (cli_begin, cli_end): Replace cli_list_begin and
3553 cli_list_end.
3554 (cli_ui_out_impl): Update.
3555
3556 * ui-out.c (default_begin, default_end): Replace
3557 default_list_begin and default_list_end.
3558 (default_ui_out_impl): Update.
3559 (uo_begin, uo_end): Replace ou_list_begin and uo_list_end.
3560 (ui_out_begin, ui_out_end): Replace ui_out_list_begin and
3561 ui_out_list_end.
3562 (ui_out_list_begin, ui_out_list_end): New. Compatibility
3563 functions.
3564 (struct ui_out_level): Add field type.
3565 (push_level, pop_level): Update. Add type parameter.
3566
3567 * ui-out.h (enum ui_out_type): Declare.
3568 (ui_out_begin, ui_out_end): Declare.
3569 (ui_out_begin_ftype, ui_out_end_ftype): Replace list_begin_ftype
3570 and list_end_ftype.
3571 (struct ui_out_impl): Update.
3572
80f49b30
AC
35732001-05-07 Andrew Cagney <ac131313@redhat.com>
3574
3575 * ui-out.h (list_begin_ftype, list_end_ftype): Rename argument
3576 ``list_flag'' to ``depth''.
3577 * ui-out.c (default_list_begin, default_list_end): Update.
3578 (uo_list_begin, uo_list_end): Update.
3579 (MAX_UI_OUT_LEVELS): Define.
3580 (struct ui_out_level): Define.
3581 (top-level): Include "gdb_assert.h".
3582 (struct ui_out): Add fields ``level'' and ``levels''. Delete
3583 fields ``list_flag'' and ``field_count''.
3584 (ui_out_new): Update.
3585 (verify_field_proper_position): Update.
3586 (current_level, push_level, pop_level): New functions.
3587 (ui_out_list_begin): Use push_level.
3588 (ui_out_list_end): Use pop_level.
3589 (ui_out_field_int): Use current_level.
3590 (ui_out_field_skip): Ditto.
3591 (ui_out_field_fmt): Ditto.
3592
7aedc9f8
MS
35932001-05-08 Michael Snyder <msnyder@redhat.com>
3594
3595 * language.c (longest_local_hex_string_custom): Strlen test is
3596 inverted -- reverse the sense of the test.
3597
c6ec85d6
MK
35982001-05-08 Mark Kettenis <kettenis@gnu.org>
3599
3600 * config/i386/tm-i386v.h (struct frame_info, struct
3601 frame_saved_regs): Remove declarations.
3602 (i386_frame_num_args): Remove prototype.
3603
f938fa6a
AC
36042001-05-07 Andrew Cagney <ac131313@redhat.com>
3605
3606 * MAINTAINERS: I'm no longer actively maintaining the mn10300
3607 target.
3608
fb106663
AC
36092001-05-04 Andrew Cagney <ac131313@redhat.com>
3610
3611 * main.c (captured_main): Delete #ifndef _WIN32 conditional for
3612 WinGDB.
3613
ce696e05
KB
36142001-05-06 Kevin Buettner <kevinb@redhat.com>
3615
3616 * inferior.h (save_inferior_ptid): Declare.
3617 * infrun.c (save_inferior_ptid, restore_inferior_ptid): Define.
3618
3619 * hpux-thread.c (save_inferior_ptid, restore_inferior_ptid):
3620 Delete these functions.
3621 * lin-lwp.c (save_inferior_ptid, restore_inferior_ptid): Likewise.
3622 * lin-thread.c (save_inferior_ptid, restore_inferior_ptid): Likewise.
3623 * linux-thread.c (save_inferior_ptid, restore_inferior_ptid):
3624 Likewise.
3625 * proc-service.c (save_inferior_ptid, restore_inferior_ptid):
3626 Likewise.
3627 * sol-thread.c (save_inferior_ptid, restore_inferior_ptid): Likewise.
3628 * thread-db.c (save_inferior_ptid, restore_inferior_ptid): Likewise.
3629
3630 * somsolib.c (reset_inferior_ptid): Delete.
3631 (som_solib_remove_inferior_hook): Use save_inferior_ptid() to
3632 build the cleanup struct.
3633
3634 * breakpoint.c (reattach_breakpoints, detach_breakpoints): Use
3635 a cleanup to save/restore inferior_ptid.
3636
c194fbe1
MK
36372001-05-06 Mark Kettenis <kettenis@gnu.org>
3638
3639 Implement attach/detach for multi-threaded programs on Linux.
3640 * thread-db.c (keep_thread_db): Adjust comment.
3641 (deactivate_target): Removed.
3642 (thread_db_new_objfile): Don't call deactivate_target. Implement
3643 guts of deactivate_target inline instead.
3644 (attach_thread): Call ATTACH_LWP unconditionally if defined.
3645 (thread_db_attach): New function.
3646 (thread_db_detach): Don't call deactivate_target. Do necessary
3647 cleanup inline instead. Set inferior_ptid to LWP corresponding to
3648 the current user-level thread.
3649 (thread_db_kill): Set inferior_ptid to LWP corresponding to the
3650 current user-level thread.
3651 (thread_db_create_inferior): Deactivate target vector if
3652 KEEP_THREAD_DB is zero.
3653 (thread_db_mourn_inferior): Don't call deactivate_target. Do
3654 necessary cleanup inline instead.
3655 (init_thread_db_ops): Initialize to_attach field to
3656 thread_db_attach.
3657 * lin-lwp.c (lin_lwp_mourn_inferior): Remove prototype.
3658 (stop_wait_callback): Add prototype.
3659 (init_lwp_list): Add comment about when to re-initialize the LWP
3660 list.
3661 (lin_lwp_attach_lwp): Only call ptrace for cloned processes.
3662 Avoid adding publicates to the LWP list. Only mark an LWP as
3663 signalled if it doesn't correspond to a cloned process.
3664 (lin_lwp_attach): Add initial process to the LWP list. Make sure
3665 it's stopped and fake a SIGSTOP.
3666 (detach_callback): New function.
3667 (lin_lwp_detach): Implement.
3668 (lin_lwp_create_inferior): Don't re-initialize LWP list here.
3669 Call child_ops.to_create_inferior directly instead of via
3670 target_beneath local.
3671 (lin_lwp_mourn_inferior): Call child_ops.to_mourn_inferior
3672 directly instead of via target_beneath local.
3673
a7fdf62f
EZ
36742001-05-06 Eli Zaretskii <eliz@is.elta.co.il>
3675
3676 * symtab.c (lookup_symtab_1, lookup_partial_symtab): Use basename
3677 instead of non-portable search for `/'. Use FILENAME_CMP instead
3678 of STREQ, to account for case-insensitive filesystems.
3679 (top-level): #include "filenames.h".
3680
9f60f21b
JB
36812001-05-05 Jim Blandy <jimb@redhat.com>
3682
644a1fe1
JB
3683 * breakpoint.c (check_duplicates): Use the breakpoint's type, not
3684 its address, to decide whether it's a watchpoint or not. Zero
3685 is a valid code address.
3686 (update_breakpoints_after_exec): Admonishing comments.
3687 * breakpoint.h (struct breakpoint): Doc fixes.
3688
9f60f21b
JB
3689 * breakpoint.c (check_duplicates): Take a breakpoint object as an
3690 argument, rather than an address and section. All callers changed.
3691
39f77062
KB
36922001-05-03 Kevin Buettner <kevinb@redhat.com>
3693
3694 * defs.h (ptid_t): New typedef.
3695 (pid_to_ptid, null_ptid, minus_one_ptid, ptid_equal): New macros.
3696
3697 * a68v-nat.c, alphabsd-nat.c, arch-utils.c, arm-linux-nat.c,
3698 blockframe.c, breakpoint.c, breakpoint.h,
3699 config/i386/nm-i386sol2.h, config/i386/tm-i386sco5.h,
3700 config/ia64/nm-linux.h, config/m68k/nm-hp300bsd.h,
3701 config/mips/nm-irix4.h, config/mips/nm-irix5.h,
3702 config/pa/nm-hppah.h, config/pa/tm-hppa.h,
3703 config/rs6000/nm-rs6000.h, config/sparc/nm-sun4sol2.h,
3704 corelow.c, cxux-nat.c, d10v-tdep.c, dink32-rom.c,
3705 dve3900-rom.c, fork-child.c, frame.c, gnu-nat.c, go32-nat.c,
3706 hp300ux-nat.c, hppa-tdep.c, hppab-nat.c, hppah-nat.c,
3707 hpux-thread.c, i386-linux-nat.c, i386aix-nat.c, i386b-nat.c,
3708 i386bsd-nat.c, i386gnu-nat.c, i386mach-nat.c, i386nbsd-nat.c,
3709 infcmd.c, inferior.h, inflow.c, infptrace.c, infrun.c,
3710 inftarg.c, infttrace.c, lin-lwp.c, lin-thread.c,
3711 linux-thread.c, lynx-nat.c, m3-nat.c, m32r-rom.c,
3712 m68knbsd-nat.c, m88k-nat.c, mac-nat.c, mips-nat.c,
3713 mon960-rom.c, monitor.c, ns32knbsd-nat.c, ocd.c, ppc-bdm.c,
3714 ppcnbsd-nat.c, proc-service.c, procfs.c, ptx4-nat.c,
3715 regcache.c, remote-adapt.c, remote-array.c, remote-bug.c,
3716 remote-e7000.c, remote-es.c, remote-mips.c, remote-mm.c,
3717 remote-nindy.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
3718 remote-sds.c, remote-sim.c, remote-st.c, remote-udi.c,
3719 remote-vx.c, remote.c, rs6000-nat.c, sol-thread.c,
3720 solib-aix5.c, solib-svr4.c, somsolib.c, sparc-nat.c,
3721 standalone.c, sun3-nat.c, sun386-nat.c, symm-nat.c, target.c,
3722 target.h, thread-db.c, thread.c, top.c, ultra3-nat.c,
3723 uw-thread.c, v850ice.c, win32-nat.c, wince.c, xcoffsolib.c
3724 (inferior_pid): Rename to inferior_ptid everywhere - even in
3725 comments and obsolete ports. In cases where this variable
3726 really is supposed to be used as a process id, use PIDGET() to
3727 extract the process id component from inferior_ptid. The
3728 other cases, either involving other variables whose types had
3729 to be changed or functions whose signatures had to changed
3730 are listed separately below.
3731
3732 * arm-linux-nat.c (get_thread_id): Change type of argument
3733 representing a combined process/thread id from ``int'' to
3734 ``ptid_t''. Also change parameter name to ptid.
3735 * breakpoint.h, breakpoint.c (breakpoint_thread_match): Likewise.
3736 * corelow.c (core_file_thread_alive): Likewise.
3737 * d10v-tdep.c (d10v_read_pc, d10v_write_pc): Likewise.
3738 * defs.h (*target_wait_hook): Likewise.
3739 * gdbthread.h (thread_info, delete_thread, pid_to_thread_id)
3740 (find_thread_pid, save_infrun_state, load_infrun_state): Likewise.
3741 * gnu-nat.c (gnu_thread_alive, gnu_pid_to_str, gnu_wait)
3742 (gnu_resume): Likewise.
3743 * go32-nat.c (go32_wait, go32_resume): Likewise.
3744 * h8500-tdep.c (h8500_read_pc, h8500_write_pc): Likewise.
3745 * hppa-tdep.c (target_read_pc, target_write_pc): Likewise.
3746 * hppah-nat.c (child_pid_to_str, hppa_tid_to_str,
3747 (hppa_pid_or_tid_to_str, child_post_startup_inferior)
3748 (child_thread_alive): Likewise.
3749 * hpux-thread.c (hpux_thread_notice_signals, hpux_thread_alive)
3750 (hpux_pid_to_str, hpux_thread_wait, hpux_thread_resume): Likewise.
3751 * i386-linux-nat.c (child_resume): Likewise.
3752 * ia64-linux-nat.c (enable_watchpoints_in_psr, fetch_debug_register)
3753 (store_debug_register, fetch_debug_register_pair)
3754 (store_debug_register_pair, ia64_linux_insert_watchpoint)
3755 (ia64_linux_remove_watchpoint, ia64_linux_stopped_by_watchpoint):
3756 Likewise.
3757 * ia64-tdep.c (ia64_read_pc, ia64_write_pc): Likewise.
3758 * inferior.h (read_pc_pid, generic_target_read_pc, write_pc_pid)
3759 (generic_target_write_pc, ptrace_wait, child_resume)
3760 (get_last_target_status): Likewise.
3761 * infptrace.c (ptrace_wait, child_resume): Likewise.
3762 * inftarg.c (child_wait, child_post_wait, child_thread_live)
3763 (child_pid_to_str): Likewise.
3764 * infttrace.c (ptrace_wait, child_thread_alive, child_resume)
3765 (hppa_pid_or_tid_to_str, child_post_startup_inferior): Likewise.
3766 * lin-lwp.c (add_lwp, delete_lwp, find_lwp_pid, lin_lwp_attach_lwp)
3767 (lin_lwp_resume, lin_lwp_wait, lin_lwp_thread_alive)
3768 (lin_lwp_pid_to_str): Likewise.
3769 * lin-thread.c (thread_db_alive, thread_db_pid_to_str)
3770 (thread_db_resume, thread_db_wait): Likewise.
3771 * linux-thread.c (linuxthreads_thread_alive, linuxthreads_pid_to_str)
3772 (linuxthreads_resume, linuxthreads_wait): Likewise.
3773 * lynx-nat.c (child_wait, child_thread_alive, child_resume)
3774 (child_pid_to_str): Likewise.
3775 * m3-nat.c (mach_really_wait, m3_resume): Likewise.
3776 * mac-nat.c (child_wait, child_resume): Likewise.
3777 * mips-tdep.c (mips_read_pc): Likewise.
3778 * monitor.c (monitor_wait, monitor_resume): Likewise.
3779 * ocd.c, ocd.h (ocd_thread_alive, ocd_resume): Likewise.
3780 * ppc-bdm.c (bdm_ppc_wait): Likewise.
3781 * procfs.c (do_attach, procfs_wait, procfs_resume)
3782 (procfs_notice_signals, procfs_thread_alive, procfs_pid_to_str)
3783 (procfs_set_watchpoint, procfs_stopped_by_watchpoint)
3784 (procfs_find_LDT_entry): Likewise.
3785 * regcache.c (read_register_pid, read_signed_register_pid)
3786 (write_register_pid, generic_target_read_pc, read_pc_pid)
3787 (generic_target_write_pc, write_pc_pid): Likewise.
3788 * regcache.h (read_register_pid, read_signed_register_pid)
3789 (write_register_pid): Likewise.
3790 * remote-adapt.c (adapt_wait, adapt_resume): Likewise.
3791 * remote-array.c (array_wait, array_resume): Likewise.
3792 * remote-bug.c (bug_wait, bug_resume): Likewise.
3793 * remote-e7000.c (e7000_wait, e7000_resume): Likewise.
3794 * remote-eb.c (eb_wait, eb_resume): Likewise.
3795 * remote-es.c (es1800_wait, es1800_resume): Likewise.
3796 * remote-mips.c (mips_wait, mips_resume): Likewise.
3797 * remote-mm.c (mm_wait, mm_resume): Likewise.
3798 * remote-nindy.c (nindy_wait, nindy_resume): Likewise.
3799 * remote-os9k.c (rombug_wait, rombug_resume): Likewise.
3800 * remote-rdi.c (arm_rdi_wait, arm_rdi_resume): Likewise.
3801 * remote-rdp.c (remote_rdp_resume, remote_rdp_wait): Likewise.
3802 * remote-sds.c (sds_wait, sds_resume): Likewise.
3803 * remote-sim.c (gdbsim_wait, gdbsim_resume): Likewise.
3804 * remote-st.c (st2000_wait, st2000_resume): Likewise.
3805 * remote-udi.c (udi_wait, udi_resume): Likewise.
3806 * remote-vx.c (vx_wait, vx_resume): Likewise.
3807 * remote.c (remote_current_thread, remote_resume, remote_wait)
3808 (remote_async_resume, remote_async_wait, remote_cisco_wait)
3809 (remote_thread_alive): Likewise.
3810 * sol-thread.c (thread_to_lwp, lwp_to_thread, sol_thread_resume)
3811 (sol_thread_wait, sol_thread_notice_signals, sol_thread_alive)
3812 (solaris_pid_to_str): Likewise.
3813 * symm-nat.c (child_wait, child_resume): Likewise.
3814 * target.c (debug_to_resume, debug_to_wait, debug_to_post_wait)
3815 (debug_to_notice_signals, debug_to_thread_alive)
3816 (normal_target_post_startup_inferior, normal_pid_to_str)
3817 (debug_to_post_startup_inferior): Likewise.
3818 * target.h (to_resume, to_wait, to_post_wait)
3819 (to_post_startup_inferior, to_notice_signals, to_thread_alive)
3820 (to_pid_to_str [all in struct target_ops]): Likewise.
3821 (child_post_wait, child_thread_alive, normal_pid_to_str): Likewise.
3822 * thread-db.c (thread_from_lwp, lwp_from_thread, thread_db_wait)
3823 (attach_thread, detach_thread, thread_db_resume, check_event)
3824 (thread_db_post_startup_inferior, thread_db_thread_alive)
3825 (thread_db_pid_to_str): Likewise.
3826 * thread.c (add_thread, delete_thread, find_thread_pid)
3827 (pid_to_thread_id, in_thread_list, load_infrun_state)
3828 (save_infrun_state, switch_to_thread, restore_current_thread)
3829 (make_cleanup_restore_current_thread): Likewise.
3830 * top.c (target_wait_hook): Likewise.
3831 * uw-thread.c (dbgpid, thr_to_lwp, lwp_to_thr, add_thread_uw)
3832 (uw_thread_resume, libtrhead_stub, uw_thread_wait, uw_thread_alive)
3833 (uw_thread_pid_to_str): Likewise.
3834 * v850ice.c (v850ice_wait, v850ice_resume): Likewise.
3835 * win32-nat.c (child_wait, child_resume, win32_child_thread_alive)
3836 (cywin_pid_to_str): Likewise.
3837 * wince.c (child_wait, child_resume, win32_child_thread_alive):
3838 Likewise.
3839 * config/nm-linux.h (linuxthreads_pid_to_str): Likewise.
3840 * config/nm-lynx.h (child_wait, lynx_pid_to_str): Likewise.
3841 * config/alpha/nm-linux.h (lin_lwp_attach_lwp): Likewise.
3842 * config/arm/nm-linux.h (lin_lwp_attach_lwp): Likewise.
3843 * config/h8500/tm-h8500.h (h8500_read_pc, h8500_write_pc): Likewise.
3844 * config/i386/nm-i386sol2.h (procfs_stopped_by_watchpoint)
3845 (procfs_set_watchpoint): Likewise.
3846 * config/i386/nm-linux.h (lin_lwp_attach_lwp): Likewise.
3847 * config/i386/nm-ptx4.h (child_wait): Likewise.
3848 * config/i386/nm-symmetry.h (child_wait): Likewise.
3849 * config/i386/tm-cygwin.h (cygwin_pid_to_str): Likewise.
3850 * config/ia64/nm-linux.h (ia64_linux_stopped_by_watchpoint)
3851 (ia64_linux_insert_watchpoint, ia64_linux_remove_watchpoint)
3852 (lin_lwp_attach_lwp): Likewise.
3853 * config/mips/nm-irix4.h, config/mips/nm-irix5.h
3854 (procfs_stopped_by_watchpoint, procfs_set_watchpoint): Likewise.
3855 * config/pa/nm-hppah.h (child_pid_to_str, hppa_tid_to_str)
3856 (hppa_pid_or_tid_to_str): Likewise.
3857 * config/pa/tm-hppa.h (target_read_pc, target_write_pc): Likewise.
3858 * config/powerpc/nm-linux.h (lin_lwp_attach_lwp): Likewise.
3859 * config/sparc/nm-sun4sol2.h (procfs_stopped_by_watchpoint)
3860 (procfs_set_watchpoint): Likewise.
3861
3862 * gdbthread.h (thread_id_to_pid): Change return type which
3863 represents a combined process/thread id from ``int'' to
3864 ``ptid_t''.
3865 * gnu-nat.c (gnu_wait): Likewise.
3866 * go32-nat.c (go32_wait): Likewise.
3867 * hpux-thread.c (hpux_thread_wait): Likewise.
3868 * inferior.h (procfs_first_available): Likewise.
3869 * inftarg.c (child_wait): Likewise.
3870 * infttrace.c (ptrace_wait): Likewise.
3871 * lin-lwp.c (lin_lwp_wait): Likewise.
3872 * lin-thread.c (thread_db_wait): Likewise.
3873 * linux-thread.c (linuxthreads_wait): Likewise.
3874 * lynx-nat.c (child_wait): Likewise.
3875 * m3-nat.c (mach_really_wait): Likewise.
3876 * mac-nat.c (child_wait): Likewise.
3877 * monitor.c (monitor_wait): Likewise.
3878 * ppc-bdm.c (bdm_ppc_wait): Likewise.
3879 * procfs.c (do_attach, procfs_wait, procfs_first_available): Likewise.
3880 * remote-adapt.c (adapt_wait): Likewise.
3881 * remote-array.c (array_wait): Likewise.
3882 * remote-bug.c (bug_wait): Likewise.
3883 * remote-e7000.c (e7000_wait): Likewise.
3884 * remote-eb.c (eb_wait): Likewise.
3885 * remote-es.c (es1800_wait): Likewise.
3886 * remote-mips.c (mips_wait): Likewise.
3887 * remote-mm.c (mm_wait): Likewise.
3888 * remote-nindy.c (nindy_wait): Likewise.
3889 * remote-os9k (rombug_wait): Likewise.
3890 * remote-rdi.c (arm_rdi_wait): Likewise.
3891 * remote-rdp.c (remote_rdp_wait): Likewise.
3892 * remote-sds.c (sds_wait): Likewise.
3893 * remote-sim.c (gdbsim_wait): Likewise.
3894 * remote-st.c (st2000_wait): Likewise.
3895 * remote-udi.c (udi_wait): Likewise.
3896 * remote-vx.c (vx_wait): Likewise.
3897 * remote.c (remote_wait, remote_async_wait, remote_current_thread)
3898 (remote_cisco_wait): Likewise.
3899 * sol-thread.c (thread_to_lwp, lwp_to_thread, sol_thread_wait):
3900 Likewise.
3901 * symm-nat.c (child_wait): Likewise.
3902 * target.c (debug_to_wait): Likewise.
3903 * target.h (to_wait [in struct target_ops]): Likewise.
3904 * thread.c (thread_id_to_pid): Likewise.
3905 * thread-db.c (thread_from_lwp, lwp_from_thread, thread_db_wait):
3906 Likewise.
3907 * top.c (*target_wait_hook): Likewise.
3908 * uw-thread.c (lwp_to_thr, uw_thread_wait): Likewise.
3909 * v850ice.c (v850ice_wait): Likewise.
3910 * win32-nat.c (child_wait): Likewise.
3911 * wince.c (child_wait): Likewise.
3912 * config/nm-lynx.h (child_wait): Likewise.
3913 * config/i386/nm-ptx4.h (child_wait): Likewise.
3914 * config/i386/nm-symmetry.h (child_wait): Likewise.
3915
3916 * arch-utils.c (generic_prepare_to_proceed): Rename wait_pid
3917 to wait_ptid and change its type from ``int'' to ``ptid_t''.
3918 * breakpoint.c (reattach_breakpoints, detach_breakpoints): Likewise,
3919 but rename saved_inferior_pid to saved_inferior_ptid.
3920 * d10v-tdep.c (d10v_read_pc, d10_write_pc): Likewise, but rename
3921 save_pid to save_ptid.
3922 * gdbthread.h (struct thread_info): Likewise, but rename pid to ptid.
3923 * hppah-nat.c (child_pid_to_exec): Likewise, but rename
3924 saved_inferior_pid to saved_inferior_ptid.
3925 * hpux-thread.c (main_ptid): Likewise, but rename from main_pid.
3926 * infrun.c (previous_inferior_pid [static global]): Likewise,
3927 but rename to previous_inferior_ptid.
3928 (resume): Likewise, but rename resume_pid to resume_ptid.
3929 (struct execution_control_state): Likewise, but rename
3930 pid to ptid, saved_inferior_pid to saved_inferior_ptid,
3931 and waiton_pid to waiton_ptid.
3932 (target_last_wait_pid): Likewise, but rename to
3933 target_last_wait_ptid.
3934 * infttrace.c (saved_real_pid): Likewise, but rename to
3935 saved_real_ptid.
3936 (child_pid_to_exec_file): Likewise, but rename saved_inferior_pid
3937 to saved_inferior_ptid.
3938 * lin-lwp.c (struct lwp_info): Likewise, but rename pid to ptid.
3939 (trap_ptid): Likewise, but renamed from trap_pid.
3940 * lin-thread.c (handle_new_thread): Likewise, but rename gdb_pid
3941 to gdb_ptid.
3942 * linux-thread.c (detach_thread): Likewise, but rename pid to ptid.
3943 (thread_db_wait): Likewise, but rename ret_pid to retptid.
3944 * procfs.c (procfs_wait): Likewise, for retval whose name
3945 doesn't change. Also, ``temp'' becomes two separate variables,
3946 one named temp_tid (an int) and the other temp_ptid.
3947 (procfs_notice_thread): Likewise (type change) for gdb_threadid
3948 whose name does not change.
3949 * regcache.c (registers_ptid): Likewise, but renamed from
3950 registers_pid.
3951 (read_register_pid, read_signed_register_pid, write_register_pid):
3952 Likewise, but rename save_pid to save_ptid.
3953 (read_pc_pid, write_pc_pid): Likewise, but rename saved_inferior_pid
3954 to saved_inferior_ptid.
3955 * remote.c (remote_newthread_step): Likewise, but rename pid to ptid.
3956 * sol-thread.c (struct ps_prochandle): Likewise.
3957 (sol_thread_resume): Likewise, for save_pid which becomes save_ptid.
3958 (sol_thread_wait): Likewise, for rtnval whose name does not
3959 change, and for save_pid which becomes save_ptid.
3960 (solaris_pid_to_str): Likewise for lwp whose name does not change.
3961 (sol_find_new_threads_callback): Likewise, for pid which becomes
3962 ptid.
3963 * target.h (target_resume, target_wait, target_post_wait)
3964 (target_post_startup_inferior, target_notice_signals)
3965 (target_thread_alive): Likewise.
3966 * thread.c (info_threads_command): Likewise, but rename
3967 current_pid to current_ptid.
3968 (struct current_thread_cleanup): Likewise, but rename field
3969 inferior_pid to inferior_ptid.
3970 * thread-db.c (find_new_threads_callback): Likewise, but rename
3971 pid to ptid.
3972 * uw-thread.c (thr_to_lwp): Likewise for lid whose name does not
3973 change.
3974 (lwp_to_tr): Likewise fo tid whose name remains unchanged.
3975 (thr_infpid, lwp_infpid, notice_thread, libthread_stub): Likewise,
3976 but rename pid to ptid.
3977 * config/alpha/nm-linux.h (ATTACH_LWP): Likewise.
3978 * config/arm/nm-linux.h (ATTACH_LWP): Likewise.
3979 * config/i386/nm-linux.h (ATTACH_LWP): Likewise.
3980 * config/ia64/nm-linux.h (ATTACH_LWP): Likewise.
3981 * config/pa/nm-hppah.h (target_tid_to_str): Likewise.
3982 * config/powerpc/nm-linux.h (ATTACH_LWP): Likewise.
3983
3984 * arch-utils.c (generic_prepare_to_proceed): Test for the
3985 "zero" ptid by using ptid_equal() to test to see if variable
3986 in question is the same as null_ptid. This replaces a direct
3987 test against zero.
3988 * cxux-nat.c (add_shared_symbol_files): Likewise.
3989 * i386aix-nat.c, i386b-nat.c (i386_float_info): Likewise.
3990 * infcmd.c (run_command): Likewise.
3991 * inflow.c (kill_command): Likewise.
3992 * infttrace.c (call_ttrace): Likewise.
3993 * lin-lwp.c (lin_lwp_prepare_to_proceed): Likewise.
3994 * lin-thread.c (thread_db_kill): Likewise.
3995 * procfs.c (procfs_kill_inferior, procfs_mourn_inferior): Likewise.
3996 * remote-es.c (es1800_kill): Likewise.
3997 * sol-thread.c (sol_thread_create_inferior): Likewise.
3998 * solib.c (locate_base): Likewise.
3999 * target.c (nosupport_runtime): Likewise.
4000 * thread-db.c (thread_db_wait): Likewise.
4001 * top.c (quit_confirm, quit_force): Likewise.
4002 * uw-thread (lwp_infpid, uw_thread_resume): Likewise.
4003
4004 * infrun.c (handle_inferior_event, stop_stepping, normal_stop):
4005 Use ptid_equal to compare value of process/thread ids instead of
4006 ``=='' and ``!='' operators.
4007 lin-lwp.c (delete_lwp, lin_lwp_prepare_to_proceed)
4008 (stop_wait_callback, lin_lwp_wait): Likewise.
4009 * procfs.c (procfs_wait): Likewise.
4010 * regcache.c (read_register_bytes, read_register_gen)
4011 (write_register_gen, read_register, read_register_pid)
4012 (read_signed_register, read_signed_register_pid, write_register)
4013 (write_register_pid, supply_register): Likewise.
4014 * remote-vx.c (vx_resume): Likewise.
4015 * sol-thread.c (sol_thread_wait): Likewise.
4016 * symm-nat.c (kill_inferior): Likewise.
4017 * thread.c (delete_thread, find_thread_pid, pid_to_thread_id)
4018 (in_thread_list, info_threads_command, switch_to_thread)
4019 (restore_current_thread): Likewise.
4020 * uw-thread (libtread_stub): Likewise.
4021
4022 * arm-linux-nat.c (GET_THREAD_ID): Change PID to PTID.
4023
4024 * corelow.c (add_to_thread_list): Convert argument in add_thread()
4025 call to a ptid_t.
4026 * gnu-nat.c (inf_validate_procs): Likewise.
4027 * linux-thread.c (stop_thread, update_stop_threads): Likewise.
4028 * remote.c (record_currthread, remote_threads_info): Likewise.
4029 * win32-nat.c (child_add_thread): Likewise.
4030
4031 * hpux-thread.c (save_inferior_pid, restore_inferior_pid): Rename,
4032 respectively, to save_inferior_ptid() and restore_inferior_ptid().
4033 Adjust implementations to operate on ``ptid_t'' instead of ``int''.
4034 * lin-lwp.c (save_inferior_pid, restore_inferior_pid): Likewise.
4035 * lin-thread.c (save_inferior_pid, restore_inferior_pid): Likewise.
4036 * linux-thread.c (save_inferior_pid, restore_inferior_pid): Likewise.
4037 * proc-service.c (save_inferior_pid, restore_inferior_pid): Likewise.
4038 * sol-thread.c (save_inferior_pid, restore_inferior_pid): Likewise.
4039 * thread-db.c (save_inferior_pid, restore_inferior_pid): Likewise.
4040
4041 * infrun.c (RESUME_ALL): New macro representing the -1 ptid
4042 to be passed to target_resume() when all threads should resume.
4043 (resume): Set resume_ptid to RESUME_ALL rather than -1.
4044 (handle_inferior_event): Invoke target_resume() with RESUME_ALL
4045 instead of -1.
4046 * irix5-nat.c (solib_create_inferior_hook): Convert -1 to
4047 a ptid_t in target_resume() call.
4048 * osfsolib.c (solib_create_inferior_hook): Likewise.
4049 * solib-svr4.c (solib_create_inferior_hook): Likewise.
4050
4051 * lin-lwp.c (PIDGET, PIDGET0): Rename original PIDGET macro to
4052 PIDGET0. Define new PIDGET macro which uses PIDGET0, the only
4053 difference being that the 0xffff pattern will be interpreted
4054 as -1.
4055 * lin-thread.c (PIDGET, PIDGET0): Likewise.
4056 * thread-db.c (PIDGET, PIDGET0): Likewise.
4057 * config/nm-linux.h (PIDGET, PIDGET0): Likewise.
4058 * config/i386/tm-i386sol2.h (PIDGET, PIDGET0): Likewise.
4059 * config/i386/tm-i386v42mp.h (PIDGET, PIDGET0): Likewise.
4060 * config/sparc/tm-sun4sol2.h (PIDGET, PIDGET0): Likewise.
4061
4062 * m3-nat.c (init_m3_ops): Fix typo; initialize to_wait field to
4063 mach_really_wait rather than mach_really__wait.
4064 * lin-thread.c (check_for_thread_event): Fix warning; make function
4065 actually return a value.
4066
4067 * gdbarch.sh (TARGET_READ_PC, TARGET_WRITE_PC): Change type of
4068 ``pid'' arguments from ``int'' to ``ptid_t''. Also renamed
4069 pid to ptid.
4070 * gdbarch.h, gdbarch.c: Regenerated.
4071
31e28849
JL
40722001-05-03 Jonathan Larmour <jlarmour@redhat.com>
4073
4074 * rdi-share/devsw.c: Include <time.h> for struct tm
4075
8d341142
EZ
40762001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
4077
4078 * config/djgpp/fnchange.lst: Add mappings for the new
4079 opcodes/openrisc-* files.
4080
9572d2b6
MS
40812001-05-01 Michael Snyder <msnyder@redhat.com>
4082
9085700c 4083 * lin-lwp.c: Change printf to fprintf_unfiltered.
9572d2b6
MS
4084 * Makefile.in: Add rules for thread-db.o, lin-lwp.o, proc-service.o.
4085
977adac5
ND
40862001-05-01 Nicholas Duffek <nsd@redhat.com>
4087
4088 * config/rs6000/tm-rs6000.h (IN_SOLIB_RETURN_TRAMPOLINE): Define.
4089 (rs6000_in_solib_return_trampoline): Declare.
4090 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): New
4091 function.
4092 (rs6000_skip_trampoline_code): Skip bigtoc fixup code.
4093 * xcoffread.c (read_xcoff_symtab): Perform the ISFCN function
4094 check after the CSECT check rather than before it. Allocate
4095 separate symtabs for CSECTs whose names begin with '@'.
4096 (scan_xcoff_symtab): Don't ignore symbols beginning with '@'.
4097 Activate the misc_func_recorded mechanism for whose names begin
4098 with '@'.
4099
6d799331
C
41002001-04-30 J.T. Conklin <jtc@redback.com>
4101
4102 * ppcnbsd-nat.c (fetch_inferior_registers)
4103 (store_inferior_registers, fetch_core_registers): Changed to use
4104 fpreg[] instead of r_regs[] to access floating point registers.
4105
7f4dbe94
EZ
41062001-04-30 Elena Zannoni <ezannoni@redhat.com>
4107
4108 * sh-tdep.c: Get rid of the function prototypes.
4109 (sh_sh4_build_float_register_type): Move earlier in file.
4110 (fv_reg_base_num): Ditto.
4111 (dr_reg_base_num): Ditto.
4112
540af400
MS
41132001-04-30 Michael Snyder <msnyder@redhat.com>
4114
4115 * thread-db.c: Revert 2001-04-26 change for debugging output.
7ca673cd
MS
4116 * lin-lwp.c: Ditto.
4117 * lin-lwp.c: Add set/show debug lin-lwp command. Use this
4118 command to turn extra debugging output on / off.
540af400 4119
f5a6fc05
EZ
41202001-04-30 Eli Zaretskii <eliz@is.elta.co.il>
4121
4122 * buildsym.c (start_subfile): Use FILENAME_CMP instead of STREQ.
4123 (top-level): #include filenames.h.
4124
4125 * dwarf2read.c (dwarf2_start_subfile): Use IS_ABSOLUTE_PATH and
4126 FILENAME_CMP, to DTRT on non-Posix platforms.
4127 (top-level): #include filenames.h.
4128
4129
502dcf4e
AC
41302001-04-27 Andrew Cagney <ac131313@redhat.com>
4131
4132 * gdbtypes.c (check_stub_method): Always initialize ``p''.
4133
cc3f9cbb
AC
41342001-04-27 Andrew Cagney <ac131313@redhat.com>
4135
4136 * configure.host: Delete romp host.
4137 * TODO: Update.
4138
ed9c5cf2
AC
41392001-04-27 Andrew Cagney <ac131313@redhat.com>
4140
4141 * TODO: Updates to 5.1. No more targets to obsolete.
4142
d1a310e7
DH
41432001-04-27 Don Howard <dhoward@redhat.com>
4144
128437e6
DH
4145 (Changes from Kevin Buettner, with minor update by Don Howard.)
4146
4147 * i387-nat.c (i387_supply_fxsave, i387_fill_fxsave, i387_tag): Fix
4148 typos in which hexadecimal constants were really intended to be
4149 binary constants.
4150 (i387_tag): Swap logic regarding zero vs non-zero exponents.
d1a310e7
DH
4151 * MAINTAINERS (Misc): Added myself to the write-after-approval
4152 list.
4153
015a42b4
JB
41542001-04-26 Jim Blandy <jimb@redhat.com>
4155
4156 (Changes from Daniel Berlin, with revisions by Jim Blandy.)
4157
4158 Abstract out operations specific to particular C++ ABI's, and
4159 invoke them through a function table. This removes the C++ ABI
4160 dependencies scattered throughout the code, and allows us to
4161 cleanly add support for new C++ ABI's.
4162 * cp-abi.h, cp-abi.h, gnu-v2-abi.c, hpacc-abi.c: New files.
4163 * c-typeprint.c, c-valprint.c, dbxread.c, eval.c, gdbtypes.c,
4164 jv-typeprint.c, linespec.c, symtab.c, typeprint.c, valops.c:
4165 #include "cp-abi.h". These files all use functions now declared
4166 there.
4167 * symtab.h (OPNAME_PREFIX_P, VTBL_PREFIX_P, DESTRUCTOR_PREFIX_P):
4168 Deleted. These services are now provided by functions declared in
4169 cp-abi.h.
4170 * value.h (value_rtti_type, value_virtual_fn_field): Same.
4171 * values.c (value_virtual_fn_field): Same, for this definition.
4172 * valops.c (value_rtti_type): Same.
4173 * c-typeprint.c (c_type_print_base): Use the functions from
4174 "cp-abi.h", instead of the old macros, or hard-coded ABI-specific
4175 tests.
4176 * dbxread.c (record_minimal_symbol): Same.
4177 * gdbtypes.c (get_destructor_fn_field, virtual_base_index,
4178 virtual_base_index_skip_primaries): Same.
4179 * jv-typeprint.c (java_type_print_base): Same.
4180 * linespec.c (find_methods, decode_line_1): Same.
4181 * symtab.c (gdb_mangle_name): Same.
4182 * Makefile.in (SFILES): Add the new .c files mentioned above.
4183 (cp_abi_h): New variable.
4184 (COMMON_OBS): Add gnu-v2-abi.o, hpacc-abi.o, and cp-abi.o.
4185 (cp-abi.o, gnu-v2-abi.o, hpacc-abi.o): New targets.
4186 (c-typeprint.o, c-valprint.o, dbxread.o, eval.o, gdbtypes.o,
4187 jv-typeprint.o, symtab.o, linespec.o, typeprint.o, valops.o): Add
4188 dependency on $(cp_abi_h).
4189
f3fb8c85
MS
41902001-04-26 Michael Snyder <msnyder@redhat.com>
4191
20b8570d
MS
4192 * thread-db.c (_initialize_thread_db): Add set/show command
4193 "debug-linux-threads" for debugging output.
4194 * lin-lwp.c (various): Use global "debug_linux_threads to
4195 turn on extra debugging output.
4c8de859 4196 * lin-lwp.c: Minor cleanups in comments.
f3fb8c85
MS
4197 * target.c (normal_pid_to_str): Get rid of an ancient hack.
4198 * remote.c (remote_pid_to_str): New function for remote target.
4199
7f0b5c30
JB
42002001-04-24 Jim Blandy <jimb@redhat.com>
4201
4202 * c-typeprint.c (c_type_print_cv_qualifier): Don't print `const'
4203 qualifier on C++ references; all references are innately const.
4204
0af5533d
MK
42052001-04-20 Mark Kettenis <kettenis@gnu.org>
4206
4207 * event-top.h: Fix formatting.
4208
d036b4d9
AC
42092001-04-17 Andrew Cagney <ac131313@redhat.com>
4210
4211 * source.c (openp): Obsolete #ifdef MPW code.
4212 (open_source_file): Ditto.
4213 * event-top.c (display_gdb_prompt): Ditto.
4214 * utils.c (query): Ditto.
4215 (init_page_info): Ditto.
4216 (init_page_info): Delete #ifndef MPW.
4217 * top.c (gdb_readline): Ditto.
4218 * mac-xdep.c: Obsolete.
4219 * mac-gdb.r: Obsolete.
4220 * config/powerpc/xm-mpw.h: Obsolete.
4221 * config/xm-mpw.h: Obsolete.
4222 * mpw-make.sed: Obsolete.
4223 * mpw-config.in: Obsolete.
4224 * TODO: Update
4225 * NEWS: Update
4226
539ffe0b
MK
42272001-04-19 Mark Kettenis <kettenis@gnu.org>
4228
4229 * i386-tdep.c (i386_frameless_function_invocation): New function.
4230 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION): Redefine
4231 in terms of i386_frameless_function_invocation. Adjust comment.
4232 (i386_frameless_function_invocation): New prototype.
4233
67e1e03a
MH
42342001-04-18 Martin M. Hunt <hunt@redhat.com>
4235
4236 * top.c (gdb_init): Don't call cli_out_new() to
4237 create global uiout if init_ui_hook is set. uiout will
4238 have to be initialized there.
4239
fbec36e2
AC
42402001-04-18 Andrew Cagney <ac131313@redhat.com>
4241
4242 * arch-utils.c: Include "regcache.h".
4243
ed84f6c1
MK
42442001-04-18 Mark Kettenis <kettenis@gnu.org>
4245
4246 * i386-tdep.c (i386_saved_pc_after_call): New function.
4247 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Redefine in terms
4248 of i386_saved_pc_after_call.
4249 (i386_saved_pc_after_call): New prototype.
4250
c60a7562
MS
42512001-04-17 Michael Snyder <msnyder@redhat.com>
4252
c9e030cf 4253 * i386-nat.c: Fix typo in comment.
c60a7562
MS
4254 * solib.c (no_shared_libraries): New function. Discard all symbols
4255 from shared libraries.
4256 (_initialize_solib): Add command "nosharedlibrary" as complement
4257 to the command "sharedlibrary". Unloads symbols for all solibs.
4258
514e603d
AC
42592001-04-16 Andrew Cagney <ac131313@redhat.com>
4260
4261 * configure.host (m68030-sony-*, m68*-isi-*, m68*-sony-*):
4262 * configure.tgt (m68*-rom68k-*, m68*-*bug-*, m68*-monitor-*)
4263 (m68*-est-*, m68*-sony-*, m68*-isi-*):
4264 * Makefile.in (xm-news1000.h, tm-news.h, xm-news.h): Obsolete..
4265 * config/m68k/xm-news.h: Obsolete.
4266 * config/m68k/tm-news.h:
4267 * config/m68k/xm-news1000.h: Obsolete.
4268 * config/m68k/news.mh: Obsolete.
4269 * config/m68k/news.mt: Obsolete.
4270 * config/m68k/nm-news.h: Obsolete.
4271 * config/m68k/news1000.mh: Obsolete.
4272 * news-xdep.c: Obsolete.
4273 * Makefile.in (isi-xdep.o): Obsolete.
4274 (ALLDEPFILES): Delete isi-xdep.c.
4275 (tm-isi.h): Obsolete.
4276 * m68k-tdep.c (altos_skip_prologue): Update comments.
4277 (isi_skip_prologue): Obsolete.
4278 * isi-xdep.c: Obsolete.
4279 * config/m68k/xm-isi.h: Obsolete.
4280 * config/m68k/isi.mh: Obsolete.
4281 * config/m68k/tm-isi.h: Obsolete.
4282 * config/m68k/isi.mt: Obsolete.
4283
4284 * TODO: Update.
4285 * NEWS: Update.
4286
6240bebf
MS
42872001-04-17 Michael Snyder <msnyder@redhat.com>
4288
4289 * remote.c (remote_open_1): On opening the remote target, activate
4290 the solib_create_inferior_hook, so that it can detect when the
4291 target loads shared libraries.
4292 (remote_async_open_1): Ditto.
4293
75ac9d7b
MS
42942001-04-17 Michael Snyder <msnyder@redhat.com>
4295
4296 * breakpoint.c (print_one_breakpoint): Handle 64-bit addresses.
4297 * tracepoint.c (tracepoints_info): Handle 64-bit addresses.
4298 * testsuite/gdb.trace/deltrace.exp: Allow for 64-bit addresses.
4299 * testsuite/gdb.trace/infotrace.exp: Ditto.
4300 * testsuite/gdb.trace/passcount.exp: Ditto.
4301 * testsuite/gdb.trace/while-stepping.exp: Ditto.
4302
b9569773
MS
43032001-04-17 Michael Snyder <msnyder@redhat.com>
4304
4305 * thread-db.c (check_thread_signals): When looping over all
4306 signals, ignore signal zero.
4307 (disable_thread_signals): Ditto.
4308
81490ea1
MS
43092001-04-17 Eirik Fuller <eirik@netapp.com>
4310
4311 * thread.c (do_captured_thread_select): Allow the argument to the
4312 thread command to be an expression rather than a literal integer.
4313
e5434c3d
MK
43142001-04-17 Mark Kettenis <kettenis@gnu.org>
4315
4316 * i386-linux-tdep.c (i386_linux_saved_pc_after_call): Use
4317 read_memory_unsigned_integer instead of read_memory_integer.
4318
00c7912d
KB
43192001-04-16 Kevin Buettner <kevinb@redhat.com>
4320
4321 * solib-aix5.c (map_index_vs_section_name_okay): New function.
4322 (aix5_relocate_main_executable): Don't use file offsets for
4323 determining corresponding sections and map file entries. Call
4324 map_index_vs_section_name_okay() to do this instead.
4325
4d1bcd09
KB
43262001-04-16 Kevin Buettner <kevinb@redhat.com>
4327
4328 * procfs.c (open_with_retry): New function.
4329 (open_procinfo_files, load_syscalls, proc_iterate_over_mappings)
4330 (proc_get_LDT_entry): Call open_with_retry() instead of open().
4331
097e5c0b 43322001-04-16 Kevin Buettner <kevinb@redhat.com>
1186f287
KB
4333
4334 * ia64-linux-nat.c (ia64_linux_stopped_by_watchpoint): Adjust
4335 comparison against TRAP_HWBKPT constant yet again to account
4336 for the various values used by different kernel versions.
4337
9e0c176c
DB
43382001-04-16 Daniel Berlin <dan@cgsoftware.com>
4339
4340 * demangle.c (_initialize_demangler): Use xcalloc on the
4341 demangling_style_names, and make it a null terminated array of
4342 names, to avoid a crash.
4343
c833a37e
MK
43442001-04-16 Mark Kettenis <kettenis@gnu.org>
4345
4346 * i386-tdep.c (i386_frame_chain): New function.
4347 * config/i386/tm-i386.h (FRAME_CHAIN): Redefine in terms of
4348 i386_frame_chain.
4349 (i386_frame_chain): New prototype.
4350
46c6cdcf
C
43512001-04-14 J.T. Conklin <jtc@redback.com>
4352
4353 * target.h (target_ops): Removed to_core_file_to_sym_file vector
4354 function.
4355 * corelow.c (core_ops): Updated for above change.
4356 * gnu-nat.c (core_ops): Likewise.
4357 * inftarg.c (child_ops): Likewise.
4358 * monitor.c (monitor_ops): Likewise.
4359 * ppc-bdm.c (bdm_ppc_ops): Likewise.
4360 * remote-adapt.c (adapt_ops): Likewise.
4361 * remote-bug.c (bug_ops): Likewise.
4362 * remote-e7000.c (e7000_ops): Likewise.
4363 * remote-eb.c (eb_ops): Likewise.
4364 * remote-es.c (es1800_ops, es1800_child_ops): Likewise.
4365 * remote-mm.c (mm_ops): Likewise.
4366 * remote-nindy.c (nindy_ops): Likewise.
4367 * remote-nrom.c (nrom_ops): Likewise.
4368 * remote-os9k.c (rombug_ops): Likewise.
4369 * remote-rdp.c (remote_rdp_ops): Likewise.
4370 * remote-sim.c (gdbsim_ops): Likewise.
4371 * remote-st.c (st2000_ops): Likewise.
4372 * v850ice.c (v850ice_ops): Likewise.
4373 * target.c (cleanup_target): Likewise
4374 (update_current_target): Likewise.
4375 (setup_target_debug): Likewise
4376 (debug_to_core_file_to_sym_file): Removed.
4377
4378 * corefile.c (core_file_command) [HPUXHPPA]: Removed code that
4379 sets symbol file from information obtained from the core file.
4380 * corelow.c (core_file_to_sym_file): Removed.
4381
d1566ff5
FN
43822001-04-13 Fernando Nasser <fnasser@redhat.com>
4383
4384 From Adam Mirowski <Adam.Mirowski@Sun.COM>
4385 Fixed Insight on Solaris. It was not possible to debug a process
4386 because of EINTR "errors".
4387 * procfs.c: (procfs_wait): if proc_wait_for_stop() fails
4388 with EINTR, retry the call.
4389
6c98e688
KB
43902001-04-12 Kevin Buettner <kevinb@redhat.com>
4391
4392 * solib-aix5.c (enum maptype): Delete.
4393 (struct lm_info): Add new member ``nmappings''. Make ``mapping''
4394 member a pointer instead of a statically sized array.
4395 (build_so_list_from_mapfile): Dynamically allocate ``mapping''
4396 array.
4397 (aix5_relocate_main_executable, aix5_relocate_section_addresses,
4398 aix5_find_global_pointer): Search for correct mapping to use
4399 based on file offset instead of knowledge of whether the section
4400 is read-only or read/write.
4401 (aix5_find_gate_addresses): Use the first mapping instead of
4402 the (now defunct) MT_READONLY mapping.
4403
49282387
ND
44042001-04-12 Nicholas Duffek <nsd@redhat.com>
4405
4406 * xcoffread.c (scan_xcoff_symtab): Ignore symbols beginning with
4407 "@".
4408
7f6b83a5
KB
44092001-04-12 Kevin Buettner <kevinb@redhat.com>
4410
4411 * config/i386/fbsd.mh (NATDEPFILES): Add i386-nat.o.
4412
24f89b68
AC
44132001-04-09 Andrew Cagney <ac131313@redhat.com>
4414
4415 Obsolete i[3456]86-*-sunos* (aka Sun386) host and target.
4416 * config/i386/sun386.mh: Obsolete.
4417 * config/i386/sun386.mt: Obsolete.
4418 * config/i386/xm-sun386.h: Obsolete.
4419 * config/i386/tm-sun386.h: Obsolete.
4420 * config/i386/nm-sun386.h: Obsolete.
4421 * Makefile.in (ALLDEPFILES): Delete sun386-nat.c.
4422 (sun386-nat.o): Target is obsolete.
4423 * sun386-nat.c: Obsolete.
4424 * configure.tgt (i[3456]86-*-sunos*): Obsolete.
4425 * configure.host (i[3456]86-*-sunos*): Obsolete.
4426 * NEWS: Update.
4427 * TODO: Update.
4428
c114dcd5
C
44292001-04-10 J.T. Conklin <jtc@redback.com>
4430
4431 * maint.c: Fix typo in comment.
4432
6755f5ad
KS
44332001-04-09 Keith Seitz <keiths@cygnus.com>
4434
4435 * MAINTAINERS: Swap with Syd Polk as a gdbtk maintainer.
4436
7700434b
KB
44372001-04-08 Kevin Buettner <kevinb@redhat.com>
4438
4439 * fork-child.c (fork_inferior, clone_and_follow_inferior):
4440 Document fact that apparent call to vfork() might actually be
4441 a call to fork() instead.
4442 * ser-pipe.c (pipe_open): Likewise.
4443
d493eb33
KB
44442001-04-08 Kevin Buettner <kevinb@redhat.com>
4445
4446 * printcmd.c (print_frame_args): Use a cleanup to invoke
4447 ui_out_list_end() so that the list count nesting flag will
4448 be decremented properly when an error occurs.
4449 * stack.c (print_frame): Likewise.
4450
af471f3c
C
44512001-04-06 J.T. Conklin <jtc@redback.com>
4452
c839c4db
C
4453 * dcache.c (dcache_write_line): Fixed bugs where cache line was
4454 not written to target correctly.
4455
af471f3c
C
4456 * gdbserver/low-hppabsd.c (read_inferior_memory): Add explicit
4457 void return value;
4458 * gdbserver/low-nbsd.c: Likewise.
4459 * gdbserver/low-sparc.c: Likewise.
4460 * gdbserver/low-sun3.c: Likewise.
4461
d8e275b4
GK
44622001-04-06 Geoffrey Keating <geoffk@redhat.com>
4463
4464 * config/rs6000/nm-rs6000.h (PTRACE_ATTACH): Don't define.
4465 (PTRACE_DETACH): Don't define.
4466
e02bc4cc
DS
44672001-04-06 David Smith <dsmith@redhat.com>
4468
4469 * arch-utils.c (default_prepare_to_proceed)
4470 (generic_prepare_to_proceed): Added new functions.
4471 * arch-utils.h: New function declarations for
4472 default_prepare_to_proceed() and generic_prepare_to_proceed().
4473 * gdbarch.sh: Added PREPARE_TO_PROCEED.
4474 * gdbarch.c: Regenerated.
4475 * gdbarch.h: Regenerated.
4476 * inferior.h: Added get_last_target_status() declaration.
4477 * infrun.c (get_last_target_status): Added new function.
4478 (handle_inferior_event): Saves last pid and waitstatus, which will
4479 get returned by get_last_target_status().
4480
4481 * hppa-tdep.c (prepare_to_proceed): Added comment stating that
4482 prepare_to_proceed() is potentially redundant since
4483 default_prepare_to_proceed() has been added.
4484 * linux-thread.c (prepare_to_proceed): Ditto.
4485 * lin-lwp.c (prepare_to_proceed): Ditto.
4486 * m3-nat.c (prepare_to_proceed): Ditto.
4487
1b2b2c16
AC
44882001-04-05 Andrew Cagney <ac131313@redhat.com>
4489
4490 Obsolete powerpcle-*-cygwin* and powerpcle-*-solaris* platforms
4491 and powerpc-*-netware* target.
4492 * configure.host (powerpcle-*-cygwin*, powerpcle-*-solaris*):
4493 Obsolete.
4494 * configure.tgt (powerpc-*-netware*, powerpcle-*-cygwin*)
4495 (powerpcle-*-solaris*): Obsolete.
4496 * config/powerpc/tm-cygwin.h: Obsolete.
4497 * config/powerpc/cygwin.mt: Obsolete.
4498 * config/powerpc/xm-cygwin.h: Obsolete.
4499 * config/powerpc/cygwin.mh: Obsolete.
4500 * config/powerpc/nm-solaris.h: Obsolete.
4501 * config/powerpc/xm-solaris.h: Obsolete.
4502 * config/powerpc/tm-solaris.h: Obsolete.
4503 * config/powerpc/solaris.mt: Obsolete.
4504 * config/powerpc/tm-ppc-nw.h: Obsolete.
4505 * config/powerpc/ppc-nw.mt: Obsolete.
4506 * TODO: Update.
4507 * NEWS: Update.
4508
063fd668
FN
45092001-04-06 Fernando Nasser <fnasser@redhat.com>
4510
4511 * buildsym.c (record_line): Turn off unused addr bits.
4512
a250df2e
FN
45132001-04-06 Fernando Nasser <fnasser@redhat.com>
4514
4515 From David Deephanphongs <deephan@telocity.com>
4516 * inferior.h: Fix declarations of get_inferior_args and
4517 set_inferior_args, which were missing the trailing 's'.
4518
1fcef334
JH
45192001-04-05 Jeff Holcomb <jeffh@redhat.com>
4520
4521 * monitor.c (monitor_supply_register): Only report an error if we
4522 don't get a valid value.
4523
f032fb6e
EZ
45242001-04-05 Eli Zaretskii <eliz@is.elta.co.il>
4525
4526 * README: Don't mention gdba.el.
4527
0191bed7
EZ
45282001-04-05 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
4529
4530 From Jimmy Guo <guo@cup.hp.com>
4531 * top.c (init_main): set prompt if annotation_level>1,
4532 this is necessary when annotation_level is set to 2 via
4533 --annotate=2 command line option.
4534
4a1968f4
AC
45352001-04-04 Andrew Cagney <ac131313@redhat.com>
4536
4537 Obsolete a29k-*-* host and a29k-*-sym1* and a29k-*-kern* targets.
4538 * configure.tgt (a29k-*-sym1*, a29k-*-kern*): Obsolete.
4539 * configure.host (a29k-*-*): Obsolete.
4540 * Makefile.in (ALLDEPFILES): Remove ultra3-nat.c and
4541 ultra3-xdep.c.
4542 (ultra3-nat.o, ultra3-xdep.o): Obsolete.
4543 * config/a29k/tm-ultra3.h: Obsolete.
4544 * config/a29k/ultra3.mt: Obsolete.
4545 * config/a29k/ultra3.mh: Obsolete.
4546 * config/a29k/nm-ultra3.h: Obsolete.
4547 * config/a29k/xm-ultra3.h: Obsolete.
4548 * ultra3-xdep.c: Obsolete.
4549 * ultra3-nat.c: Obsolete.
4550 * config/a29k/a29k-kern.mt: Obsolete.
4551 * NEWS: Update.
4552 * TODO: Update.
4553
608506ed
CF
4554Wed Apr 4 21:48:42 2001 Christopher Faylor <cgf@cygnus.com>
4555
4556 * main.c: Remove windows.h use.
4557 (gdbtk_test): Use PATH_MAX for home var calculation.
4558 * remote-e7000.c (e7000_parse_device): Accomodate Cygwin as well as
4559 Win32 in colon test.
4560 * ser-tcp.c: Use modern __CYGWIN__ conditional.
4561 * source.c (mod_path): Add __CYGWIN__ conditional to WIN32 test.
4562 (openp): Ditto.
4563 * symfile.c (symfile_bfd_open): Ditto.
608506ed 4564
6457bd47
MH
45652001-04-04 Martin M. Hunt <hunt@redhat.com>
4566
4567 * main.c (captured_main): For GDBtk, don't use tui_fileopen().
4568 Handle all stream setup in gdbtk_init
4569
3df1b9b4
MK
45702001-04-04 Mark Kettenis <kettenis@gnu.org>
4571
4572 * i386-tdep.c (i386_extract_return_value): Don't return the return
4573 value of a void function.
4574 (i386_store_return_value): Likewise.
4575
76f4ea53
AC
45762001-04-03 Andrew Cagney <ac131313@redhat.com>
4577
4578 Obsolete w65-*-* target.
4579 * configure.tgt (w65-*-*): Obsolete.
4580 * config/w65/w65.mt: Obsolete.
4581 * config/w65/tm-w65.h: Obsolete.
4582 * w65-tdep.c: Obsolete.
4583 * NEWS: Update. Fix TiC80 description.
4584 * TODO: Update.
4585
52071915
AC
45862001-04-03 Andrew Cagney <ac131313@redhat.com>
4587
4588 Obsolete tic80-*-* target.
4589 * configure.tgt (tic80-*-*): Obsolete.
4590 * config/tic80/tic80.mt: Obsolete.
4591 * config/tic80/tm-tic80.h: Obsolete.
4592 * tic80-tdep.c: Obsolete.
4593 * TODO: Update
4594 * NEWS: Update.
4595
44eaed12
C
45962001-04-02 J.T. Conklin <jtc@redback.com>
4597
ba79cc81
C
4598 * remote-mips.c (S_IROTH): Moved definition from here.
4599 * gdb_stat.h (S_IROTH): to here.
4600
44eaed12
C
4601 * remote.c (remote_protocol_e, remote_protocol_E): Define.
4602 (set_remote_protocol_e_packet_cmd)
4603 (set_remote_protocol_E_packet_cmd)
4604 (show_remote_protocol_e_packet_command)
4605 (show_remote_protocol_E_packet_command): New functions.
4606 (init_all_packet_configs): Initialize remote_protocol_e and
4607 remote_protocol_E.
4608 (remote_resume, remote_async_resume): Support e/E command
4609 packets.
4610 (show_remote_cmd): Show state of remote_protocol_e and
4611 remote_protocol_E.
4612 (_initialize_remote): Add "set remote step-over-range-packet"
4613 and "set remote step-over-range-w-signal-packet" to CLI.
4614
bb19ff3b
AC
46152001-04-01 Andrew Cagney <ac131313@redhat.com>
4616
4617 Obsolete ns32k-*-mach3*, ns32k-umax-*, ns32k-utek-sysv* and
4618 ns32k-utek-*.
4619 * Makefile.in (ALLDEPFILES): Delete umax-xdep.c and ns32km3-nat.c.
4620 (umax-xdep.o, ns32km3-nat.o): Obsolete.
4621 * configure.tgt (ns32k-*-mach3*, ns32k-utek-sysv*, ns32k-utek-*):
4622 Obsolete.
4623 * configure.host (ns32k-*-mach3*, ns32k-umax-*, ns32k-utek-sysv*):
4624 Obsolete.
4625 * config/ns32k/merlin.mh: Obsolete.
4626 * config/ns32k/merlin.mt: Obsolete.
4627 * config/ns32k/xm-merlin.h: Obsolete.
4628 * config/ns32k/tm-merlin.h: Obsolete.
4629 * config/ns32k/nm-umax.h: Obsolete.
4630 * config/ns32k/umax.mh: Obsolete.
4631 * config/ns32k/umax.mt: Obsolete.
4632 * config/ns32k/xm-umax.h: Obsolete.
4633 * umax-xdep.c: Obsolete.
4634 * config/ns32k/ns32km3.mh: Obsolete.
4635 * config/ns32k/ns32km3.mt: Obsolete.
4636 * config/ns32k/tm-ns32km3.h: Obsolete.
4637 * config/ns32k/xm-ns32km3.h: Obsolete.
4638 * ns32km3-nat.c: Obsolete.
4639 * ns32k-tdep.c (merlin_skip_prologue): Obsolete.
4640 (merlin_frame_num_args): Ditto.
4641 * NEWS: Update.
4642 * TODO: Update.
4643
d6259d75
EZ
46442001-04-02 Eli Zaretskii <eliz@is.elta.co.il>
4645
4646 * config/djgpp/fnchange.lst: Tweak due to
4647 expect/example/chesslib.c.
4648
971ff545
KB
46492001-04-02 Kevin Buettner <kevinb@redhat.com>
4650
4651 * m88k-tdep.c (examine_prologue): Change type of ``insn'' from
4652 unsigned int to unsigned long. Also, fix format string.
4653 (pop_frame): Fix PC_IN_CALL_DUMMY() call so that it doesn't
4654 use an undeclared variable. Also, delete declaration and
4655 initialization of ``fp'' because it is otherwise unused.
4656 * remote-bug.c (sleep): Delete declaration.
4657 (bug_store_register, bug_write_memory, bug_read_memory)
4658 (bug_insert_breakpoint, bug_remove_breakpoint): Fix sprintf()
4659 format statements and cast certain sprintf() arguments to
4660 eliminate warnings.
4661 (bug_load): Likewise for call to printf_filtered().
4662 * config/m88k/tm-m88k.h (FIX_CALL_DUMMY): Eliminate
4663 assignment to ``pc''. The necessary assignment is done in
4664 hand_function_call() after the invocation of FIX_CALL_DUMMY().
4665
4e4f46a1
DB
46662001-03-20 Daniel Berlin <dberlin@redhat.com>
4667
4668 * symtab.c (completion_list_add_name): Remove duplicate string checks,
4669 readline already does this, and it's much faster at it, too.
4670
ba8629a9
EZ
46712001-04-01 Eli Zaretskii <eliz@is.elta.co.il>
4672
4673 * go32-nat.c: Minor tweaks, to pacify the ari script.
4674
7bf0983e
MK
46752001-04-01 Mark Kettenis <kettenis@gnu.org>
4676
f7af9647
MK
4677 * i386-tdep.c (i386_extract_struct_value_address): New function.
4678 * config/i386/tm-i386.h (EXTRACT_STRUCT_VALUE_ADDRESS): Redefine
4679 in terms of i386_extract_struct_value_address.
4680 (i386_extract_struct_value_address): New prototype.
4681
7bf0983e
MK
4682 * i386-linux-nat.c (i386_linux_dr_get): Change type of return
4683 value to `unsigned long'. Change type of `value' to `unsigned
4684 long'.
4685 (i386_linux_dr_set): Change type of second argument to `unsigned
4686 long'.
4687 (i386_linux_dr_set_control): Change type of first argument to
4688 `unsigned long'.
4689 (i386_linux_dr_get_status): Change type of return value to
4690 unsigned long.
4691 * config/i386/nm-linux.h (i386_linux_dr_set_control,
4692 i386_linux_dr_get_status): Adjust prototypes accordingly.
4693
6e4862ff
KB
46942001-03-31 Kevin Buettner <kevinb@redhat.com>
4695
4696 * ia64-linux-nat.c (ia64_linux_stopped_by_watchpoint): Change
4697 TRAP_HWBKPT constant to match that in the kernel headers for
4698 Linux/IA-64.
521f1f96 4699
1e8d0a7b
MK
47002001-03-31 Mark Kettenis <kettenis@gnu.org>
4701
0afdd437
MK
4702 * i386bsd-nat.c: Include "gdb_assert.h".
4703 [HAVE_PT_GETDBREGS] (DBREG_DRX): Define if not
4704 already defined.
4705 [HAVE_PT_GETDBREGS] (i386bsd_dr_set, i386bsd_dr_set_control,
4706 i386bsd_dr_set_addr, i386bsd_dr_reset_addr,
4707 i386bsd_dr_get_status): New functions.
4708 * config/i386/nm-fbsd.h [HAVE_PT_GETDBREGS]
4709 (I386_USE_GENERIC_WATCHPOINTS): Define.
4710 Include "i386/nm-i386.h".
4711 (I386_DR_LOW_SET_CONTROL, I386_DR_LOW_SET_ADDR,
4712 I386_DR_LOW_RESET_ADDR, I386_DR_LOW_GET_STATUS): New macros.
4713 (i386bsd_dr_set_control, i386bsd_dr_set_addr,
4714 i386bsd_dr_reset_addr, i386bsd_dr_get_status): New prototypes.
4715 * acconfig.h (HAVE_PT_GETDBREGS): New configure macro.
4716 * configure.in: Cleanup a few comments. Check for PT_GETDBREGS
4717 ptrace request.
4718 * config.in, configure: Regenerate.
4719
4bcc3944
MK
4720 * i386-nat.c (i386_insert_aligned_watchpoint): Set address
4721 register before enabling it by setting the control register.
4722 (i386_remove_aligned_watchpoint): Reset address register after
4723 disabling it by setting the control register.
4724
1e8d0a7b
MK
4725 * i386-tdep.c (i386_extract_return_value): If the type of the
4726 return value is TYPE_STRUCT and the number of fields is one, call
4727 ourselves with TYPE set tp the type of the first field.
4728 (i386_store_return_value): Likewise.
4729 This fixes a problem with returning structs consisting of a single
4730 `float' or `double' on *BSD.
4731
95a85621
MK
47322001-03-30 Mark Kettenis <kettenis@gnu.org>
4733
40564aca
MK
4734 * lin-lwp.c (lin_lwp_resume): Don't mark LWP as not stopped until
4735 we're absolutely sure we're going to resume it.
4736
95a85621
MK
4737 * thread-db.c (check_event): Don't report an error if we encounter
4738 a thread creation event for a thread that's already in the thread
4739 list, since that may legitemately happen. Instead only call
4740 attach_thread if it's not already in the thread list.
4741
2e94c453
AC
47422001-03-28 Andrew Cagney <ac131313@redhat.com>
4743
4744 * config/pa/xm-hppah.h (malloc): Really delete declaration
4745 (MALLOC_INCOMPATIBLE): Really delete macro.
4746 * cli/cli-cmds.c (apropos_command): Use xcalloc.
4747
93d56215
AC
47482001-03-28 Andrew Cagney <ac131313@redhat.com>
4749
4750 * configure.in (build_warnings): Add -Wuninitialized.
4751 * configure: Regenerate.
4752
4753 * v850-tdep.c (v850_scan_prologue): Initialize ``insn2''.
4754 * sparc-tdep.c (sparc64_push_arguments): Add default case to
4755 switch.
4756 * sh-tdep.c (sh_do_fp_register): Replace ``?:'' printf format
4757 expression with if statement.
4758 * mn10200-tdep.c (mn10200_analyze_prologue): Initialize
4759 ``stack_size''.
4760 * mips-tdep.c (show_mipsfpu_command): Add default case to switch.
4761 (mips_dump_tdep): Fix setting of ef_mips_arch.
4762 * mcore-tdep.c (mcore_analyze_prologue): Initialize ``fp_regnum''.
4763 * dsrec.c (make_srec): Always initialize ``binbuf''.
4764 * monitor.c (monitor_read_memory_single): Do not pass an
4765 uninitialized buffer to monitor_error. Make ``i'' more local.
4766
381bab78
AC
47672001-03-28 Andrew Cagney <ac131313@redhat.com>
4768
4769 * MAINTAINERS: Change ns32k target to ,-Werror.
4770
4771 * ns32k-tdep.c: Include "gdbcore.h"
4772 (flip_bytes): Change first argument to void*. Add forward
4773 declaration.
4774 (sign_extend): Add declaration.
4775 (merlin_frame_num_args): Add final else clause to if-else chain.
4776 (umax_frame_num_args): Ditto.
4777 * config/ns32k/tm-umax.h (ns32k_localcount): Declare.
4778 (flip_bytes): Ditto.
4779
b9511b9a
MK
47802001-03-28 Mark Kettenis <kettenis@gnu.org>
4781
b05f2432
MK
4782 * i386-linux-tdep.c (FRAMELESS_SIGNAL): Moved here from
4783 config/i386/nm-linux.h (including comment).
4784 (i386_linux_frame_chain): New function implementing guts of the
4785 former FRAME_CHAIN macro, but using read_memory_unsigned_integer
4786 instead of read_memory_integer.
4787 (i386_linux_frame_saved_pc): Removed doc pointing to
4788 i386/tm-linux.h for an explanation of FRAMELESS_SIGNAL since that
4789 now lives in this file.
4790 * config/i386/tm-linux.h (FRAMELESS_SIGNAL): Moved to
4791 i386-linux-tdep.c (including comment).
4792 (FRAME_CHAIN): Redefined in terms of i386_linux_frame_chain.
4793 (i386_linux_frame_chain): New prototype.
4794
0eebe06a
MK
4795 * gdbserver/low-linux.c [I386_GNULINUX_TARGET]: Cleanup code and
4796 make it work again.
4797 (NUM_FREGS): Redefine to 0.
4798 (NUM_REGS): Redefine as NUM_GREGS.
4799 (i386_register_byte, i386_register_raw_size): Update from
4800 i386-tdep.c. Add comment about their origin.
4801 (regmap, register_u_addr): Take these from i386-linux-nat.c.
4802 (i386_register_u_addr): Removed.
4803
b9511b9a
MK
4804 * i386-linux-nat.c (i386_linux_dr_get): Return 0 if ptrace call
4805 fails instead of calling perror_with_name. This should fix
4806 debugging remote i386 targets with a native Linux/x86 GDB. Add
4807 FIXME for this hack.
4808
3172dc30
C
48092001-03-19 J.T. Conklin <jtc@redback.com>
4810
4811 * arch-utils.c (#include "gdbthread.h"): Removed.
4812 (#include "symfile.h"): Removed.
4813 (XMALLOC): Removed unused macro.
4814 * breakpoint.c (tbreak_command): Removed local declaration.
4815 (awatch_command, do_enable_breakpoint, set_breakpoint_count):
4816 Remove duplicate declarations.
4817 (bpstat_should_step, bpstat_have_active_hw_watchpoints)
4818 (remove_solib_event_breakpoints): Fix indentation botch.
4819 * c-typeprint.c (#include "command.h"): Removed.
4820 (#include "gdbcmd.h"): Removed.
4821 * ch-exp.c (ch_terminal_match_float_literal, parse_expr)
4822 (parse_primval, parse_untyped_expr, parse_opt_untyped_expr):
4823 Removed duplicate declarations.
4824 * ch-typeprint.c (#include "command.h"): Removed.
4825 (#include "gdbcmd.h"): Removed.
4826 * corefile.c (#include "frame.h"): Removed
4827 (#include "symfile.h"): Removed.
4828 (#include "language.h"): Removed.
4829 * dbxread.c (#include "command.h"): Removed.
4830 * environ.c (#include "gdbcore.h"): Removed.
4831 * event-loop.c (#include "top.h"): Removed.
4832 * f-typeprint.c (#include "command.h"): Removed.
4833 (#include "gdbcmd.h"): Removed.
4834 (#include "language.h"): Removed.
4835 (#include "typeprint.h"): Removed.
4836 (#include "frame.h"): Removed.
4837 * gdbtypes.h (print_type_scalar): Removed declaration.
4838 * infcmd.c (#include "completer.h"): Removed.
4839 * language.c (#include "frame.h"): Removed.
4840 * m2-typeprint.c (#include "command.h"): Removed.
4841 (#include "gdbcmd.h"): Removed.
4842 (#include "language.h"): Removed.
4843 * m2-valprint.c (#include "valprint.h"): Removed.
4844 * p-typeprint.c (#include "command.h"): Removed.
4845 (#include "gdbcmd.h"): Removed.
4846 * p-valprint.c (#include "typeprint.h"): Removed.
4847 * parse.c (#include "linespec.h"): Removed.
4848 * regcache.c (#include "frame.h"): Removed.
4849 * remote.c (#include "frame.h"): Removed.
4850 (getpkt_sane): Make static.
4851 * source.c (#include "completer.h"): Removed.
4852 * stack.c (#include "symfile.h"): Removed.
4853 (#include "objfiles.h"): Removed.
4854 * symfile.c (#include "completer.h"): Removed.
4855 * tracepoint.c (#include "completer.h"): Removed.
4856 * values.c (#include "frame.h"): Removed.
4857 * varobj.c (#include "valprint.h"): Removed.
4858 * wrapper.c (#include "frame.h"): Removed.
4859
4860 * memattr.c (create_mem_region): Removed unused variable.
4861 * remote-nrom.c: Removed spurious semicolon after init_nrom_ops.
4862
397b41ad
NC
48632001-03-27 Nick Clifton <nickc@redhat.com>
4864
4865 * remote-rdp.c (rdp_set_command_line): Add missing double quote.
4866
ed817e68
KB
48672001-03-27 Kevin Buettner <kevinb@redhat.com>
4868
4869 * solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead
4870 of free().
4871
b75e0a6b
EZ
48722001-03-27 Eli Zaretskii <eliz@is.elta.co.il>
4873
4874 * TODO (Cleanups): Remove the item about converting docs to GFDL.
4875
2fc3ac7e
KB
48762001-03-26 Kevin Buettner <kevinb@redhat.com>
4877
4878 * ia64-tdep.c (slotN_contents, replace_slotN_contents): Change
4879 type of ``bundle'' from unsigned char * to char *.
4880 (ia64_get_saved_register): Use alloca() to allocate register
4881 buffers.
4882
224d8953
KB
4883 * solib-aix5.c (build_so_lib_from_mapfile): Fix xasprintf() usage.
4884
37de36c6
KB
48852001-03-26 Kevin Buettner <kevinb@redhat.com>
4886
4887 * proc-utils.h (procfs_ctl_t): New typedef.
4888 * proc-api.c (write_with_trace): Change type of ``opcode'' from
4889 long to procfs_ctl_t. Don't assume that the target has defined
4890 BREAKPOINT. Handle case in which PCRESET is the same as PCUNSET.
4891 * proc-events.c (sys/syscall.h, sys/fault.h): Include conditionally.
4892 * procfs.c (sys/fault.h, sys/syscall.h): Include conditionally.
4893 (gdb_sigset_t, gdb_sigaction_t, gdb_siginfo_t, gdb_premptysysset)
4894 (gdb_praddsysset, gdb_prdelsysset, gdb_pr_issyssetmember):
4895 Conditionally define as appropriate for AIX/non-AIX systems. Use
4896 these defines/typedefs as appropriate elsewhere in file.
4897 (struct procinfo): Change type of saved_sigset and saved_sighold
4898 from sigset_t to gdb_sigset_t. Make saved_exitset and
4899 saved_entryset pointer variables. Add two new fields, num_syscalls
4900 and syscall_names.
4901 (DYNAMIC_SYSCALLS): Define when HAVE_PRSYSENT_T is defined.
4902 (sysset_t_size, sysset_t_alloc): New functions.
4903 (load_syscalls, free_syscalls, find_syscall): New functions for
4904 platforms which define DYNAMIC_SYSCALLS.
4905 (create_procinfo): Call load_syscalls.
4906 (destroy_one_procinfo): Call free_syscalls.
4907 (GDBRESET): Don't define twice.
4908 (proc_modify_flag): Change type of operation code array `arg'
4909 from long to procfs_ctl_t.
4910 (proc_stop_process, proc_wait_for_stop, proc_run_process)
4911 (proc_set_traced_signals, proc_set_traced_faults)
4912 (proc_set_traced_sysentry, proc_set_traced_sysexit)
4913 (proc_set_held_signals, proc_clear_current_fault)
4914 (proc_set_current_signal, proc_clear_current_signal, proc_set_gregs)
4915 (proc_set_fpregs, proc_kill, proc_set_watchpoint): Likewise for `cmd'.
4916 (proc_set_traced_sysentry): Dynamically allocate variable sized
4917 struct gdb_proc_ctl_pcsentry. Also, free it at function exit.
4918 (proc_set_traced_sysexit): Dynamically allocate variable
4919 sized struct gdb_proc_ctl_pcsexit. Also, free it at
4920 function exit.
4921 (proc_get_traced_sysentry, proc_get_traced_sysexit): Add new code
4922 for reading the sysset_t struct on AIX5.
4923 (procfs_debug_inferior): Don't assume that SYS_exit will be
4924 defined. Add new code for finding certain syscalls on AIX5.
4925 (syscall_is_lwp_exit, syscall_is_exit, syscall_is_exec)
4926 (syscall_is_lwp_create): New functions.
4927 (procfs_wait): Restructured code which checks for certain
4928 system calls to use the new syscall_is_... functions.
4929 (procfs_notice_signals): Account for the fact that saved_entryset
4930 and saved_exitset in struct procinfo are now pointers.
4931
25d53da1
KB
49322001-03-26 Kevin Buettner <kevinb@redhat.com>
4933
4934 * symtab.c (find_pc_sect_line): Revise method used for finding
4935 the ending pc.
4936
50e27f84
MK
49372001-03-26 Mark Kettenis <kettenis@gnu.org>
4938
4939 * i386-linux-tdep.c (i386_linux_sigtramp_saved_pc,
4940 i386_linux_sigtramp_saved_sp): Make static.
4941 (i386_linux_frame_saved_pc): New function based on the old
4942 FRAME_SAVED_PC macro, but use read_memory_unsigned_integer instead
4943 of read_memory_integer.
4944 * config/i386/tm-linux.h (sigtramp_saved_pc): Remove definition.
4945 (i386_linux_sigtramp_saved_pc): Remove prototype.
4946 (FRAME_SAVED_PC): Redefine in terms of i386_linux_frame_saved_pc.
4947 (i386_linux_frame_saved_pc): New prototype.
4948
1a5cef06
AC
49492001-03-26 Andrew Cagney <ac131313@redhat.com>
4950
4951 * MAINTAINERS: Document m88k as a ``Known problem in 5.1''.
4952 * TODO (GDB 5.1 - Cleanups): Update.
4953
af802127
AC
49542001-03-26 Andrew Cagney <ac131313@redhat.com>
4955
4956 * fork-child.c (clone_and_follow_inferior): Delete #ifdef
4957 HAVE_VFORK.
4958
22f8ba57
MK
49592001-03-26 Mark Kettenis <kettenis@gnu.org>
4960
5b31405b
MK
4961 * config/i386/tm-symmetry.h (PUSH_ARGUMENTS): #undef.
4962
22f8ba57
MK
4963 * i386-tdep.c (i386_push_arguments, i386_store_struct_return): New
4964 functions.
4965 * config/i386/tm-i386.h (PUSH_ARGUMENTS): New macro.
4966 (STORE_STRUCT_RETURN): Redefine in terms of
4967 i386_store_struct_return.
4968 (i386_push_arguments, i386_store_struct_return): New prototypes.
4969 * config/i386/tm-i386v.h (STORE_STRUCT_RETURN): Remove. It's
4970 definition was identical to the definition in "i386/tm-i386.h" so
4971 the new definition should suffice too.
4972
49baf819 49732001-03-26 Eli Zaretskii <eliz@is.elta.co.il>
4d277981 4974
b78a4f26
EZ
4975 * event-loop.c (toplevel) [!HAVE_POLL] [NO_FD_SET]: Remove unused
4976 definitions for SELECT, NBBY, FD_SETSIZE, NFDBITS, and MASK_SIZE.
4977
4d277981
EZ
4978 * config/djgpp/djconfig.sh: Add copyright notice.
4979
4980 * ser-go32.c (rawclock): Remove prototype; include time.h instead.
4981 (ISR, dos_hookirq, isr_t): Convert K&R definition to ANSI C.
4982 (top level) <string.h>: Include gdb_string.h instead.
4983 (dos_noop, dos_raw, dos_noflush_set_tty_state)
4984 (dos_print_tty_state, dos_info): Remove ATTRIBUTE_UNUSED.
4985
4986 * go32-nat.c (go32_create_inferior): Move the declaration of
4987 `environ' to here from the top level.
4988 (top level) <_initialize_go32_nat>: Remove redundant prototype.
4989 <gdb_string.h>: Include it instead of string.h.
4990 (store_register): Call register_buffer instead of accessing
4991 registers[] directly.
4992 (redir_cmdline_delete, redir_cmdline_parse, redir_to_debugger)
4993 (redir_to_debugger, redir_debug_init) [__DJGPP_MINOR__ < 3]: Put
4994 the function names at the start of the line.
4995 (go32_set_dr): Throw internal_error if the argument is not a valid
4996 debug register number.
4997 (go32_open, go32_close, go32_attach, go32_detach, go32_resume)
4998 (go32_wait, go32_xfer_memory, go32_files_info)
4999 (go32_terminal_info): Remove ATTRIBUTE_UNUSED.
5000
8f3ee2ae
JB
50012001-03-25 Jim Blandy <jimb@redhat.com>
5002
5003 * mips-tdep.c (mips_gdbarch_init): Tweak indentation.
5004
6ec4c4bd
EZ
50052001-03-25 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
5006
5007 From Andrew Cagney <ac131313@redhat.com>
5008
5009 * coffread.c: Include "gdb_assert.h".
5010 (coff_symtab_read): Cast the integer s_sclass to a long before
5011 casting it to a pointer.
5012
b9179dbc
EZ
50132001-03-25 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
5014
5015 From Andrew Cagney <ac131313@redhat.com>
5016
5017 * coffread.c (coff_symtab_read): Initialize
5018 ``fcn_first_line_addr''. Check that the ``.bf'' always preceeds
5019 the ``.ef'' info.
5020 * dbxread.c (find_text_range): Initialize ``start'' and ``end''.
5021
64c4637f
AC
50222001-03-23 Andrew Cagney <ac131313@redhat.com>
5023
5024 * config/sparc/tm-sp64.h (GDB_MULTI_ARCH): Down grade to
5025 GDB_MULTI_ARCH_PARTIAL from two. SOFTWARE_SINGLE_STEP is not
5026 multi-arch.
5027
5028 * gdbarch.sh (SOFTWARE_SINGLE_STEP): Add.
5029 * gdbarch.h, gdbarch.c: Re-generate.
5030
5031 * target.h (SOFTWARE_SINGLE_STEP_P)
5032 (SOFTWARE_SINGLE_STEP): Delete macro definitions.
5033
61a0eb5b
AC
50342001-03-23 Andrew Cagney <ac131313@redhat.com>
5035
5036 * gdbarch.sh (gdbarch_register_read, gdbarch_register_write): Add.
5037 * gdbarch.h, gdbarch.c: Regenerate.
5038
5039 * regcache.h (regcache_read, regcache_write): Declare.
5040 (registers, register_valid, register_buffer): Add note that these
5041 interfaces are deprecated.
5042
5043 * regcache.c: Include "gdb_assert.h".
5044 (legacy_write_register_gen): Rename write_register_gen.
5045 (legacy_read_register_gen): Rename read_register_gen.
5046 (regcache_read, regcache_write): New function.
5047 (read_register_gen, write_register_gen): New function.
5048 (write_register): Simplify. Use write_register_gen.
5049 (read_register): Ditto using read_register_gen.
5050 (read_signed_register): Ditto.
5051 (read_register_bytes): Ditto!!!!
5052 (supply_register): Add note that CLEANUP_REGISTER_VALUE is being
5053 replaced by gdbarch_register_read.
5054
5055 * TODO (GDB 5.2 - Cleanups): Add list of gdbarch methods to
5056 deprecate.
5057
c2bd2ed9
JB
50582001-03-23 Jim Blandy <jimb@redhat.com>
5059
f34754ee
JB
5060 Fix from Dan Berlin:
5061
c2bd2ed9
JB
5062 * stabsread.c (read_cpp_abbrev): Properly construct the names of
5063 virtual function table pointer fields.
5064
c0e61796
AC
50652001-03-19 Andrew Cagney <ac131313@redhat.com>
5066
5067 * defs.h (xfree, mcalloc, mmalloc, mrealloc, mfree, xmmalloc,
5068 xmrealloc): Move existing declarations to the one place and
5069 re-order to be consistent.
5070 (xmcalloc, xmfree): Declare.
5071 (xmmalloc, xmrealoc): Assume ISO-C - use size_t and void* in
5072 declaration.
5073
5074 * utils.c (size_t): Delete #ifdef defining size_t.
5075 (mmalloc, mrealloc, mcalloc, mfree): Re-order.
5076 (mmalloc, mrealloc, mcalloc): Document as only calls in GDB
5077 corresponding malloc, realloc, calloc.
5078 (mfree): Call free directly.
5079 (xmmalloc, xmrealloc): Clean up. Assume ISO-C.
5080 (xmcalloc, xmfree): New functions. Copy old xcalloc and xfree
5081 function bodies to here.
5082 (xcalloc, xfree): Call xmcalloc and xmfree respectfully.
5083
c65ecaf3
AC
50842001-03-23 Andrew Cagney <ac131313@redhat.com>
5085
5086 * fork-child.c (fork_inferior): Make ``argv'', ``exec_file'' and
5087 ``shell_file'' static locals.
5088
5089 * jv-lang.c (java_link_class_type): Initialize ``field'' and
5090 ``method''.
5091
5092 * jv-valprint.c (java_value_print): Initialize ``next_element''.
5093
207e433e
MK
50942001-03-23 Mark Kettenis <kettenis@gnu.org>
5095
5096 * config/i386/nm-i386.h: Fix formatting and change reference to
5097 i386-tdep.c to i386-nat.c.
5098
6c5cfe5b
DS
50992001-03-23 David Smith <dsmith@redhat.com>
5100
5101 * configure.in: Corrected spelling errors.
5102 * configure: Regenerated.
5103
5300940c
AC
51042001-03-22 Andrew Cagney <ac131313@redhat.com>
5105
5106 * TODO (GDB 5.1 - Cleanups): Add more targets to obsolete.
5107
17e78a56
AC
51082001-03-22 Andrew Cagney <ac131313@redhat.com>
5109
5110 * Makefile.in (NTSSTART): Delete.
5111 (NTSOBS): Delete.
5112 (kdb): Delete target.
5113 * kdb-start.c, stuff.c: Mark as obsolete.
5114 * NEWS: Update.
5115
41899c04
AC
51162001-03-22 Andrew Cagney <ac131313@redhat.com>
5117
5118 * config/pa/xm-hppah.h (HPPA_COMPILER_BUG): Delete. GDB only
5119 compiles using an ISO-C compiler.
5120 (MALLOC_INCOMPATIBLE): Ditto.
5121 * linespec.c (decode_line_1): Delete hack to work around
5122 HPPA_COMPILER_BUG.
5123
88665544
AC
51242001-03-22 Andrew Cagney <ac131313@redhat.com>
5125
5126 * exec.c (xfer_memory): Always initialize section.
5127 * infrun.c (normal_stop): Always initialize source_flag.
5128
a2061976
AC
51292001-03-22 Andrew Cagney <ac131313@redhat.com>
5130
5131 * TODO (Remote Protocol Support): Review. Add notes about ``!'',
5132 non-use of a continue address and typical use of ``q'' packet.
5133
e24d4c64
EZ
51342001-03-22 Eli Zaretskii <eliz@is.elta.co.il>
5135
5136 Make DJGPP use the new unified support for hardware
5137 breakpoints and watchpoints on x86 targets:
5138
5139 * config/i386/nm-go32.h <top level>: Don't include nm-i386v.h,
5140 include nm-i386.h instead.
5141 (TARGET_HAS_HARDWARE_WATCHPOINTS, HAVE_CONTINUABLE_WATCHPOINT)
5142 (TARGET_CAN_USE_HARDWARE_WATCHPOINT, STOPPED_BY_WATCHPOINT)
5143 (TARGET_REGION_OK_FOR_HW_WATCHPOINT, DECR_PC_AFTER_HW_BREAK)
5144 (target_stopped_data_address, target_insert_watchpoint)
5145 (target_remove_watchpoint, target_insert_hw_breakpoint)
5146 (target_remove_hw_breakpoint): Don't define.
5147 (I386_USE_GENERIC_WATCHPOINTS, I386_DR_LOW_SET_CONTROL)
5148 (I386_DR_LOW_SET_ADDR, I386_DR_LOW_RESET_ADDR)
5149 (I386_DR_LOW_GET_STATUS): Define to call appropriate go32_*
5150 functions from go32-nat.c.
5151
5152 * config/i386/go32.mh (NATDEPFILES): Add i386-nat.o.
5153
5154 * go32-nat.c <top level>: Remove prototypes for watchpoint-
5155 related functions. Remove definitions of watchpoint-related
5156 macros.
5157 (go32_mourn_inferior): Call i386_cleanup_dregs instead of the
5158 private cleanup_dregs function.
5159 (cleanup_dregs, go32_insert_watchpoint)
5160 (go32_insert_aligned_watchpoint, go32_handle_nonaligned_watchpoint)
5161 (go32_remove_watchpoint, go32_remove_aligned_watchpoint)
5162 (go32_region_ok_for_watchpoint, go32_stopped_by_watchpoint)
5163 (go32_remove_hw_breakpoint, go32_insert_hw_breakpoint): Remove.
5164 (go32_set_dr, go32_set_dr7, go32_get_dr6): New functions.
5165
c26e1c2b
KB
51662001-03-21 Kevin Buettner <kevinb@redhat.com>
5167
5168 * ia64-tdep.c (fetch_instruction): Warn about slot numbers greater
5169 than two instead of generating an error.
5170
272ba48f
JB
51712001-03-21 Jim Blandy <jimb@redhat.com>
5172
5173 * cp-valprint.c: Reformat to bring into line with GNU coding
5174 standards.
5175
84346e11
MK
51762001-03-21 Mark Kettenis <kettenis@gnu.org>
5177
5178 Make Linux use the new unified support for hardware breakpoints
5179 and watchpoints on x86 targets.
5180 * i386-linux-nat.c: Doc fixes. Include "gdb_assert.h".
5181 [HAVE_SYS_DEBUGREG_H]: Include <sys/debugreg.h>.
5182 (DR_FIRSTADDR, DR_LASTADDR, DR_STATUS, DR_CONTROL): Define to
5183 appropriate value if not already defined.
5184 (register_u_addr): New function.
5185 (kernel_u_size): New function.
5186 (i386_linux_dr_get, i386_linux_dr_set): New functions.
5187 (i386_linux_dr_set_control, i386_linux_dr_set_addr,
5188 i386_linux_reset_addr, i386_linux_dr_get_status): New functions.
5189 * config/i386/nm-linux.h: Don't include "nm-i386v.h".
5190 (I386_USE_GENERIC_WATCHPOINTS): Define and include "nm-i386.h".
5191 (TARGET_HAS_HARDWARE_WATCHPOINTS,
5192 TARGET_CAN_USE_HARDWARE_WATCHPOINTS, HAVE_CONTINUABLE_WATCHPOINT,
5193 STOPPED_BY_WATCHPOINT, target_insert_watchpoint,
5194 target_remove_watchpoint): Remove macros.
5195 (i386_stopped_by_watchpoint, i386_insert_watchpoint,
5196 i386_remove_watchpoint): Remove prototypes.
5197 (register_u_addr): New prototype.
5198 (REGISTER_U_ADDR): Define in terms of register_u_addr.
5199 (i386_linux_dr_set_control, i386_linux_dr_set_addr,
5200 i386_linux_reset_addr, i386_linux_dr_get_status): New prototypes.
5201 (I386_DR_LOW_SET_CONTROL, I386_DR_LOW_SET_ADDR,
5202 I386_DR_LOW_RESET_ADDR, I386_DR_LOW_GET_STATUS): New macros.
5203 * config/i386/linux.mh (NATDEPFILES): Replace i386v-nat.o with
5204 i386-nat.o.
5205
13b57657
JB
52062001-03-21 Jim Blandy <jimb@redhat.com>
5207
f34754ee
JB
5208 Fix from Dan Berlin:
5209
13b57657
JB
5210 * linespec.c (find_methods): Whitespace differences aren't
5211 significant in *un*mangled method names. Use strcmp_iw to compare
f34754ee 5212 them, not STREQ.
13b57657 5213
eee30e78
AC
52142001-03-21 Andrew Cagney <ac131313@redhat.com>
5215
5216 * gdbarch.sh: Allow a non- multi-arch target to override a
5217 predicate.
5218 * gdbarch.h: Regenerate.
5219
b77be6cf
AC
52202001-03-21 Andrew Cagney <ac131313@redhat.com>
5221
5222 * gdbarch.sh: Avoid use of ``!''.
5223
379d08a1
AC
52242001-03-20 Andrew Cagney <ac131313@redhat.com>
5225
5226 * target.h (enum target_signal): Move definition from here.
5227 * defs.h (enum target_signal): To here.
5228
5229 * config/arc/tm-arc.h (arc_software_single_step): Change type of
5230 first parameter to enum target_signal.
5231 * config/rs6000/tm-rs6000.h (rs6000_software_single_step): Ditto.
5232 * config/sparc/tm-sparc.h (sparc_software_single_step): Ditto.
5233 * rs6000-tdep.c (rs6000_software_single_step): Update.
5234
64485362
AC
52352001-03-20 Andrew Cagney <ac131313@redhat.com>
5236
5237 * frame.h (SIZEOF_FRAME_SAVED_REGS): Report an error if macro
5238 already defined.
5239
5240 From 2000-08-25 Stephane Carrez <Stephane.Carrez@worldnet.fr>:
5241 * stabsread.c (define_symbol): A parameter ('R'), a local ('r'),
5242 or a reference ('a') can be in a pseudo register.
5243 * infcmd.c (do_registers_info): Must take into account the pseudo
5244 registers to print their value.
5245 (registers_info): Likewise.
5246 * stack.c (frame_info): Likewise.
5247 * frame.h (SIZEOF_FRAME_SAVED_REGS): Save the pseudo registers.
5248
52b98211
EZ
52492001-03-21 Eli Zaretskii <eliz@is.elta.co.il>
5250
5251 Unified support for hardware breakpoints and watchpoints on
5252 x86 targets:
5253
5254 * config/i386/nm-i386.h: New file.
5255
5256 * config/i386/nm-i386.h: (i386_cleanup_dregs)
5257 (i386_insert_watchpoint, i386_remove_watchpoint)
5258 (i386_region_ok_for_watchpoint, i386_stopped_by_hwbp)
5259 (i386_stopped_data_address, i386_insert_hw_breakpoint)
5260 (i386_remove_hw_breakpoint): Declare prototypes.
5261 [I386_USE_GENERIC_WATCHPOINTS] (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
5262 Define if not already defined.
5263 (TARGET_REGION_OK_FOR_HW_WATCHPOINT, HAVE_CONTINUABLE_WATCHPOINT)
5264 (STOPPED_BY_WATCHPOINT, target_stopped_data_address)
5265 (target_insert_watchpoint, target_remove_watchpoint)
5266 (target_insert_hw_breakpoint, target_remove_hw_breakpoint): Define
5267 to call the appropriate i386_* functions.
5268
5269 * i386-nat.c: New file.
5270
5271 * i386-nat.c (I386_DR_CONTROL_MASK, I386_DR_LOCAL_ENABLE)
5272 (I386_DR_GLOBAL_ENABLE, I386_DR_DISABLE, I386_DR_SET_RW_LEN)
5273 (I386_DR_GET_RW_LEN, I386_DR_WATCH_HIT): New macros.
5274 (dr_mirror, dr_status_mirror, dr_control_mirror, dr_ref_count)
5275 (maint_show_dr): New variables.
5276 (i386_cleanup_dregs, i386_show_dr, i386_length_and_rw_bits)
5277 (i386_insert_aligned_watchpoint, i386_remove_aligned_watchpoint)
5278 (i386_handle_nonaligned_watchpoint, i386_insert_watchpoint)
5279 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
5280 (i386_stopped_data_address, i386_stopped_by_hwbp)
5281 (i386_insert_hw_breakpoint, i386_remove_hw_breakpoint): New
5282 functions.
5283 (_initialize_i386_nat): New function.
5284 [I386_USE_GENERIC_WATCHPOINTS]: Add new maint command
5285 `show-debug-regs', sets maint_show_dr to non-zero value and
5286 activates debugging print-outs in functions which insert, remove,
5287 and test watchpoints and hardware breakpoints.
5288
5289 * Makefile.in (i386-nat.o): New target.
5290 (ALLDEPFILES): Add i386-nat.o.
5291
28e9e0f0
MK
52922001-03-21 Mark Kettenis <kettenis@gnu.org>
5293
5294 * i386-tdep.c: Add back _initialize_i386_tdep prototype with
5295 appropriate comment.
5296
e40eccb4
KB
52972001-03-20 Kevin Buettner <kevinb@redhat.com>
5298
5299 * config/alpha/alpha-linux.mh (NATDEPFILES): Use proc-service.o,
5300 thread-db.o, and lin-lwp.o for thread support instead of
5301 linux-thread.o and lin-thread.o.
5302 * config/alpha/nm-linux.h (PREPARE_TO_PROCEED, GET_THREAD_SIGNALS)
5303 (ATTACH_LWP): Define to use the following lin-lwp.c functions...
5304 (lin_lwp_prepare_to_proceed, lin_thread_get_thread_signals)
5305 (lin_lwp_attach_lwp): Declare.
5306
bea7bb93
JB
53072001-03-20 Jim Blandy <jimb@redhat.com>
5308
f34754ee
JB
5309 Fix from Dan Berlin:
5310
bea7bb93
JB
5311 * Makefile.in: Clean up dependencies on ../include/demangle.h.
5312 (demangle_h): New variable.
5313 (jv-typeprint.o, jv-valprint.o, linespec.o): Use it.
5314
b0ed3589
AC
53152001-03-20 Andrew Cagney <ac131313@redhat.com>
5316
5317 * target.h (SOFTWARE_SINGLE_STEP_P): Add empty parameter list.
5318 * breakpoint.c (bpstat_stop_status): Update.
5319 * infrun.c (handle_inferior_event): Ditto.
5320 * mips-tdep.c (mips_dump_tdep): Ditto.
5321 * infrun.c (resume): Ditto.
5322 * infptrace.c (child_resume): Ditto.
5323 * config/mips/tm-wince.h (SOFTWARE_SINGLE_STEP_P): Ditto.
5324 * config/sh/tm-wince.h (SOFTWARE_SINGLE_STEP_P): Ditto.
5325 * config/sparc/tm-sparc.h (SOFTWARE_SINGLE_STEP_P): Ditto.
5326 * config/powerpc/tm-linux.h (SOFTWARE_SINGLE_STEP_P): Ditto.
5327 * config/arm/tm-wince.h (SOFTWARE_SINGLE_STEP_P): Ditto.
5328 * config/arc/tm-arc.h (SOFTWARE_SINGLE_STEP_P): Ditto.
5329 * config/powerpc/tm-ppc-eabi.h (SOFTWARE_SINGLE_STEP_P): Ditto.
5330
df087c62
AC
53312001-03-20 Andrew Cagney <ac131313@redhat.com>
5332
5333 * config/powerpc/tm-linux.h (SOFTWARE_SINGLE_STEP): Replace abort
5334 with internal_error.
5335
8bd1f2c6
JB
53362001-03-20 Jim Blandy <jimb@redhat.com>
5337
f34754ee
JB
5338 Fix from Dan Berlin:
5339
8bd1f2c6
JB
5340 * linespec.c (find_methods): Just call CHECK_TYPEDEF on t, rather
5341 than asking for sym_class's type; that's circuitous. Remove
5342 sym_class, since the last use of it is gone.
5343
c97fe386
EZ
53442001-03-20 Eli Zaretskii <eliz@is.elta.co.il>
5345
5346 * breakpoint.c (print_it_typical) <bp_access_watchpoint> [UI_OUT]:
5347 Correct the order of calls to ui_out_field_string and
5348 ui_out_list_begin when bs->old_val is NULL.
5349
486363b6
KB
53502001-03-19 Kevin Buettner <kevinb@redhat.com>
5351
5352 * configure.in (AC_CHECK_HEADERS): Check for existence of nlist.h.
5353 * configure: Regenerate.
5354 * config.in: Regenerate.
5355 * solib-legacy.c (nlist.h): Include if HAVE_NLIST_H is defined.
5356
087bb2e2
KB
53572001-03-19 Kevin Buettner <kevinb@redhat.com>
5358
5359 * config/i386/i386v42mp.mh (NATDEPFILES): List all files on
5360 same line to avoid problems with Unixware 7's make when building
5361 a cross debugger.
5362
3c37485b
AC
53632001-03-19 Andrew Cagney <ac131313@redhat.com>
5364
5365 * defs.h (malloc): Move declaration from here.
5366 * utils.c (malloc): To here.
5367 * config/pa/xm-hppah.h (malloc): Delete declaration.
5368
5369 * gnu-nat.c (make_proc): Use xmalloc instead of malloc.
5370 * hp-psymtab-read.c (hpread_call_pxdb): Ditto.
5371 (hpread_quick_traverse): Ditto.
5372 * infttrace.c (create_thread_info): Ditto.
5373 (kill_inferior): Ditto.
5374 * gnu-nat.c (make_inf): Ditto, and don't check return value.
5375 * procfs.c (proc_update_threads): Ditto.
5376 * valprint.c (print_decimal_chars): Ditto.
5377 * gdbtypes.c (cfront_mangle_name): Use xasprintf instead of
5378 malloc and sprintf.
5379 * remote-rdp.c (rdp_set_command_line): Ditto.
5380
0e52036f
AC
53812001-03-19 Andrew Cagney <ac131313@redhat.com>
5382
5383 * defs.h (realloc): Move declaration from here.
5384 * utils.c (realloc): To here.
5385 * config/pa/xm-hppah.h (realloc): Delete declaration.
5386 * lin-thread.c (insert_thread): Use xrealloc instead of realloc.
5387 * symfile.c (add_filename_language): Ditto.
5388 * event-loop.c (create_file_handler): Ditto.
5389
81b8eb80
AC
53902001-03-19 Andrew Cagney <ac131313@redhat.com>
5391
5392 * defs.h (free): Move declaration from here.
5393 * utils.c (free): To here.
5394 (xfree): Document as the only call to free().
5395 * config/pa/xm-hppah.h (free): Delete declaration.
5396
8cca004a
KB
53972001-03-19 Kevin Buettner <kevinb@redhat.com>
5398
5399 * config/ia64/linux.mh (NATDEPFILES): Add proc-service.o to
5400 this list.
5401
cf4eee44
AC
54022001-03-19 Andrew Cagney <ac131313@redhat.com>
5403
5404 * eval.c (evaluate_subexp): Remove #ifdef __STDC__ and ``inline''.
5405 * config/mips/xm-mips.h (offsetof): Define when !GNUC not !STDC.
5406 * cli/cli-cmds.c (init_cli_cmds): Remove #ifdef __STDC__
5407
1c5b31ef
AC
54082001-03-19 Andrew Cagney <ac131313@redhat.com>
5409
5410 * TODO: List known problems with TUI.
5411
3a0c66d4
AC
54122001-03-19 Andrew Cagney <ac131313@redhat.com>
5413
5414 * MAINTAINERS: Jimmy Guo stepped down as a maintiner (TUI,
5415 gdb.hp).
5416
ce359b09
AC
54172001-03-19 Andrew Cagney <ac131313@redhat.com>
5418
5419 * remote.c (remote_cisco_section_offsets): Do not cast result from
5420 bfd_get_section_name.
5421 (compare_sections_command): Ditto.
5422 (remote_cisco_section_offsets): Make ``p'' a const pointer.
5423 (compare_sections_command): Ditto for ``sectname''.
5424
0b3f98d3
AC
54252001-03-19 Andrew Cagney <ac131313@redhat.com>
5426
5427 From Mon Nov 20 13:59:29 2000 Andrew Cagney <cagney@b1.cygnus.com>:
5428 * valops.c (hand_function_call): Simplify computation of the
5429 address of the pushed argument.
5430
7451d027
AC
54312001-03-17 Andrew Cagney <ac131313@redhat.com>
5432
5433 * p-exp.y (parse_number): Avoid shift overflow when ``long''.
5434 Code copied from c-exp.y.
5435
fb70ab0c
KB
54362001-03-18 Kevin Buettner <kevinb@redhat.com>
5437
5438 * acconfig.h (HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS)
5439 (HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS)
5440 (HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS): New configure macros.
5441 * configure.in (HAVE_STRUCT_LINK_MAP32): Move this test out
5442 of the Solaris procfs testing section. Instead, group with...
5443 (HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS)
5444 (HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS)
5445 (HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS): New <link.h> tests.
5446 * configure: Regenerate.
5447 * config.in: Regenerate.
5448
5449 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Use
5450 new configure macros to choose which (if any) code to
5451 compile in. Added code to explicitly handle *BSD systems;
5452 these systems were previously handled only through macro
5453 redefinition. Also, due to the way the autoconf tests are set
5454 up, this function will no longer return a non-zero value when
5455 GDB is configured as a cross debugger. I.e, cross debuggers
5456 will no longer be able to "accidentally" get the host system's
5457 link map offsets.
5458
8aa16b78
KB
54592001-03-18 Kevin Buettner <kevinb@redhat.com>
5460
5461 * config/i386/nbsd.mh (NATDEPFILES): List all files on the same
5462 line to avoid build problem on NetBSD 1.4.
5463
559e75c0
MC
54642001-03-17 Michael Chastain <chastain@redhat.com>
5465
5466 * win32-nat.c (child_attach): check args for NULL before passing
5467 to strtoul. This fixes PR gdb/43.
5468
fc338970
MK
54692001-03-17 Mark Kettenis <kettenis@gnu.org>
5470
7daede3b
MK
5471 * i387-nat.h: Doc Fix.
5472
fc338970
MK
5473 * i386-tdep.c: Fix formatting.
5474 (i386_get_frame_setup, i386_follow_jump, codestream_read,
5475 codestream_seek, codestream_fill, skip_trampoline_code,
5476 gdb_print_insn_i386, _initialize_i386_tdep): Remove redundant
5477 prototypoes.
5478
e3c6d36d
MK
54792001-03-17 Mark Kettenis <kettenis@gnu.org>
5480
5481 * config/i386/tm-linux.h (TARGET_ANALYZE_FLOATING): Remove. It's
5482 no longer used. Also remove associated FIXME.
5483
4a5c6a1d
AC
54842001-03-16 Andrew Cagney <ac131313@redhat.com>
5485
5486 * gdbarch.sh: Add classes ``m'' and ``M'' for pure multi-arch. Do
5487 not generate macro wrappers for multi-arch functions or
5488 predicates.
5489 (class_is_info_p, class_is_predicate_p): Update.
5490 (class_is_function_p, class_is_variable_p): Ditto.
5491 (class_is_multiarch_p): New class function.
5492
7256e1a5
C
54932001-03-16 J.T. Conklin <jtc@redback.com>
5494
5495 * config/h8300/tm-h8300.h (FRAME_ARGS_ADDRESS): Changed to use
5496 h8300_frame_args_address from frame_args_address.
5497 (FRAME_LOCALS_ADDRESS): Changed to use h8300_frame_locals_address
5498 from frame_locals_address.
5499 (PRINT_REGISTER_HOOK): Changed to use h8300_print_register_hook
5500 from print_register_hook.
5501 (h8300_frame_args_address): Declare.
5502 (h8300_frame_find_saved_regs): Declare.
5503 (h8300_frame_locals_address): Declare.
5504 (h8300_frame_saved_pc): Declare.
5505 (h8300_pop_frame): Declare.
5506 (h8300_print_register_hook): Declare.
5507 * h8300-tdep.c (h8300_frame_find_saved_regs): Removed declaration.
5508 (h8300_frame_args_address): Renamed from frame_args_address.
5509 (h8300_frame_locals_address): Renamed from frame_locals_address.
5510 (h8300_pop_frame): Renamed from pop_frame.
5511 (h8300_print_register_hook): Renamed from print_register_hook.
5512
435b259c
KB
55132001-03-16 Kevin Buettner <kevinb@redhat.com>
5514
5515 * solib-svr4.c (bfd_lookup_symbol): Change type of
5516 ``storage_needed'' from unsigned int to long in order to
5517 match return type of bfd_get_symtab_upper_bound() and
5518 bfd_get_dynamic_symtab_upper_bound().
5519 * solib-aix5.c (bfd_lookup_symbol): Likewise. Also, eliminate
5520 REASONABLE_LIMIT hack which had been added to work around this
5521 problem.
5522
80117be2
KB
55232001-03-15 Kevin Buettner <kevinb@redhat.com>
5524
5525 * solib-aix5.c (bfd_lookup_symbol, build_so_list_from_mapfile)
5526 (aix5_relocate_main_executable, aix5_clear_solib): Replace calls
5527 to free() with calls to xfree().
5528 (bfd_lookup_symbol): Eliminate use of PTR.
5529 (build_so_list_from_mapfile): Use xasprintf() instead of sprintf().
5530
77cd5909
MH
55312001-03-15 Martin Hunt <hunt@redhat.com>
5532
5533 * linespec.c (decode_line_1): Remove trailing quote
5534 when parsing double quotes.
5535
f7f5a202
KB
55362001-03-15 Kevin Buettner <kevinb@redhat.com>
5537
5538 * uw-thread.c (read_thr_debug, read_map, read_lwp, thread_iter)
5539 (libthread_stub, libthread_init): Pass NULL for the mem_attrib
5540 argument in the to_xfer_memory calls.
5541
0d35ddba
AC
55422001-03-15 Andrew Cagney <ac131313@redhat.com>
5543
5544 * MAINTAINERS: Fix typo - w65 not w64. Still doesn't build.
5545 * TODO (GDB 5.1 - Cleanups): Add status of targets being obsoleted.
5546
043780a1
AC
55472001-03-15 Andrew Cagney <ac131313@redhat.com>
5548
5549 * wince.c (child_xfer_memory): Add attrib parameter.
5550 * symm-nat.c (child_xfer_memory): Ditto.
5551 * mac-nat.c (child_xfer_memory): Ditto.
5552 * infttrace.c (child_xfer_memory): Ditto.
5553 * procfs.c (procfs_xfer_memory): Ditto.
5554 * lin-thread.c (thread_db_xfer_memory): Ditto.
5555 * gnu-nat.c (gnu_xfer_memory): Ditto.
5556
9b9c068d
AC
55572001-03-14 Andrew Cagney <ac131313@redhat.com>
5558
5559 * NEWS: Mention that Harris/CXUX m88k is obsolete.
5560
f88e2c52
AC
55612001-03-13 Andrew Cagney <ac131313@redhat.com>
5562
5563 * config/mips/tm-mips.h: Include "regcache.h" for macros refering
5564 to regcache functions.
5565 * config/m68k/tm-m68k.h: Ditto.
5566 * config/i386/tm-i386v.h: Ditto.
5567 * config/mcore/tm-mcore.h: Ditto.
5568 * config/m88k/tm-m88k.h: Ditto.
5569 * config/m68k/tm-news.h: Ditto.
5570 * config/m68k/tm-linux.h: Ditto.
5571 * config/m68k/tm-delta68.h: Ditto.
5572 * config/m68k/nm-sun3.h: Ditto.
5573 * config/m32r/tm-m32r.h: Ditto.
5574 * config/i386/tm-symmetry.h: Ditto.
5575 * config/i386/tm-sun386.h: Ditto.
5576 * config/i386/tm-i386.h: Ditto.
5577 * config/i386/nm-symmetry.h: Ditto.
5578 * config/i386/nm-sun386.h: Ditto.
5579 * config/i386/nm-ptx4.h: Ditto.
5580 * config/i386/nm-i386mach.h: Ditto.
5581 * config/h8500/tm-h8500.h: Ditto.
5582 * config/h8300/tm-h8300.h: Ditto.
5583 * config/fr30/tm-fr30.h: Ditto.
5584 * config/d30v/tm-d30v.h: Ditto.
5585 * config/arm/tm-arm.h: Ditto.
5586 * config/arc/tm-arc.h: Ditto.
5587 * config/alpha/tm-alpha.h: Ditto.
5588 * config/a29k/tm-vx29k.h: Ditto.
5589 * config/a29k/tm-a29k.h: Ditto.
5590 * config/w65/tm-w65.h: Ditto.
5591 * config/vax/tm-vax.h: Ditto.
5592 * config/v850/tm-v850.h: Ditto.
5593 * config/tic80/tm-tic80.h: Ditto.
5594 * config/sparc/tm-sparclite.h: Ditto.
5595 * config/sparc/tm-sparclet.h: Ditto.
5596 * config/sparc/tm-sparc.h: Ditto.
5597 * config/sparc/nm-sun4sol2.h: Ditto.
5598 * config/sparc/nm-sun4os4.h: Ditto.
5599 * config/sparc/nm-nbsd.h: Ditto.
5600 * config/powerpc/nm-solaris.h: Ditto.
5601 * config/pa/tm-hppao.h: Ditto.
5602 * config/pa/tm-hppa.h: Ditto.
5603 * config/pa/nm-hppab.h: Ditto.
5604 * config/ns32k/tm-umax.h: Ditto.
5605 * config/ns32k/tm-merlin.h: Ditto.
5606 * config/nm-m3.h: Ditto.
5607 * config/nm-gnu.h: Ditto.
5608
0981ead9
AC
56092001-03-14 Andrew Cagney <ac131313@redhat.com>
5610
5611 * MAINTAINERS: Update list of targets. Mark arm-* and v850-elf as
5612 broken. Mark sh-*, ia64-linux and ns32k-netbsd as buildable.
5613 Specify an m88k target. Include sample GAWK script to generate
5614 target list. Delete non-existant romp target.
5615 * TODO (GDB 5.1 - Cleanups): Update.
5616
91c1720e
KS
56172001-03-14 Keith Seitz <keiths@cygnus.com>
5618
5619 * linespec.c (decode_line_1): Skip argptr over a leading
5620 double quote. Prevents alloc of 0 bytes and memcpy of -1 bytes.
5621
3cc122b3
KB
56222001-03-14 Kevin Buettner <kevinb@redhat.com>
5623
5624 * config/djgpp/fnchange.lst (ia64-aix-nat.c): Add entry.
5625
5bb367b1
AC
56262001-03-13 Andrew Cagney <ac131313@redhat.com>
5627
5628 * ui-out.h: Remove #if __STDC__, assume an ISO-C compiler.
5629 * m3-nat.c: Ditto.
5630 * p-lang.h: Ditto.
5631 * printcmd.c (printf_command): Ditto.
5632 * ch-exp.c (match_integer_literal): Ditto.
5633 * scm-tags.h: Ditto.
5634 * ser-go32.c: Ditto.
5635 * hppa-tdep.c (unwind_command): Ditto.
5636 * defs.h (volatile): Delete macro definition. Assume __STDC__.
5637 * remote-adapt.c (volatile): Ditto.
5638 * remote-eb.c (volatile): Ditto.
5639 * remote-mm.c (volatile): Ditto.
5640 * defs.h (alloca): Assume __STDC__, declare returning void *.
5641
a728f042
AC
56422001-03-08 Andrew Cagney <ac131313@redhat.com>
5643
5644 * inferior.h (ARCH_NUM_REGS): Delete definition.
5645 * stack.c (frame_info): Use NUM_REGS, not ARCH_NUM_REGS.
5646 * regcache.c (registers_changed): Ditto.
5647 (registers_fetched): Ditto.
5648 * infptrace.c (fetch_inferior_registers): Ditto.
5649 (store_inferior_registers): Ditto.
5650 * infcmd.c (do_registers_info): Ditto.
5651 (registers_info): Ditto.
5652 * i386-linux-nat.c (old_fetch_inferior_registers): Ditto.
5653 (old_store_inferior_registers): Ditto.
5654 * gdbserver/low-linux.c (register_addr): Ditto.
5655 * gdbserver/low-hppabsd.c (register_addr): Ditto.
5656 * core-aout.c: Don't include "inferior.h".
5657 (fetch_core_registers): Use NUM_REGS not ARCH_NUM_REGS.
5658 (register_addr): Ditto.
5659
f48ff60a
FN
56602001-03-13 Fernando Nasser <fnasser@redhat.com>
5661
5662 From Steven Johnson <sjohnson@neurizon.net>
5663 * cli/cli-script.c (define_command): Fix setting of post hooks.
5664
305d65ca
MK
56652001-03-13 Mark Kettenis <kettenis@gnu.org>
5666
5667 * i386-linux-tdep.c: Fix formatting and clarify comments.
5668 (i386_linux_svr4_fetch_link_map_offsets): Use NULL instead of 0
5669 where appropriate.
5670
bf62e5b4
AC
56712001-03-12 Andrew Cagney <ac131313@redhat.com>
5672
5673 * gnu-nat.c: Include "gdb_assert.h" instead of <assert.h>.
5674 (proc_update_sc): Use gdb_assert instead of assert.
5675 (proc_abort): Ditto.
5676 (inf_set_step_thread): Ditto.
5677 (gnu_wait): Ditto.
5678 (S_exception_raise_request): Ditto.
5679 (gnu_terminal_init_inferior): Ditto.
5680
21479ded
KB
56812001-03-09 Kevin Buettner <kevinb@redhat.com>
5682
5683 * Makefile.in (solib-svr4.o): Depend on solib-svr4.c, not solib.c.
5684 (solib-legacy.o): New makefile target.
5685 * solib-legacy.c: New file.
5686 * solib-svr4.h (SVR4_FETCH_LINK_MAP_OFFSETS): Delete.
5687 (default_svr4_fetch_link_map_offsets): Delete.
5688 (set_solib_svr4_fetch_link_map_offsets): Declare.
5689 (legacy_svr4_fetch_link_map_offsets_hook): Declare.
5690 * solib-svr4.c (elf/common.h): Include.
5691 (link.h): Only include for SunOS shared library support.
5692 (_SYSCALL32): Don't define.
5693 (SVR4_FETCH_LINK_MAP_OFFSETS): Define.
5694 (default_svr4_fetch_link_map_offsets): Made static; added forward
5695 declaration.
5696 (fetch_link_map_offsets): New static global.
5697 (legacy_svr4_fetch_link_map_offsets_hook): New global variable.
5698 (default_svr4_fetch_link_map_offsets): Rewritten. The guts
5699 of what used to be in this function now reside in
5700 legacy_svr4_fetch_link_map_offsets() in solib-legacy.c.
5701 (open_symbol_file_object): Fix declaration in SunOS section
5702 of the code.
5703 (set_solib_svr4_fetch_link_map_offsets): New extern function.
5704 (init_fetch_link_map_offsets): New static function.
5705 (_initialize_svr4_solib): Put static global fetch_link_map_offsets
5706 under multiarch control.
5707
5708 * config/alpha/alpha-linux.mt (TDEPFILES): Add solib-legacy.o to
5709 list.
5710 * config/alpha/fbsd.mh (NATDEPFILES): Likewise.
5711 * config/arm/linux.mt (TDEPFILES): Likewise.
5712 * config/i386/fbsd.mh (NATDEPFILES): Likewise.
5713 * config/i386/i386dgux.mh (NATDEPFILES): Likewise.
5714 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
5715 * config/i386/i386sco5.mh (NATDEPFILES): Likewise.
5716 * config/i386/i386sol2.mt (TDEPFILES): Likewise.
5717 * config/i386/i386v4.mh (NATDEPFILES): Likewise.
5718 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
5719 * config/i386/linux.mt (TDEPFILES): Likewise.
5720 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
5721 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5722 * config/i386/ncr3000.mt (TDEPFILES): Likewise.
5723 * config/i386/ptx4.mh (XDEPFILES): Likewise.
5724 * config/i386/sun386.mt (TDEPFILES): Likewise.
5725 * config/ia64/linux.mt (TDEPFILES): Likewise.
5726 * config/m68k/linux.mt (TDEPFILES): Likewise.
5727 * config/m68k/m68kv4.mh (NATDEPFILES): Likewise.
5728 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
5729 * config/m68k/sun2os4.mt (TDEPFILES): Likewise.
5730 * config/m68k/sun3os4.mt (TDEPFILES): Likewise.
5731 * config/m88k/delta88v4.mh (NATDEPFILES): Likewise.
5732 * config/mips/mipsv4.mh (NATDEPFILES): Likewise.
5733 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
5734 * config/powerpc/linux.mt (TDEPFILES): Likewise.
5735 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
5736 * config/powerpc/solaris.mh (NATDEPFILES): Likewise.
5737 * config/sh/linux.mt (TDEPFILES): Likewise.
5738 * config/sparc/linux.mt (TDEPFILES): Likewise.
5739 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
5740 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
5741 * config/sparc/sp64linux.mt (TDEPFILES): Likewise.
5742 * config/sparc/sun4os4.mt (TDEPFILES): Likewise.
5743 * config/sparc/sun4sol2.mh (NATDEPFILES): Likewise.
5744
d7fa9de0
KB
57452001-03-09 Kevin Buettner <kevinb@redhat.com>
5746
5747 * utils.c (xmrealloc, xcalloc): Return NULL for zero-sized requests.
5748
f8241bd1
AC
57492001-03-09 Andrew Cagney <ac131313@redhat.com>
5750
5751 * MAINTAINERS (Write After Approval): Update Philip Blundell.
5752
e6b4b0c2
KS
57532001-03-09 Keith Seitz <keiths@cygnus.com>
5754
5755 * MAINTAINERS: Add myself to write after approval list.
5756
96836138
MK
57572001-03-09 Mark Kettenis <kettenis@gnu.org>
5758
5759 * i387-tdep.c (print_i387_status_word): Fix printing of Stack
5760 fault flag. It is bit 6 of the x87 FPU status word, not bit 7.
5761
1b594327
AC
57622001-03-08 Andrew Cagney <ac131313@redhat.com>
5763
5764 * configure.host (m88*-harris-cxux*): Mark as obsolete.
5765 * configure.tgt: Ditto.
5766 * config/m88k/xm-cxux.h: Ditto.
5767 * config/m88k/tm-cxux.h: Ditto.
5768 * config/m88k/nm-cxux.h: Ditto.
5769 * config/m88k/cxux.mt: Ditto.
5770 * config/m88k/cxux.mh: Ditto.
5771
4a32a1e4
AC
57722001-03-08 Andrew Cagney <ac131313@redhat.com>
5773
5774 * Makefile.in: Delete rules for obsolete files.
5775
ec9a3449
DT
5776Thu Mar 8 15:43:40 2001 David Taylor <taylor@redhat.com>
5777
5778 * stack.c (parse_frame_specification): For one argument case,
5779 handle the situation where the argument is an integer, not an
5780 address -- arguably the most common case. This matters on
5781 targets where pointers and addresses are different.
5782
a50c34dc
AC
57832001-03-08 Andrew Cagney <ac131313@redhat.com>
5784
5785 * TODO: Revise 5.1 list. Delete PARAMS task. Add coding standard
5786 review. Clarify GNU/LINUX/sparc. Move other tasks to 5.2 or
5787 general.
5788
cfc046cf
AC
57892001-03-07 Andrew Cagney <ac131313@redhat.com>
5790
5791 * TODO (GDB 5.1 Known Problems): Document problem of building GDB
5792 with SID on Solaris 8.
5793
39424bef
MK
57942001-03-07 Mark Kettenis <kettenis@gnu.org>
5795
5796 * defs.h: Provide prototypes for floatformat_is_negative,
5797 floatformat_is_nan and floatformat_mantissa.
5798 * utils.c: Include "gdb_assert.h".
5799 (floatformat_is_negative): New function.
5800 (floatformat_is_nan): New function.
5801 (floatformat_mantissa): New function.
5802 * valprint.c: Include "floatformat.h".
5803 (print_floating): Get rid of the Linux-specific
5804 TARGET_ANALYZE_FLOATING macro and rewrite NaN detection with the
5805 help these new functions. Print NaN's in a format conforming to
5806 ISO C99.
5807
7a1bd56a
EZ
58082001-03-07 Eli Zaretskii <eliz@is.elta.co.il>
5809
5810 * top.c (init_main): Make `set history file name' complete on file
5811 names.
5812
5565b556
C
58132001-03-06 J.T. Conklin <jtc@redback.com>
5814
21a12a30
C
5815 * Makefile.in (LINTFLAGS): Update to contain all of the macros
5816 which define include paths used when compiling.
5817
5818 * util.c (savestring, msavestring): Change type of length argument.
5819 * defs.h (savestring, msavestring): Update to match.
5820
5565b556
C
5821 * symtab.h (decode_line_1): Removed declaration.
5822
5823 * symfile.c (#include <assert.h>): Removed.
5824
5825 * arch-utils.c (#include <ctype.h>): Removed.
5826 * c-typeprint.c: Likewise.
5827 * dbxread.c: Likewise.
5828 * gdbtypes.c: Likewise.
5829 * target.c: Likewise.
5830 * os9kread.c: Likewise.
5831
5832 * c-valprint.c (#include "demangle.h"): Removed.
5833 * ch-typeprint.c: Likewise.
5834 * eval.c: Likewise.
5835 * f-typeprint.c: Likewise.
5836 * f-valprint.c: Likewise.
5837 * m2-typeprint.c: Likewise.
5838 * typeprint.c: Likewise.
5839 * p-typeprint.c: Likewise.
5840 * valarith.c: Likewise.
5841 * valprint.c: Likewise.
5842
5843 * m2-typeprint.c (#include "gdb_string.h"): Removed.
5844 * nlmread.c: Likewise.
5845
5846 * mdebugread.c (#include "gdb-stabs.h"): Removed.
5847 * minsyms.c: Likewise.
5848 * mipsread.c: Likewise.
5849 * nlmread.c: Likewise.
5850
5851 * m2-typeprint.c (#include "obstack.h"): Removed.
5852 * m2-valprint.c: Likewise.
5853
5854 * event-loop.c (#include <setjmp.h>): Removed.
5855
e8be95ae
SS
58562001-03-06 Stan Shebs <shebs@apple.com>
5857
5858 * MAINTAINERS: Remove self from specific maintenance domains
5859 (macos, gdbserver, documentation, testsuite).
5860
b6ba6518
KB
58612001-03-06 Kevin Buettner <kevinb@redhat.com>
5862
5863 * 29k-share/udi/udip2soc.c, Makefile.in, a29k-tdep.c,
5864 a68v-nat.c, abug-rom.c, aclocal.m4, alpha-nat.c, alpha-tdep.c,
5865 annotate.c, annotate.h, arc-tdep.c, arch-utils.c,
5866 arch-utils.h, arm-tdep.c, ax-gdb.c, ax-gdb.h, ax-general.c,
5867 ax.h, bcache.c, bcache.h, blockframe.c, breakpoint.c,
5868 breakpoint.h, buildsym.c, buildsym.h, c-exp.y, c-lang.c,
5869 c-lang.h, c-typeprint.c, c-valprint.c, call-cmds.h, ch-exp.c,
5870 ch-lang.c, ch-lang.h, ch-typeprint.c, ch-valprint.c,
5871 cli/cli-cmds.h, cli/cli-decode.c, cli/cli-decode.h,
5872 cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.h,
5873 cli/cli-utils.h, cli-out.c, cli-out.h, coff-solib.c,
5874 coff-solib.h, coffread.c, command.h, complaints.c,
5875 complaints.h, completer.c, completer.h,
5876 config/a29k/nm-ultra3.h, config/a29k/tm-a29k.h,
5877 config/a29k/tm-ultra3.h, config/a29k/tm-vx29k.h,
5878 config/a29k/xm-ultra3.h, config/alpha/nm-fbsd.h,
5879 config/alpha/nm-linux.h, config/alpha/nm-osf.h,
5880 config/alpha/nm-osf2.h, config/alpha/nm-osf3.h,
5881 config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h,
5882 config/alpha/xm-alphalinux.h, config/alpha/xm-alphaosf.h,
5883 config/alpha/xm-fbsd.h, config/arc/tm-arc.h,
5884 config/arm/nm-linux.h, config/arm/tm-arm.h,
5885 config/arm/tm-embed.h, config/d10v/tm-d10v.h,
5886 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
5887 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
5888 config/i386/nm-fbsd.h, config/i386/nm-gnu.h,
5889 config/i386/nm-i386bsd.h, config/i386/nm-i386mach.h,
5890 config/i386/nm-i386sco.h, config/i386/nm-i386sol2.h,
5891 config/i386/nm-i386v.h, config/i386/nm-i386v4.h,
5892 config/i386/nm-i386v42mp.h, config/i386/nm-linux.h,
5893 config/i386/nm-nbsd.h, config/i386/nm-nbsdelf.h,
5894 config/i386/nm-ptx4.h, config/i386/nm-sun386.h,
5895 config/i386/nm-symmetry.h, config/i386/tm-cygwin.h,
5896 config/i386/tm-fbsd.h, config/i386/tm-i386.h,
5897 config/i386/tm-i386aix.h, config/i386/tm-i386bsd.h,
5898 config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h,
5899 config/i386/tm-i386m3.h, config/i386/tm-i386mk.h,
5900 config/i386/tm-i386nw.h, config/i386/tm-i386os9k.h,
5901 config/i386/tm-i386sco5.h, config/i386/tm-i386sol2.h,
5902 config/i386/tm-i386v.h, config/i386/tm-i386v4.h,
5903 config/i386/tm-i386v42mp.h, config/i386/tm-linux.h,
5904 config/i386/tm-nbsd.h, config/i386/tm-ptx.h,
5905 config/i386/tm-ptx4.h, config/i386/tm-sun386.h,
5906 config/i386/tm-symmetry.h, config/i386/tm-vxworks.h,
5907 config/i386/xm-fbsd.h, config/i386/xm-i386bsd.h,
5908 config/i386/xm-i386gnu.h, config/i386/xm-i386m3.h,
5909 config/i386/xm-i386mach.h, config/i386/xm-i386mk.h,
5910 config/i386/xm-i386sco.h, config/i386/xm-i386v4.h,
5911 config/i386/xm-linux.h, config/i386/xm-nbsd.h,
5912 config/i386/xm-ptx.h, config/i386/xm-ptx4.h,
5913 config/i386/xm-sun386.h, config/i386/xm-symmetry.h,
5914 config/i960/tm-i960.h, config/i960/tm-mon960.h,
5915 config/i960/tm-nindy960.h, config/i960/tm-vx960.h,
5916 config/ia64/nm-aix.h, config/ia64/nm-linux.h,
5917 config/ia64/tm-aix.h, config/ia64/tm-ia64.h,
5918 config/ia64/tm-linux.h, config/ia64/xm-aix.h,
5919 config/ia64/xm-linux.h, config/m68k/nm-apollo68b.h,
5920 config/m68k/nm-delta68.h, config/m68k/nm-dpx2.h,
5921 config/m68k/nm-hp300bsd.h, config/m68k/nm-hp300hpux.h,
5922 config/m68k/nm-linux.h, config/m68k/nm-sun3.h,
5923 config/m68k/tm-apollo68b.h, config/m68k/tm-cisco.h,
5924 config/m68k/tm-dpx2.h, config/m68k/tm-es1800.h,
5925 config/m68k/tm-hp300bsd.h, config/m68k/tm-hp300hpux.h,
5926 config/m68k/tm-isi.h, config/m68k/tm-linux.h,
5927 config/m68k/tm-m68k.h, config/m68k/tm-m68kv4.h,
5928 config/m68k/tm-mac.h, config/m68k/tm-monitor.h,
5929 config/m68k/tm-nbsd.h, config/m68k/tm-news.h,
5930 config/m68k/tm-os68k.h, config/m68k/tm-sun3.h,
5931 config/m68k/tm-vx68.h, config/m68k/xm-3b1.h,
5932 config/m68k/xm-apollo68b.h, config/m68k/xm-dpx2.h,
5933 config/m68k/xm-hp300bsd.h, config/m68k/xm-hp300hpux.h,
5934 config/m68k/xm-linux.h, config/m68k/xm-m68kv4.h,
5935 config/m68k/xm-mpw.h, config/m68k/xm-news.h,
5936 config/m68k/xm-sun2.h, config/m68k/xm-sun3.h,
5937 config/m68k/xm-sun3os4.h, config/m88k/nm-delta88v4.h,
5938 config/m88k/tm-delta88.h, config/m88k/tm-delta88v4.h,
5939 config/m88k/tm-m88k.h, config/m88k/xm-cxux.h,
5940 config/m88k/xm-delta88.h, config/m88k/xm-delta88v4.h,
5941 config/m88k/xm-dgux.h, config/mcore/tm-mcore.h,
5942 config/mips/nm-irix3.h, config/mips/nm-irix4.h,
5943 config/mips/nm-irix5.h, config/mips/nm-mips.h,
5944 config/mips/nm-news-mips.h, config/mips/tm-bigmips.h,
5945 config/mips/tm-embed.h, config/mips/tm-embed64.h,
5946 config/mips/tm-embedl.h, config/mips/tm-embedl64.h,
5947 config/mips/tm-irix3.h, config/mips/tm-irix5.h,
5948 config/mips/tm-mips.h, config/mips/tm-mips64.h,
5949 config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h,
5950 config/mips/tm-tx39.h, config/mips/tm-tx39l.h,
5951 config/mips/tm-vr4100.h, config/mips/tm-vr4300.h,
5952 config/mips/tm-vr4300el.h, config/mips/tm-vr4xxx.h,
5953 config/mips/tm-vr4xxxel.h, config/mips/tm-vr5000.h,
5954 config/mips/tm-vr5000el.h, config/mips/xm-irix3.h,
5955 config/mips/xm-irix4.h, config/mips/xm-irix5.h,
5956 config/mips/xm-mips.h, config/mips/xm-mipsm3.h,
5957 config/mips/xm-mipsv4.h, config/mips/xm-news-mips.h,
5958 config/mips/xm-riscos.h, config/mn10200/tm-mn10200.h,
5959 config/mn10300/tm-mn10300.h, config/nm-gnu.h,
5960 config/nm-linux.h, config/nm-lynx.h, config/nm-m3.h,
5961 config/nm-sysv4.h, config/none/nm-none.h,
5962 config/none/tm-none.h, config/none/xm-none.h,
5963 config/ns32k/nm-nbsd.h, config/ns32k/nm-umax.h,
5964 config/ns32k/tm-merlin.h, config/ns32k/tm-nbsd.h,
5965 config/ns32k/tm-ns32km3.h, config/ns32k/tm-umax.h,
5966 config/ns32k/xm-merlin.h, config/ns32k/xm-ns32km3.h,
5967 config/pa/nm-hppab.h, config/pa/nm-hppah.h,
5968 config/pa/nm-hppao.h, config/pa/tm-hppa.h,
5969 config/pa/tm-hppa64.h, config/pa/tm-hppah.h,
5970 config/pa/xm-hppab.h, config/pa/xm-hppah.h,
5971 config/powerpc/nm-aix.h, config/powerpc/nm-linux.h,
5972 config/powerpc/nm-macos.h, config/powerpc/nm-nbsd.h,
5973 config/powerpc/tm-cygwin.h, config/powerpc/tm-linux.h,
5974 config/powerpc/tm-macos.h, config/powerpc/tm-ppc-aix.h,
5975 config/powerpc/tm-ppc-eabi.h, config/powerpc/tm-ppc-nw.h,
5976 config/powerpc/tm-ppcle-eabi.h, config/powerpc/tm-solaris.h,
5977 config/powerpc/xm-aix.h, config/powerpc/xm-linux.h,
5978 config/powerpc/xm-mpw.h, config/rs6000/nm-rs6000.h,
5979 config/rs6000/tm-rs6000.h, config/rs6000/tm-rs6000ly.h,
5980 config/rs6000/xm-aix4.h, config/rs6000/xm-rs6000.h,
5981 config/sh/tm-linux.h, config/sh/tm-sh.h, config/sh/tm-wince.h,
5982 config/sparc/nm-linux.h, config/sparc/nm-nbsd.h,
5983 config/sparc/nm-nbsdelf.h, config/sparc/nm-sparclynx.h,
5984 config/sparc/nm-sun4os4.h, config/sparc/nm-sun4sol2.h,
5985 config/sparc/tm-linux.h, config/sparc/tm-sp64.h,
5986 config/sparc/tm-sp64sim.h, config/sparc/tm-sparc.h,
5987 config/sparc/tm-sparclet.h, config/sparc/tm-sparclite.h,
5988 config/sparc/tm-sparclynx.h, config/sparc/tm-spc-em.h,
5989 config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h,
5990 config/sparc/xm-sun4os4.h, config/sparc/xm-sun4sol2.h,
5991 config/tic80/tm-tic80.h, config/tm-linux.h, config/tm-lynx.h,
5992 config/tm-sysv4.h, config/v850/tm-v850.h, config/vax/tm-vax.h,
5993 config/w65/tm-w65.h, config/xm-aix4.h, config/xm-lynx.h,
5994 config/xm-mpw.h, config/xm-nbsd.h, config/xm-sysv4.h,
5995 config/z8k/tm-z8k.h, configure.in, core-aout.c, core-regset.c,
5996 core-sol2.c, corefile.c, corelow.c, cp-valprint.c,
5997 cpu32bug-rom.c, cxux-nat.c, d10v-tdep.c, d30v-tdep.c,
5998 dbug-rom.c, dbxread.c, dcache.c, dcache.h, defs.h,
5999 delta68-nat.c, demangle.c, dink32-rom.c, dpx2-nat.c, dsrec.c,
6000 dstread.c, dve3900-rom.c, dwarf2read.c, dwarfread.c,
6001 elfread.c, environ.c, environ.h, eval.c, event-loop.c,
6002 event-loop.h, event-top.c, exec.c, expprint.c, f-exp.y,
6003 f-lang.c, f-lang.h, f-typeprint.c, f-valprint.c, findvar.c,
6004 fork-child.c, fr30-tdep.c, frame.c, frame.h, gdb-events.c,
6005 gdb-events.h, gdb-events.sh, gdb-stabs.h, gdb.1, gdb_string.h,
6006 gdb_thread_db.h, gdbcmd.h, gdbcore.h, gdbserver/Makefile.in,
6007 gdbserver/gdbreplay.c, gdbserver/gdbserver.1,
6008 gdbserver/low-hppabsd.c, gdbserver/low-linux.c,
6009 gdbserver/low-lynx.c, gdbserver/low-nbsd.c,
6010 gdbserver/low-sim.c, gdbserver/low-sparc.c,
6011 gdbserver/low-sun3.c, gdbserver/remote-utils.c,
6012 gdbserver/server.c, gdbserver/server.h, gdbserver/utils.c,
6013 gdbthread.h, gdbtypes.c, gdbtypes.h, gnu-nat.c, gnu-nat.h,
6014 gnu-regex.c, gnu-regex.h, h8300-tdep.c, h8500-tdep.c,
6015 hp-psymtab-read.c, hp-symtab-read.c, hp300ux-nat.c,
6016 hppa-tdep.c, hppab-nat.c, hppah-nat.c, hppam3-nat.c, hpread.c,
6017 hpread.h, hpux-thread.c, i386-tdep.c, i386aix-nat.c,
6018 i386b-nat.c, i386gnu-nat.c, i386ly-tdep.c, i386m3-nat.c,
6019 i386mach-nat.c, i386nbsd-nat.c, i386nbsd-tdep.c, i386v-nat.c,
6020 i386v4-nat.c, i387-tdep.c, i960-tdep.c, infcmd.c, inferior.h,
6021 inflow.c, infptrace.c, infrun.c, inftarg.c, infttrace.c,
6022 irix4-nat.c, irix5-nat.c, isi-xdep.c, jv-exp.y, jv-lang.c,
6023 jv-lang.h, jv-typeprint.c, jv-valprint.c, kdb-start.c,
6024 kod-cisco.c, kod.c, language.c, language.h, lin-thread.c,
6025 linespec.c, linespec.h, linux-thread.c, lynx-nat.c, m2-exp.y,
6026 m2-lang.c, m2-lang.h, m2-typeprint.c, m2-valprint.c, m3-nat.c,
6027 m32r-rom.c, m32r-tdep.c, m68k-tdep.c, m68klinux-nat.c,
6028 m68knbsd-nat.c, m88k-nat.c, m88k-tdep.c, mac-nat.c,
6029 mac-xdep.c, main.c, maint.c, mcore-rom.c, mcore-tdep.c,
6030 mdebugread.c, mem-break.c, minimon.h, minsyms.c, mips-nat.c,
6031 mips-tdep.c, mipsm3-nat.c, mipsread.c, mipsv4-nat.c,
6032 mn10200-tdep.c, mn10300-tdep.c, mon960-rom.c, monitor.c,
6033 monitor.h, news-xdep.c, nindy-share/env.h, nindy-tdep.c,
6034 nlm/Makefile.in, nlmread.c, ns32k-tdep.c, ns32km3-nat.c,
6035 ns32knbsd-nat.c, objfiles.c, objfiles.h, ocd.c, ocd.h,
6036 op50-rom.c, os9kread.c, osfsolib.c, p-exp.y, pa64solib.c,
6037 pa64solib.h, parse.c, parser-defs.h, partial-stab.h,
6038 ppc-bdm.c, ppc-linux-nat.c, ppc-linux-tdep.c, ppcbug-rom.c,
6039 ppcnbsd-nat.c, printcmd.c, proc-api.c, proc-events.c,
6040 proc-flags.c, proc-utils.h, proc-why.c, procfs.c, ptx4-nat.c,
6041 rdi-share/Makefile.in, rdi-share/aclocal.m4, regcache.c,
6042 regcache.h, remote-adapt.c, remote-array.c, remote-bug.c,
6043 remote-e7000.c, remote-eb.c, remote-es.c, remote-est.c,
6044 remote-hms.c, remote-mips.c, remote-mm.c, remote-nindy.c,
6045 remote-nrom.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
6046 remote-sds.c, remote-sim.c, remote-st.c, remote-udi.c,
6047 remote-utils.c, remote-utils.h, remote-vx.c, remote.c,
6048 remote.h, reply_mig_hack.awk, rom68k-rom.c, rs6000-nat.c,
6049 rs6000-tdep.c, scm-exp.c, scm-lang.c, scm-lang.h, scm-tags.h,
6050 scm-valprint.c, ser-e7kpc.c, ser-mac.c, ser-ocd.c, ser-pipe.c,
6051 ser-tcp.c, ser-unix.c, serial.c, serial.h, sh-tdep.c,
6052 sh3-rom.c, sol-thread.c, solib-aix5.c, solib-svr4.c, solib.c,
6053 solib.h, solist.h, somread.c, somsolib.c, somsolib.h,
6054 source.c, sparc-nat.c, sparc-tdep.c, sparcl-tdep.c,
6055 sparclet-rom.c, srec.h, stabsread.c, stabsread.h, stack.c,
6056 standalone.c, stop-gdb.c, stuff.c, sun3-nat.c, sun386-nat.c,
6057 symfile.c, symfile.h, symm-nat.c, symm-tdep.c, symmisc.c,
6058 symtab.c, symtab.h, target.c, target.h, terminal.h, thread.c,
6059 tic80-tdep.c, top.c, top.h, tracepoint.c, tracepoint.h,
6060 typeprint.c, ui-file.c, ui-file.h, ui-out.h, ultra3-nat.c,
6061 ultra3-xdep.c, umax-xdep.c, utils.c, v850-tdep.c, v850ice.c,
6062 valarith.c, valops.c, valprint.c, value.h, values.c, varobj.h,
6063 vax-tdep.c, version.h, vx-share/vxWorks.h, vx-share/xdr_ld.c,
6064 vx-share/xdr_ptrace.c, vx-share/xdr_ptrace.h,
6065 vx-share/xdr_rdb.c, w65-tdep.c, w89k-rom.c, win32-nat.c,
6066 wrapper.c, wrapper.h, xcoffread.c, xcoffsolib.c, xcoffsolib.h,
6067 xmodem.c, xmodem.h, z8k-tdep.c: Update/correct copyright
6068 notices.
6069
596c9d4b
KB
60702001-03-05 Kevin Buettner <kevinb@redhat.com>
6071
6072 * acconfig.h (HAVE_PRSYSENT_T, HAVE_PR_SIGSET_T,
6073 HAVE_PR_SIGACTION64_T, HAVE_PR_SIGINFO64_T): New configure
6074 macros.
6075 * configure.in (prsysent_t, pr_sigset_t, pr_sigaction64_t,
6076 pr_siginfo64_t): Test for these typedefs in <sys/procfs.h>.
6077 (sys/fault.h, sys/select.h): Test for presence of these
6078 header files.
6079 (ia64-*-aix*): Define NEW_PROC_API for this host.
6080 * configure: Regenerate.
6081 * config.in: Regenerate.
6082
6083 * configure.host (ia64-*-aix*): New host.
6084 * configure.tgt (ia64-*-aix*): New target.
8a5c92d3 6085
eccbb20d
AC
60862001-03-05 Andrew Cagney <ac131313@redhat.com>
6087
6088 * TODO (GDB 5.1 Known Problems): Document z8k as broken.
6089
9ff2efe5
CF
6090Mon Mar 5 11:56:09 2001 Christopher Faylor <cgf@cygnus.com>
6091
6092 * wince.c: Change realloc to xrealloc throughout.
61e2d1f3 6093 (handle_load_dll): Use void * rather than PTR in argument.
9ff2efe5 6094
58841d58
AC
60952001-03-04 Andrew Cagney <ac131313@redhat.com>
6096
6097 * ocd.h (ocd_xfer_memory): Add ``attrib'' parameter.
6098 * ocd.c (ocd_xfer_memory): Ditto.
6099 * ser-ocd.c (ocd_setstopbits): New function. Add to ocd_ops.
6100 * MAINTAINERS: Document powerpc-eabi and powerpcle-eabi as
6101 buildable with ,-Werror.
6102
6103 * Makefile.in (symfile_h): Define.
6104 (mcore-tdep.o): Add $(symfile_h), $(gdbcore_h) and $(inferior_h).
6105 * mcore-tdep.c: Include "symfile.h", "gdbcore.h" and "inferior.h".
6106 * MAINTAINERS: Document mcore-elf and mcore-pe as buildable with
6107 ,-Werror.
6108
6109 * dsrec.c (make_srec): Fix internal_error fmt arg.
6110 * MAINTAINERS: Document i960-coff as buildable with ,-Werror.
6111
3cad1ac9
KB
61122001-03-03 Kevin Buettner <kevinb@redhat.com>
6113
6114 * solib-aix5.c (aix5_relocate_main_executable): Don't use ANOFFSET
6115 as an lvalue.
6116
b9fa2e73
AC
61172001-03-02 Andrew Cagney <ac131313@redhat.com>
6118
130c39e6
AC
6119 * MAINTAINERS (paper trail): Update.
6120
b9fa2e73
AC
6121 * CONTRIBUTE: Update note on ``Fix PR gdb/4706'' convention.
6122
c53efe6e
AC
61232001-03-02 Andrew Cagney <ac131313@redhat.com>
6124
6125 From 2001-03-01 Tom Rix <trix@redhat.com>:
6126 * mn10200-tdep.c (mn10200_frame_chain): Pass 0 for ``pc''
6127 parameter to mn10200_analyze_prologue.
6128
6129 * config/mn10200/tm-mn10200.h: Include "regcache.h".
6130 * MAINTAINERS: Document that mn10200-elf target is buildable.
6131
52b5c2eb
KB
61322001-03-02 Kevin Buettner <kevinb@redhat.com>
6133
6134 * config/ia64/xm-aix.h (GDB_GREGSET_T, GDB_FPREGSET_T): Move defines
6135 from here...
6136 * config/ia64/nm-aix.h (GDB_GREGSET_T, GDB_FPREGSET_T): ...to here.
6137 (MONTEREY): Don't define.
6138 (AIX5): Define.
6139
2edb46b1
MH
61402001-03-02 Matt Hiller <hiller@redhat.com>
6141
6142 * config/mn10300/tm-mn10300.h (E0_REGNUM): Correct to 15.
6143
92c71a3e
KB
61442001-03-02 Kevin Buettner <kevinb@redhat.com>
6145
82a2886f 6146 * sparc-nat.c (sparc-nat.c): Don't include self.
92c71a3e 6147
e2a4c6c1
C
61482001-03-01 J.T. Conklin <jtc@redback.com>
6149
3a644c8d
C
6150 * defs.h (__CYGWIN__): Moved conditional which defines __CYGWIN__
6151 if __CYGWIN32__ is set from here.
6152 * config/i386/xm-cygwin.h: To here.
6153 * config/powerpc/xm-cygwin.h: To here.
6154
e2a4c6c1
C
6155 * i386-stub.c (handle_exception): Use 'T' response packet.
6156
4b33390a
MS
61572001-03-01 Michael Snyder <msnyder@mvstp600e.cygnus.com>
6158
6159 * m32r-tdep.c: Fix cut and paste error in comment.
6160
61612001-02-28 Michael Snyder <msnyder@mvstp600e.cygnus.com>
6162
6163 * symtab.c (print_msymbol_info): Print addresses by portable method
6164 longest_local_hex_string_custom. Allow for 64-bit addresses.
6165
ba41d549
C
61662001-03-01 J.T. Conklin <jtc@redback.com>
6167
6168 * gdbtypes.h (builtin_type_f_integer): Removed duplicate declaration.
6169 (MAX_OF_TYPE): Wrap macro definition in parenthesis.
6170 (MIN_OF_TYPE): Likewise.
6171
6172 * memattr.h (mem_access_mode): Removed extraneous trailing comma.
6173
088d891f
AC
61742001-03-01 Andrew Cagney <ac131313@redhat.com>
6175
6176 * Makefile.in (os9kread.o): Do not compile with WERROR_CFLAGS.
6177 * os9kread.c (os9k_process_one_symbol): Add assert to detect
6178 ``loses if sizeof (char *) > sizeof (int)''.
6179
38266776
AC
61802001-03-01 Andrew Cagney <ac131313@redhat.com>
6181
6182 * gdb_assert.h: Document pragmatics behind gdb_assert's case.
6183
2ad43c4f
AC
61842001-03-01 Andrew Cagney <ac131313@redhat.com>
6185
6186 * Makefile.in (gdbtk-cmds.o): Add $(regcache_h) to dependency
6187 lists.
6188 (mi-main.o): Ditto.
6189
367e21d8
AC
61902001-03-01 Andrew Cagney <ac131313@redhat.com>
6191
6192 * Makefile.in (regcache_h): Define. Add $(regcache_h) to
6193 dependency lists.
6194
d85310f7
MS
61952001-02-28 Michael Snyder <msnyder@mvstp600e.cygnus.com>
6196
c0d8fd9a
MS
6197 * printcmd.c (print_address_numeric): Update comments to refer
6198 to sizeof addr, not sizeof pointer.
6199 (x_command): Remove needless whitespace (shorten long line).
6200
d85310f7
MS
6201 * breakpoint.c (print_one_breakpoint): Formatting clean-up.
6202 (read_memory_nobpt): Ditto.
6203 (ep_is_catchpoint): Ditto.
6204 (ep_is_shlib_catchpoint): Ditto.
6205 (ep_is_exception_catchpoint): Ditto.
6206 (describe_other_breakpoints): Ditto.
6207
97900206
AC
6208Wed Feb 28 20:37:36 2001 Andrew Cagney <ac131313@redhat.com>
6209
6210 * regcache.h (register_valid): Fix comment documenting valid
6211 states.
6212
4e052eda
AC
6213Tue Feb 27 23:56:23 2001 Andrew Cagney <ac131313@redhat.com>
6214
6215 From Steven Johnson:
6216 * regcache.h: New file.
6217
6218 * value.h (read_register_bytes, read_register_gen)
6219 (write_register_gen, write_register_bytes)
6220 (read_register, read_register_pid)
6221 (read_signed_register, read_signed_register_pid)
6222 (write_register, write_register_pid)
6223 (register_cached, set_register_cached)
6224 (register_changed, register_buffer)
6225 (registers_changed, supply_register): Move declaration from here.
6226 * regcache.h: To here.
6227 * gdbcore.h (registers_fetched): Ditto.
6228 * inferior.h (registers, registers_valid): Ditto.
6229
6230 * regcache.c (generic_target_read_pc, read_pc_pid, read_pc,
6231 generic_target_write_pc, write_pc_pid, write_pc,
6232 generic_target_read_sp, read_sp, generic_target_write_sp,
6233 write_sp, generic_target_read_fp, read_fp,
6234 generic_target_write_fp, write_fp): Add note that these functions
6235 will be moved from this file.
6236
6237 * a29k-tdep.c: Include "regcache.h".
6238 * a68v-nat.c: Ditto.
6239 * abug-rom.c: Ditto.
6240 * alpha-nat.c: Ditto.
6241 * alpha-tdep.c: Ditto.
6242 * alphabsd-nat.c: Ditto.
6243 * arc-tdep.c: Ditto.
6244 * arm-linux-nat.c: Ditto.
6245 * arm-linux-tdep.c: Ditto.
6246 * arm-tdep.c: Ditto.
6247 * blockframe.c: Ditto.
6248 * core-aout.c: Ditto.
6249 * core-sol2.c: Ditto.
6250 * corelow.c: Ditto.
6251 * cpu32bug-rom.c: Ditto.
6252 * cxux-nat.c: Ditto.
6253 * d10v-tdep.c: Ditto.
6254 * d30v-tdep.c: Ditto.
6255 * dbug-rom.c: Ditto.
6256 * dink32-rom.c: Ditto.
6257 * dve3900-rom.c: Ditto.
6258 * findvar.c: Ditto.
6259 * fr30-tdep.c: Ditto.
6260 * frame.c: Ditto.
6261 * go32-nat.c: Ditto.
6262 * h8300-tdep.c: Ditto.
6263 * h8500-tdep.c: Ditto.
6264 * hp300ux-nat.c: Ditto.
6265 * hppa-tdep.c: Ditto.
6266 * hppab-nat.c: Ditto.
6267 * hppah-nat.c: Ditto.
6268 * hppam3-nat.c: Ditto.
6269 * hpux-thread.c: Ditto.
6270 * i386-linux-nat.c: Ditto.
6271 * i386-linux-tdep.c: Ditto.
6272 * i386-tdep.c: Ditto.
6273 * i386aix-nat.c: Ditto.
6274 * i386b-nat.c: Ditto.
6275 * i386bsd-nat.c: Ditto.
6276 * i386gnu-nat.c: Ditto.
6277 * i386ly-tdep.c: Ditto.
6278 * i386m3-nat.c: Ditto.
6279 * i386mach-nat.c: Ditto.
6280 * i386nbsd-nat.c: Ditto.
6281 * i386v4-nat.c: Ditto.
6282 * i387-nat.c: Ditto.
6283 * i387-tdep.c: Ditto.
6284 * i960-tdep.c: Ditto.
6285 * ia64-aix-nat.c: Ditto.
6286 * ia64-linux-nat.c: Ditto.
6287 * ia64-tdep.c: Ditto.
6288 * infptrace.c: Ditto.
6289 * infrun.c: Ditto.
6290 * irix4-nat.c: Ditto.
6291 * irix5-nat.c: Ditto.
6292 * lin-lwp.c: Ditto.
6293 * lin-thread.c: Ditto.
6294 * lynx-nat.c: Ditto.
6295 * m3-nat.c: Ditto.
6296 * m32r-rom.c: Ditto.
6297 * m32r-tdep.c: Ditto.
6298 * m68hc11-tdep.c: Ditto.
6299 * m68k-tdep.c: Ditto.
6300 * m68klinux-nat.c: Ditto.
6301 * m68knbsd-nat.c: Ditto.
6302 * m68knbsd-tdep.c: Ditto.
6303 * m88k-nat.c: Ditto.
6304 * m88k-tdep.c: Ditto.
6305 * mac-nat.c: Ditto.
6306 * mcore-rom.c: Ditto.
6307 * mcore-tdep.c: Ditto.
6308 * mi/mi-main.c: Ditto.
6309 * mips-nat.c: Ditto.
6310 * mips-tdep.c: Ditto.
6311 * mipsm3-nat.c: Ditto.
6312 * mipsv4-nat.c: Ditto.
6313 * mn10200-tdep.c: Ditto.
6314 * mn10300-tdep.c: Ditto.
6315 * monitor.c: Ditto.
6316 * ns32km3-nat.c: Ditto.
6317 * ns32knbsd-nat.c: Ditto.
6318 * ocd.c: Ditto.
6319 * pa64solib.c: Ditto.
6320 * ppc-bdm.c: Ditto.
6321 * ppc-linux-nat.c: Ditto.
6322 * ppc-linux-tdep.c: Ditto.
6323 * ppcbug-rom.c: Ditto.
6324 * ppcnbsd-nat.c: Ditto.
6325 * ptx4-nat.c: Ditto.
6326 * regcache.c: Ditto.
6327 * remote-adapt.c: Ditto.
6328 * remote-array.c: Ditto.
6329 * remote-bug.c: Ditto.
6330 * remote-e7000.c: Ditto.
6331 * remote-eb.c: Ditto.
6332 * remote-es.c: Ditto.
6333 * remote-est.c: Ditto.
6334 * remote-hms.c: Ditto.
6335 * remote-mips.c: Ditto.
6336 * remote-mm.c: Ditto.
6337 * remote-nindy.c: Ditto.
6338 * remote-os9k.c: Ditto.
6339 * remote-rdi.c: Ditto.
6340 * remote-rdp.c: Ditto.
6341 * remote-sds.c: Ditto.
6342 * remote-sim.c: Ditto.
6343 * remote-st.c: Ditto.
6344 * remote-udi.c: Ditto.
6345 * remote-utils.c: Ditto.
6346 * remote-vx.c: Ditto.
6347 * remote-vx29k.c: Ditto.
6348 * remote-vx68.c: Ditto.
6349 * remote-vx960.c: Ditto.
6350 * remote-vxmips.c: Ditto.
6351 * remote-vxsparc.c: Ditto.
6352 * remote.c: Ditto.
6353 * rom68k-rom.c: Ditto.
6354 * rs6000-nat.c: Ditto.
6355 * rs6000-tdep.c: Ditto.
6356 * sh-tdep.c: Ditto.
6357 * sh3-rom.c: Ditto.
6358 * sol-thread.c: Ditto.
6359 * solib-svr4.c: Ditto.
6360 * somsolib.c: Ditto.
6361 * sparc-nat.c: Ditto.
6362 * sparc-tdep.c: Ditto.
6363 * sparcl-tdep.c: Ditto.
6364 * sparclet-rom.c: Ditto.
6365 * sun3-nat.c: Ditto.
6366 * sun386-nat.c: Ditto.
6367 * symm-nat.c: Ditto.
6368 * target.c: Ditto.
6369 * thread-db.c: Ditto.
6370 * thread.c: Ditto.
6371 * tic80-tdep.c: Ditto.
6372 * tracepoint.c: Ditto.
6373 * ultra3-nat.c: Ditto.
6374 * umax-xdep.c: Ditto.
6375 * uw-thread.c: Ditto.
6376 * v850-tdep.c: Ditto.
6377 * v850ice.c: Ditto.
6378 * valops.c: Ditto.
6379 * w65-tdep.c: Ditto.
6380 * w89k-rom.c: Ditto.
6381 * win32-nat.c: Ditto.
6382 * wince.c: Ditto.
6383 * z8k-tdep.c: Ditto.
6384
07d48ebc
MH
63852001-02-28 Matt Hiller <hiller@redhat.com>
6386
6387 * MAINTAINERS: Add Matt Hiller to Write After Approval list.
6388
2edb46b1
MH
63892001-02-27 Matt Hiller <hiller@redhat.com>
6390
6391 * mn10300-tdep.c (mn10300_stab_reg_to_regnum): New function.
6392 (mn10300_gdbarch_init): Set appropriate elements of gdbarch to
6393 mn10300_stab_reg_to_regnum.
6394
993f3aa5
DT
6395Tue Feb 27 16:56:13 2001 David Taylor <taylor@redhat.com>
6396
6397 * symtab.c (search_symbols): Fix off by one error in test for
6398 error.
6399
86168def
AC
64002001-02-23 Andrew Cagney <ac131313@redhat.com>
6401
6402 * config/sparc/sp64linux.mt: New file.
6403 * configure.tgt: Recognize sparc64-*-linux* as a sp64linux target.
6404 * configure.host: Recognize sparc64-*-linux* as a linux host.
6405
6406 From 2000-03-17 Jakub Jelinek <jakub@redhat.com>:
6407 * config/sparc/tm-sp64linux.h: New file.
6408
e1e9e218
KB
64092001-02-24 Kevin Buettner <kevinb@redhat.com>
6410
6411 * buildsym.c (push_subfile, pop_subfile): Replace call to abort()
6412 with call to internal_error().
6413 * dbxread.c (process_one_symbol): Likewise.
6414 * exec.c (build_section_table, xfer_memory): Likewise.
6415 * h8500-tdep.c (h8500_register_size, h8500_register_virtual_type):
6416 Likewise.
6417 * hpread.c (hpread_type_translate, hpread_read_array_type)
6418 (hpread_type_lookup): Likewise.
6419 * i386-tdep.c (gdb_print_insn_i386): Likewise.
6420 * i960-tdep.c (mem): Likewise
6421 * inflow.c (set_sigio_trap, clear_sigio_trap): Likewise.
6422 * infptrace.c (child_resume): Likewise.
6423 * infttrace.c (_initialize_infttrace): Likewise.
6424 * language.c (binop_result_type, add_language): Likewise.
6425 * lynx-nat.c (store_inferior_registers): Likewise.
6426 * m3-nat.c (port_chain_insert, m3_trace_me): Likewise.
6427 * mdebugread.c (parse_partial_symbols): Likewise.
6428 * monitor.c (monitor_printf_noecho, monitor_printf)
6429 (monitor_dump_regs): Likewise.
6430 * ocd.c (stu_put_packet): Likewise.
6431 * printcmd.c (decode_format, print_scalar_formatted): Likewise.
6432 * remote-bug.c (bug_open): Likewise.
6433 * remote-e7000.c (fetch_regs_from_dump, e7000_wait): Likewise.
6434 * remote-es.c (es1800_read_bytes): Likewise.
6435 * remote-mips.c (common_breakpoint): Likewise.
6436 * remote-rdp.c (send_rdp): Likewise.
6437 * remote-sds.c (putmessage): Likewise.
6438 * sparc-nat.c (fetch_inferior_registers, store_inferior_registers):
6439 Likewise.
6440 * sparcl-tdep.c (sparclite_download): Likewise.
6441 * symtab.c (lookup_partial_symbol): Likewise.
6442 * target.c (push_target, pop_target, initialize_targets): Likewise.
6443 * utils.c (internal_verror, malloc_botch, wrap_here, decimal2str):
6444 Likewise.
6445 * valprint.c (print_decimal, print_longest, print_longest)
6446 (strcat_longest): Likewise.
6447 * w65-tdep.c (init_frame_pc, w65_push_dummy_frame): Likewise.
6448 * xmodem.c (xmodem_send_packet): Likewise.
6449 * z8k-tdep.c (init_frame_pc, z8k_push_dummy_frame): Likewise.
6450 * config/h8500/tm-h8500.h (STORE_STRUCT_RETURN): Likewise.
6451 * config/mn10200/tm-mn10200.h (EXTRACT_RETURN_VALUE)
6452 (STORE_RETURN_VALUE): Likewise.
6453 * config/ns32k/nm-umax.h (REGISTER_U_ADDR): Likewise.
6454 * config/ns32k/xm-merlin.h (REGISTER_U_ADDR): Likewise.
6455 * config/z8k/tm-z8k.h (STORE_STRUCT_RETURN, STORE_RETURN_VALUE):
6456 Likewise.
6457
17fceda3
AC
64582001-02-23 Andrew Cagney <ac131313@redhat.com>
6459
2126d5fb
AC
6460 * CONTRIBUTE: Document how to cite a problem report.
6461 * TODO: Note need to replace CONTRIBUTE with generated file.
6462
17fceda3
AC
6463 * CONTRIBUTE: Mention that patches do not need to include the
6464 generated files gdbarch.h and gdbarch.c.
6465
60edd51d
AC
64662001-02-21 Andrew Cagney <ac131313@redhat.com>
6467
6468 * value.h (get_saved_register): Move from here.
6469 * frame.h: To here.
6470
d7fa2ae2
KB
64712001-02-21 Kevin Buettner <kevinb@redhat.com>
6472
6473 * solib.h (in_svr4_dynsym_resolve_code): Delete declaration.
6474 (in_solib_dynsym_resolve_code): Add declaration.
6475 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Changed define to invoke
6476 in_solib_dynsym_resolve_code() rather than
6477 in_svr4_dynsym_resolve_code(). Also, removed the ifdefs
6478 which caused this macro to only be defined when
6479 SVR4_SHARED_LIBS is defined.
6480 * solib.c (in_solib_dynsym_resolve_code): New function.
6481 * solist.h (struct target_so_ops): Add new member
6482 in_dynsym_resolve_code.
6483 * solib-aix5.c (aix5_in_dynsym_resolve_code): Renamed from
6484 in_svr4_dynsym_resolve_code. Also, made static.
6485 (_initialize_aix5_solib): Initialize in_dynsym_resolve_code
6486 member in aix5_so_ops.
6487 * solib-svr4.c (svr4_in_dynsym_resolve_code): Renamed from
6488 in_svr4_dynsym_resolve_code. Also, added second version
6489 of this function which will be used when SVR4_SHARED_LIBS
6490 is not defined.
6491 (_initialize_svr4_solib): Initialize in_dynsym_resolve_code
6492 member in svr4_so_ops.
6493
6494 * ia64-aix-nat.c, ia64-aix-tdep.c, config/ia64/aix.mh,
6495 config/ia64/aix.mt, config/ia64/nm-aix.h, config/ia64/tm-aix.h,
6496 config/ia64/xm-aix.h: New files.
6497 * ia64-tdep.c (_initialize_ia64_tdep): Remove declaration.
6498 (ia64_aix_sigcontext_register_address): New declaration.
aacc1edd 6499 (ia64_gdbarch_init): Provide for initialization of
d7fa2ae2
KB
6500 sigcontext_register_address member of struct tdep when
6501 on target is detected to be running AIX.
6502 * config/ia64/linux.mt (TDEPFILES): Add ia64-aix-tdep.o to
6503 this list.
6504
fbad0893
KB
65052001-02-20 Kevin Buettner <kevinb@redhat.com>
6506
6507 * ia64-tdep.c (ia64_frameless_function_invocation): Implement.
6508 * config/ia64/linux.mh (NATDEPFILES): Use thread-db.o and lin-lwp.o
6509 for thread support instead of linux-thread.o and lin-thread.o.
6510 * config/ia64/nm-linux.h (PREPARE_TO_PROCEED, GET_THREAD_SIGNALS,
6511 ATTACH_LWP): Define to use the following lin-lwp.c functions...
6512 (lin_lwp_prepare_to_proceed, lin_thread_get_thread_signals,
6513 lin_lwp_attach_lwp): Declare.
6514
1adad886
AC
65152001-02-20 Andrew Cagney <ac131313@redhat.com>
6516
6517 * mips-tdep.c (do_fp_register_row, do_fp_register_row): Fix printf
6518 formatting.
6519
0579d647
KB
65202001-02-20 Kevin Buettner <kevinb@redhat.com>
6521
6522 * solib-aix5.c (solib-svr4.h): Remove include.
6523 (solib_break_names): Delete names which aren't actually
6524 used by AIX5.
6525 (bkpt_names): Remove.
6526 (aix5_relocate_main_executable, bfd_lookup_symbol): Replace calls
6527 to STREQ() with equivalent calls to strcmp().
6528 (in_svr4_dynsym_resolve_code, enable_break, bfd_lookup_symbol,
6529 aix5_solib_create_inferior_hook): Revise comments.
6530 (enable_break): Remove old ``bkpt_names'' code.
6531
d65fe839
AC
65322001-02-19 Andrew Cagney <ac131313@redhat.com>
6533
6534 * Makefile.in (SFILES): Add frame.c .
6535 (COMMON_OBS): Add frame.o .
6536 (frame.o): New target.
6537
6538 * frame.c (find_saved_register):
6539 (default_get_saved_register):
6540 (get_saved_register):
6541 (read_relative_register_raw_bytes_for_frame):
6542 (read_relative_register_raw_bytes): Moved to here.
6543 * regcache.c: From here.
6544
60cf7a85
KB
65452001-02-20 Kevin Buettner <kevinb@redhat.com>
6546
6547 * solib-aix5.c: New file.
6548
291b7e04
MH
65492001-02-20 Martin M. Hunt <hunt@redhat.com>
6550
a43ad351
MH
6551 * solib.c (info_sharedlibrary_command): Don't assume pointers
6552 are the same size of long, call longest_local_hex_string_custom().
6553
58bc91c9
MH
6554 * solib-svr4.c (LM_ADDR): LM_ADDR is a signed offset, so
6555 extract_signed_integer() should be called instead of
6556 extract_address().
6557
65582001-02-20 Martin M. Hunt <hunt@redhat.com>
6559
291b7e04
MH
6560 * MAINTAINERS: Add Martin Hunt to Write After Approval list.
6561
d02ee681
AC
65622001-02-19 Andrew Cagney <ac131313@redhat.com>
6563
6564 Frm 2001-02-09 Jim Kingdon <jkingdon@engr.sgi.com>:
6565 * mips-tdep.c (mips_register_raw_size): If FP_REGISTER_DOUBLE,
6566 then floating point registers are 8 bytes.
6567
a858089e
MS
65682001-02-19 Michael Snyder <msnyder@mvstp600e.cygnus.com>
6569
6570 * parse.c (write_exp_msymbol): Make the type CORE_ADDR, to
6571 accomodate 64-bit addresses.
6572
23cc649f
EZ
65732001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
6574
6575 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>
6576 * symtab.c (lookup_symbol_aux): Call lookup_symbol_aux, not
6577 lookup_symbol, when trying to find a symbol with a mangled name,
6578 to avoid infinite recursion.
6579
0db23c95
AC
65802001-02-18 Andrew Cagney <ac131313@redhat.com>
6581
6582 * TODO (5.2): Mention G++ 3.0 ABI. General cleanups.
6583
911413e6
JL
65842001-02-19 Jonathan Larmour <jlarmour@redhat.com>
6585
6586 * arm-tdep.c (check_prologue_cache): Fix off by 1 error.
6587 (save_prologue_cache): Ditto.
6588
8d1de4b7
EZ
65892001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
6590
6591 From: innadadadavida@yahoo.com:
6592 * partial-stab.h (switch): Check that pst is not null
6593 before dereferencing it.
6594
3017564a
EZ
65952001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
6596
6597 From Andrew Cagney <cagney@b1.cygnus.com>:
6598 * symfile.c (add_symbol_file_command): Always initialize
6599 my_cleanup using a NULL cleanup.
6600
fa58ee11
EZ
66012001-02-19 Eli Zaretskii <eliz@is.elta.co.il>
6602
6603 * demangle.c (demangling_style_names): New variable.
6604 (_initialize_demangler): Fill demangling_style_names with the
6605 names of known demangling styles from libiberty_demanglers[]. Use
6606 add_set_enum_cmd instead of add_set_cmd, to get completion on
6607 demangling style names.
6608
6609 * proc-api.c (_initialize_proc_api): Make `procfs-file' use
6610 file-name completion.
6611
6612 * remote-rdi.c (_initialize_remote_rdi): Ditto for `rdilogfile'.
6613
6614 * solib.c (_initialize_solib): Ditto for `solib-search-path' and
6615 `solib-absolute-prefix'.
6616
6617 * tracepoint.c (_initialize_tracepoint): Ditto for
6618 `save-tracepoints'.
6619
6620 * win32-nat.c (_initialize_inftarg): Ditto for `dll-symbols'.
6621
6622 * cli/cli-cmds.c (init_cli_cmds): Make `shell' and `make' use
6623 file-name completion.
6624
6625 * infcmd.c (_initialize_infcmd): Make the following commands use
6626 the file-name completer: `tty', `args', `path', `paths', and
6627 `run'.
6628
7830cf6f
EZ
66292001-02-18 Eli Zaretskii <eliz@is.elta.co.il>
6630
89dea5aa
EZ
6631 * go32-nat.c: Include i387-nat.h.
6632 (fetch_register): New function, uses some of the guts of
6633 go32_fetch_registers and calls i387_supply_register.
6634 (go32_fetch_registers): Most of the code moved into
6635 fetch_register. Use i387_supply_fsave.
6636 (store_register): Use i387_fill_fsave instead of custom code.
6637 (go32_store_registers): Use i387_fill_fsave.
6638
6639 * Makefile.in (go32-nat.o): Depend on i387-nat.h.
6640
6641 * config/i386/go32.mh (NATDEPFILES): Add i387-nat.o.
6642
7830cf6f
EZ
6643 * completer.c (gdb_completer_file_name_break_characters): Remove
6644 slash from file-name break characters.
6645 [__MSDOS__]: Special definition for DOS/Windows file names.
6646 (line_completion_function): When completing on file names, bump
6647 `p' to the first file-name constituent character of `word', before
6648 invoking the completer.
6649
f31e928c
MK
66502001-02-17 Mark Kettenis <kettenis@gnu.org>
6651
6652 * i387-nat.c: Include "i387-nat.h". Use regnum instead of regno
6653 consistently for parameter names. Fix comments accordingly.
6654 (i387_supply_register): New function.
6655 (i387_supply_fsave): Implement using i387_supply_register.
6656 * i387-nat.h: Use regnum instead of regno consistently for
6657 parameter names. Fix comments accordingly.
6658 (i387_supply_register): New prototype.
6659
d696208f
MS
66602001-02-16 Michael Snyder <msnyder@mvstp600e.cygnus.com>
6661
6662 * remote.c (build_remote_gdbarch_data): Use new TARGET_ADDR_BIT
6663 instead of TARGET_PTR_BIT (to support Harvard architectures).
6664
971429b4
AC
66652001-02-16 Andrew Cagney <ac131313@redhat.com>
6666
6667 From 2001-02-11 Paul Hilfinger <hilfingr@lisbon.int.act-europe.fr>
6668 * hpux-thread.c (hpux_thread_xfer_memory): Add mem_attrib
6669 argument to parameter list and to call in order to conform to
6670 to_xfer_memory field of struct target_ops.
6671
9ca0e47c
MC
66722001-02-12 Michael Chastain <chastain@redhat.com>
6673
da7dd56f 6674 * somsolib.c (som_solib_add_solib_objfile): Do not use
9ca0e47c
MC
6675 section relocation feature of syms_from_objfile. Do my own
6676 section relocation, offsetting each section of the som by
6677 either text_addr - text_link_addr or data_start.
6678
7d65bd2d
AC
66792001-02-16 Andrew Cagney <ac131313@redhat.com>
6680
6681 * TODO (5.1): Move ``Hardware watchpint problems'' out of 5.1.
6682
e33e9692
AC
66832001-02-16 Andrew Cagney <ac131313@redhat.com>
6684
6685 * MAINTAINERS (paper trail): Update.
6686
17dee195
MK
66872001-02-16 Mark Kettenis <kettenis@gnu.org>
6688
6689 * target.h (target_fetch_registers): Fix comment.
6690
0f6e1ba6
AC
66912001-02-15 Andrew Cagney <ac131313@redhat.com>
6692
6693 * f-exp.y: Include <ctype.h>.
6694 (parse_number): Ensure that ``i'' is always initialized.
6695
9a069618
JK
66962001-02-14 Jim Kingdon <jkingdon@engr.sgi.com>
6697
6698 * MAINTAINERS: Add myself to paper trail section.
6699
fc24370e
MS
67002001-02-14 Michael Sokolov <msokolov@ivan.Harhan.ORG>
6701
6702 * configure.in (AC_CHECK_HEADERS): Add sys/file.h.
6703 * configure, config.in: Regenerate.
6704 * corelow.c: Include <sys/file.h> if present.
6705
4b69c284
AC
67062001-02-14 Andrew Cagney <ac131313@redhat.com>
6707
6708 * inflow.c (terminal_ours_1): Initialize ``osigtou''. Only
6709 declare when have SIGTTOU.
6710
7904f322
EZ
67112001-02-14 Eli Zaretskii <eliz@is.elta.co.il>
6712
6713 * config/djgpp/fnchange.lst: Add entries for gdb/gdbtk/*/ChangeLog-*.
6714
9e798668
JK
67152001-02-12 Jim Kingdon <jkingdon@engr.sgi.com>
6716
6717 * MAINTAINERS: Update my email address.
6718
65d5a54a
EZ
67192001-02-11 Eli Zaretskii <eliz@is.elta.co.il>
6720
6721 * NEWS: Document that "info symbol" works with COFF debug info and
6722 its variants.
6723
6724 * minsyms.c (lookup_minimal_symbol_by_pc_section): Don't skip
6725 symbols whose SYMBOL_BFD_SECTION is NULL.
6726
0cff82d9 67272001-02-10 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
a8079a9b
PS
6728
6729 Get rid of AIX specific PC_LOAD_SEGMENT, replace with PC_SOLIB.
6730 * xcoffsolib.c (xcoff_solib_address): Renamed from
6731 pc_load_segment_name. Return NULL if address is not in a shared
6732 library. Cleanup shared library name construction, using xasprintf.
6733 Format shared library member names consistent with format in exec.c.
6734 (solib_info): Format shared library member names consistent with
6735 format in exec.c.
6736 * config/rs6000/nm-rs6000.h: Replace PC_LOAD_SEGMENT with PC_SOLIB,
6737 using xcoff_solib_address for PC_SOLIB definition.
6738 * stack.c (print_frame): Remove PC_LOAD_SEGMENT code, no longer
6739 needed.
6740
0cff82d9 67412001-02-10 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
4b2e4867
PS
6742
6743 * mipsread.c (read_alphacoff_dynamic_symtab): Replace alloca calls
6744 with xmalloc calls and cleanups.
6745
0cff82d9 67462001-02-10 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
d737ece6
PS
6747
6748 * rs6000-nat.c (child_xfer_memory): Add missing parameter
6749 'struct mem_attrib *' required by 2001-01-23 change.
6750
c5bb1243
JK
67512001-02-08 Jim Kingdon <jkingdon@engr.sgi.com>
6752
6753 Updates to "make TAGS":
6754 * Makefile.in (ALLDEPFILES): Remove altos-xdep.c arm-convert.s
6755 arm-xdep.c convex-tdep.c convex-xdep.c pyr-tdep.c pyr-xdep.c
6756 tahoe-tdep.c.
6757 (TAGFILES_NO_SRCDIR): Add $(SUBDIR_CLI_SRCS).
6758
c799ae7b
EZ
67592001-02-08 Eli Zaretskii <eliz@is.elta.co.il>
6760
6761 * config/djgpp/fnchange.lst: Remove extraneous "too many dots".
6762
12685e01
AC
6763Wed Feb 7 22:39:26 2001 Andrew Cagney <cagney@redhat.com>
6764
6765 From Dean Luick <luick@cray.com>:
6766 * defs.h (continuation): Remove unused global variable.
6767
7fcca85b
AC
6768Wed Feb 7 22:28:31 2001 Andrew Cagney <cagney@redhat.com>
6769
6770 * configure.tgt: Remove references to convex, pyramid, altos and
6771 tahoe.
6772 * configure.host: Ditto.
6773 * MAINTAINERS: Ditto.
6774 * NEWS: Update.
6775
6776 * tahoe-tdep.c: Delete obsolete file.
6777 * pyr-xdep.c: Ditto.
6778 * pyr-tdep.c: Ditto.
6779 * convex-tdep.c: Ditto.
6780 * convex-xdep.c: Ditto.
6781 * config/tahoe/xm-tahoe.h: Ditto.
6782 * config/tahoe/tm-tahoe.h: Ditto.
6783 * config/tahoe/tahoe.mt: Ditto.
6784 * config/tahoe/tahoe.mh: Ditto.
6785 * config/pyr/xm-pyr.h: Ditto.
6786 * config/pyr/tm-pyr.h: Ditto.
6787 * config/pyr/pyramid.mt: Ditto.
6788 * config/pyr/pyramid.mh: Ditto.
6789 * config/m68k/xm-altos.h: Ditto.
6790 * config/m68k/tm-altos.h: Ditto.
6791 * config/m68k/altos.mt: Ditto.
6792 * config/m68k/altos.mh: Ditto.
6793 * config/convex/xm-convex.h: Ditto.
6794 * config/convex/tm-convex.h: Ditto.
6795 * config/convex/convex.mt: Ditto.
6796 * config/convex/convex.mh: Ditto.
6797 * config/convex/Convex.notes: Ditto.
6798 * config/arm/xm-arm.h: Ditto.
6799 * config/arm/nm-arm.h: Ditto.
6800 * config/arm/arm.mt: Ditto.
6801 * config/arm/arm.mh: Ditto.
6802 * arm-convert.s: Ditto.
6803 * arm-xdep.c: Ditto.
6804 * altos-xdep.c: Ditto.
6805
8e65ff28
AC
6806Wed Feb 7 19:41:21 2001 Andrew Cagney <cagney@redhat.com>
6807
6808 * defs.h (internal_error, internal_verror): Add __FILE__ and
6809 __LINE__ parameter.
6810 * utils.c (internal_error, internal_verror): Update.
6811
6812 * v850-tdep.c: Update calls to internal_error.
6813 * utils.c: Ditto.
6814 * ui-out.c: Ditto.
6815 * ui-file.c: Ditto.
6816 * target.h: Ditto.
6817 * symtab.h: Ditto.
6818 * symm-nat.c: Ditto.
6819 * sparc-tdep.c: Ditto.
6820 * source.c: Ditto.
6821 * serial.c: Ditto.
6822 * rs6000-tdep.c: Ditto.
6823 * rs6000-nat.c: Ditto.
6824 * remote.c: Ditto.
6825 * remote-vx.c: Ditto.
6826 * remote-sim.c: Ditto.
6827 * remote-mips.c: Ditto.
6828 * regcache.c: Ditto.
6829 * objfiles.h: Ditto.
6830 * objfiles.c: Ditto.
6831 * mn10300-tdep.c: Ditto.
6832 * mips-tdep.c: Ditto.
6833 * maint.c: Ditto.
6834 * m68k-tdep.c: Ditto.
6835 * m3-nat.c: Ditto.
6836 * language.c: Ditto.
6837 * infptrace.c: Ditto.
6838 * inferior.h: Ditto.
6839 * infcmd.c: Ditto.
6840 * ia64-tdep.c: Ditto.
6841 * i386-tdep.c: Ditto.
6842 * i386-linux-nat.c: Ditto.
6843 * hppah-nat.c: Ditto.
6844 * go32-nat.c: Ditto.
6845 * findvar.c: Ditto.
6846 * f-lang.c: Ditto.
6847 * elfread.c: Ditto.
6848 * event-loop.c: Ditto.
6849 * dwarf2read.c: Ditto.
6850 * dsrec.c: Ditto.
6851 * d30v-tdep.c: Ditto.
6852 * d10v-tdep.c: Ditto.
6853 * cli/cli-setshow.c: Ditto.
6854 * cli/cli-script.c: Ditto.
6855 * ch-exp.c: Ditto.
6856 * breakpoint.c: Ditto.
6857 * ax-gdb.c: Ditto.
6858 * arch-utils.c: Ditto.
6859 * a29k-tdep.c: Ditto.
6860 * gdb_assert.h: Ditto.
6861 * gdbarch.sh: Ditto.
6862 * gdbarch.h, gdbarch.c: Re-generate.
6863
72290732
AC
68642001-02-07 Andrew Cagney <ac131313@redhat.com>
6865
6866 From Mark Kettenis <kettenis@gnu.org>:
6867 * event-top.h [!STOP_SIGNAL]: #include <signal.h>.
6868
a6da1910
AC
68692001-02-07 Andrew Cagney <ac131313@redhat.com>
6870
6871 * remote-sim.c (dump_mem): Cleanup printf format argument.
6872 * MAINTAINERS: Update, mn10300-elf now builds.
6873
153f9905
MK
68742001-02-07 Mark Kettenis <kettenis@gnu.org>
6875
6876 * event-top.c: Remove duplicate #include <signal.h>.
6877
f042532c
AC
68782001-02-06 Andrew Cagney <ac131313@redhat.com>
6879
6880 * sol-thread.c (restore_inferior_pid): Save the PID in a freshly
6881 allocated buffer.
6882 (save_inferior_pid): Restore the PID from that tempoary
6883 buffer. Delete the buffer.
6884 * utils.c (make_cleanup_close, do_close_cleanup): Ditto for FD.
6885
58cfabe6
AC
68862001-02-06 Andrew Cagney <ac131313@redhat.com>
6887
6888 * MAINTAINERS: Add ``The Obvious Fix Rule''.
6889
ea8a41b8
AC
68902001-02-06 Andrew Cagney <ac131313@redhat.com>
6891
6892 * MAINTAINERS: Add Michael Snyder to Solaris/SPARC list.
6893
95160752
AC
68942001-02-06 Andrew Cagney <ac131313@cygnus.com>
6895
6896 * gdbarch.sh: Include "gdb_assert.h".
6897 (struct gdbarch): Change ``nr_data'' to unsigned.
6898 (alloc_gdbarch_data, free_gdbarch_data): New functions.
6899 (gdbarch_free): Free the data-pointer vector. Use xfree to delete
6900 architecture vector.
6901 (struct gdbarch_data, struct gdbarch_data_registration): Move init
6902 method to gdbarch_data. Add free method, make index unsigned.
6903 (struct gdbarch_data_registry): Make nr unsigned.
6904 (register_gdbarch_data): Add free parameter. Store in
6905 gdbarch_data.
6906 (init_gdbarch_data): Use set_gdbarch_data.
6907 (set_gdbarch_data): New function.
6908
6909 * gdbarch.h, gdbarch.c: Re-generate.
6910
64122a8b
MS
69112001-02-06 Michael Sokolov <msokolov@ivan.Harhan.ORG>
6912
6913 * ser-unix.c (hardware_print_tty_state) [HAVE_SGTTY]: Call
6914 fprintf_filtered with correct arguments.
6915
e6cbd02a
MS
69162001-02-06 Michael Snyder <msnyder@makita.cygnus.com>
6917 Submitted by Paul Hilfinger (hilfingr@gnat.com)
6918 and Andrei Petrov (and@genesyslab.com).
6919 * findvar.c: Buffers of size MAX_REGISTER_RAW_SIZE or REGISTER_BYTES
6920 must be allocated dynamically, since these are no longer constants.
6921 * infcmd.c: Ditto.
6922 * regcache.c: Ditto.
6923 * remote.c: Ditto.
6924 * sol-thread.c: Ditto.
6925 * valops.c: Ditto.
6926 * config/sparc/sun4sol2.mh (MH_CFLAGS): Add -I/usr/include/v9, as a
6927 work-around for a missing Sun header file in solaris for sparc64.
6928
713f0374
PB
69292001-02-04 Philip Blundell <philb@gnu.org>
6930
6931 * config/arm/linux.mh (NATDEPFILES): Add proc-service.o,
6932 thread-db.o, lin-lwp.o; remove lin-thread.o, linux-thread.o.
6933 * config/arm/nm-linux.h (PREPARE_TO_PROCEED, ATTACH_LWP,
6934 GET_THREAD_SIGNALS): Define.
6935 * arm-linux-nat.c (fill_gregset): Correct type of argument.
6936 (supply_gregset): Likewise.
6937 (fill_fpregset): Likewise.
6938 (supply_fpregset): Likewise.
6939
4603e466
DT
6940Tue Feb 6 11:58:57 2001 David Taylor <taylor@redhat.com>
6941
6942 * valops.c (value_cast): If casting a scalar to a pointer, do not
6943 issue a message about truncation unless it exceeds the length of
6944 an address, not the length of a pointer. This is because what the
6945 user gives us is an address, not a pointer, and we will ultimately
6946 convert it (via ADDRESS_TO_POINTER) to a pointer, not truncate it
6947 to a pointer. This allows things like "print *(int *)0x01000234"
6948 to work without generating a misleading message on a target having
6949 two byte pointers and four byte addresses.
6950
554cb486
CF
69512001-02-05 Christopher Faylor <cgf@cygnus.com>
6952
6953 * win32-nat.c: Change PTR to void * throughout.
6954
042be3a9
C
69552001-02-05 J.T. Conklin <jtc@redback.com>
6956
6957 * signals.h: Removed.
6958 * event-top.c (#include <signal.h>): Changed from signals.h.
6959 * inflow.c: Likewise.
6960 * mac-xdep.c: Likewise.
6961 * ser-pipe.c: Likewise.
6962 * ser-tcp.c: Likewise.
6963 * standalone.c: Likewise.
6964 * top.c: Likewise.
6965 * utils.c: Likewise.
6966 * Makefile.in: Removed signals.h from dependencies.
6967
a4acd088
CF
69682001-02-05 Christopher Faylor <cgf@cygnus.com>
6969
6970 Change suggested by Dean Luick <luick@cray.com>
6971 * inferior.h (step_over_calls_kind): Remove trailing comma from
6972 last enum element.
6973 (step_over_calls): Declare as extern rather than global.
6974
3116c80a
EZ
69752001-02-05 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
6976
6977 * sh-tdep.c: Update copyright.
6978 (sh_extract_return_value): Rewrite.
6979 (sh3e_sh4_extract_return_value): New function.
6980 (sh_gdbarch_init): Initialize gdbarch_extract-return_value to new
6981 version of the function for sh3e and sh4 CPUs.
6982
240be855
MC
69832001-02-05 Michael Chastain <chastain@redhat.com>
6984
6985 * hppah-nat.c (child_xfer_memory): Add parameter 'struct mem_attrib *'
6986 to conform with interface change.
6987
a17b5c4e
EZ
69882001-02-04 Eli Zaretskii <eliz@is.elta.co.il>
6989
32fe0950
EZ
6990 * config/djgpp/fnchange.lst: Tweak to make consistent with the
6991 new files.
6992
619cbaf7
EZ
6993 * config/djgpp/djconfig.sh: Use explicit absolute file name when
6994 invoking `find'.
6995
cd42d3a8
EZ
6996 * ser-go32.c (dos_write) [UART_FIFO_WORKS]: Use outportsb only if
6997 UART_FIFO_WORKS is defined. Otherwise use outportb.
6998 From Francisco Pastor <fpastor.etra-id@etra.es>
6999
a17b5c4e
EZ
7000 * go32-nat.c (go32_xfer_memory): Make the argument list consistent
7001 with target.h's `to_xfer_memory' member.
7002
86ddecc5
C
70032001-02-02 J.T. Conklin <jtc@redback.com>
7004
7005 * ppc-bdm.c (#include <signal.h>): Removed.
7006 * remote-array.c: Likewise.
7007 * remote-bug.c: Likewise.
7008 * remote-e7000.c: Likewise.
7009 * remote-mips.c: Likewise.
7010 * remote-os9k.c: Likewise.
7011 * remote-st.c: Likewise.
7012 * remote-udi.c: Likewise.
7013 * remote-vx29k.c: Likewise.
7014 * remote-vx68.c: Likewise.
7015 * remote-vx960.c: Likewise.
7016 * remote-vxmips.c: Likewise.
7017 * remote-vxsparc.c: Likewise.
7018
338d7c5c
JM
70192001-02-02 John Moore <jmoore@redhat.com>
7020
7021 * remote-utils.h (sr_set_device): Changed free() to xfree() where
7022 appropriate. Also changed Copyright to include 2001.
7023 * symtab.h (obstack_chunk_free, SYMBOL_INIT_DEMANGLED_NAME): Likewise.
7024 * value.h (value_free): Likewise.
7025 * gdbarch.sh (gdbarch_free): Likewise.
7026 * gdbarch.c, gdbarch.h: Regenerated.
7027
2b5436af
JM
70282001-02-02 John Moore <jmoore@redhat.com>
7029
7030 * cli/cli-cmds.c (apropos_command): Changed occurance of free() to
338d7c5c 7031 xfree(). Also changed Copyright to include 2001.
2b5436af 7032
82467003
C
70332001-02-02 J.T. Conklin <jtc@redback.com>
7034
7035 * monitor.c (#include "gdb_wait.h"): Removed.
7036 * ocd.c: Likewise.
7037 * ppc-bdm.c: Likewise.
7038 * remote-adapt.c: Likewise.
7039 * remote-array.c: Likewise.
7040 * remote-bug.c: Likewise.
7041 * remote-e7000.c: Likewise.
7042 * remote-eb.c: Likewise.
7043 * remote-es.c: Likewise.
7044 * remote-mips.c: Likewise.
7045 * remote-mm.c: Likewise.
7046 * remote-nindy.c: Likewise.
7047 * remote-os9k.c: Likewise.
7048 * remote-rdi.c: Likewise.
7049 * remote-rdp.c: Likewise.
7050 * remote-sds.c: Likewise.
7051 * remote-sim.c: Likewise.
7052 * remote-st.c: Likewise.
7053 * remote-udi.c: Likewise.
7054 * remote-vx.c: Likewise.
7055 * remote-vx29k.c: Likewise.
7056 * remote-vx68.c: Likewise.
7057 * remote-vx960.c: Likewise.
7058 * remote-vxmips.c: Likewise.
7059 * remote-vxsparc.c: Likewise.
7060 * remote.c: Likewise.
7061 * ser-pipe.c: Likewise.
7062 * ser-unix.c: Likewise.
7063 * Makefile.in: Updated dependencies.
7064
27b82ed2
DS
70652001-01-31 David Smith <dsmith@redhat.com>
7066
7067 * event-loop.c: Change inclusion of string.h to gdb_string.h and
7068 updated the copyright notice.
7069 * ser-pipe.c: Ditto.
7070 * mi/mi-cmds.c: Ditto.
7071 * mi/mi-console.c: Ditto.
7072 * mi/mi-getopt.c: Ditto.
7073 * mi/mi-parse.c: Ditto.
7074
ab9cc815
DS
70752001-01-31 David Smith <dsmith@redhat.com>
7076
7077 * MAINTAINERS: Add David Smith to Write After Approval list.
7078
d1f4cff8
AC
7079Tue Jan 30 15:43:08 2001 Andrew Cagney <cagney@cygnus.com>
7080
7081 * cli/cli-utils.c (putchar_filtered): Move function from here.
7082 * utils.c (putchar_filtered): To here.
7083 * cli/cli-utils.h (putchar_filtered): Move declaration from here.
7084 * defs.h (putchar_filtered): To here.
7085
74c1b268
AC
7086Tue Jan 30 17:27:11 2001 Andrew Cagney <cagney@redhat.com>
7087
7088 * configure.in (AC_CHECK_FUNCS): Replace vfork test with
7089 AC_FUNC_VFORK macro.
7090 * config.in, configure: Re-generate.
7091
7092 * gdb_vfork.h: New file.
7093 * ser-pipe.c (pipe_open): Update. Include "gdb_vfork.h".
7094 * fork-child.c (fork_inferior): Ditto.
7095
4fcf66da
AC
7096Tue Jan 30 17:09:07 2001 Andrew Cagney <cagney@redhat.com>
7097
7098 * defs.h (strsave): Delete declaration.
7099 * utils.c (strsave): Delete definition.
7100 * TODO (strsave): Update
7101
7102 * mac-xdep.c (tilde_expand): Replace strsave with xstrdup.
7103 * sparcl-tdep.c (sparclite_open): Ditto.
7104 * mips-tdep.c (mips_set_processor_type_command): Ditto.
7105 (_initialize_mips_tdep): Ditto.
7106 * solib.c (solib_open): Ditto.
7107 * symfile.c (add_filename_language): Ditto.
7108 (set_ext_lang_command): Ditto.
7109 * source.c (init_source_path): Ditto.
7110 (mod_path): Ditto.
7111 * sh3-rom.c (sh3_open): Ditto.
7112 (sh3e_open): Ditto.
7113 * serial.c (serial_open): Ditto.
7114 * remote-mips.c (common_open): Ditto.
7115 * monitor.c (monitor_open): Ditto.
7116 * m32r-rom.c (m32r_upload_command): Ditto.
7117 * infcmd.c (path_command): Ditto.
7118 * f-exp.y (parse_number): Ditto.
7119 * breakpoint.c (create_longjmp_breakpoint): Ditto.
7120 (create_thread_event_breakpoint): Ditto.
7121 * arc-tdep.c (arc_set_cpu_type_command): Ditto.
7122 (_initialize_arc_tdep): Ditto.
7123
e191e0ab
AC
7124Tue Jan 30 15:14:26 2001 Andrew Cagney <cagney@skil>
7125
7126 * cli/cli-script.c (define_command): Check for a bad hook value in
7127 switch statement.
7128
10214f55
C
71292001-01-30 J.T. Conklin <jtc@redback.com>
7130
7131 * configure/sh/embed.mt: New file.
7132 * configure/sh/linux.mt: New file.
7133 * configure/sh/sh.mt: Removed.
7134 * configure.tgt (sh-*-hms,sh-*-coff*,sh-*-elf*,sh-*-linux): New targets.
7135 (sh-*-*): Removed.
7136
c9049fc9
MC
71372001-01-29 Michael Chastain <chastain@redhat.com>
7138
a4f30b31 7139 * symtab.c (lookup_block_symbol): Use 'namespace' parameter in
c9049fc9
MC
7140 symbol comparisons in binary search.
7141
0cff82d9 71422001-01-27 Christopher Faylor <cgf@cygnus.com>
aea02b6b
CF
7143
7144 * win32-nat.c (child_xfer_memory): Add missing argument required by
7145 2001-01-23 change.
7146
e6e0bfab
MK
71472001-01-27 Mark Kettenis <kettenis@gnu.org>
7148
7149 * ui-out.c (do_list_end): New function.
7150 (make_cleanup_ui_out_list_end): New function.
7151 * ui-out.h: Provide prototype for make_cleanup_ui_out_list_end.
7152 * stack.c (print_frame) [UI_OUT]: Call
7153 make_cleanup_ui_out_list_end to make sure we mark the end of the
7154 list if we do a non-local exit. At the end of the function,
7155 instead of calling ui_out_list_end directly, let do_cleanups
7156 handle it.
7157
1adeb98a
FN
71582001-01-26 Fernando Nasser <fnasser@redhat.com>
7159
7160 Fix double parsing of filenames passed as command line arguments
7161 to GDB (causes weird handling of escape characters).
7162 Also, remove dependencies on the CLI from libgdb.
7163 * call-cmds.h: Remove declaration of exec_file_command().
7164 * gdbcore.h: Remove declaration of exec_file_command().
7165 Add declarations for exec_open() and exec_file_clear().
7166 * symfile.h: Add declarations for symbol_file_add_main() and
7167 symbol_file_clear().
7168 * exec.c (exec_open): New function. Implements to_open for exec
7169 targets.
7170 (exec_file_clear): New function. Makes GDB forget about a previously
7171 specified executable file.
7172 (exec_file_attach): Move parsing of arguments from here ...
7173 (exec_file_command): ... to here.
7174 (init_exec_ops): Use exec_open(), not exec_file_command() to
7175 implement to_open for exec targets.
7176 * symfile.c (symbol_file_add_main): New function. Call symbol_file_add()
7177 with default values. Used when the file name has already been parsed.
7178 (symbol_file_clear): New function. Makes GDB forget about previously
7179 read symbols.
7180 (symbol_file_command): Call the above function instead of inline code.
7181 * main.c: Include "symfile.h" and "gdbcore.h" instead of the deprecated
7182 "call-cmds.h".
7183 (captured_main): Call exec_file_attach() and symbol_file_add_main()
7184 instead of exec_file_command() and symbol_file_command().
7185 (captured_main): Add comment.
7186 * corefile.c: Include "symfile.h".
7187 (core_file_command): Call symbol_file_add_main() instead of
7188 symbol_file_command().
7189 (reopen_exec_file): Call exec_open() instead of exec_file_command().
7190 * infcmd.c: Include "symfile.h".
7191 (attach_command): Call symbol_file_add_main() instead of
7192 symbol_file_command().
7193 * infrun.c: Remove comment about the inclusion of "symfile.h",
7194 not any longer appropriate.
7195 (follow_exec): Call symbol_file_add_main() instead of
7196 symbol_file_command().
7197 * remote-es.c: Include "symfile.h".
7198 (es1800_load): Call symbol_file_add_main() instead of
7199 symbol_file_command().
7200 * remote-vx.c: Remove comment about the inclusion of "symfile.h",
7201 not any longer appropriate.
7202 (vx-wait): Call symbol_file_add_main() instead of
7203 symbol_file_command().
7204 * solib-svr4.c (open_symbol_file_object): Call symbol_file_add_main()
7205 instead of symbol_file_command().
7206 * v850ice.c (ice_file): Call exec_open(), exec_file_attach() and
7207 symbol_file_add_main() instead of exec_file_command() and
7208 symbol_file_command().
7209 * Makefile.in: Update dependencies.
7210
5b616ba1
JH
72112001-01-26 Jeff Holcomb <jeffh@redhat.com>
7212
7213 * remote-udi.c (udi_open): Change strdup to xstrdup.
7214 * thread.c (thread_apply_all_command): Change strdup to xstrdup.
7215 Update copyright message.
7216 * varobj.c (delete_variable_1): Likewise.
7217
7218 * gdb_string.h: Remove declaration of strdup. Update copyright
7219 message.
7220 * config/xm-mpw.h: Likewise.
7221 * config/i386/xm-i386mach.h: Likewise.
7222 * config/m68k/xm-apollo68b.h: Likewise.
7223 * config/m68k/xm-hp300bsd.h: Likewise.
7224 * config/rs6000/xm-rs6000.h: Likewise.
7225 * config/vax/xm-vaxult.h: Remove declaration of strdup.
7226 * config/vax/xm-vaxult2.h: Likewise.
7227
b91d87cf
JH
72282001-01-26 Jeff Holcomb <jeffh@redhat.com>
7229
7230 * MAINTAINERS: Add Jeff Holcomb to Write After Approval list.
7231
873406a6
C
72322001-01-25 J.T. Conklin <jtc@redback.com>
7233
7234 * target.c (target_xfer_memory_partial): Return -1 on failure due
7235 to invalid access mode attribute.
7236
0613c401
CF
72372001-01-25 Christopher Faylor <cgf@cygnus.com>
7238
7239 * win32-nat.c (_initialize_core_win32): Prototype correctly.
7240
efd59e3f
MK
72412001-01-25 Mark Kettenis <kettenis@gnu.org>
7242
7243 * config/alpha/tm-fbsd.h: Update copyright.
7244 (USE_STRUCT_CONVENTION): Define in terms of
7245 alphabsd_use_struct_convention.
7246 * config/alpha/fbsd.mt (TDEPFILES): Add alphafbsd-tdep.c.
7247 * alphafbsd-tdep.c: New file.
7248
388e1ff2
FN
72492001-01-24 Fernando Nasser <fnasser@redhat.com>
7250
7251 * top.c (print_gdb_version): Update Copyright year.
7252
f4d650ec
C
72532001-01-24 J.T. Conklin <jtc@redback.com>
7254
7255 * dcache.c (dcache_write_line): Fix typo.
7256
7257 * memattr.c (delete_mem_region): Replace free() with xfree().
7258 (mem_number): Add explicit type.
7259
7260 * sol-thread.c (sol_thread_xfer_memory): Add attrib argument.
7261 (rw_common): Likewise.
7262
07091751
FN
72632001-01-24 Fernando Nasser <fnasser@redhat.com>
7264
7265 * infcmd.c (get_inferior_args, set_inferior_args): Accessor functions
7266 for the inferior program arguments.
7267 (run_command, run_no_args_command, init_infcmd)): Use accessor
7268 functions to set the inferior program arguments.
7269 * inferior.h: Add definitions to the accessor functions above.
7270
090c42a4
JB
72712001-01-23 Jim Blandy <jimb@redhat.com>
7272
7273 * dwarf2read.c (read_tag_const_type, read_tag_volatile_type):
7274 Implement these correctly, using make_cv_type.
7275
f29d9b6d 72762001-01-23 J.T. Conklin <jtc@redback.com>
29e57380
C
7277
7278 * exec.c (xfer_memory): Add attrib argument.
7279 * infptrace.c (child_xfer_memory): Likewise.
e5da8f38 7280 * lin-lwp.c (lin_lwp_xfer_memory): Likewise.
29e57380
C
7281 * monitor.c (monitor_xfer_memory): Likewise.
7282 * remote-adapt.c (adapt_xfer_inferior_memory): Likewise.
7283 * remote-array.c (array_xfer_memory): Likewise.
7284 * remote-bug.c (bug_xfer_memory): Likewise.
7285 * remote-e7000.c (e7000_xfer_inferior_memory): Likewise.
7286 * remote-eb.c (eb_xfer_inferior_memory): Likewise.
7287 * remote-es.c (es1800_xfer_inferior_memory): Likewise.
7288 * remote-mips.c (mips_xfer_memory): Likewise.
7289 * remote-mm.c (mm_xfer_inferior_memory): Likewise.
7290 * remote-nindy.c (nindy_xfer_inferior_memory): Likewise.
7291 * remote-os9k.c (rombug_xfer_inferior_memory): Likewise.
7292 * remote-rdi.c (arm_rdi_xfer_memory): Likewise.
7293 * remote-rdp.c (remote_rdp_xfer_inferior_memory): Likewise.
7294 * remote-sds.c (sds_xfer_memory): Likewise.
7295 * remote-sim.c (gdbsim_xfer_inferior_memory): Likewise.
7296 * remote-st.c (st2000_xfer_inferior_memory): Likewise.
7297 * remote-udi.c (udi_xfer_inferior_memory): Likewise.
7298 * remote-vx.c (vx_xfer_memory): Likewise.
7299 * remote.c (remote_xfer_memory): Likewise.
7300 * target.c (debug_to_xfer_memory, do_xfer_memory): Likewise.
7301 * target.h (child_xfer_memory, do_xfer_memory, xfer_memory): Likewise.
e5da8f38 7302 * thread-db.c (thread_db_xfer_memory): Likewise.
29e57380
C
7303
7304 * target.h (#include "memattr.h"): Added.
7305 (target_ops.to_xfer_memory): Add attrib argument.
7306
7307 * wince.c (_initialize_inftarg): Removed call to set_dcache_state.
7308 * dcache.h (set_dcache_state): Removed declaration.
7309 * dcache.c (set_dcache_state): Removed definition
7310
7311 * dcache.c: Update module comment, as dcache is now enabled and
7312 disabled with memory region attributes instead of by the global
7313 variable "remotecache". Add comment describing the interaction
7314 between dcache and memory region attributes.
7315 (dcache_xfer_memory): Add comment describing benefits of moving
7316 cache writeback to a higher level.
7317 (dcache_struct): Removed cache_has_stuff field. This was used to
7318 record whether the cache had been accessed in order to invalidate
7319 it when it was disabled. However, this is not needed because the
7320 cache is write through and the code that enables, disables, and
7321 deletes memory regions invalidate the cache. Add comment which
7322 suggests that we could be more selective and only invalidate those
7323 cache lines containing data from those memory regions.
7324 (dcache_invalidate): Updated.
7325 (dcache_xfer_memory): Updated.
f29d9b6d 7326
29e57380
C
7327 (dcache_alloc): Don't abort() if dcache_enabled_p is clear.
7328 (dcache_xfer_memory): Removed code that called do_xfer_memory() to
7329 perform a uncached transfer if dcache_enabled_p was clear. This
7330 function is now only called if caching is enabled for the memory
7331 region.
7332 (dcache_info): Always print cache info.
7333
7334 * target.c (do_xfer_memory): Add attrib argument.
7335 (target_xfer_memory, target_xfer_memory_partial): Break transfer
7336 into chunks defined by memory regions, pass region attributes to
7337 do_xfer_memory().
7338 * dcache.c (dcache_read_line, dcache_write_line): Likewise.
7339
7340 * Makefile.in (SFILES): Add memattr.c.
7341 (COMMON_OBS): Add memattr.o.
7342 (dcache.o): Add target.h to dependencies.
7343 * memattr.c: New file.
7344 * memattr.h: Likewise.
7345
f29d9b6d
C
7346 * config/m32r/m32r.mt (GDBSERVER_LIBS): Added ../../intl/libintl.a.
7347 * config/mips/vr5000.mt (GDBSERVER_LIBS): Likewise.
7348 * config/tic80/tic80.mt (GDBSERVER_LIBS): Likewise.
7349 * gdbserver/low-sim.c (#include "defs.h"): Removed.
7350 (mygeneric_load): Rename from generic_load.
7351
7352 * gdbserver/low-hppabsd.c (#include "server.h"): Added.
7353 (#include "defs.h"): Removed.
7354 (inferior_pid, perror_with_name): Remove declarations.
7355 * gdbserver/low-linux.c: Likewise.
7356 * gdbserver/low-nbsd.c: Likewise.
7357 * gdbserver/low-sparc.c: Likewise.
7358 * gdbserver/low-sun3.c: Likewise.
7359
7360 * i386-stub.c: Re-indent.
7361 * m68k-stub.c: Re-indent.
7362
58d5518e
ND
73632001-01-22 Nicholas Duffek <nsd@redhat.com>
7364
7365 * gdbarch.sh (PARM_BOUNDARY): Define.
7366 * gdbarch.c: Regenerate.
7367 * gdbarch.h: Regenerate.
7368
f6427ade
C
73692001-01-22 J.T. Conklin <jtc@redback.com>
7370
7371 * ns32k-tdep.c: #include "frame.h"
7372 * config/ns32k/tm-umax.h (FRAME_FIND_SAVED_REGS): Restore. It
7373 appears to have been inadvertantly removed sometime in May 1999.
7374
7375 * Revert 2000-11-09 changes where shared library objects were
7376 moved from NATDEPFILES to TDEPFILES on NetBSD targets. While
7377 we'd like to be able to debug dynamically linked executables,
7378 this makes it impossible to build a cross debugger on a many
7379 hosts.
7380
7381 * config/i386/nbsd.mt: Remove solib.o, solib-svr4.o from TDEPFILES.
7382 * config/i386/nbsdelf.mt: Likewise.
7383 * config/m68k/nbsd.mt: Likewise.
7384 * config/ns32k/nbsd.mt: Likewise.
7385 * config/powerpc/nbsd.mt: Likewise.
7386 * config/sparc/nbsd.mt: Likewise.
7387 * config/sparc/nbsdelf.mt: Likewise.
7388 * config/i386/nbsd.mh: Add solib.o, solib-svr4.o to NATDEPFILES.
7389 * config/i386/nbsdelf.mh: Likewise.
7390 * config/m68k/nbsd.mh: Likewise.
7391 * config/ns32k/nbsd.mh: Likewise.
7392 * config/powerpc/nbsd.mh: Likewise.
7393 * config/sparc/nbsd.mh: Likewise.
7394
8052a17a
JM
73952001-01-19 Jason Merrill <jason@redhat.com>
7396
7397 * dbxread.c (read_ofile_symtab): Stay with AUTO_DEMANGLING for G++.
7398 (process_one_symbol): Likewise.
7399 * dwarfread.c (handle_producer): Likewise.
7400
21a6f6bb
AC
7401Thu Jan 18 12:08:57 2001 Andrew Cagney <cagney@b1.cygnus.com>
7402
7403 * configure.in (build_warnings): Disable -Wuninitialized until GDB
7404 compiles with -Wuninitialized,-Werror.
7405 * configure: Regenerate.
7406
7407 * MAINTAINERS: Add list of buildable targets.
7408
494b7ec9
AC
7409Thu Jan 18 12:48:04 2001 Andrew Cagney <cagney@b1.cygnus.com>
7410
7411 * defs.h (STRCMP): Delete macro.
7412
7413 * objfiles.c (objfile_relocate): Replace STRCMP with call to
7414 strcmp.
7415 * symtab.c (lookup_partial_symbol, lookup_block_symbol): Ditto.
7416 * symfile.c (compare_symbols): Ditto.
7417 * standalone.c (open): Ditto.
7418 * remote-es.c (verify_break): Ditto.
7419 * cli/cli-decode.c (add_cmd, add_show_from_set): Ditto.
7420
7421 * symfile.c (compare_psymbols): Delete comment refering to STRCMP.
7422
8038e1e2
AC
7423Thu Jan 18 12:25:06 2001 Andrew Cagney <cagney@b1.cygnus.com>
7424
7425 * varobj.c (FREEIF): Delete macro.
7426 (varobj_set_value, free_variable): Replace FREEIF with ``xfree''
7427 call.
7428
ea8d0b28
NC
74292001-01-18 Nick Clifton <nickc@redhat.com>
7430
7431 * arc-tdep.c (arc_cpu_type_table): Add new arc core numbers.
7432 (arc_print_insn): No bfd available, so pass NULL to
7433 arc_get_disassembler.
7434
5dbd9048
JB
74352001-01-09 James Ingham <jingham@inghji.apple.com>
7436
7437 * symtab.c (lookup_symbol_aux): Call lookup_symbol_aux to lookup
7438 a mangled symbol rather than recursing into lookup_symbol, since
7439 this will just re-unmangle the name & call lookup_symbol_aux -
7440 leading to an infinite recursion.
7441
28ae27b1
MK
74422001-01-18 Mark Kettenis <kettenis@gnu.org>
7443
7444 * infcmd.c (print_return_value): Restore another space lost by
7445 switch to UIOUT. ``$NN='' should be ``$NN =''.
7446
6ab3a9c9
AC
7447Fri Jan 19 02:31:40 2001 Andrew Cagney <cagney@b1.cygnus.com>
7448
7449 * target.h (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
7450 * breakpoint.c (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Wrap macro
7451 definition in parenthesis.
7452
ad6525fc
AC
7453Fri Jan 19 02:13:40 2001 Andrew Cagney <cagney@b1.cygnus.com>
7454
7455 From 2000-10-27 Mark Salter <msalter@redhat.com>:
7456 * remote.c (remote_remove_hw_breakpoint): Add 'len' field to Z
7457 packet.
7458 (remote_insert_hw_breakpoint): Ditto.
7459
6259c7e2
C
74602001-01-17 J.T. Conklin <jtc@redback.com>
7461
7462 * config/m68k/tm-nbsd.h (USE_STRUCT_CONVENTION): Define.
9c95b27f 7463 (BPT_VECTOR, REMOTE_BPT_VECTOR): Change to 0xf.
6259c7e2
C
7464 * config/m68k/nbsd.mt (TDEPFILES): Add m68knbsd-tdep.o.
7465 * m68knbsd-tdep.c: New file.
7466
7467 * i386nbsd-tdep.c: Remove #if 0'd out #includes.
7468
7469 * m68knbsd-nat.c: #include gdbcore.h.
7470
abdcb2a5
AC
7471Wed Jan 17 09:41:58 2001 Andrew Cagney <cagney@b1.cygnus.com>
7472
7473 * MAINTAINERS: Add J.T. Conklin to Blanket Write Privs.
7474
e7a8479f
MS
74752001-01-16 Michael Snyder <msnyder@cleaver.cygnus.com>
7476
aaeb7efa
MS
7477 * procfs.c (procfs_stopped_by_watchpoint): Don't die if process
7478 goes away -- just return false (ie. not stopped by watchpoint).
e7a8479f
MS
7479 * source.c (openp): Fix typo in comment.
7480
7036d6ce
ND
74812001-01-12 Nicholas Duffek <nsd@redhat.com>
7482
7483 * blockframe.c (generic_get_saved_register): Spelling fix.
7484 * frame.h (FRAME_FP): Spelling fix.
7485
9549d9c1
AC
7486Fri Jan 12 18:29:46 2001 Andrew Cagney <cagney@b1.cygnus.com>
7487
7488 * infcmd.c (print_return_value): Restore space lost by switch to
7489 UIOUT. ``$NN='' should be ``$NN =''.
7490
7302a204
ND
74912001-01-08 Nicholas Duffek <nsd@redhat.com>
7492
7493 * regcache.c (set_register_cached, register_buffer,
7494 real_register, pseudo_register fetch_register, store_register):
7495 New functions.
7496 (register_changed, read_relative_register_raw_bytes_for_frame,
7497 registers_changed, registers_fetched, read_register_bytes,
7498 read_register_gen, write_register_gen, read_register,
7499 read_signed_register, write_register, supply_register): Replace
7500 register_valid[] with register_cached() and
7501 set_register_cached().
7502 (read_register_bytes, read_register_gen, write_register_gen,
7503 read_register, read_signed_register, write_register,
7504 supply_register): Replace registers[] with register_buffer().
7505 (read_register_bytes, read_register_gen, read_register,
7506 read_signed_register): Call fetch_register().
7507 (write_register_gen, write_register): Call real_register() and
7508 store_register().
7509 (write_register_bytes): Call store_register().
7510 * value.h (set_register_cached, register_buffer): Prototype.
7511 * remote.c (remote_fetch_registers): Allocate regs[] with a
7512 run-time size. Replace register_valid[] with
7513 set_register_cached().
7514 (store_register_using_P, remote_store_registers): Replace
7515 registers[] with register_buffer().
7516
5ebd2499
ND
75172001-01-08 Nicholas Duffek <nsd@redhat.com>
7518
7519 * regcache.c: Change "write-back" comment to "write-through".
7520 Change "regno" to "regnum".
7521 (read_register, read_signed_register): Remove "raw" from return
7522 value description.
7523 (supply_register): Spelling fix.
7524 * value.h: Change "regno" to "regnum".
7525
1302fd5e
FN
75262001-01-08 Fernando Nasser <fnasser@redhat.com>
7527
7528 * Makefile.in (install-gdbtk): Add .itcl files to the list of files
7529 to be installed.
7530
9dcb560c
MS
75312001-01-04 Michael Snyder <msnyder@mvstp600e.cygnus.com>
7532
7533 * mips-tdep.c (mips_coerce_float_to_double): Fix typo in comment.
7534
0e2fb98e
ND
75352001-01-04 Nicholas Duffek <nsd@redhat.com>
7536
7537 * valops.c (VALUE_SUBSTRING_START): Delete.
7538
12cf3f1b
ND
75392001-01-04 Nicholas Duffek <nsd@redhat.com>
7540
7541 * Makefile.in (SUBDIR_CLI_OBS): Add cli/cli-utils.o.
7542 (SUBDIR_CLI_SRCS): Add cli/cli-utils.c.
7543 (cli_utils_h): New variable.
7544 (cli/cli-utils.o): New rule.
7545 * cli/cli-utils.c: New file.
7546 * cli/cli-utils.h: New file.
7547
cc533b9d
ND
75482001-01-04 Nicholas Duffek <nsd@redhat.com>
7549
7550 * config/i386/tm-i386.h (REGISTER_CONVERT_TO_VIRTUAL,
7551 REGISTER_CONVERT_TO_RAW): Delete trailing semicolon.
7552
ad2a4d09
C
75532001-01-03 J.T. Conklin <jtc@redback.com>
7554
7555 * alphabsd-nat.c, i386-linux-nat.c, i386bsd-nat.c: Fix typo in
7556 comment.
7557
8140e7ac
MS
75582001-01-02 Michael Snyder <msnyder@cleaver.cygnus.com>
7559
3116c80a
EZ
7560 * sh-tdep.c (sh_default_store_return_value): Allow for small return type.
7561 (sh3e_sh4_store_return_value): Call sh_default_store_return_value for
d19b71be 7562 non-float types.
779e876b 7563 * sparc-tdep.c (sparc_frame_chain): Fix typo in comment.
72e22353
MS
7564 Update copyright notice.
7565
15f33b66 7566For older changes see ChangeLog-2000
c906108c
SS
7567\f
7568Local Variables:
7569mode: change-log
7570left-margin: 8
7571fill-column: 74
7572version-control: never
7573End:
This page took 0.512337 seconds and 4 git commands to generate.