* dwarf2read.c dwarfread.c exec.c infcmd.c infrun.c main.c
[binutils-gdb.git] / gdb / ChangeLog
1 Wed Aug 7 17:18:37 1996 Stu Grossman (grossman@critters.cygnus.com)
2
3 * dwarf2read.c dwarfread.c exec.c infcmd.c infrun.c main.c
4 mdebugread.c os9kread.c source.c top.c utils.c: Don't
5 include param.h or sys/file.h (or unistd.h in some cases).
6 * defs.h exec.c inflow.c remote-array.c remote-e7000.c
7 sparcl-tdep.c terminal.h utils.c: Replace all occurances of
8 __WIN32__, WINGDB, WIN32, etc... with _WIN32.
9 * main.c: Remove #ifndef WINGDB around option processing. Fix
10 bug with passing argc==0 and argv==NULL to getopt.
11 * (main) Remove calls to access() before source_command. Let
12 soure_command handle access errors.
13 * maint.c (maintenance_dump_me): #ifdef out for _WIN32.
14 * symtab.c (operator_chars): Make this global for wingdb.
15 * top.c (disconnect): #ifdef out for _WIN32.
16 * (source_command): If got an error and from_tty, then call print
17 error, else just return quietly.
18 * utils.c (fatal_dump_core): Can't kill ourselves under windows.
19 Just exit.
20 * (pollquit notice_quit): #ifdef out stuff that doesn't exist
21 under windows.
22
23 Wed Aug 7 09:59:19 1996 Jeffrey A Law (law@cygnus.com)
24
25 * config/pa/tm-hppa.h (EXTRACT_RETURN_VALUE): Tweak for
26 structures > 4 bytes in size.
27
28 * valops.c (call_function_by_hand): Handle aligning stacks that
29 grow up correctly.
30 * config/pa/tm-hppa.h (USE_STRUCT_CONVENTION): Define.
31 (STACK_ALIGN): Define.
32 * hppa-tdep.c (hppa_alignof): Don't demand a minumim two byte
33 alignment on structs/unions.
34
35 Sun Aug 4 16:22:42 1996 Fred Fish <fnf@cygnus.com>
36
37 * config/powerpc/nm-aix.h (PTRACE_ARG3_TYPE): Define to "int *",
38 which is the documented type under at least AIX 3 and AIX 4.
39
40 Sat Aug 3 04:02:46 1996 Fred Fish <fnf@cygnus.com>
41
42 * config/alpha/alpha-osf3.mh (XM_FILE): Change from xm-alpha.h to
43 xm-alphaosf.h.
44 (MMALLOC_CFLAGS): Define NO_MMCHECK to not install consistency
45 checks.
46
47 start-sanitize-gdbtk
48 Thu Aug 1 20:35:01 1996 Tom Tromey <tromey@creche.cygnus.com>
49
50 * gdbtk.c (mainWindow): Deleted.
51 (cleanup_init): Don't destroy main window.
52 (gdbtk_init): Main window now created by Tk_Init.
53
54 * configure.in: Most X checks now handled automatically by Tk.
55 Use new macros to find Tcl/Tk.
56 * aclocal.m4: New version for new Tcl/Tk; from Don Libes.
57 * config.in, configure: Regenerated.
58
59 * Makefile.in (TCL, TCL_CFLAGS, TK, TK_CFLAGS, X11_CFLAGS,
60 X11_LDFLAGS, X11_LIBS): Changed for new Tcl and Tk.
61
62 end-sanitize-gdbtk
63 Thu Aug 1 10:11:34 1996 Fred Fish <fnf@cygnus.com>
64
65 * config/mips/tm-mips.h (TM_MIPS_H): Enclose file contents in
66 this, define when contents are included.
67 (mips_read_processor_type): Add prototype.
68 * config/mips/xm-mips.h: Remove strdup decl, now in gdb_string.h
69 * mdebugread.c (ecoff_relocate_efi): Add prototype.
70 (fixup_sigtramp): Only needed when TM_MIPS_H is defined.
71
72 start-sanitize-gdbtk
73 Thu Aug 1 16:12:05 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
74
75 * Makefile.in (gdbtk.tcl): put in $(datadir), not $(libdir).
76
77 end-sanitize-gdbtk
78 Wed Jul 31 20:21:24 1996 Fred Fish <fnf@cygnus.com>
79
80 * rs6000-nat.c (add_vmap): Return 0 to caller rather than random value.
81 (vmap_ldinfo): Ensure got_exec_file is not used uninitialized.
82 (fetch_core_registers): Add prototype.
83 (vmap_symtab): Ditto.
84 (objfile_symbol_add): Ditto.
85 (add_vmap): Ditto.
86 (vmap_ldinfo): Ditto.
87 (vmap_exec): Ditto.
88
89 Tue Jul 30 17:57:46 1996 Stan Shebs <shebs@andros.cygnus.com>
90
91 * stabsread.c (get_substring): Declare second arg as int.
92
93 * remote-es.c: Include gdb_string.h after defs.h.
94
95 Mon Jul 29 21:13:20 1996 Fred Fish <fnf@cygnus.com>
96
97 * rs6000-tdep.c (push_arguments): Remove unused variable "pc".
98 (branch_dest): Remove unused variable "offset".
99 (pop_dummy_frame): Add prototype and make static.
100 (push_arguments): Guard against using len uninitialized.
101 (push_arguments): Guard against using arg uninitialized.
102 (frame_saved_pc): Remove unused variable "frameless".
103 (free_loadinfo): Ifdef out unused function.
104
105 * xcoffread.c (compare_lte): Change prototype and function to
106 be correct type for passing to qsort.
107 (add_stab_to_list): Ifdef out unused function and prototype.
108 (compare_lte): Add prototype
109 (arrange_linetable): Ditto.
110 (record_include_begin): Ditto.
111 (record_include_end): Ditto.
112 (process_linenos): Ditto.
113 (xcoff_next_symbol_text): Ditto.
114 (scan_xcoff_symtab): Ditto.
115 (xcoff_initial_scan): Ditto.
116
117 * mips-tdep.c (mips_read_processor_type): Add parens around
118 bitwise-and operands in comparison; previous expression always
119 evaluated to 0 because of equality comparison of two constants.
120
121 * rs6000-tdep.c (skip_prologue): Add missing parens around
122 operands of logical-or so that first operand does not bind
123 to previous logical-and.
124
125 * configure.in: Expand "long long" test to include code that triggers
126 known problem on HPUX with native compiler.
127 (configure): Regenerated.
128
129 Mon Jul 29 18:12:27 1996 Jeffrey A Law (law@cygnus.com)
130
131 * somsolib.c (som_solib_create_inferior_hook): Don't
132 warn if __d_pid can't be found.
133
134 Sun Jul 28 10:46:39 1996 Fred Fish <fnf@cygnus.com>
135
136 * config/mips/tm-mips.h (struct frame_info): Forward decl.
137 (struct type): Ditto.
138 (struct value): Ditto.
139
140 * config/mips/tm-mips.h (sigtramp_address): Move extern decl
141 from mips-tdep.c to here.
142 (sigtramp_end): Ditto.
143 (fixup_sigtramp): Ditto.
144
145 * config/mips/tm-mips.h (init_extra_frame_info): Add prototype.
146 (mips_frame_chain): Ditto.
147 (mips_step_skips_delay): Ditto.
148 (mips_frame_saved_pc): Ditto.
149 (mips_find_saved_regs): Ditto.
150 (mips_frame_num_args): Ditto.
151 (mips_pop_frame): Ditto.
152 (mips_extract_return_value): Ditto.
153 (mips_store_return_value): Ditto.
154 (mips_push_dummy_frame): Ditto.
155 (mips_push_arguments): Ditto.
156 (mips_do_registers_info): Ditto.
157 (ecoff_relocate_efi): Ditto.
158 (ecoff_relocate_efi): Ditto.
159 * irix4-nat.c (fetch_core_registers): Add prototype.
160 * mips-tdep.c (read_next_frame_reg): Add prototype
161 (heuristic_proc_start): Ditto.
162 (heuristic_proc_desc): Ditto.
163 (mips_print_register): Ditto.
164 * config/mips/nm-irix5.h (procfs_set_watchpoint): Add prototype.
165 (procfs_stopped_by_watchpoint): Ditto.
166 * config/mips/nm-irix4.h (procfs_set_watchpoint): Add prototype.
167 (procfs_stopped_by_watchpoint): Ditto.
168 * config/alpha/tm-alpha.h (ecoff_relocate_efi): Add prototype.
169 (struct symbol): Add forward decl for prototype.
170
171 * breakpoint.c (internal_breakpoint_number): Only needed if
172 GET_LONGJMP_TARGET or SOLIB_ADD is defined.
173
174 * objfiles.c (ecoff_relocate_efi): Remove prototype.
175
176 Sat Jul 27 17:47:35 1996 Fred Fish <fnf@cygnus.com>
177
178 * configure.in: Add test for "long long" support.
179 * configure: Regenerate with autoconf.
180 * acconfig.h: Add CC_HAS_LONG_LONG
181 * config.in: Regenerate with autoheader.
182 * config/mips/tm-mips64.h (FORCE_LONG_LONG): Remove
183 * config/sparc/tm-sp64.h (CC_HAS_LONG_LONG): Remove.
184 * config/mips/tm-vr4300el.h (CC_HAS_LONG_LONG): Remove.
185 * config/mips/tm-vr4300.h (CC_HAS_LONG_LONG): Remove.
186 * config/mips/xm-irix5.h (CC_HAS_LONG_LONG): Remove
187 (PRINTF_HAS_LONG_LONG): Remove.
188 (FORCE_LONG_LONG): Remove.
189 * config/powerpc/xm-aix.h (UINT_MAX): Undef and use gdb's version.
190 * config/convex/xm-convex.h (CC_HAS_LONG_LONG): Remove
191 (PRINTF_HAS_LONG_LONG): Remove.
192 * config/xm-nbsd.h (CC_HAS_LONG_LONG): Remove.
193 (PRINTF_HAS_LONG_LONG): Remove.
194 * config/pa/tm-hppa.h (GET_FIELD): Put parens around
195 subtraction inside shift. Put parens around subtraction
196 in operand of bitwise and.
197 (struct frame_info): Forward declare
198 if __STDC__ defined.
199 (frame_saved_regs): Ditto.
200 (struct value): Ditto.
201 (struct type): Ditto.
202 (struct inferior_status): Ditto.
203 (init_extra_frame_info): Add prototype.
204 (skip_prologue): Ditto.
205 (frameless_function_invocation): Ditto.
206 (frame_chain): Ditto.
207 (frame_chain_valid): Ditto.
208 (saved_pc_after_call): Ditto.
209 (hppa_fix_call_dummy): Ditto.
210 (hppa_push_arguments): Ditto.
211 (pa_do_registers_info): Ditto.
212 (in_solib_call_trampoline): Ditto.
213 (in_solib_return_trampoline): Ditto.
214 (push_dummy_frame): Ditto.
215 * convex-tdep.c (decout): Use print_longest rather than
216 fprintf_filtered.
217 * defs.h: Remove use of FORCE_LONG_LONG and __GNUC__ to set
218 CC_HAS_LONG_LONG.
219 (INT_MIN): Fix so it works correctly when assigned to a long long.
220 * valprint.c (longest_to_int): Rewrite to remove dependence
221 on INT_MIN and INT_MAX.
222 (print_longest): Rewrite the code that falls back to synthesized
223 hex output when LONGEST value is not representable as in a long and
224 printf doesn't support printing long longs.
225 * ch-valprint.c (chill_val_print): Cast 2nd arg of
226 chill_print_type_scalar to LONGEST.
227 chill_print_type_scalar): Make static and add prototype.
228 * hppa-tdep.c (get_field): Ifdef out unused function.
229 (set_field): Ditto.
230 (extract_3): Ditto.
231 (extract_5_store): Ditto.
232 (extract_11): Ditto.
233 (extract_12): Ditto.
234 (deposit_17): Ditto.
235 (extract_14): Convert to static and add prototype.
236 (deposit_14): Ditto.
237 (extract_21): Ditto.
238 (deposit_21): Ditto.
239 (extract_17): Ditto.
240 (extract_5r_store): Ditto.
241 (extract_5R_store): Ditto.
242 (extract_5_load): Ditto.
243 (find_proc_framesize): Ditto.
244 (find_dummy_frame_regs): Ditto.
245 (sign_extend): Ditto.
246 (find_unwind_entry): Add prototype.
247 (find_return_regnum): Ditto.
248 (unwind_command): Ditto.
249 (find_dummy_frame_regs): Add parens around subtraction in operand
250 of bitwise-and.
251 (skip_prologue): Add parens around operands of logical-and inside
252 operand of logical-or.
253 (sign_extend): Add parens around operands of subtraction inside
254 operand of shift.
255 (low_sign_extend): Ditto.
256 * top.c (filename_completer): Convert old style decl of
257 filename_completion_function into prototype.
258 * f-lang.c (patch_common_entries): Ifdef out unused function.
259 * stabsread.c (read_cfront_baseclasses): Remove unused local
260 variable "msg_noterm".
261 (resolve_cfront_continuation): Remove unused local variable "fip".
262 (read_type): Remove unused variable xtypenums.
263 (read_cfront_static_fields): Remove unused variable "i".
264 (read_cfront_static_fields): Remove unused variable "nfields".
265 (read_cfront_member_functions): Add missing comment terminator.
266 (read_cfront_static_fields): Return 1 rather than random value.
267 (read_cfront_baseclasses): Ditto.
268 (read_cfront_baseclasses): Ditto.
269 (read_cfront_baseclasses): Ditto.
270 * somsolib.c (som_solib_create_inferior_hook): Remove unused
271 variable "u".
272 (som_solib_create_inferior_hook): Remove unused variable
273 shadow_contents.
274 (language.h): Add for needed prototypes.
275 (som_solib_sharedlibrary_command): Add prototype.
276 * hpread.c: (hpread_read_array_type): Add prototype.
277 * somread.c (hpread_build_pysmtabs): Add prototype.
278 (hpread_symfile_finish): Ditto.
279 (hpread_symfile_init): Ditto.
280 * hppah-nat.c (fetch_register): Convert old style decl
281 to prototype.
282 (gdbcore.h): Include for needed prototypes.
283 (fetch_register): Remove unused variable "mess".
284 * remote-pa.c (get_offsets): Ifdef out unused function.
285 (remote_start_remote): Remove unused variable "timeout".
286 (boot_board): Add prototype.
287 (reaad_frame): Add prototype.
288 (getpkt): Remove unused variable "bp".
289 (remote_kill): Add prototype.
290 (remote_mourn): Add prototype.
291 (remote_insert_breakpoint): Add prototype.
292 (remote_remove_breakpoint): Add prototype.
293 * valops.c (value_push): Only use if PUSH_ARGUMENTS is not defined.
294 * infcmd.c (do_registers_info): Only need prototype if
295 DO_REGISTERS_INFO is not defined.
296 (breakpoint_auto_delete_contents): Only need if
297 CALL_DUMMY_BREAKPOINT_OFFSET is defined.
298
299 Sat Jul 27 08:49:49 1996 Fred Fish <fnf@cygnus.com>
300
301 * xcoffread.c (xcoff_end_psymtab): Add textlow_not_set parameter.
302 (END_PSYMTAB): Ditto.
303 (scan_xcoff_symtab): Call xcoff_end_psymtab with textlow_not_set.
304
305 Fri Jul 26 14:07:37 1996 Ian Lance Taylor <ian@cygnus.com>
306
307 * printcmd.c (_initialize_printcmd): Initialize
308 tm_print_insn_info.flavour.
309 start-sanitize-gdbtk
310 * gdbtk.c (gdb_disassemble): Initialize di.flavour.
311 end-sanitize-gdbtk
312
313 Thu Jul 25 19:41:31 1996 Fred Fish <fnf@cygnus.com>
314
315 * Makefile.in (scm-valprint.o): Depends upon gdbcore_h.
316 (arm-tdep.o): Ditto.
317 (dcache.o): Ditto.
318 (i386ly-tdep.o): Ditto.
319 (i960-tdep.o): Ditto.
320 (m68k-tdep.o): Ditto.
321 (nindy-tdep.o): Ditto.
322 (scm-lang.o): Ditto.
323 (w65-tdep.o): Ditto.
324 (z8k-tdep.o): Ditto.
325 (m68k-tdep.o): Depends upon value_h and gdb_string.h
326 (m2-valprint.o): Depends upon m2-lang.h.
327 (sparc-tdep.o): Depends upon gdb_string.h
328 (valprint.o): Depends upon valprint.h
329
330 * remote-e7000.c (notice_quit): Remove prototype.
331 * top.c (initialize_targets): Remove prototype, now in target.h.
332 * stabsread.c (resolve_cfront_continuation): Remove prototype.
333 * dbxread.c (resolve_cfront_continuation): Remove prototype.
334 * symfile.h (set_demangling_style): Remove prototype.
335 * config/tm-sysv4.h (in_plt_section): Remove prototype, in objfiles.h.
336 * config/sparc/tm-sparc.h (single_step): Remove extern decl, now in
337 target.h.
338 * config/arc/tm-arc.h (one_stepped, single_step): Remove extern decls,
339 now in target.h.
340 * ser-unix.c (hardwire_restore): Remove obsolete prototype.
341 * sparc-tdep.c (single_step): Remove forward decl of isbranch.
342 * scm-lang.c (find_function_in_inferior): Remove prototype.
343 (value_allocate_space_in_inferior): Ditto.
344 * infrun.c (write_pc_pid): Remove prototype, now in inferior.h.
345 * defs.h (strchr): Remove declarations, they are declared in
346 gdb_string.h also.
347 (strrchr): Ditto.
348 (strstr): Ditto.
349 (strtok): Ditto.
350 (strerror): Ditto.
351 * f-valprint.c (f77_print_array_1): Remove extra arg that was being
352 passed to f77_print_array_1.
353 * gdbtypes.c (add_name): Remove unused variables lenstrlen and lenstr.
354 * scm-exp.c (scm_istr2int): Remove unused variable "j".
355 (scm_parse): Remove unused variable "str".
356 * hp300ux-nat.c (store_inferior_register): Remove unused variable
357 "buf".
358 (store_inferior_registers): Remove unnecessary decl "registers".
359 * m68k-tdep.c (m68k_pop_frame): Remove unused variable "fi".
360 * scm-lang.c (scm_get_field): Remove unused variable "val".
361 (scm_lookup_name): Remove unused variable "symval".
362 * objfiles.c (map_to_file): Remove unused local variable "tempfd".
363 * procfs.c (do_attach, do_detach): Remove unused variable "result".
364 (last_resume_pid): Remove unused static variable.
365 * alpha-tdep.c (alpha_linux_sigtramp_offset): Remove unused variable
366 "res".
367 * objfiles.c (map_to_address): Remove unused function.
368 * f-valprint.c (print_max): Remove extraneous extern decl,
369 in valprint.h.
370 (calc_f77_array_dims): Remove extraneous prototype, in f-lang.h.
371 * ch-exp.c (write_lower_upper_value): Remove prototype for
372 type_lower_upper.
373
374 * gdbtypes.c (cfront_mangle_name): #ifdef out unused function.
375 * ch-exp.c (parse_mode_call): Ditto.
376 * f-valprint.c (there_is_a_visible_common_named): Ditto.
377 * f-lang.c (clear_function_list): Ditto.
378 (get_bf_for_fcn): Ditto.
379 (clear_bf_list): Ditto.
380 (add_common_block): Ditto.
381 (patch_all_commons_by_name): Ditto.
382 (find_first_common_named): Ditto.
383 (add_common_entry): Ditto.
384 (allocate_saved_function_node): Ditto.
385 (allocate_saved_bf_node): Ditto.
386 (allocate_common_entry_node): Ditto.
387 (allocate_saved_f77_common_node): Ditto.
388
389 * arm-tdep.c (gdbcore.h): Include for necessary prototypes.
390 * dcache.c (gdbcore.h): Ditto.
391 * i386ly-tdep.c (gdbcore.h): Ditto.
392 * i960-tdep.c (gdbcore.h): Ditto.
393 * m2-valprint.c (m2-lang.h): Ditto.
394 * m68k-tdep.c (gdbcore.h): Ditto.
395 (value.h): Ditto.
396 (gdb_string.h): Ditto.
397 * nindy-tdep.c (gdbcore.h): Ditto.
398 * scm-lang.c (gdbcore.h): Ditto.
399 * scm-valprint.c (gdbcore.h): Ditto.
400 * w65-tdep.c (gdbcore.h): Ditto.
401 * z8k-tdep.c (gdbcore.h): Ditto.
402 * sparc-tdep.c (gdb_string.h): Include.
403 * valprint.c (valprint.h): Include.
404
405 * config/xm-lynx.h: Remove part of comment about INT_MIN
406 redefined warnings from defs.h, since INT_MIN define in
407 defs.h is now protected by #ifndef INT_MIN.
408 * config/i386/xm-i386bsd.h: Ditto.
409 * config/m68k/xm-hp300bsd.h: Ditto.
410 * config/m68k/xm-news.h: Ditto.
411
412 * config/pa/xm-hppah.h (INT_MIN): Remove bogus INT_MIN
413 definition as 0x80000000. The macro in defs.h is better.
414 * config/i386/xm-i386m3.h (INT_MIN): Ditto.
415 * config/i386/xm-i386mach.h (INT_MIN): Ditto.
416 * config/ns32k/xm-ns32km3.h (INT_MIN): Ditto.
417 * config/pa/xm-hppab.h: Ditto.
418
419 * core-aout.c (fetch_core_registers): Add prototype.
420 * hp300ux-nat.c (fetch_inferior_register): Ditto.
421 (store_inferior_register_1): Ditto.
422 (store_inferior_register): Ditto.
423 * config/m68k/tm-m68k.h (find_saved_regs): Ditto.
424 *scm-valprint.c (c_val_print): Ditto.
425 * procfs.c (add_fd): Ditto.
426 (remove_fd): Ditto.
427 (wait_fd): Ditto.
428 (sigcodename): Ditto.
429 (sigcodedesc): Ditto.
430 (procfs_kill_inferior): Ditto.
431 (procfs_xfer_memory): Ditto.
432 (procfs_store_registers): Ditto.
433 (create_procinfo): Ditto.
434 (procfs_init_inferior): Ditto.
435 (proc_set_exec_trap): Ditto.
436 (procfs_attach): Ditto.
437 (procfs_detach): Ditto.
438 (procfs_prepare_to_store): Ditto.
439 (procfs_files_info): Ditto.
440 (procfs_open): Ditto.
441 (procfs_wait): Ditto.
442 (procfs_fetch_registers): Ditto.
443 (procfs_mourn_inferior): Ditto.
444 (procfs_can_run): Ditto.
445 (procfs_thread_alive): Ditto.
446 (procfs_stop): Ditto.
447 * alpha-nat.c (fetch_core_registers): Ditto.
448 * config/alpha/tm-alpha.h (alpha_osf_skip_sigtramp_frame): Ditto.
449 * objfiles.c (ecoff_relocate_efi): Ditto.
450 * inflow.c (pass_signal): Ditto.
451 (handle_sigio): Ditto.
452 * annotate.c (breakpoint_changed): Ditto.
453 * callback.c (wrap): Ditto.
454 (fdbad): Ditto.
455 (fdmap): Ditto.
456 * utils.c (malloc_botch): Ditto.
457 (fputs_maybe_filtered): Ditto.
458 (vfprintf_maybe_filtered): Ditto.
459 * defs.h (notice_quit): Ditto.
460 * defs.h (xmalloc, xrealloc): Ditto.
461 * top.c (stop_sig): Ditto.
462 (init_signals): Ditto.
463 (user_defined_command): Ditto.
464 (source_cleanup_lines): Ditto.
465 (dont_repeat_command): Ditto.
466 (serial_log_command): Ditto.
467 (disconnect): Ditto.
468 * target.h (initialize_targets): Ditto.
469 * os9kread.c (read_minimal_symbols): Ditto.
470 * mdebugread.c (mdebug_psymtab_to_symtab): Ditto.
471 (fdr_name): Ditto.
472 (push_parse_stack): Ditto.
473 (pop_parse_stack): Ditto.
474 (is_pending_symbol): Ditto.
475 (add_pending): Ditto.
476 * serial.c (serial_logchar): Ditto.
477 (serial_interface_lookup): Ditto.
478 * serial.h (serial_log_command): Ditto.
479 * f-valprint.c (info_common_command): Ditto.
480 * gdbtypes.h (print_type_scalar): Ditto.
481 * scm-valprint.c (scm_scmlist_print): Ditto.
482 (scm_ipruk): Ditto.
483 * scm-lang.c (scm_printstr): Ditto.
484 (in_eval_c): Ditto.
485 (evaluate_subexp_scm): Ditto.
486 * scm-exp.c (scm_read_token): Ditto.
487 (scm_skip_ws): Ditto.
488 (scm_lreadparen): Ditto.
489 * m2-lang.c (emit_char): Ditto.
490 (m2_printchar): Ditto.
491 (m2_printstr): Ditto.
492 (m2_create_fundamental_type): Ditto.
493 * f-lang.c (emit_char): Ditto.
494 (f_printchar): Ditto.
495 (f_printstr): Ditto.
496 (f_create_fundamental_type): Ditto.
497 * ch-lang.c (chill_printchar): Ditto.
498 (chill_printstr): Ditto.
499 (chill_create_fundamental_type): Ditto.
500 (value_chill_length): Ditto.
501 (value_chill_card): Ditto.
502 (value_chill_max_min): Ditto.
503 (evaluate_subexp_chill): Ditto.
504 * ch-exp.c (PEEK_TOKEN): Ditto.
505 (peek_token_): Ditto.
506 (forward_token_): Ditto.
507 (parse_case_label): Ditto.
508 (parse_opt_untyped_expr): Ditto.
509 (parse_unary_call): Ditto.
510 (parse_call): Ditto.
511 (parse_named_record_element): Ditto.
512 (parse_tuple_element): Ditto.
513 (parse_opt_element_list): Ditto.
514 (parse_tuple): Ditto.
515 (parse_primval): Ditto.
516 (parse_operand6): Ditto.
517 (parse_operand5): Ditto.
518 (parse_operand4): Ditto.
519 (parse_operand3): Ditto.
520 (parse_operand2): Ditto.
521 (parse_operand1): Ditto.
522 (parse_operand0): Ditto.
523 (parse_expr): Ditto.
524 (parse_then_alternative): Ditto.
525 (parse_else_alternative): Ditto.
526 (parse_if_expression): Ditto.
527 (parse_untyped_expr): Ditto.
528 (growbuf_by_size): Ditto.
529 (match_simple_name_string): Ditto.
530 (decode_integer_value): Ditto.
531 (decode_integer_literal): Ditto.
532 (match_float_literal): Ditto.
533 (match_float_literal): Ditto.
534 (match_string_literal): Ditto.
535 (match_character_literal): Ditto.
536 (match_integer_literal): Ditto.
537 (match_bitstring_literal): Ditto.
538 (write_lower_upper_value): Ditto.
539 * ch-lang.h (type_lower_upper): Ditto.
540 * c-lang.c (emit_char): Ditto.
541 * dwarfread.c (free_utypes): Ditto.
542 * stabsread.h (resolve_cfront_continuation): Ditto.
543 * stabsread.c (get_substring): Ditto.
544 (read_one_struct_field): Ditto.
545 * stabsread.h (process_later): Ditto.
546 * demangle.c (set_demangling_command): Ditto.
547 * defs.h (set_demangling_style): Ditto.
548 * maint.c (maintenance_info_command): Ditto.
549 (print_section_table): Ditto.
550 (maintenance_info_sections): Ditto.
551 (maintenance_print_command): Ditto.
552 * symtab.h (maintenance_print_statistics): Ditto.
553 * objfiles.h (in_plt_section): Ditto.
554 * objfiles.c (add_to_objfile_sections): Ditto.
555 * bcache.c (hash): Ditto.
556 (lookup_cache): Ditto.
557 * exec.c (bfdsec_to_vmap): Ditto.
558 (ignore): Ditto.
559 * f-exp.y (growbuf_by_size, match_string_literal): Ditto.
560 * language.c (unk_lang_printchar): Ditto.
561 (unk_lang_printstr): Ditto.
562 (unk_lang_create_fundamental_type): Ditto.
563 (unk_lang_print_type): Ditto.
564 (unk_lang_val_print): Ditto.
565 (unk_lang_value_print): Ditto.
566 * target.c (update_current_target): Ditto.
567 (debug_to_open): Ditto.
568 (debug_to_close): Ditto.
569 (debug_to_attach): Ditto.
570 (debug_to_detach): Ditto.
571 (debug_to_resume): Ditto.
572 (debug_to_wait): Ditto.
573 (debug_to_fetch_registers): Ditto.
574 (debug_to_store_registers): Ditto.
575 (debug_to_prepare_to_store): Ditto.
576 (debug_to_xfer_memory): Ditto.
577 (debug_to_files_info): Ditto.
578 (debug_to_insert_breakpoint): Ditto.
579 (debug_to_remove_breakpoint): Ditto.
580 (debug_to_terminal_init): Ditto.
581 (debug_to_terminal_inferior): Ditto.
582 (debug_to_terminal_ours_for_output): Ditto.
583 (debug_to_terminal_ours): Ditto.
584 (debug_to_terminal_info): Ditto.
585 (debug_to_kill): Ditto.
586 (debug_to_load): Ditto.
587 (debug_to_lookup_symbol): Ditto.
588 (debug_to_create_inferior): Ditto.
589 (debug_to_mourn_inferior): Ditto.
590 (debug_to_can_run): Ditto.
591 (debug_to_notice_signals): Ditto.
592 (debug_to_thread_alive): Ditto.
593 (debug_to_stop): Ditto.
594 start-sanitize-gdbtk
595 * gdbtk.c (null_routine): Ditto.
596 (gdbtk_flush): Ditto.
597 (gdbtk_fputs): Ditto.
598 (gdbtk_query): Ditto.
599 (gdbtk_readline): Ditto.
600 (gdbtk_readline_end): Ditto.
601 (gdb_get_breakpoint_list): Ditto.
602 (gdb_get_breakpoint_info): Ditto.
603 (breakpoint_notify): Ditto.
604 (gdbtk_create_breakpoint): Ditto.
605 (gdbtk_delete_breakpoint): Ditto.
606 (gdbtk_modify_breakpoint): Ditto.
607 (gdb_loc): Ditto.
608 (gdb_eval): Ditto.
609 (gdb_sourcelines): Ditto.
610 (map_arg_registers): Ditto.
611 (get_register_name): Ditto.
612 (gdb_regnames): Ditto.
613 (get_register): Ditto.
614 (gdb_fetch_registers): Ditto.
615 (register_changed_p): Ditto.
616 (gdb_changed_register_list): Ditto.
617 (gdb_cmd): Ditto.
618 (call_wrapper): Ditto.
619 (gdb_listfiles): Ditto.
620 (gdb_stop): Ditto.
621 (gdbtk_dis_asm_read_memory): Ditto.
622 (compare_lines): Ditto.
623 (gdb_disassemble): Ditto.
624 (tk_command): Ditto.
625 (cleanup_init): Ditto.
626 (gdbtk_interactive): Ditto.
627 (x_event): Ditto.
628 (gdbtk_wait): Ditto.
629 (gdbtk_call_command): Ditto.
630 (tk_command_loop): Ditto.
631 (gdbtk_init): Ditto.
632 end-sanitize-gdbtk
633 * breakpoint.h (set_breakpoint_sal): Ditto.
634 * remote-utils.c (usage): Ditto.
635 * remote.c (set_thread): Ditto.
636 (remote_thread_alive): Ditto.
637 (get_offsets): Ditto.
638 (read_frame): Ditto.
639 (remote_insert_breakpoint): Ditto.
640 (remote_remove_breakpoint): Ditto.
641 * sparc-nat.c (fetch_core_registers): Ditto.
642 * corelow.c (add_to_thread_list): Ditto.
643 (ignore): Ditto.
644 * inftarg.c (proc_wait): Ditto.
645 * infptrace.c (udot_info): Ditto.
646 (fetch_register): Ditto.
647 * ser-unix.c (hardwire_noflush_set_tty_state): Ditto.
648 (hardwire_print_tty_state): Ditto.
649 (hardwire_flush_output): Ditto.
650 (hardwire_flush_input): Ditto.
651 (hardwire_send_break): Ditto.
652 (hardwire_setstopbits): Ditto.
653 * ser-tcp.c (tcp_return_0): Ditto.
654 (tcp_noflush_set_tty_state): Ditto.
655 (tcp_print_tty_state): Ditto.
656 * solib.c (match_main): Ditto.
657 * gdbtypes.c (print_bit_vector): Ditto.
658 (print_arg_types): Ditto.
659 (dump_fn_fieldlists): Ditto.
660 (print_cplus_stuff): Ditto.
661 * symfile.h (entry_point_address): Ditto.
662 * symfile.c (decrement_reading_symtab): Ditto.
663 * valops.c (value_arg_coerce): Ditto.
664 * value.h (find_function_in_inferior): Ditto.
665 (value_allocate_space_in_inferior): Ditto.
666 * values.c (vb_match): Ditto.
667 * thread.c (info_thread_command): Ditto.
668 (restore_current_thread): Ditto.
669 (thread_apply_all_command): Ditto.
670 (thread_apply_command): Ditto.
671 * inferior.h (write_pc_pid): Ditto.
672 * infrun.c (delete_breakpoint_current_contents): Ditto.
673 * breakpoint.c (print_it_normal): Ditto.
674 (watchpoint_check): Ditto.
675 (print_it_done): Ditto.
676 (print_it_noop): Ditto.
677 (maintenance_info_breakpoints): Ditto.
678 (create_longjmp_breakpoint): Ditto.
679 (hbreak_command): Ditto.
680 (thbreak_command): Ditto.
681 (watch_commnd_1): Ditto.
682 (rwatch_command): Ditto.
683 (awatch_command): Ditto.
684 (do_enable_breakpoint): Ditto.
685 * ch-valprint.c (chill_val_print_array_elements): Ditto.
686 * eval.c (evaluate_subexp): Ditto.
687 (get_label): Ditto.
688 (evaluate_struct_tuple): Ditto.
689 * eval.c (init_array_element): Ditto.
690
691 * alpha-tdep.c (push_sigtramp_desc): Add prototype and make static.
692 * breakpoint.c (hw_breakpoint_used_count): Ditto.
693 (hw_watchpoint_used_count): Ditto.
694 * findvar.c (write_register_gen): Ditto.
695 (read_register_pid): Ditto.
696 * symtab.c (cplusplus_hint): Ditto.
697 * infcmd.c (breakpoint_auto_delete_contents): Ditto.
698 * ch-valprint.c (chill_print_type_scalar): Ditto.
699 * gdbtypes.c (add_name): Ditto.
700 (add_mangled_type): Ditto.
701 (cfront_mangle_name): Ditto.
702 * sparc-tdep.c (isbranch): Ditto.
703 * inftarg.c (child_stop): Ditto.
704 * win32-nat.c (child_stop): Ditto.
705 * mac-nat.c (child_stop): Ditto.
706 * remote-utils.c (sr_com): Ditto.
707 * dbxread.c (process_now): Ditto.
708 * ch-exp.c (require): Ditto.
709 (check_token): Ditto.
710 (expect): Ditto.
711 (parse_mode_call): Ditto.
712 (parse_mode_or_normal_call): Ditto.
713 * scm-lang.c (scm_lookup_name): Ditto
714 * f-lang.c (allocate_saved_bf_node): Ditto.
715 (allocate_saved_function_node): Ditto.
716 (allocate_saved_f77_common_node): Ditto.
717 (allocate_common_entry_node): Ditto.
718 (add_common_block): Ditto.
719 (add_common_entry): Ditto.
720 (find_first_common_named): Ditto.
721 (patch_common_entries): Ditto.
722 (patch_all_commons_by_name): Ditto.
723 (clear_bf_list): Ditto.
724 (get_bf_for_fcn): Ditto.
725 (clear_function_list): Ditto.
726 * scm-exp.c (scm_istr2int): Ditto.
727 (scm_istring2number): Ditto.
728 * scm-valprint.c (scm_inferior_print): Ditto.
729 * f-typeprint.c (print_equivalent_f77_float_type): Ditto.
730 * f-valprint.c (f77_get_dynamic_length_of_aggregate): Ditto.
731 (f77_create_arrayprint_offset_tbl): Ditto.
732 (f77_print_array_1): Ditto.
733 (f77_print_array): Ditto.
734 (list_all_visible_commons): Ditto.
735 (there_is_a_visible_common_named): Ditto.
736 * mdebugread.c (ecoff_relocate_efi): Ditto.
737 * callback.c (os_close): Ditto.
738 (os_get_errno): Ditto.
739 (os_isatty): Ditto.
740 (os_lseek): Ditto.
741 (os_open): Ditto.
742 (os_read): Ditto.
743 (os_read_stdin): Ditto.
744 (os_write): Ditto.
745 (os_write_stdout): Ditto.
746 (os_rename): Ditto.
747 (os_system): Ditto.
748 (os_time): Ditto.
749 (os_unlink): Ditto.
750 (os_shutdown): Ditto.
751 (os_init): Ditto.
752 (os_printf_filtered): Ditto.
753
754 * scm-lang.h (scm_parse): Change old style decl to prototype.
755 * config/alpha/tm-alphalinux.h (alpha_linux_sigtramp_offset): Ditto.
756 * top.c (init_proc): Ditto.
757 (query_hook): Ditto.
758 (error_hook): Ditto.
759 * f-lang.c (c_value_print): Ditto.
760 * ch-exp.c (parse_expression): Ditto.
761 (parse_primval): Ditto.
762 (parse_untyped_expr): Ditto.
763 (parse_opt_untyped_expr): Ditto.
764 (ch_lex): Ditto.
765 * config/sparc/tm-sparc.h (sparc_init_extra_frame_info): Ditto.
766 (sparc_frame_saved_pc): Ditto.
767 (sparc_push_dummy_frame): Ditto.
768 (sparc_pop_frame): Ditto.
769 * defs.h (fclose): Ditto.
770 (atof): Ditto.
771 (error_hook): Ditto.
772
773 * arc-tdep.c (single_step): Change arg to type "enum target_signal".
774 * rs6000-tdep.c (single_step): Ditto.
775 * sparc-tdep.c (single_step): Ditto.
776
777 * breakpoint.c (cleanup_executing_breakpoints): Change unused arg type
778 to PTR which is what make_cleanup expects.
779 * utils.c (null_cleanup): Change arg type to PTR.
780 * defs.h (null_cleanup): Change prototype to match actual function.
781 * config/sparc/tm-sparc.h (struct frame_info): Move forward decl.
782 * ch-valprint.c (chill_val_print): Cast 2nd arg of
783 chill_print_type_scalar to LONGEST.
784 * infrun.c (wait_for_inferior): Have empty switch case for
785 BPSTAT_WHAT_CHECK_SHLIBS when SOLIB_ADD is not defined.
786 (stop_on_solib_events): Only needed if SOLIB_ADD is defined.
787 * infcmd.c (attach_command): Only need auto_solib_add if SOLIB_ADD
788 is defined.
789 * symfile.c (generic_load): Scan long int using a long int spec,
790 not an int spec.
791 * infptrace.c (udot_info): Only need local variables if KERNEL_U_SIZE
792 is defined.
793 (fetch_register): Only need function if FETCH_INFERIOR_REGISTERS is
794 not defined.
795 * inflow.c (handle_sigio): Only need prototype when the actual
796 function is compiled in.
797 * valprint.c (longest_to_int): Expand error message to be
798 separate messages for args larger than largest signed int
799 and args smaller than smallest signed int.
800 * valprint.c (print_longest): Fix problems with support for case
801 where compiler supports type "long long" but the runtime doesn't
802 support printing them with "%ll".
803 * scm-valprint.c (scm_scmlist_print, scm_scmval_print): Change
804 return types to void since we don't actually return anything
805 meaningful and callees ignore the values anyway.
806 * procfs.c (modify_inherit_on_fork_flag): Enclose pr_flags in PIOCSET
807 ifdef.
808 (modify_run_on_last_close_flag): Ditto.
809 (wait_fd): Enclose local variables "num_fds" and "i" LOSING_POLL
810 ifdef
811 * alpha-tdep.c (push_sigtramp_desc): Return proc_desc rather than
812 random value.
813 * infrun.c (wait_for_inferior): Ensure random_signal is not used
814 uninitialized.
815 * valops.c (call_function_by_hand): Ensure struct_addr is not used
816 uninitialized.
817 * breakpoint.c (watch_command_1): Ensure prev_frame is not used
818 uninitialized.
819 * utils.c (vfprintf_maybe_filtered): Change second arg from "char *"
820 to "const char *".
821 start-sanitize-gdbtk
822 * gdbtk.c (gdb_fetch_registers): Cast fourth arg to map_arg_registers
823 to proper pointer type, from int.
824 (gdbtk_query): Change first arg to "const char *" from "char *".
825 end-sanitize-gdbtk
826 * infptrace.c (udot_info): Add two dummy args so that the type is
827 correct for passing to add_info.
828 * f-lang.c (saved_fcn): Move decl to head of file so it can be used
829 in prototypes.
830 (saved_bf_symnum): Ditto.
831 (SAVED_FUNCTION): Ditto.
832 (SAVED_FUNCTION_PTR): Ditto.
833 (SAVED_BF): Ditto.
834 (SAVED_BF_PTR): Ditto.
835 * ch-exp.c (parse_named_record_element): Build error message in
836 temporary buffer before passing it to expect, rather than passing
837 wrong number of args to expect.
838 * demangle.c (set_demangling_style): Call set_demangling_command with
839 correct number of arguments.
840 * inferior.h (terminal_init_inferior_with_pgrp): Change arg type to
841 int to match actual function.
842 (os_isatty): Call fdmap with right number of arguments, was missing
843 the host_callback* arg.
844 * target.c (cleanup_target): Prototype all functions casts.
845 * target.h (one_stepped, single_step): Declare here and convert
846 single_step to prototype.
847 * infrun.c (one_stepped, single_step): Don't declare externs
848 here, they have moved to target.h.
849 * eval.c (init_array_element): Declare previously undeclared
850 last two args as LONGEST.
851 * dcache.c (dcache_xfer_memory): Change xfunc decls to prototype form.
852 start-sanitize-gdbtk
853 * gdbtk.c (register_changed_p): Remove unused local variable "buf".
854 end-sanitize-gdbtk
855
856 Thu Jul 25 16:11:54 1996 Doug Evans <dje@canuck.cygnus.com>
857
858 * dsrec.c (load_srec): Protect ANSI style function parms with PARAMS.
859
860 Mon Jul 22 18:13:27 1996 Stu Grossman (grossman@critters.cygnus.com)
861
862 * Makefile.in (os9kread.o): Remove dependency on partial-stab.h.
863 * dbxread.c (read_dbx_symtab end_psymtab), partial-stab.h: Don't
864 use partial_symtab->textlow==0 as a flag, as 0 is a legitimate
865 text address. Use a seperate flag (textlow_not_set) instead.
866 This makes stabs in ELF .o files work a lot better.
867 * mdebugread.c xcoffread.c: Define textlow_not_set for
868 partial-stab.h.
869 * stabsread.h (end_psymtab): Add textlow_not_set arg to prototype.
870
871 start-sanitize-gdbtk
872 Sat Jul 20 17:46:40 1996 Fred Fish <fnf@cygnus.com>
873
874 * gdbtk.tcl (files_command): Reorder the binding tags for
875 the listbox widget to avoid referencing the listbox after
876 the containing widget has been destroyed by the action of
877 a previous binding.
878 end-sanitize-gdbtk
879
880 Sat Jul 20 10:41:06 1996 Fred Fish <fnf@cygnus.com>
881
882 * dwarf2read.c (struct filenames): Change internal "struct file"
883 to "struct fileinfo" to avoid conflict with "struct file" in
884 <sys/file.h> on HPUX and Solaris.
885
886 start-sanitize-gdbtk
887 Sat Jul 20 10:09:28 1996 Fred Fish <fnf@cygnus.com>
888
889 * gdbtk.tcl (delete_expr): Unset corresponding element of
890 expr_update_list when destroying an expression.
891 (create_expr_window): Initialize expr_num, delete_expr_num,
892 and expr_update_list here when each new expression window
893 is created, rather than once at startup.
894 end-sanitize-gdbtk
895
896 Fri Jul 19 14:05:57 1996 Stan Shebs <shebs@andros.cygnus.com>
897
898 * dwarf2read.c: New file, DWARF 2 reader originally contributed by
899 Brent Benson, with additions by Gary Funck and Jerry Kreuscher.
900 * Makefile.in (COMMON_OBS): Add dwarf2read.o.
901 (SFILES): Add dwarf2read.c.
902 (dwarf2read.o): Add build rule.
903 * symfile.h (dwarf2_has_info, dwarf2_build_psymtabs): Declare
904 exported functions.
905 * elfread.c (elf_symfile_read): Call them.
906 (elf_symtab_read) [HARRIS_TARGET]: Skip some special symbols.
907
908 Thu Jul 18 01:22:01 1996 Geoffrey Noer <noer@cygnus.com>
909
910 * symfile.c (symfile_bfd_open):
911 * exec.c (exec_file_command): for __GO32__ and __WIN32__ systems,
912 free the user from having to type the .exe extension.
913
914 Wed Jul 17 06:54:50 1996 Mark Alexander <marka@cygnus.com>
915
916 * mon960-rom.c: Shorten the mon960_inits string to a single
917 carriage return; this prevents a hang on connecting immediately
918 after powerup, when MON960 is attempting autobaud detection.
919
920 Tue Jul 16 23:47:04 1996 Mark Alexander <marka@cygnus.com>
921
922 * a29k-tdep.c (get_saved_register): Allow PC to be modified
923 when innermost frame is selected, but not in outer frames.
924
925 Tue Jul 16 23:37:25 1996 Stu Grossman (grossman@critters.cygnus.com)
926
927 * command.c (do_setshow_command): Don't segfault when showing
928 var_string and var_string_noescape vars that are NULL.
929
930 Mon Jul 15 16:55:48 1996 Doug Evans <dje@canuck.cygnus.com>
931
932 * win32-nat.c (handle_load_dll): dos_path_to_unix_path renamed to
933 cygwin32_conv_to_posix_path.
934 (child_create_inferior): unix_path_to_dos_path renamed to
935 cygwin32_conv_to_win32_path. Rewrite code to translate PATH.
936
937 Mon Jul 15 16:44:05 1996 Stu Grossman (grossman@critters.cygnus.com)
938
939 * defs.h printcmd.c: Create global disassemble_info structure
940 tm_print_insn_info.
941 start-sanitize-gdbtk
942 * gdbtk.c (gdb_disassemble): Setup di.mach from
943 tm_print_insn_info.mach, and set endian from TARGET_BYTE_ORDER.
944 end-sanitize-gdbtk
945 * i386-tdep.c (set_assembly_language_command): set
946 tm_print_insn_info.mach to the appropriate value for 386 or 8086
947 disassembly.
948 * printcmd.c (print_insn): Move init of disassembler_info to
949 _initialize_printcmd. Set endian for disassembler here.
950 * sparc-tdep.c: Set tm_print_insn_info.mach as appropriate to
951 select sparc/sparclite.
952 * config/sparc/{tm-sparc.h tm-sparclite.h}: Get rid of
953 TM_PRINT_INSN. Set TM_PRINT_INSN_MACH to
954 bfd_mach_sparc/bfd_mach_sparc_sparclite.
955
956 Fri Jul 12 19:04:32 1996 Fred Fish <fnf@cygnus.com>
957
958 * hpread.c (hpread_lookup_type): Use xmmalloc/xmrealloc rather
959 than xmalloc/xrealloc.
960
961 Fri Jul 12 17:59:47 1996 Fred Fish <fnf@ninemoons.com>
962
963 * objfiles.c (map_to_file): Error return from mmalloc_findbase is
964 a NULL pointer, not a -1.
965
966 Fri Jul 12 10:16:24 1996 Stu Grossman (grossman@critters.cygnus.com)
967
968 * i386-tdep.c (set_assembly_language_command): New routine to
969 select between i386 and i8086 instruction sets for disassembly.
970 New command `set assembly-language {i386 i8086}'.
971
972 Thu Jul 11 21:13:21 1996 Mark Alexander <marka@cygnus.com>
973
974 * monitor.c (monitor_write_memory, monitor_read_memory_single):
975 Disable use of "long long" memory read/write commands; can't
976 use them because we hold the values to read/write in an int
977 variable, and because strtoul fails on values that exceed the
978 size of a long. This fixes breakpoint problems on MON960.
979
980 Thu Jul 11 11:39:31 1996 Fred Fish <fnf@cygnus.com>
981
982 * config/m68k/xm-hp300hpux.h (HAVE_MMAP): Remove definition.
983 * config/pa/xm-hppah.h (HAVE_MMAP): Ditto.
984
985 Wed Jul 10 16:54:41 1996 Fred Fish <fnf@cygnus.com>
986
987 * Makefile.in (MMALLOC_CFLAGS): Eliminate intermediate MMALLOC_DISABLE
988 and MMALLOC_CHECK macros, and add comment indicating how host dependent
989 makefile fragment should modify MMALLOC_CFLAGS to not use mmalloc, or
990 to use it but to not do heap corruption checking.
991 * gdbserver/Makefile.in: Ditto.
992 * utils.c (init_malloc): Replace warning() use with direct call of
993 fprintf_unfiltered, since current_target has not yet been set and thus
994 we cannot use warning(). If we try to use mmcheck and it fails,
995 suggest that this configuration needs NO_MMCHECK or MMCHECK_FORCE
996 defined. Other small mmalloc related cleanups.
997 * config/sparc/sun4os4.mh (MMALLOC_CFLAGS): Define MMCHECK_FORCE to 1.
998 * config/alpha/alpha-osf2.mh (MMALLOC_CFLAGS): Set to -DNO_MMCHECK.
999
1000 * config/sparc/xm-sun4os4.h (MMAP_BASE_ADDRESS, MMAP_INCREMENT):
1001 * config/i386/xm-i386v4.h (MMAP_BASE_ADDRESS, MMAP_INCREMENT):
1002 * config/i386/xm-linux.h (MMAP_BASE_ADDRESS, MMAP_INCREMENT):
1003 * config/m68k/xm-hp300hpux.h (MMAP_BASE_ADDRESS, MMAP_INCREMENT):
1004 * config/m68k/xm-m68kv4.h (MMAP_BASE_ADDRESS, MMAP_INCREMENT);
1005 * config/m68k/xm-sun3os4.h (MMAP_BASE_ADDRESS, MMAP_INCREMENT):
1006 * config/pa/xm-hppah.h (MMAP_BASE_ADDRESS, MMAP_INCREMENT):
1007 * config/sparc/xm-sun4sol2.h (MMAP_BASE_ADDRESS, MMAP_INCREMENT):
1008 Remove obsolete defines.
1009
1010 * config/alpha/alpha-linux.mh (MMALLOC_DISABLE):
1011 * config/alpha/alpha-osf1.mh (MMALLOC_DISABLE):
1012 * config/rs6000/rs6000.mh (MMALLOC_DISABLE):
1013 * config/rs6000/aix4.mh (MMALLOC_DISABLE):
1014 * config/powerpc/aix4.mh (MMALLOC_DISABLE):
1015 * config/powerpc/aix.mh (MMALLOC_DISABLE):
1016 * config/ns32k/ns32km3.mh (MMALLOC_DISABLE):
1017 * config/mips/mipsm3.mh (MMALLOC_DISABLE):
1018 * config/mips/decstation.mh (MMALLOC_DISABLE):
1019 * config/m88k/cxux.mh (MMALLOC_DISABLE):
1020 * config/i386/i386mk.mh (MMALLOC_DISABLE):
1021 * config/i386/i386m3.mh (MMALLOC_DISABLE):
1022 * config/i386/i386gnu.mh (MMALLOC_DISABLE):
1023 Use MMALLOC_CFLAGS instead.
1024
1025 Tue Jul 9 22:41:12 1996 Jeffrey A Law (law@cygnus.com)
1026
1027 * h8300-tdep.c: Remove some outdated comments.
1028 (h8300_skip_prologue): Rework to be more correct for the H8/300H.
1029 Handle stm.l insns for the H8/S.
1030 (examine_prologue): Likewise.
1031
1032 Tue Jul 9 16:48:55 1996 Raymond Jou <rjou@mexican.cygnus.com>
1033
1034 * ser-mac.c (mac_close): Change a typo SetSetBuf to SerSetBuf.
1035
1036 Mon Jul 08 08:50:39 1996 Mark Alexander <marka@cygnus.com>
1037
1038 * mon960-rom.c (mon960_open): Add floating point detection to
1039 prevent hang on non-FPU processors (PR 9775).
1040 (mon960_cmds): Swap setmem.cmdw and setmem.cmdl to fix problem
1041 setting breakpoints and improve loading speed.
1042
1043 Sun Jul 7 14:57:34 1996 Fred Fish <fnf@cygnus.com>
1044
1045 * coffread.c (record_minimal_symbol): Don't presave name string
1046 on symbol_obstack before passing to prim_record_minimal_symbol.
1047 It now handles saving the string itself.
1048 * dbxread.c (read_dbx_dynamic_symtab): Ditto.
1049 * mipsread.c (read_alphacoff_dynamic_symtab): Ditto.
1050 * os9kread.c (record_minimal_symbol): Ditto.
1051 * solib.c (solib_add_common_symbols): Ditto.
1052
1053 * coffread.c (coff_symtab_read): Don't presave name string on
1054 symbol_obstack before passing to prim_record_minimal_symbol_and_info.
1055 It now handles saving the string itself.
1056 * dbxread.c (record_minimal_symbol): Ditto.
1057 * elfread.c (record_minimal_symbol_and_info): Ditto.
1058
1059 * dstread.c (record_minimal_symbol): Remove static function that just
1060 called prim_record_minimal_symbol with the same args (after change to
1061 prim_record_minimal_symbol to do it's own name string saves).
1062 * nlmread.c (record_minimal_symbol): Ditto.
1063 * somread.c (record_minimal_symbol): Ditto.
1064
1065 * hpread.c (hpread_read_enum_type): Save symbol name on symbol obstack.
1066 (hpread_read_function_type): Ditto.
1067 (hpread_process_one_debug_symbol): Ditto.
1068 * mdebugread.c (parse_symbol): Ditto.
1069 (new_symbol): Ditto.
1070 * minsyms.c (prim_record_minimal_symbol_and_info): Ditto.
1071
1072 * coffread.c (process_coff_symbol): Use obsavestring to save
1073 SYMBOL_NAME, rather than obstack_copy0.
1074 * dstread.c (create_new_symbol): Ditto
1075 * symfile.c (obconcat): Ditto.
1076 * stabsread.c (patch_block_stabs): Ditto.
1077 * xcoffread.c (SYMNAME_ALLOC): Ditto.
1078
1079 * symfile.c (obsavestring): Update comments
1080 * solib.c (solib_add_common_symbols): Remove local var origname.
1081
1082 Wed Jul 3 15:56:08 1996 Stu Grossman (grossman@critters.cygnus.com)
1083
1084 * configure: Re-build with autoconf-2.10.
1085
1086 * sparcl-tdep.c (_initialize_sparc_tdep) config/sparc/tm-sparc.h,
1087 config/sparc/tm-sparclite.h: Initialize tm_print_insn from
1088 TM_PRINT_INSN, which comes from the tm file.
1089
1090 Tue Jul 02 21:41:20 1996 Mark Alexander <marka@cygnus.com>
1091
1092 * coffread.c, dbxread.c, elfread.c, mipsread.c, nlmread.c,
1093 os9kread.c: Replace identical sym_offsets functions with
1094 default_symfile_offsets.
1095 * somread.c (som_symfile_offsets): Use new SIZEOF_SECTION_OFFSETS
1096 macro to allocate section_offsets.
1097 * symfile.c (default_symfile_offsets): New function.
1098 * symfile.h: Declare default_symfile_offsets.
1099 * symtab.h: Define SIZEOF_SECTION_OFFSETS macro to
1100 simplify allocation of section_offsets.
1101
1102 Tue Jun 11 12:02:55 1996 Stu Grossman (grossman@critters.cygnus.com)
1103
1104 * Makefile.in (INTERNAL_LDFLAGS): Add in flags from configure.
1105 * configure configure.in: Only make sol-thread.o for native.
1106 Also, switch to dlopened libthread_db.so.1.
1107 * sol-thread.c: Switch to using dlopen to get the thread_db
1108 library.
1109
1110 Thu Jun 13 16:53:25 1996 Stu Grossman (grossman@critters.cygnus.com)
1111
1112 * configure, configure.in: Change test for libthread_db to only
1113 work for configs where build/host/target are the same.
1114
1115 Tue Jul 2 15:04:20 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1116
1117 * config/powerpc/{linux.mh,xm-linux.h}: New files, for Linux on
1118 PowerPC.
1119
1120 * configure.in (powerpc-*-linux): Add Linux, System V, and ELF
1121 support.
1122 * configure: Regenerate.
1123
1124 Mon Jul 1 13:00:43 1996 Stan Shebs <shebs@andros.cygnus.com>
1125
1126 From Raymond Jou <rjou@mexican.cygnus.com>:
1127 * mpw-make.sed: Add lines to whack out autoconf hook
1128 @CONFIG_LDFLAGS@.
1129
1130 Mon Jul 01 11:07:15 1996 Mark Alexander <marka@cygnus.com>
1131
1132 * remote-e7000.c (e7000_stop): New function.
1133
1134 Fri Jun 28 06:34:19 1996 Dawn Perchik <dawn@cygnus.com>
1135
1136 * configure, configure.in: Add target sparclet.
1137 * monitor.h, monitor.c: Added monitor flags MO_NO_ECHO_ON_SETMEM
1138 (don't expect echo on setmem command), MO_RUN_FIRST_TIME (if
1139 command to start process running on target is different from one
1140 to continue execution), MO_HEX_PREFIX (if addresses from monitor
1141 have a "0x" prefix).
1142 * monitor.c, parse.c, sparc-tdep.c: Don't require strings in the
1143 registers array. This is to allow NULLs to be place holders in
1144 the tm-*.h file so that only minor changes are needed when a new
1145 processor is introduced (eg, one without floating point).
1146 * sparc-tdep.c: Conditionally remove dependancies on floating
1147 point.
1148 * sparclet-rom.c, config/sparc/sparclet.mt,
1149 config/sparc/tm-sparclet.h: New files for target sparclet.
1150 * symfile.c (load_command): Add option for 2nd parameter; a load
1151 offset added to the vma of each section.
1152
1153 Fri Jun 28 05:39:19 1996 Dawn Perchik <dawn@cygnus.com>
1154
1155 * main.c (main): Add option "l" for setting remote_timeout.
1156
1157 Fri Jun 28 05:25:18 1996 Dawn Perchik <dawn@cygnus.com>
1158
1159 * remote-e7000.c, remote.c, target.h, top.c: Add set option
1160 "remote_timeout" for setting remote_timeout. Add set option
1161 "use_hard_breakpoints" for setting hardware .vs. memory
1162 breakpoints.
1163
1164 Fri Jun 28 04:32:18 1996 Dawn Perchik <dawn@cygnus.com>
1165
1166 * remote-e7000.c (e7000_parse_device): New function.
1167 Add option "tcp_remote" to target command if using
1168 tcp to connect to a remote host which is then connected
1169 via serial port to the e7000 (for exampole, a port master).
1170 (e7000_open): Change to call e7000_parse_device.
1171
1172 Fri Jun 28 03:47:17 1996 Dawn Perchik <dawn@cygnus.com>
1173
1174 * monitor.c (monitor_debug): Fix remotedebug buffering.
1175
1176 Thu Jun 27 18:24:17 1996 Stan Shebs <shebs@andros.cygnus.com>
1177
1178 * config/i386/cygwin32.mh, config/powerpc/cygwin32.mh
1179 (NATDEPFILES): Add a space.
1180
1181 Wed Jun 26 06:05:39 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
1182
1183 * gdbtypes.c (create_array_type): If TYPE_LENGTH (result_type)
1184 is zero, set TYPE_FLAG_TARGET_STUB to force reevaluation of the type.
1185
1186 * ch-exp.c (calculate_array_length): Function removed.
1187
1188 Tue Jun 25 17:41:06 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
1189
1190 * remote-e7000.c (e7000_read_inferior_memory_large): New function.
1191 (e7000_xfer_inferior_memory): Call it.
1192
1193 Tue Jun 25 23:14:07 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
1194
1195 * gdb/gdbserver/Makefile.in (docdir): Removed.
1196
1197 Tue Jun 25 22:05:38 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
1198
1199 * Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir):
1200 Use autoconf set values.
1201 (docdir): Removed.
1202 * configure.in (AC_PREREQ): autoconf 2.5 or higher.
1203 * nlm/Makefile.in (bindir, libdir, datadir, mandir, infodir,
1204 includedir): Use autoconf set values.
1205 (docdir): Removed.
1206 * nlm/configure.in (AC_PREREQ): autoconf 2.5 or higher.
1207 * nlm/configure: Rebuilt.
1208 * gdb/gdbserver/Makefile.in (datadir): Set to $(prefix)/share.
1209
1210 Mon Jun 24 09:56:14 1996 Angela Marie Thomas (angela@cygnus.com)
1211
1212 * stabsread.c (read_cfront_member_functions): add type
1213
1214 Sun Jun 23 23:40:48 1996 Doug Evans <dje@canuck.cygnus.com>
1215
1216 * win32-nat.c: #include <unistd.h>.
1217 (unix_paths_to_dos_paths, dos_paths_to_unix_paths): Delete.
1218 (child_create_inferior): Convert only env var PATH to win32 style.
1219 (set_pathstyle_dos): Delete.
1220 (_initialize_inftarg): Delete dos-path-style command.
1221
1222 start-sanitize-gdbtk
1223 Fri Jun 21 11:04:47 1996 Fred Fish <fnf@cygnus.com>
1224
1225 * gdbtk.tcl (create_register_windows): Include missing '$'s.
1226 Add global declarations for various reg_format_* variables.
1227 * gdbtk.tcl (populate_register_window): Make initial window one
1228 line taller to account for new column header line.
1229
1230 Fri Jun 21 09:46:47 1996 Fred Fish <fnf@cygnus.com>
1231
1232 * gdbtk.c (get_register): Support for printing raw formats.
1233 * gdbtk.tcl: Add hint for using debug_interface.
1234 (center_window, add_breakpoint_frame, delete_breakpoint_frame):
1235 Enclose arg in braces for consistency.
1236 (create_registers_window, populate_reg_window, update_registers):
1237 Major rewrite to support displaying multiple formats in the register
1238 window.
1239 (init_reg_info): New function.
1240 (recompute_reg_display_list): Reset reg_display_list, start
1241 register display lines at line 2.
1242
1243 end-sanitize-gdbtk
1244 Thu Jun 20 13:42:23 1996 Doug Evans <dje@canuck.cygnus.com>
1245
1246 * configure.in: Revise sol-thread.o test.
1247 * configure: Regenerated.
1248
1249 * source.c (find_source_lines): Reassign size to result of read.
1250
1251 start-sanitize-gdbtk
1252 Thu Jun 20 08:18:59 1996 Fred Fish <fnf@cygnus.com>
1253
1254 * gdbtk.tcl (gdbtk_tcl_readline_begin): Handle backspace to
1255 avoid backing up over prompt. At every input, make sure insert
1256 point is at least after command start, handle control-u to delete
1257 current input line.
1258 (tclsh): Handle backspace to avoid backing up over prompt. Handle
1259 control-u to delete current input line.
1260
1261 Wed Jun 19 17:23:38 1996 Geoffrey Noer <noer@cygnus.com>
1262
1263 * configure.in: disable gdbtk for *cygwin32* hosted compiles
1264 * configure: regenerated with autoconf 2.8
1265
1266 end-sanitize-gdbtk
1267 Tue Jun 18 16:25:54 1996 Jeffrey A. Law <law@rtl.cygnus.com>
1268
1269 * h8300-dep.c (gdb_print_insn_h8300): Handle the H8/S.
1270 (h8300_command): Likewise.
1271 (set_machine): Likewise.
1272 (set_machine_hook): Likewise.
1273 (_initialize_h8300m): Likewise.
1274
1275 * config/h8300/tm-h8300.h (h8300smode): Declare.
1276
1277 Sun Jun 16 15:21:51 1996 Jeffrey A. Law <law@rtl.cygnus.com>
1278
1279 * somsolib.c (som_solib_create_inferior_hook): Handle tracking
1280 of shl_load calls for hpux10.
1281
1282 Thu Jun 13 11:16:10 1996 Tom Tromey <tromey@thepub.cygnus.com>
1283
1284 * config.in: Regenerated.
1285 * acconfig.h (HAVE_THREAD_DB_LIB): Added entry.
1286
1287 * configure: Regenerated.
1288 * aclocal.m4 (CY_AC_PATH_TCLH, CY_AC_PATH_TKH): Use odd names to
1289 avoid name clashes with SunOS headers.
1290
1291 Tue Jun 11 19:52:50 1996 Fred Fish <fnf@cygnus.com>
1292
1293 From Michael Snyder <Michael_Snyder@next.com>:
1294 * bcache.c (print_bcache_statistics): Avoid divide-by-zero
1295 exception if one or more objfile has no symbols, such as when
1296 a dynamic library has been stripped.
1297
1298 Tue Jun 11 12:02:55 1996 Stu Grossman (grossman@critters.cygnus.com)
1299
1300 * Makefile.in (INTERNAL_LDFLAGS): Add in flags from configure.
1301 * configure configure.in: Only make sol-thread.o for native.
1302 Also, switch to dlopened libthread_db.so.1.
1303 * sol-thread.c: Switch to using dlopen to get the thread_db
1304 library.
1305
1306 Mon Jun 10 14:17:19 1996 Fred Fish <fnf@cygnus.com>
1307
1308 * config/sparc/{xm-sun4sol2.h,xm-sun4os4.h} (MMAP_BASE_ADDRESS):
1309 Change from 0xE0000000 to 0xC0000000.
1310
1311 Thu Jun 6 17:10:32 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1312
1313 * config/powerpc/xm-solaris.h: Initial version of support for
1314 Solaris on PowerPC.
1315
1316 Wed Jun 5 01:52:57 1996 James G. Smith <jsmith@cygnus.co.uk>
1317
1318 * configure.in (configdirs): Force 4100 builds to use 4300 GDB
1319 target.
1320 * configure: Rebuild.
1321
1322 * config/mips/vr4300el.mt (SIM_OBS): Include simulator in
1323 little-endian builds.
1324
1325 Mon Jun 3 11:48:29 1996 Jeffrey A Law (law@cygnus.com)
1326
1327 * inftarg.c (child_thread_alive): Protect declaration with
1328 #ifndef CHILD_THREAD_ALIVE.
1329
1330 * source.c (find_source_lines): Check the time on the symtab's bfd if
1331 it exists, else check the time on the exec_bfd.
1332
1333 Thu May 30 09:43:17 1996 Mark Alexander <marka@cygnus.com>
1334
1335 * dsrec.c (make_srec): Fix calculation of address size
1336 to allow addresses less than 0x100.
1337
1338 Thu May 30 04:24:09 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
1339
1340 * ch-exp.c (ch_lex): In case of LOC_TYPEDEF call calculate_array_length.
1341
1342 Tue May 28 16:15:47 1996 Geoffrey Noer <noer@cygnus.com>
1343
1344 * remote-mips.c: cannot use EINVAL for breakpoint test since
1345 its value varies for different hosts (e.g. go32's is 19, while
1346 sunos is 22). Changed to hardcoded 22 since that is what the
1347 mips boards return.
1348
1349 Tue May 28 11:14:58 1996 Tom Tromey <tromey@creche.cygnus.com>
1350
1351 * configure: Regenerated.
1352 * aclocal.m4 (CY_AC_PATH_TCLH): Don't use AC_TRY_RUN.
1353 (CY_AC_PATH_TKH): Don't use AC_TRY_RUN.
1354
1355 Sun May 26 16:56:35 1996 Miles Bader <miles@gnu.ai.mit.edu>
1356
1357 * solib.c (solib_absolute_prefix, solib_search_path): New variables.
1358 (_initialize_solib): Add set/show commands for those variables.
1359 (solib_map_sections): Implement searching using them.
1360
1361 Sun May 26 14:14:49 1996 Fred Fish <fnf@cygnus.com>
1362
1363 Changes from: David Mosberger-Tang <davidm@azstarnet.com>
1364
1365 * NEWS: Add Alpha Linux as a new native configuration.
1366
1367 * mdebugread.c (parse_symbol): When we find a malloc() symbol with
1368 return type VOID, assume no debugging info is available for that
1369 object file and patch the return value into VOID *. Otherwise,
1370 operations requiring an implicit call to malloc() will fail.
1371
1372 * infrun.c (wait_for_inferior): The criterion to detect entering a
1373 sigtramp handler is now: (a) the current pc is inside a sigtramp
1374 handler, (b) the previous pc is not in a sigtramp handler, and (c)
1375 the current stack pointer is "inner" than the old one. Condition
1376 (c) is new to avoid mistaking a return from a signal handler into
1377 sigtramp as a new sigtramp invocation.
1378
1379 * dcache.c (struct dcache_block): Declare addr as CORE_ADDR. An
1380 int may not be big enough to hold an address.
1381 (dcache_hit): Ditto.
1382 (dcache_peek_byte): Fix indentation.
1383
1384 * configure.in (alpha-*-linux*): Add target.
1385 * configure: Rebuild
1386
1387 * config/alpha/tm-alpha.h (PROC_DESC_IS_DYN_SIGTRAMP): New macro.
1388 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
1389 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
1390 (SIGCONTEXT_ADDR): Ditto.
1391 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
1392
1393 * config/alpha/alpha-linux.mh: New file.
1394 * config/alpha/alpha-linux.mt: Ditto.
1395 * config/alpha/nm-linux.h: Ditto.
1396 * config/alpha/tm-alphalinux.h: Ditto.
1397 * config/alpha/xm-alphalinux.h: Ditto.
1398 * config/alpha/xm-alphaosf.h: Renamed from xm-alpha.h.
1399 * config/alpha/alpha-osf1.mh (XM_FILE): Change from xm-alpha.h to
1400 xm-alphaosf.h.
1401 * config/alpha/alpha-osf2.mh: Ditto.
1402
1403 * blockframe.c (find_pc_partial_function): Pass PC to
1404 SIGTRAMP_START and SIGTRAMP_END macros for the benefit of systems
1405 that detect sigtramp code via designated code sequences (as is the
1406 case for Linux/Alpha, for example).
1407
1408 * config/i386/tm-i386bsd.h: Change SIGTRAMP_START and SIGTRAMP_END
1409 to ignore new PC argument.
1410 * config/m68k/tm-hp300bsd.h: Ditto.
1411 * config/vax/tm-vax.h: Ditto.
1412
1413 * alpha-tdep.c (alpha_linux_sigtramp_offset): New function.
1414 (alpha_osf_skip_sigtramp_frame): Ditto.
1415 (push_sigtramp_desc): Ditto.
1416 (alpha_find_saved_regs): Use SIGCONTEXT_ADDR macro to extract
1417 sigcontext address from frame.
1418 (alpha_saved_pc_after_call): When in sigtramp, use
1419 alpha_frame_saved_pc() instead of read-register().
1420 (after_prologue): When inside a dynamically generated sigtramp
1421 function, there is no prologue, so return address of first
1422 instruction.
1423 (alpha_in_prologue): Fix typo in comment.
1424 (find_proc_desc): Use macro DYNAMIC_SIGTRAMP_OFFSET to determine
1425 whether we're inside a dynamicaly generated sigtramp function. If
1426 so, create and push and appropriate procedure descriptor.
1427 (alpha_frame_chain): Use macro FRAME_PAST_SIGTRAMP_FRAME to obtain
1428 the frame past a sigtramp frame (if the current frame is indeed a
1429 sigtramp function).
1430 (init_extra_frame_info): Don't read next frame register off of
1431 stack-pointer when inside a dynamiccaly generated sigtramp.
1432 (alpha_pop_frame): Also unlink and destroy procedure descriptors
1433 created for dynamically generated sigtramp functions.
1434
1435 * alpha-nat.c: When compiling under Linux, include <asm/reg.h> and
1436 <alpha/ptrace.h> instead of <machine/reg.h>
1437
1438 Tue Jul 2 13:58:10 1996 Miles Bader <miles@gnu.ai.mit.edu>
1439
1440 * gnu-nat.c (inf_validate_task_sc):
1441 Give terminal to gdb while asking question.
1442 (inf_resume): Don't validate the task suspend-count while execing.
1443
1444 Thu Jun 13 11:04:52 1996 Miles Bader <miles@gnu.ai.mit.edu>
1445
1446 * gnu-nat.c (inf_validate_task_sc): Query user before clearing any
1447 additional suspend count.
1448 (S_proc_wait_reply, gnu_attach): Don't call inf_validate_task_sc.
1449 (inf_resume): Call inf_validate_task_sc here.
1450 (gnu_resume): Call inf_update_procs to ensure noticing new threads.
1451
1452 Fri Jun 7 17:00:43 1996 Miles Bader <miles@gnu.ai.mit.edu>
1453
1454 * gnu-nat.c (gnu_create_inferior: attach_to_child): Return PID.
1455
1456 Thu May 23 15:13:56 1996 Jeffrey A Law (law@cygnus.com)
1457
1458 * h8300-tdep.c (IS_PUSH): Refine.
1459 (IS_MOVE_FP, IS_MOV_SP_FP): Accept H8/300H varaints.
1460 (IS_SUB4_SP, IS_SUBL_SP): New macros.
1461 (h8300_skip_prologue): Handle H8/300H prologue code sequences.
1462 (examine_prologue): Handle addresses from 0x010000 to 0xffffff
1463 when in H8/300H mode. Get the return pointer's address correctly
1464 for the H8/300H. Handle H8/300H prolouge code sequences.
1465
1466 * symfile.c (generic_load): Print the starting address
1467 of the file just loaded.
1468
1469 Thu May 23 12:09:52 1996 Stan Shebs <shebs@andros.cygnus.com>
1470
1471 * mpw-make.sed: Edit @THREAD_DB_OBS@ out of makefile.
1472
1473 Tue May 21 11:53:56 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1474
1475 * breakpoint.c (bpstat_do_actions): Avoid endless recursion
1476 if a `source' command is contained in bs->commands.
1477
1478 * infrun.c (wait_for_inferior): Update step_frame_address when
1479 stepping into a new line.
1480
1481 From schwab@issan.informatik.uni-dortmund.de (Andreas Schwab):
1482 * breakpoint.c (breakpoint_1): Add shlib_disabled case to
1483 bpenables array.
1484
1485 Mon May 20 22:52:00 1996 Mark Alexander <marka@cygnus.com>
1486
1487 * dsrec.c (load_srec): Add WAITACK parameter, for machines
1488 like EST visionICE that send back an ACK after each S-record.
1489 * monitor.c (monitor_wait_srec_ack): New function.
1490 (monitor_load): Pass monitor_wait_srec_ack to load_srec
1491 if the monitor's MO_SREC_ACK flag is set.
1492 * monitor.h: Define MO_SREC_ACK flag.
1493 * remote-est.c (est_cmds): Add MO_SREC_ACK flag.
1494 * sh3-rom.c (sh3_load): Accomodate change in load_srec prototype.
1495 * srec.h: Add WAITACK parameter to load_srec prototype.
1496
1497 Sun May 19 21:22:00 1996 Rob Savoye <rob@chinadoll>
1498
1499 * config/sparc/sparclite.mt: Add the sparc simulator.
1500
1501 Sun May 19 16:49:37 1996 Fred Fish <fnf@cygnus.com>
1502
1503 * defs.h (read_command_lines, query_hook): Update prototypes.
1504 (readline_begin_hook, readline_hook, readline_end_hook): Declare.
1505 * breakpoint.c (commands_command): Build message in temporary buffer
1506 and pass that, as well as tty control flag, to read_command_lines.
1507 * top.c (readline_begin_hook, readline_hook, readline_end_hook):
1508 Define here.
1509 (command_loop): Check for non-NULL instream before looping.
1510 (command_line_input): Use readline_hook when appropriate, to get
1511 user input from a GUI window.
1512 (read_next_line): Also build prompt if getting user input from a GUI.
1513 (recurse_read_control_structure): Fix typo in comment.
1514 (read_command_lines): Use passed in prompt and tty flag to decide how
1515 to build message. Use readline_begin_hook when appropriate, to set
1516 up a GUI interaction window. Just return head, whether NULL or not,
1517 after using readline_end_hook to complete GUI interaction.
1518 (define_command, document_command): Build message in a temporary
1519 buffer and pass it to read_command_lines, along with tty flag.
1520
1521 start-sanitize-gdbtk
1522 * gdbtk.c (gdbtk_readline_begin, gdbtk_readline, gdbtk_readline_end):
1523 New functions.
1524 (tk_command_loop): Set instream to NULL to enable Tk user interaction.
1525 (gdbtk_init): Set readline_begin_hook, readline_hook,
1526 and readline_end_hook.
1527 * gdbtk.tcl (gdbtk_tcl_readline_begin, gdbtk_tcl_readline,
1528 gdbtk_tcl_readline_end): New functions.
1529 (tclsh): Pack scroll bar on right side of window, not left.
1530 end-sanitize-gdbtk
1531
1532 Sat May 18 02:43:58 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1533
1534 * blockframe.c (frameless_look_for_prologue):
1535 Add FUNCTION_START_OFFSET only if func_start is non-zero.
1536 * minsyms.c (lookup_minimal_symbol_by_pc): Return NULL if
1537 pc is not in a known section.
1538 * stack.c (print_frame_info): Remove check for fi->pc in known
1539 section, now handled by lookup_minimal_symbol_by_pc.
1540
1541 start-sanitize-gdbtk
1542 Fri May 17 13:54:34 1996 Fred Fish <fnf@cygnus.com>
1543
1544 * gdbtk.tcl (create_command_window): Change a misspelled "get"
1545 to the intended "cget".
1546 (delete_line): Fix so it deletes the current line at the
1547 insertion cursor.
1548 end-sanitize-gdbtk
1549
1550 Fri May 17 13:31:04 1996 Stan Shebs <shebs@andros.cygnus.com>
1551
1552 * sh-stub.c: New file, was config/sh/stub.c.
1553
1554 start-sanitize-gdbtk
1555 Thu May 16 19:20:29 1996 Fred Fish <fnf@fishfood.ninemoons.com>
1556
1557 * gdbtk.tcl (gdb_prompt): Set this early on.
1558 (create_command_window): Use gdb_prompt rather than "(gdb) ".
1559 (gdbtk_tcl_preloop): Proc executed just prior to Tk main loop.
1560 (tclsh): If an evaluation window already exists, just bring it
1561 to the front instead of trying to create another.
1562 * gdbtk.c (tk_command_loop): New function.
1563 (gdbtk_init): Call tk_command_loop rather than Tk_MainLoop.
1564
1565 Thu May 16 16:16:35 1996 Fred Fish <fnf@cygnus.com>
1566
1567 * gdbtk.tcl (evaluate_tcl_command, tclsh): New functions that
1568 implement a tcl evaluation window for gdbtk maintainers to use.
1569
1570 Thu May 16 11:42:58 1996 Tom Tromey <tromey@creche.cygnus.com>
1571
1572 * gdbtk.tcl (files_command): Correctly insert list of files into
1573 listbox widget.
1574
1575 * gdbtk.tcl (files_command): listbox command no longer accepts
1576 -geometry.
1577
1578 Wed May 15 16:04:09 1996 Stan Shebs <shebs@andros.cygnus.com>
1579
1580 * gdbtk.tcl (create_command_window): If command window's buffer
1581 is disabled, don't execute any of the key bindings.
1582 end-sanitize-gdbtk
1583
1584 Wed May 15 08:25:12 1996 Jeffrey A Law (law@cygnus.com)
1585
1586 * top.c (read_next_line): Fix thinkos. From Donn Seeley.
1587
1588 * coffread.c (coff_symtab_read): Handle C_LABEL symbols like
1589 C_STAT symbols.
1590 * h8300-tdep.c (h8300_pop_frame): Reset $sp and $pc correctly.
1591 Flush cached frames just before exiting.
1592 * remote-sim.c (gdbsim_resume): Complain if the program isn't
1593 being run.
1594 * config/h8300/tm-h8300.h (BELIEVE_PCC_PROMOTION): Define.
1595
1596 Tue May 14 18:05:16 1996 Stu Grossman (grossman@critters.cygnus.com)
1597
1598 * procfs.c (procfs_thread_alive procfs_stop): Make static.
1599 (procfs_pid_to_str): New routine to print out thread id's in an
1600 intelligible manner.
1601 * sol-thread.c (sol_thread_fetch_registers): Re-order manner in
1602 which supply_register is called to fix bug with writing
1603 individual regs.
1604 * config/sparc/tm-sun4sol2.h: Define default for
1605 target_pid_to_str in case host lacks libthread_db.
1606
1607 Mon May 13 23:53:30 1996 Stu Grossman (grossman@critters.cygnus.com)
1608
1609 * Makefile.in config.in configure configure.in
1610 config/sparc/nm-sun4sol2.h config/sparc/sun4sol2.mh
1611 config/sparc/tm-sun4sol2.h: Use autoconf to config Solaris thread
1612 and pthread support, since pre-2.5 systems don't come with
1613 libthread_db.so.1.
1614
1615 * procfs.c (info_proc): Use int instead of id_t. Old versions of
1616 Irix don't seem to define this.
1617
1618 start-sanitize-gdbtk
1619 Mon May 13 13:43:25 1996 Fred Fish <fnf@cygnus.com>
1620
1621 * gdbtk.c (tk_command): Catch case where no argument is given
1622 since this will cause the tcl interpreter to dump core.
1623 end-sanitize-gdbtk
1624
1625 Mon May 13 17:40:58 1996 Jeffrey A Law (law@cygnus.com)
1626
1627 * top.c (execute_control_command, case while_control): Allow
1628 a while command to be interrupted.
1629
1630 Mon May 13 16:17:36 1996 Stu Grossman (grossman@critters.cygnus.com)
1631
1632 * sol-thread.c: More cleanup, add comments.
1633 (sol_thread_resume): Prevent people from trying to step
1634 inactive threads.
1635 (sol_thread_wait sol_thread_fetch_registers
1636 sol_thread_store_registers): Remove unnecessary check for
1637 sol_thread_active. These routines won't get called unless threads
1638 are active.
1639
1640 Mon May 13 11:29:37 1996 Stan Shebs <shebs@andros.cygnus.com>
1641
1642 SH3-E support from Allan Tajii <atajii@hmsi.com>:
1643 * sh-tdep.c (sh_reg_names, sh3_reg_names): Add empty names for
1644 float registers.
1645 (sh3e_reg_names): New register name array.
1646 (sh_processor_type_table): Add sh3e processor type.
1647 * config/sh/tm-sh.h (REGISTER_VIRTUAL_TYPE): Fix test.
1648 (REGISTER_NAMES, NUM_REGS, NUM_REALREGS, etc): Adjust for
1649 full set of registers.
1650 * remote-e7000.c (want_sh3, want_sh3_nopc): New globals.
1651 (e7000_fetch_registers, e7000_wait): Use them.
1652 * sh3-rom.c (sh3_regnames): Add float registers.
1653 (sh3e_cmds, sh3e_ops): New globals.
1654 (sh3e_open): New function.
1655 (_initialize_sh3_rom): Rename from _initialize_sh3, set up
1656 sh3e target vector.
1657
1658 Fri May 10 15:53:38 1996 Stu Grossman (grossman@lisa.cygnus.com)
1659
1660 * sol-thread.c: Cleanup. gcc -Wall fixes. Add prototypes.
1661 Print out messages instead of codes for thread_db errors. Make
1662 access macros for thread and lwp manipulation. Make cleanups to
1663 fixup inferior_pid in case of errors.
1664
1665 Thu May 9 19:06:02 1996 Fred Fish <fnf@cygnus.com>
1666
1667 * aclocal.m4: Remove unused definition of AC_C_CROSS.
1668 * configure.in: Add powerpcle-*-solaris* host and target config
1669 so April 30th change does not get lost next time configure is
1670 rebuilt.
1671
1672 Thu May 9 14:13:08 1996 Stu Grossman (grossman@critters.cygnus.com)
1673
1674 * Makefile.in, breakpoint.c, corelow.c, fork-child.c, inflow.c,
1675 infrun.c, mac-nat.c, procfs.c, remote.c, sol-thread.c, thread.c,
1676 win32-nat.c, config/nm-lynx.h: Rename thread.h to gdbthread.h to
1677 avoid conflict with Solaris /usr/include/thread.h.
1678
1679 Thu May 9 12:33:32 1996 Rob Savoye <rob@chinadoll.cygnus.com>
1680
1681 * abug-rom.c: Config file for the older style ABug monitor that
1682 runs on the mvme13x boards.
1683 * config/m68k/monitor.mt: Add abug support for m68k cross
1684 debugging.
1685
1686 Wed May 8 20:33:24 1996 Fred Fish <fnf@cygnus.com>
1687
1688 * infcmd.c (do_registers_info): Always print the raw floating
1689 point value's bytes in big endian order, so the the leftmost bit
1690 is the most significant.
1691 * breakpoint.c (clear_momentary_breakpoints): Remove dead code
1692 that is referenced nowhere else.
1693 (set_breakpoint): Ditto.
1694 (do_enable_breakpoint): Created from enable_once_breakpoint
1695 with a couple of changes.
1696 (enable_breakpoint): Call do_enable_breakpoint with an appropriate
1697 bpdisp enum value to set disposition of breakpoint.
1698 (enable_once_breakpoint): Ditto.
1699 (enable_delete_breakpoint): Ditto.
1700 * breakpoint.h (clear_momentary_breakpoints): Remove prototype.
1701 * symtab.c (find_pc_line): Improve comments.
1702 start-sanitize-gdbtk
1703 * gdbtk.c: Fix a couple of misspellings.
1704 end-sanitize-gdbtk
1705 * xcoffread.c: Ditto.
1706
1707 Tue May 7 18:37:06 1996 Stan Shebs <shebs@andros.cygnus.com>
1708
1709 * target.c (debug_to_xfer_memory): Insert line breaks when
1710 dumping the memory block.
1711
1712 Mon May 6 13:52:52 1996 Stu Grossman (grossman@critters.cygnus.com)
1713
1714 * fork-child.c (fork_inferior), inferior.h: init_trace_fun now
1715 returns a possibly modified pid.
1716 * inftarg.c (ptrace_him): Now returns pid;
1717 * m3-nat.c (m3_trace_him): Now returns pid;
1718 * infcmd.c (run_command): Minor cleanup.
1719 * infrun.c (wait_for_inferior): Add another check for one_stepped
1720 near where we read the pc to avoid erroneously setting
1721 random_signal for multi-threaded support.
1722 * procfs.c: Add support for Solaris LWPs. Remove def of
1723 LOSING_POLL. Many cleanups... Several workarounds for Solaris
1724 lossage. System call entry and exit are now handled by
1725 dynamically registered handlers.
1726 * (syscallname): Don't barf when handed an unknown syscall
1727 number.
1728 * (info_proc_syscalls): Ditto.
1729 * sol-thread.c: New file. Implements Solaris thread support.
1730 * symfile.c (symbol_file_add): Add call to target_new_objfile to
1731 notify target-dependent code about new symbol tables.
1732 * (clear_symtab_users): Call target_new_objfile to notify it of
1733 the removal of all symbol tables.
1734 * target.c (push_target): Make sure that to_close is non-zero
1735 before calling it.
1736 * target.h (target_new_objfile): Provide default.
1737 * config/alpha/nm-osf2.h: Define LOSING_POLL because this version
1738 of OSF can't hack using poll with /proc.
1739 * config/sparc/nm-sun4sol2.h (target_new_objfile): Define to be
1740 sol-thread-new-objfile.
1741 * config/sparc/sun4sol2.mh: Add sol-thread.o to NATDEFFILES, and
1742 add libthread_db.so.1 to NAT_CLIBS.
1743 * config/sparc/tm-sun4sol2.h: Define PIDGET, TIDGET, and
1744 target_pid_to_str.
1745
1746 Sat May 4 02:13:34 1996 N Srin Kumar <nsrin@wipinfo.soft.net>
1747
1748 * procfs.c (remove_fd): Fix copy of fds to fill hole left after
1749 removal of the requested fd.
1750
1751 Mon May 6 07:52:48 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1752
1753 * rs6000-tdep.c (_initialize_rs6000_tdep): Don't do XCOFF specific
1754 hooks under ELF.
1755
1756 * config/powerpc/tm-ppc-eabi.h: Define ELF_OBJECT_FORMAT.
1757
1758 start-sanitize-gdbtk
1759 Thu May 2 19:17:49 1996 Stan Shebs <shebs@andros.cygnus.com>
1760
1761 * gdbtk.tcl (debug_interface): New global, use to aid debugging.
1762 (insert_breakpoint_tag, delete_breakpoint_tag): Fix range.
1763 (file_popup_menu): Delete, never used.
1764 (listing_window_popup): Rename from listing_window_button_1,
1765 remove breakpoint toggling code.
1766 (toggle_breakpoint): New procedure.
1767 (create_file_win): Bind popup menu to button 2, toggle breakpoints
1768 with button 1 in breakpoint area, add display of tagged areas if
1769 debugging on.
1770 end-sanitize-gdbtk
1771
1772 Thu May 2 12:46:14 1996 Jeffrey A Law (law@cygnus.com)
1773
1774 From Peter Schauer:
1775 * breakpoint.h (enum bpdisp): Add del_at_next_stop.
1776 * breakpoint.c (insert_breakpoints, watchpoint_check,
1777 bpstat_stop_status): Avoid bad references to memory freed via
1778 delete_breakpoint on watchpoints going out of scope.
1779 Do not delete these watchpoints, disable them and change their
1780 disposition to del_at_next_stop instead.
1781 (breakpoint_auto_delete): Delete all breakpoints whose disposition
1782 is del_at_next_stop.
1783 (breakpoint_init_inferior): Use switch to avoid reference to
1784 already deleted breakpoint.
1785
1786 Wed May 1 17:29:18 1996 Fred Fish <fnf@cygnus.com>
1787
1788 * Makefile.in (rs6000-nat.o): Depend on xcoffsolib.h.
1789 * config/rs6000/rs6000.mh (NATDEPFILES): Move xcoffread.o ...
1790 * config/rs6000/rs6000.mt (TDEPFILES): ... to here.
1791 * xcoffsolib.c (xcoff_relocate_symtab_hook): Define and initialize.
1792 (solib_info): Call xcoff_relocate_symtab via the hook.
1793 (sharedlibrary_command): Ditto.
1794 * xcoffread.c: Remove all FAKING_RS6000 comments and defines.
1795 (xcoff_add_toc_to_loadinfo_hook): Define and initialize here.
1796 (xcoff_init_loadinfo_hook): Define and initialize here.
1797 (scan_xcoff_symtab): Call xcoff_add_toc_to_loadinfo via the hook.
1798 (xcoff_initial_scan): Call xcoff_init_loadinfo via the hook.
1799 * xcoffsolib.h (xcoff_relocate_symtab_hook): Declare extern func.
1800 * rs6000-tdep.c (_initialize_rs6000_tdep): Add initializations
1801 of xcoff_add_toc_to_loadinfo_hook and xcoff_init_loadinfo_hook.
1802 * rs6000-nat.c (_initialize_core_rs6000): Add initialization
1803 of xcoff_relocate_symtab_hook.
1804
1805 Tue Apr 30 13:22:02 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1806
1807 * configure (powerpcle-*-solaris*): Add Solaris support.
1808
1809 * config/powerpc/{solaris.m[ht],tm-solaris.h}: New files for
1810 Solaris support.
1811
1812 Mon Apr 29 16:17:31 1996 Dawn Perchik <dawn@cygnus.com>
1813
1814 * c-valprint.c (c_val_print): Fix printing for arrays defined
1815 with 0 length.
1816
1817 Sun Apr 28 15:08:05 1996 Stan Shebs <shebs@andros.cygnus.com>
1818
1819 Support for bi-endian remote breakpoints.
1820 * remote.c (big_break_insn, little_break_insn): New globals.
1821 (break_insn): Remove.
1822 (remote_insert_breakpoint, remote_remove_breakpoint): Use own
1823 code if REMOTE_BREAKPOINT defined, otherwise call memory
1824 breakpoint functions.
1825 * config/sh/tm-sh.h (REMOTE_BREAKPOINT): Remove.
1826 (BIG_REMOTE_BREAKPOINT, LITTLE_REMOTE_BREAKPOINT): Define.
1827
1828 * mon960-rom.c (mon960_cmds): Remove forward decl.
1829 (mon960_load): Use current_monitor instead of mon960_cmds.
1830 (mon960_regnames): Remove backslashes from line ends.
1831 (_initialize_mon960): Fix documentation string.
1832
1833 Sun Apr 28 12:10:35 1996 Fred Fish <fnf@cygnus.com>
1834
1835 * symfile.h (psymbol_allocation_list): Expand comments which
1836 describe the psymbol allocation list and how each field is
1837 used.
1838
1839 Sun Apr 28 03:44:30 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1840
1841 * breakpoint.c (delete_breakpoint): Fix bpt->val, bpt->exp
1842 storage leaks.
1843 (breakpoint_re_set_one): Fix b->exp, b->val, b->cond storage leaks.
1844
1845 * infcmd.c (run_command), solib.c (locate_base): Check for
1846 target_has_execution in addition to inferior_pid, a core file
1847 from a threaded program is yielding a non-zero inferior_pid.
1848
1849 * sparc-tdep.c (get_saved_register): Handle window registers
1850 in a dummy frame correctly.
1851
1852 Sat Apr 27 20:38:32 1996 Fred Fish <fnf@cygnus.com>
1853
1854 * Makefile.in (CLIBS): Move $(MMALLOC) past all other libs,
1855 so that anything that wants an allocation function not yet pulled
1856 in, will get it from mmalloc rather than a system library.
1857 * Makefile.in (INSTALLED_LIBS): Reorder to match order of CLIBS,
1858 to avoid surprising results when used.
1859
1860 Sat Apr 27 00:12:05 1996 Dawn Perchik (dawn@cygnus.com)
1861
1862 * stabsread.c: Changes and bug fixes for cfront support.
1863 Fix bug for class data members.
1864 Fix parsing bug when no base classes exist.
1865 Fix memory bug - allocate space for cplusplus specific info.
1866 Add support for static data.
1867 Add prototypes for static functions.
1868 Enhance comments to show what each function expects to parse.
1869 Cleanup code.
1870 * stabsread.c(resolve_cont),dbxread.c(resolve_cont): Rename
1871 function to resolve_cfront_continuation.
1872
1873 Fri Apr 26 23:58:26 1996 Jeffrey A Law (law@cygnus.com)
1874
1875 * infrun.c (wait_for_inferior): Call registers_changed when
1876 restarting the inferior to get over a nullified instruction.
1877
1878 Tue Apr 24 12:12:55 1996 Dawn Perchik (dawn@cygnus.com)
1879
1880 * dbxread.c,stabsread.c,gdbtypes.c,partial-stab.h,valops.c:
1881 Add new support for parsing cfront stabs.
1882
1883 Wed Apr 24 00:32:55 1996 Jeffrey A Law (law@cygnus.com)
1884
1885 * infrun.c (wait_for_inferior): Move "have_waited" label
1886 outside of #ifdef conditionals. Don't trash the wait status
1887 if we get a signal and the current instruction is nullified.
1888
1889 Mon Apr 22 20:17:01 1996 Fred Fish <fnf@cygnus.com>
1890
1891 * Makefile.in (VERSION): Bump version number to 4.16.1.
1892 * NEWS: Update for 4.16 release.
1893
1894 Mon Apr 22 16:32:29 1996 Stan Shebs <shebs@andros.cygnus.com>
1895
1896 * monitor.h: Clean up comment formatting.
1897 (current_monitor): Remove decl.
1898 (LOADTYPES, LOADPROTOS, INIT_CMD, etc): Remove definitions.
1899 (push_monitor, SREC_SIZE): Remove.
1900 * monitor.c: Expand old macro into current_monitor derefs
1901 everywhere.
1902 * remote-os9k.c (current_monitor): Remove definition.
1903
1904 Mon Apr 22 14:54:45 1996 Mark Alexander <marka@superball.cygnus.com>
1905
1906 * corefile.c (specify_exec_file_hook): Allow arbitrary number of
1907 hooks.
1908 (call_extra_exec_file_hooks): New function.
1909 * h8300-tdep.c: Lint; add .h files to provide missing declarations,
1910 remove unused variables.
1911 (set_machine_hook): New function.
1912 (_initialize_h8300m): Initialize it.
1913
1914 Fri Apr 19 15:03:49 1996 Ian Lance Taylor <ian@cygnus.com>
1915
1916 * remote-mips.c (encoding): Don't specify size, to avoid bug in
1917 SunOS native compiler.
1918
1919 Thu Apr 18 18:46:57 1996 Stan Shebs <shebs@andros.cygnus.com>
1920
1921 * monitor.c: Use int rather than LONGEST for values, since
1922 the formatting strings are not prepared to accept long longs.
1923
1924 Wed Apr 17 20:17:27 1996 Doug Evans <dje@canuck.cygnus.com>
1925
1926 * arm-tdep.c (initialize_arm_tdep): Make apcs32 a `zinteger'.
1927
1928 Tue Apr 16 17:38:23 1996 Stu Grossman (grossman@critters.cygnus.com)
1929
1930 * corelow.c (add_to_thread_list): Make sure reg_sect is non-null
1931 before de-referencing it. Prevents deref of NULL pointer if core
1932 file lacks .reg section.
1933 * defs.h: Rename floatformat_{to from}_long_double to
1934 floatformat_{to from}_doublest. Get rid of FLOATFORMAT_{TO
1935 FROM}... macros.
1936 * findvar.c (extract_floating store_floating): Change all refs to
1937 FLOATFORMAT_{FROM TO}... to floatformat_{from to}_doublest.
1938 * utils.c: Change floatformat_{to from}_long_double to
1939 floatformat_{to from}_doublest cuz the new routines will use
1940 whatever size (double or long double) is appropriate.
1941 * config/i960/tm-i960.h (REGISTER_CONVERT_TO_VIRTUAL
1942 REGISTER_CONVERT_TO_RAW): Change FLOATFORMAT... macros to
1943 floatformat... routine calls.
1944
1945 Mon Apr 15 16:34:11 1996 Per Bothner <bothner@kalessin.cygnus.com>
1946
1947 * stabsread.c (read_type): Move handling of '@' from type
1948 number handling to handling of types proper (as emitted by gcc!).
1949 For typedefs, allocate the typedef type before reading its
1950 definition, to properly handling recursive types.
1951
1952 Mon Apr 15 11:19:26 1996 Jeffrey A Law (law@cygnus.com)
1953
1954 * ch-exp.c (calculate_array_length): Fix prototype.
1955
1956 Sat Apr 13 14:21:16 1996 Stu Grossman (grossman@critters.cygnus.com)
1957
1958 * remote-nindy.c (nindy_open): Acquire more target state so that
1959 user can attach to a previously running program.
1960 * (nindy_fetch_registers nindy_store_registers): Get rid of fp
1961 conversion code. That's all handled in {extract store}_floating
1962 now.
1963 * utils.c (floatformat_to_double): Don't bias exponent when
1964 handling zero's, denorms or NaNs.
1965 * config/i960/tm-i960.h (REGISTER_CONVERT_TO_VIRTUAL
1966 REGISTER_CONVERT_TO_RAW): Change to using DOUBLST and
1967 FLOATFORMAT_TO/FROM_DOUBLEST macros.
1968 * config/i960/tm-nindy960.h: Undefine
1969 REGISTER_CONVERT_TO_VIRTUAL, REGISTER_CONVERT_TO_RAW, and
1970 REGISTER_CONVERTIBLE. These are no longer necessary now that all
1971 the magic happens in extract/store_floating.
1972
1973 Sat Apr 13 02:58:02 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1974
1975 * eval.c (evaluate_subexp_standard): Report error when attempting to
1976 evaluate subscripts for types which cannot be subscripted.
1977
1978 * valarith.c (value_x_binop, value_x_unop): Add noside parameter.
1979 Return a zero value with the return type of the member function
1980 if noside is EVAL_AVOID_SIDE_EFFECTS instead of calling the member
1981 function.
1982 * values.h (value_x_binop, value_x_unop): Update prototypes
1983 accordingly.
1984 * eval.c (evaluate_subexp_standard): Update all callers of
1985 value_x_binop, value_x_unop accordingly.
1986
1987 * valarith.c (value_neg, value_complement): Perform ANSI C/C++
1988 integral promotion on operands.
1989
1990 Fri Apr 12 13:19:27 1996 Fred Fish <fnf@cygnus.com>
1991
1992 * README: Update for 4.16 release.
1993 * configure.in (AC_CHECK_FUNCS): Also check for sbrk.
1994 * configure: Regenerate with autoconf.
1995 * config.in: Regenerate with autoheader.
1996 * main.c (main): Only use sbrk() when HAVE_SBRK is defined.
1997 * top.c (command_loop): Ditto.
1998
1999 Fri Apr 12 09:45:29 1996 Stu Grossman (grossman@critters.cygnus.com)
2000
2001 * defs.h: Define TARGET_{FLOAT DOUBLE LONG_DOUBLE}_FORMAT
2002 defaults for bi-endian targets. Replace function pointers for
2003 floatformat routines with macros. No need for these to be runtime
2004 selectable.
2005 * findvar.c: Get rid of floatformat function pointers. Use
2006 macros in extract_floating and store_floating.
2007 * remote-nindy.c (nindy_fetch_registers nindy_store_registers):
2008 Use floatformat macros.
2009
2010 Thu Apr 11 21:28:02 1996 Fred Fish <fnf@cygnus.com>
2011
2012 From: Miles Bader <miles@gnu.ai.mit.edu>
2013 * configure.in (AC_CHECK_HEADERS): check for endian.h.
2014 Use AC_CHECK_TOOL to find AR & RANLIB. Add AC_PROG_AWK.
2015 Add host & target cases for i[345]86-*-gnu*.
2016 * config.in: Regenerate with autoheader.
2017 * configure: Regenerate with autoconf.
2018 * Makefile.in (AR, AWK): Set from corresponding autoconf substs.
2019 (init.c): Don't scan mig-generated files.
2020 * defs.h (endian.h): Include if HAVE_ENDIAN_H defined.
2021 * config/nm-m3.h (ATTACH_NO_WAIT): Define.
2022 * infcmd.c (attach_command): Use "#ifndef ATTACH_NO_WAIT"
2023 rather than "#ifndef MACH".
2024
2025 Thu Apr 11 18:49:42 1996 Stan Shebs <shebs@andros.cygnus.com>
2026
2027 * remote.c (remotewritesize): New GDB variable, controls size
2028 of memory packets sent to the target.
2029
2030 Thu Apr 11 13:47:52 1996 Stu Grossman (grossman@critters.cygnus.com)
2031
2032 * dcache.c: Add prototypes. Make many functions static.
2033 * (dcache_peek dcache_fetch dcache_poke): Make dcache_fetch and
2034 dcache_poke call dcache_xfer_memory directly in order to fix
2035 problems with turning off dcache. dcache_peek is now unnecessary,
2036 so it goes away.
2037
2038 * defs.h: Define new macros HOST_{FLOAT DOUBLE LONG_DOUBLE}_FORMAT
2039 and TARGET_{FLOAT DOUBLE LONG_DOUBLE}_FORMAT to specify a pointer
2040 to a struct floatformat. This allows for better handling of
2041 targets whose floating point formats differ from the host by more
2042 than just byte order.
2043 * (floatformat_to_long_double floatformat_from_long_double):
2044 Prototypes for new functions in utils.c.
2045 * (floatformat_to_doublest floatformat_from_doublest): Prototypes
2046 for pointers to floating point conversion functions. The actual
2047 function uses either double or long double if the host supports it.
2048 * findvar.c (floatformat_to_doublest floatformat_from_doublest):
2049 Initialize to point at correct function depending on HAVE_LONG_DOUBLE.
2050 * (extract_floating store_floating): Rewrite. Now, if host fp
2051 format is the same as the target, we just do a copy. Otherwise,
2052 we call floatformat_{to from}_doublest.
2053 * remote-nindy.c (nindy_xfer_inferior_memory): Change param
2054 `write' to `should_write'.
2055 * utils.c (floatformat_to_long_double
2056 floatformat_from_long_double): New routines that implement long
2057 double versions of functions in libiberty/floatformat.c.
2058 * config/i960/tm-i960.h (TARGET_LONG_DOUBLE_FORMAT): Define this for
2059 i960 extended real (80 bit) numbers.
2060 * nindy-share/nindy.c (ninMemGet ninMemPut): Return number of bytes
2061 actually read or written.
2062
2063 Wed Apr 10 02:56:06 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
2064
2065 * ch-valprint.c (chill_val_print): Remove call to calculate_array_length.
2066 (calculate_array_length): Move function from here ...
2067
2068 * ch-exp.c (calculate_array_length): ... to here.
2069 (parse_primval): If we have a symbol with an array type
2070 and the length is 0, call calculate_array_length.
2071
2072 Tue Apr 9 01:23:05 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
2073
2074 * eval.c (evaluate_subexp_standard): In case of TYPE_CODE_SET:
2075 Add some checks for powerset compatibility.
2076
2077 * valops.c (value_slice): Use lowbound instead of lowerbound for
2078 call to slice_range_type to get correct bounds.
2079
2080 Mon Apr 8 12:53:56 1996 Fred Fish <fnf@cygnus.com>
2081
2082 * Makefile.in (scm-exp.o, scm-lang.o, scm-valprint.o): Add targets and
2083 dependencies.
2084 * scm-lang.c (gdb_string.h): Include.
2085 * objfiles.c (add_to_objfile_sections): Cast second arg of obstack_grow
2086 call to correct type (char *).
2087 * cp-valprint.c (cp_print_static_field): Ditto.
2088 * somsolib.c (som_solib_create_inferior_hook): Add a declaration
2089 for external find_unwind_entry function (from hppa-tdep.c).
2090 * remote-pa.c (remote_write_bytes, remote_read_bytes): Change
2091 type of second arg to "char *" to be type compatible with
2092 dcache.
2093 (remote_wait): Cast second arg to strtol to correct type.
2094 * hppa-tdep.c (compare_unwind_entries): Change argument types to
2095 "const void *" to be type compatible with qsort, and then
2096 assign to local args prior to use.
2097
2098 Mon Apr 8 15:35:52 1996 Jeffrey A Law (law@cygnus.com)
2099
2100 * infptrace.c (kill_inferior): Remove call to "kill"; update
2101 comments.
2102
2103 Mon Apr 8 14:05:07 1996 Geoffrey Noer <noer@cygnus.com>
2104
2105 * remote-e7000.c: don't append :23 to target port if __WIN32__
2106 is defined (it's WinGDB).
2107
2108 Sun Apr 7 22:34:29 1996 Fred Fish <fnf@cygnus.com>
2109
2110 From: Miles Bader <miles@gnu.ai.mit.edu>
2111 * gnu-nat.c, gnu-nat.h, msg.defs, exc_request.defs, i386gnu-nat.c,
2112 msg_reply.defs, notify.defs, process_reply.defs, reply_mig_hack.awk,
2113 config/nm-gnu.h, config/i386/{i386gnu.mh, i386gnu.mt, nm-gnu.h,
2114 m-i386gnu.h, xm-i386gnu.h}: New files for GNU hurd.
2115
2116 Sun Apr 7 13:32:41 1996 Fred Fish <fnf@cygnus.com>
2117
2118 * configure.in (case host): Add i386sco5 host.
2119 * configure: Regenerate.
2120
2121 From: Robert Lipe <robertl@dgii.com>
2122 Add support for SCO OpenServer 5 (a.k.a. 3.2v5*) This
2123 target is an SVR3.2 with COFF, ELF, and shared libes, but
2124 no /proc.
2125 * config/i386/i386sco5.mh: New file.
2126 * config/i386/nm-i386sco5.h: New file.
2127
2128 Sat Apr 6 08:55:22 1996 Fred Fish <fnf@cygnus.com>
2129
2130 * bcache.c (bcache): When size of chunk to cache is exactly equal to
2131 BCACHE_MAXLENGTH, stash chunk as unique copy.
2132
2133 Sat Apr 6 00:46:26 1996 Fred Fish <fnf@cygnus.com>
2134
2135 * symfile.c (INLINE_ADD_PSYMBOL): Remove ifdef.
2136 (add_psymbol_to_list): Add an arg for passing CORE_ADDR values and
2137 use it, rather than calling add_psymbol_addr_to_list.
2138 (add_psymbol_addr_to_list): Delete.
2139 (add_psymbol_to_list): Make psymbol static to avoid random data in
2140 gaps due to alignment of structure members.
2141 * symfile.h (INLINE_ADD_PSYMBOL, ADD_PSYMBOL_TO_LIST,
2142 ADD_PSYMBOL_ADDR_TO_LIST): Remove. Real world tests show no
2143 performance improvements by inlining via complicated macros and
2144 they just make gdb larger and harder to maintain.
2145 * dwarfread.c (add_enum_psymbol): Replace ADD_PSYMBOL_TO_LIST
2146 and/or ADD_PSYMBOL_ADDR_TO_LIST macro(s) with call to
2147 add_psymbol_to_list with appropriate long or CORE_ADDR args.
2148 (add_partial_symbol): Ditto.
2149 * partial-stab.h: Ditto.
2150 * os9kread.c (read_os9k_psymtab): Ditto
2151 * mdebugread.c (parse_partial_symbols): Ditto.
2152 (handle_psymbol_enumerators): Ditto.
2153 (demangle.h): Include.
2154 * hpread.c (hpread_build_psymtabs): Ditto.
2155 (hpread_build_psymtabs): Ditto.
2156 (demangle.h): Include
2157
2158 start-sanitize-gdbtk
2159 Fri Apr 5 13:44:40 1996 Stan Shebs <shebs@andros.cygnus.com>
2160
2161 * gdbtk.c (running_now): New global variable.
2162 (gdb_cmd): Test it before executing any command.
2163 (gdbtk_call_command): Set it when inferior is running.
2164 * gdbtk.tcl (gdbtk_tcl_busy, gdbtk_tcl_idle): Enable and
2165 disable interaction with command window's text appropriately.
2166
2167 Fri Apr 5 13:25:42 1996 Michael Meissner <meissner@tiktok.cygnus.com>
2168
2169 * gdbtk.c (SIOCSPGRP, linux): If on Linux, undef SIOCSPGRP, since
2170 some versions of the kernel don't support it.
2171 end-sanitize-gdbtk
2172
2173 Thu Apr 4 20:16:55 1996 Fred Fish <fnf@cygnus.com>
2174
2175 * configure.in: Check for setpgid function.
2176 * config.in: Regenerate with autoheader.
2177 * configure: Regenerate with autoconf.
2178 * inflow.c (_initialize_inflow): Only try to use _SC_JOB_CONTROL
2179 if it is actually defined.
2180 (gdb_setpgid): Use HAVE_SETPGID.
2181 * ch-exp.c: Change include of <string.h> to "gdb_string.h".
2182 * c-exp.y, f-exp.y, m2-exp.y: Ditto.
2183 * c-exp.y, serial.c: Include <ctype.h>.
2184 * config/m68k/nm-news.h: Add typedef for pid_t which is
2185 apparently missing from <sys/types.h>. Enclose entire
2186 file in NM_NEWS_H ifndef and define when included.
2187 * config/mips/nm-news-mips.h: Ditto.
2188 * config/m68k/tm-m68k.h (REGISTER_CONVERT_TO_VIRTUAL,
2189 REGISTER_CONVERT_TO_RAW): Change name of temporary variable.
2190
2191 Thu Apr 4 19:04:18 1996 Stan Shebs <shebs@andros.cygnus.com>
2192
2193 * arm-xdep.c: Move native-specific code to here from arm-tdep.c.
2194 * arm-tdep.c (arm_apcs_32): New global.
2195 (arm_addr_bits_remove, arm_saved_pc_after_call,
2196 arm_push_dummy_frame, arm_pop_frame): New functions.
2197 (arm_skip_prologue): Updated version from Richard Earnshaw.
2198 (_initialize_arm_tdep): Add set/show "apcs32".
2199 * config/arm/tm-arm.h (ADDR_BITS_REMOVE): Call
2200 arm_addr_bits_remove.
2201 (SAVED_PC_AFTER_CALL): Call arm_saved_pc_after_call.
2202 (frame_find_saved_regs): Declare properly.
2203 (PUSH_DUMMY_FRAME): Call arm_push_dummy_frame.
2204 (POP_FRAME): Call arm_pop_frame, use ADDR_BITS_REMOVE instead of
2205 explicit mask.
2206 * config/arm/nm-arm.h: New file.
2207 * config/arm/xm-arm.h (KERNEL_U_ADDR, FETCH_INFERIOR_REGISTERS):
2208 Move definitions to nm-arm.h.
2209 * config/arm/arm.mh (NAT_FILE): Define.
2210
2211 * symfile.c (generic_load): Initialize data_count properly.
2212
2213 Thu Apr 4 17:17:53 1996 Fred Fish <fnf@cygnus.com>
2214
2215 * symmisc.c (print_objfile_statistics): Print memory used by
2216 psymbol cache obstack.
2217
2218 Thu Apr 4 15:43:07 1996 Stan Shebs <shebs@andros.cygnus.com>
2219
2220 * symfile.c (report_transfer_performance): New function.
2221 (generic_load): Call it to report transfer rate.
2222 * remote-e7000.c (e7000_load): Ditto.
2223
2224 Mon Apr 1 16:31:00 1996 Stan Shebs <shebs@andros.cygnus.com>
2225
2226 * mpw-make.sed: Change references to config.h to be in objdir,
2227 edit out rules to rebuild config.h.
2228
2229 Mon Apr 1 08:32:23 1996 Fred Fish <fnf@cygnus.com>
2230
2231 * hppa-tdep.c (hppa_pop_frame): Call clear_proceed_status before
2232 proceeding.
2233
2234 Sun Mar 31 16:15:43 1996 Fred Fish <fnf@cygnus.com>
2235
2236 * hppah-nat.c (store_inferior_registers, store_inferior_registers,
2237 fetch_register, child_xfer_memory): Use call_ptrace function supplied
2238 by infptrace.c rather than calling ptrace directly.
2239
2240 Sun Mar 31 15:39:00 1996 Stan Shebs <shebs@andros.cygnus.com>
2241
2242 * mon960-rom.c: Cleanups and elimination of unused code,
2243 clarify documentation string.
2244 (mon960_serial, mon960_ttyname): Remove.
2245 * config/i960/tm-mon960.h (ADDITIONAL_OPTIONS,
2246 ADDITIONAL_OPTION_CASES, ADDITIONAL_OPTION_HELP): Remove.
2247
2248 Sat Mar 30 11:00:22 1996 Fred Fish <fnf@cygnus.com>
2249
2250 * configure.in: Check whether printf family supports printing
2251 long doubles or not and define PRINTF_HAS_LONG_DOUBLE if so.
2252 * acconfig.h: Provide default undef for PRINTF_HAS_LONG_DOUBLE.
2253 * configure: Regenerate.
2254 * valprint.c (print_floating): Use PRINTF_HAS_LONG_DOUBLE.
2255 * c-exp.y (parse_number): Use PRINTF_HAS_LONG_DOUBLE.
2256 * configure.in: Fix have_gregset and have_fpregset autoconf
2257 variable names so that they match the pattern required to
2258 cache them.
2259
2260 Fri Mar 29 21:39:56 1996 Fred Fish <fnf@cygnus.com>
2261
2262 * core-aout.c (fetch_core_registers): Cast core_reg_size to int
2263 before testing against reg_ptr.
2264 * eval.c (evaluate_subexp_standard): Cast type of
2265 TYPE_FN_FIELD_VOFFSET to int.
2266 * findvar.c (extract_signed_integer, extract_unsigned_integer,
2267 extract_long_unsigned_integer): Cast type of sizeof to int.
2268 * values.c (unpack_field_as_long, modify_field): Ditto.
2269 * valops.c (value_assign, call_function_by_hand): Ditto.
2270 * infcmd.c (do_registers_info): Ditto.
2271 * ser-tcp.c (tcp_open): Ditto.
2272 * remote.c (putpkt): Ditto.
2273 * dcache.c (dcache_peek): Ditto.
2274 * dcache.c (dcache_poke): Ditto.
2275 * m2-exp.y (yylex): Ditto.
2276 * gnu-regex.c (re_match_2): Ditto.
2277 * f-lang.c (ADD_BF_SYMNUM, saved_bf_list_end, tmp_bf_ptr): Ifdef
2278 out unused macro definition and variables.
2279 * inftarg.c (proc_wait): Move from main.c to here, and make static.
2280 * valprint.c (val_print_string): Change bufsize from int to unsigned.
2281 * main.c (wait.h): Include.
2282 * top.c (command_line_input): Remove unused variable "c".
2283 * f-typeprint.c (f_type_print_varspec_prefix): Add missing enum
2284 value TYPE_CODE_TYPEDEF to switch statement.
2285 (f_type_print_varspec_suffix): Add missing enum value
2286 TYPE_CODE_TYPEDEF to switch statement.
2287 * ch-exp.c (parse_primval): Add remaining enumeration values to
2288 switch statement, with no specific action.
2289 (ch_lex): Add LOC_UNRESOLVED in switch statement.
2290 (pushback_token): Ifdef out, since code using it is ifdef'd out.
2291 * stabsread.c (cleanup_undefined_types): Remove unused label
2292 "badtype".
2293 * objfiles.h (print_symbol_bcache_statistics): Add prototype.
2294 * maint.c (objfiles.h): Include.
2295 (maintenance_print_statistics): Remove unused variable "temp".
2296 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove
2297 unused variable "found_file_symbol".
2298 * m2-exp.y (yylex): Add LOC_UNRESOLVED case to switch.
2299 * language.c (lang_bool_type): Use existing function local type
2300 variable rather than create block local variables.
2301 * solib.c (disable_break): Enclose in ifndef SVR4_SHARED_LIBS.
2302 * infptrace.c (wait.h, command.h): Include.
2303 * ser-tcp.c (gdb_string.h): Include
2304 * i386-tdep.c (codestream_seek): Change "place" to CORE_ADDR.
2305 (i386_get_frame_setup): Change "pc" from int to CORE_ADDR.
2306 * command.c (complete_on_enum): Make assignment used as truth value
2307 explictly check against NULL.
2308 (wait.h): Include.
2309 * infrun.c (wait_for_inferior): Ifdef out prologue_pc since code
2310 that uses it is ifdef'd out.
2311 * parser-defs.h: Add prototype for write_dollar_variable.
2312 * infrun.c: Add prototype for write_pc_pid.
2313 * breakpoint.h: Add prototype for re_enable_breakpoints_in_shlibs.
2314 * symmisc.c (bcache.h): Include.
2315 * bcache.h: Add prototype for print_bcache_statistics.
2316 * symfile.c: Include <time.h>.
2317 * printcmd.c (print_scalar_formatted): Change len to unsigned int.
2318 * valarith.c (value_equal): Cast result of TYPE_LENGTH to int.
2319 * valarith.c (value_binop): Change result_len, promoted_len1,
2320 and promoted_len2 to unsigned int.
2321 * valarith.c (value_subscripted_rvalue): Change elt_offs and
2322 elt_size to unsigned int.
2323 * valops.c (value_array): Change typelength to unsigned int.
2324 (destructor_name_p): Change len to unsigned int.
2325 * scm-lang.h (scm_parse): Add prototype for scm_unpack.
2326 * symfile.c (decrement_reading_symtab): Change return type to void.
2327 * valarith.c (value_subscript): Remove unused variable "word".
2328 (value_subscript): Remove unused variable "tint".
2329 * valops.c (auto_abandon): Ifdef out, since code using it is also
2330 ifdef'd out.
2331 * eval.c (init_array_element): Remove unused variable "val".
2332 * Makefile.in (values.o): Depends on scm-lang.h.
2333 (command.o): Depends upon wait_h.
2334 (ser-tcp.o): Depends upon gdb_string.h.
2335 (infptrace.o): Depends upon wait_h and command_h.
2336 (maint.o): Depends on objfiles.h and symfile.h.
2337 * values.c (allocate_repeat_value): Remove unused variable
2338 "element_type".
2339 (scm-lang.h): Include.
2340 * breakpoint.c (create_longjmp_breakpoint): Enclose in
2341 GET_LONGJMP_TARGET define, unused otherwise.
2342 * config/i386/nm-linux.h: Add prototypes for i386_insert_watchpoint,
2343 i386_remove_watchpoint and i386_stopped_by_watchpoint.
2344
2345 Thu Mar 28 12:53:19 1996 Doug Evans <dje@canuck.cygnus.com>
2346
2347 * configure.in (sparc64-*-solaris2*): Delete.
2348 Stick with sparc-*-solaris2*.
2349 * configure: Regenerated.
2350
2351 Thu Mar 28 06:51:26 1996 Fred Fish <fnf@cygnus.com>
2352
2353 * valops.c (value_assign): Make copy of internal variable value
2354 before returning it as a new value, since it is owned by the
2355 internal variable and will be freed along with it.
2356
2357 Wed Mar 27 08:36:17 1996 Jeffrey A Law (law@cygnus.com)
2358
2359 * From Peter Schauer.
2360 * breakpoint.c (breakpoint_re_set_one): Keep temporary
2361 breakpoints bp_until, bp_finish, bp_watchpoint_cope, bp_call_dummy
2362 and bp_step_resume in case breakpoint_re_set_one is called due
2363 to a step over a dlopen call.
2364 * infrun.c (wait_for_inferior): Always remove breakpoints from
2365 inferior in BPSTAT_WHAT_CHECK_SHLIBS case.
2366
2367 Tue Mar 26 13:15:32 1996 Fred Fish <fnf@cygnus.com>
2368
2369 * config/mips/tm-mips.h (COERCE_FLOAT_TO_DOUBLE): Only prefer
2370 non-prototyped case over prototyped case for C.
2371 * config/pa/tm-hppa.h (COERCE_FLOAT_TO_DOUBLE): Ditto.
2372
2373 Sat Mar 23 17:24:28 1996 Fred Fish <fnf@cygnus.com>
2374
2375 * os9kread.c (os9k_process_one_symbol): Note nonportable
2376 assumption that an int can hold a char *.
2377
2378 * bcache.h (struct hashlink): Wrap data[] inside union with
2379 double to force longest alignment.
2380 (BCACHE_DATA): New macro to access data[].
2381 (BCACHE_ALIGNMENT): New macro to get offset to data[].
2382 * bcache.c (lookup_cache, bcache): Use BCACHE_DATA to get
2383 address of cached data. Use BCACHE_ALIGNMENT to compute
2384 amount of space to allocate for each hashlink struct.
2385
2386 Sat Mar 23 12:14:02 1996 Fred Fish <fnf@cygnus.com>
2387
2388 * ch-lang.c (evaluate_subexp_chill): Fix typo.
2389
2390 Thu Mar 21 08:27:19 1996 Fred Fish <fnf@cygnus.com>
2391
2392 * Makefile.in (VERSION): Bump version to 4.15.3
2393
2394 Thu Mar 21 10:56:41 1996 Ian Lance Taylor <ian@cygnus.com>
2395
2396 * config.in: Rename from config.h.in.
2397 * configure.in: Call AC_CONFIG_HEADER with config.h:config.in.
2398 Change CONFIG_HEADERS test in AC_OUTPUT accordingly.
2399 * configure: Rebuild.
2400 * Makefile.in (stamp-h): Depend upon config.in, not config.h.in.
2401 Set CONFIG_HEADERS to config.h:config.in.
2402
2403 Tue Mar 19 12:47:51 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2404
2405 * partial-stab.h (case N_ENDM): Finish current partial symbol
2406 table for Solaris 2 cc.
2407
2408 Tue Mar 19 10:39:15 1996 Jeffrey A Law (law@cygnus.com)
2409
2410 * rs6000-nat.c (exec_one_dummy_insn): Don't clobber the
2411 PC in the registers array. From Peter Schauer.
2412
2413 Mon Mar 18 13:47:09 1996 Fred Fish <fnf@cygnus.com>
2414
2415 * symfile.c (reread_symbols): Reinitialize bcache struct
2416 members to zero using memset. Also use memset to reinit
2417 global_psymbols and static_psymbols, rather than explicitly
2418 resetting each structure member.
2419
2420 Sat Mar 16 19:47:36 1996 Fred Fish <fnf@cygnus.com>
2421
2422 * configure.in: Add fragment to create stamp-h.
2423
2424 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
2425 * configure.in (AC_CHECK_HEADERS): Check for link.h.
2426 * configure: Regenerate with autoconf.
2427 * config.h.in: Regenerate with autoheader.
2428 * config/i386/nm-linux.h: Include solib.h only if HAVE_LINK_H
2429 is defined.
2430 * solib.c: Exclude most of the code if HAVE_LINK_H is not defined.
2431 * config/i386/linux.mh: Reinstate XM_CLIBS, it is needed for
2432 older a.out based systems.
2433
2434 Sat Mar 16 16:45:43 1996 Fred Fish <fnf@cygnus.com>
2435
2436 * config.h.in: New file.
2437 * acconfig.h: New file, for autoheader.
2438 * configure.in (AC_CONFIG_HEADER): Add, generate config.h.
2439 * configure: Regenerate.
2440 * Makefile.in (defs_h): Add config.h
2441 (distclean): Remove config.h and stamp-h during distclean.
2442 (config.h, stamp-h): New targets to remake config.h when necessary.
2443 * defs.h (config.h): Include before any other includes or defines.
2444 * i386-tdep.c (gdb_string.h): Move include after include of defs.h.
2445 * i386v4-nat.c (defs.h): Include before testing HAVE_SYS_PROCFS_H.
2446
2447 Sat Mar 16 14:55:27 1996 Fred Fish <fnf@cygnus.com>
2448
2449 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
2450 * Makefile.in (INSTALLED_LIBS): Make sure that @LIBS@ will not
2451 result in an empty line, to work around a bug in native Ultrix 4.4
2452 and OSF/1-3.2C make.
2453
2454 Sat Mar 16 13:33:17 1996 Fred Fish <fnf@cygnus.com>
2455
2456 * configure.in: Add gdbserver to configdirs under linux.
2457 * configure: Regenerate.
2458
2459 Fri Mar 15 12:06:58 1996 J.T. Conklin <jtc@rtl.cygnus.com>
2460
2461 * config/i386/nm-nbsd.h (FLOAT_INFO): Comment out.
2462 * config/i386/tm-nbsd.h (NUM_REGS): Define.
2463
2464 Thu Mar 14 10:31:18 1996 Jeffrey A Law (law@cygnus.com)
2465
2466 * solib.c (solib_break_names): Add _r_debug_state for
2467 vanilla SVR4 implementations. From Peter Schauer.
2468
2469 Mon Mar 11 14:24:57 1996 Dawn Perchik <dawn@critters.cygnus.com>
2470
2471 * mon960-rom.c: New file; support mon960 rom monitor on i960.
2472 * monitor.c (monitor_debug): Change remotedebug to buffer strings.
2473 * monitor.c (monitor_open): Add test for flag MO_NO_ECHO_ON_OPEN before
2474 epecting prompt and echo during open.
2475 * monitor.c (monitor_stop): Add test for flag MO_SEND_BREAK_ON_OPEN to
2476 determine if break should be sent as stop command.
2477 * monitor.h: Add flags MO_NO_ECHO_ON_OPEN and MO_SEND_BREAK_ON_OPEN.
2478 * i960-tdep.c (mon960_frame_chain_valid): New function for getting
2479 stack frame on mon960.
2480 * Makefile.in: Add mon960 files.
2481 * configure.in: Changed i960-*-coff* and i960-*-elf* to target mon960;
2482 added i960-nindy-coff* and i960-nindy-elf* for target nindy.
2483 * configure: Regenerated.
2484 * config/i960/mon960.mt, config/i960/tm-mon960.h: New files;
2485 support mon960 rom monitor on i960.
2486
2487 Mon Mar 11 11:02:47 1996 Steve Chamberlain <sac@slash.cygnus.com>
2488
2489 With Michael Snyder:
2490 * i386-tdep.c (skip_trampoline_code): Fix strncmp length.
2491 * win32-nat.c (CHECK, DEBUG*, debug_*): New.
2492 (handle_load_dll): Don't reload symbols.
2493 (handle_exception): Use the DEBUG_* names.
2494 (child_wait): Add DEBUG_* code.
2495 (_initialize_inftarg): Add new commands to set debug_ names.
2496
2497 Mon Mar 11 09:19:58 1996 Jeffrey A Law (law@cygnus.com)
2498
2499 * From Peter Schauer:
2500 * breakpoint.c (insert_breakpoints): Use ALL_BREAKPOINTS_SAFE.
2501 (bpstat_stop_status): Likewise.
2502 (remove_solib_event_breakpoints): Likewise.
2503 (clear_momentary_breakpoints): Likewise.
2504 (re_enable_breakpoints_in_shlibs): Don't reenable a breakpoint
2505 if we still can't read the memory for that breakpoint.
2506 (mention): Add bp_shlib_event case to keep gcc quiet.
2507
2508 Fri Mar 8 12:08:12 1996 Jeffrey A Law (law@cygnus.com)
2509
2510 * breakpoint.h (enum enable): New enum shlib_disabled for
2511 shared library breakpoints that have been temporarily disabled.
2512 * breakpoint.c: Handle temporarily disabled shared library
2513 breakpoints like disabled breakpoints in most places.
2514 (insert_breakpoints): Use shlib_disabled to indicate
2515 that an unsettable breakpoint is only temporarily disabled.
2516 (re_enable_breakpoints_in_shlibs): New function.
2517 * corelow.c (solib_add_stub): After adding shared libraries,
2518 try to reenable any temporarily disabled breakpoints.
2519 * infcmd.c (attach_command): Likewise.
2520 * infrun.c (wait_for_inferior): Likewise.
2521
2522 Fri Mar 8 11:41:25 1996 Ian Lance Taylor <ian@cygnus.com>
2523
2524 * defs.h (extract_long_unsigned_integer): Declare.
2525 * findvar.c (extract_long_unsigned_integer): New function.
2526 * printcmd.c (print_scalar_formatted): Use it.
2527 * valprint.c (val_print_type_code_int): Likewise.
2528
2529 Thu Mar 7 17:40:50 1996 Stan Shebs <shebs@andros.cygnus.com>
2530
2531 * infcmd.c (do_registers_info): Ignore anonymous registers.
2532 * sh-tdep.c (set processor): New command to set specific
2533 processor type.
2534 (sh_reg_names, sh3_reg_names): Arrays of register names for
2535 SH and SH3 processors.
2536 (sh_set_processor_type): New function.
2537 * sh3-rom.c (sh3_open): Call it.
2538 (sh3_regname): Add names of all the bank registers.
2539 (sh3_supply_register): Clean up formatting.
2540 * config/sh/tm-sh.h (NUM_REGS, NUM_REALREGS): Increase to include
2541 bank registers.
2542 (REGISTER_NAMES): Add names of bank registers.
2543 (FP15_REGNUM): Define.
2544 (REGISTER_VIRTUAL_TYPE): Use it.
2545 * monitor.c: Clean up some comments.
2546
2547 Thu Mar 7 12:09:51 1996 J.T. Conklin <jtc@rtl.cygnus.com>
2548
2549 * i386b-nat.c: Revert part of Mar 5 change. FreeBSD collapsed the
2550 s* and t* symbols too.
2551
2552 Thu Mar 7 15:18:51 1996 James G. Smith <jsmith@cygnus.co.uk>
2553
2554 * symfile.c (generic_load): Avoid division by zero.
2555
2556 Wed Mar 6 17:57:59 1996 Jeffrey A Law (law@cygnus.com)
2557
2558 * breakpoint.c (bfd_lookup_symbol): Provide for all SVR4 systems,
2559 not just those with HANDLE_SVR4_EXEC_EMULATORS.
2560
2561 From Peter Schauer:
2562 * breakpoint.c (internal_breakpoint_number): Move to file scope.
2563 (create_solib_event_breakpoint): Use an internal breakpoint number.
2564
2565 Wed Mar 6 00:32:44 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
2566
2567 * valarith.c (value_in): Change builtin_type_chill_bool to
2568 LA_BOOL_TYPE.
2569
2570 Tue Mar 5 23:48:36 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
2571
2572 * ch-exp.c (parse_primval): Handle CARD, MAX, MIN.
2573 (match_string_literal): Handle control sequence.
2574 (match_character_literal): Deto.
2575
2576 * ch-lang.c (chill_printchar): Change formating of nonprintable
2577 characters from C'xx' to ^(num).
2578 (chill_printstr): Deto.
2579 (value_chill_card, value_chill_max_min): New functions to process
2580 Chill's CARD, MAX, MIN.
2581 (evaluate_subexp_chill): Process UNOP_CARD, UNOP_CHMAX, UNOP_CHMIN.
2582
2583 * expression.h (exp_opcode): Add UNOP_CARD, UNOP_CHMAX, UNOP_CHMIN
2584 for Chill's CARD, MAX, MIN.
2585
2586 * valarith.c (value_in): Add processing of TYPE_CODE_RANGE
2587 and change return type from builtin_type_int to
2588 builtin_type_chill_bool.
2589
2590 Tue Mar 5 18:54:04 1996 Stan Shebs <shebs@andros.cygnus.com>
2591
2592 * config/nm-nbsd.h (link_object, lo_name, etc): Move to here
2593 from config/nm-nbsd.h.
2594 * config/sparc/nm-nbsd.h (regs, fp_status, etc): Move to here
2595 from config/sparc/tm-nbsd.h.
2596
2597 * config/m68k/nm-hp300hpux.h (FIVE_ARG_PTRACE): Define here
2598 instead of in config/m68k/xm-hp300hpux.h.
2599
2600 Tue Mar 5 12:05:35 1996 J.T. Conklin <jtc@rtl.cygnus.com>
2601
2602 * i386b-nat.c, m68knbsd-nat.c (fetch_core_registers): Provide
2603 implementation for NetBSD systems.
2604
2605 Mon Mar 4 23:44:16 1996 Per Bothner <bothner@kalessin.cygnus.com>
2606
2607 * valarith.c (binop_user_defined_p): Return 0 for BINOP_CONCAT.
2608 (value_concat): Handle varying strings (add COERCE_VARYING_ARRAY).
2609
2610 * ch-lang.c (evaluate_subexp_chill case MULTI_SUBSCRIPT): Error
2611 if "function" is pointer to non-function.
2612
2613 Mon Mar 4 17:47:03 1996 Stan Shebs <shebs@andros.cygnus.com>
2614
2615 * top.c (print_gdb_version): Update copyright year.
2616
2617 Mon Mar 4 14:44:54 1996 Jeffrey A Law (law@cygnus.com)
2618
2619 From Peter Schauer:
2620 * infrun.c (wait_for_inferior): Remove breakpoints and
2621 switch terminal settings before calling SOLIB_ADD.
2622 * solib.c (enable_break, SVR4 variant): Don't map in symbols
2623 for the dynamic linker, the namespace pollution causes real
2624 problems.
2625
2626 Sun Mar 3 17:18:57 1996 James G. Smith <jsmith@cygnus.co.uk>
2627
2628 * remote-mips.c (common_breakpoint): Explicitly terminate the
2629 returned buffer.
2630
2631 Wed Feb 28 22:32:18 1996 Stan Shebs <shebs@andros.cygnus.com>
2632
2633 From Wilfried Moser <wilfried.moser@aut.alcatel.at>:
2634 * remote.c (remote_detach): Send a command 'D' to the target
2635 when detaching, update the function's comments.
2636
2637 Thu Jun 6 16:11:38 1996 Miles Bader <miles@gnu.ai.mit.edu>
2638
2639 * gnu-nat.c (thread_cmd_list): New declaration.
2640 (parse_int_arg): New function.
2641
2642 Wed Jun 5 17:28:04 1996 Miles Bader <miles@gnu.ai.mit.edu>
2643
2644 * gnu-nat.h (struct proc): Add DETACH_SC field.
2645 * gnu-nat.c (make_proc): Set DETACH_SC.
2646 (struct inf): Add DETACH_SC & DEFAULT_THREAD_DETACH_SC fields.
2647 (make_inf): Set DETACH_SC & DEFAULT_THREAD_DETACH_SC fields.
2648 (add_thread_commands): Add set/show for detach-suspend-count.
2649 Add takeover-suspend-count cmd.
2650 (inf_detach): Set suspend counts to the detach SC, not 0.
2651 (set_thread_detach_sc_cmd, show_thread_detach_sc_cmd,
2652 set_task_detach_sc_cmd, show_task_detach_sc_cmd,
2653 set_thread_default_thread_detach_sc_cmd,
2654 show_thread_default_thread_detach_sc_cmd): New functions.
2655 (show_task_cmd): Also show detach-suspend-count values.
2656 (thread_takeover_sc_cmd): New function.
2657
2658 Fri May 31 16:49:24 1996 Miles Bader <miles@gnu.ai.mit.edu>
2659
2660 * gnu-nat.c (show_thread_run_cmd): Actually print state.
2661
2662 Thu May 30 10:47:56 1996 Miles Bader <miles@gnu.ai.mit.edu>
2663
2664 * gnu-nat.c (inf_signal): Make unforwardable exceptions an error.
2665
2666 Tue May 28 17:06:36 1996 Miles Bader <miles@gnu.ai.mit.edu>
2667
2668 * gnu-nat.c (inf_validate_stopped): proc_getprocinfo takes a
2669 pointer to the flags now, not the flags themselves.
2670
2671 Mon May 27 13:31:17 1996 Miles Bader <miles@gnu.ai.mit.edu>
2672
2673 * gnu-nat.c (gnu_wait): Print debugging msgs for pending execs.
2674 (gnu_create_inferior): Check return from ptrace.
2675
2676 Sun May 26 16:56:35 1996 Miles Bader <miles@gnu.ai.mit.edu>
2677
2678 * gnu-nat.h (struct proc): Add DEAD field.
2679 * gnu-nat.c (make_proc): Initialize DEAD.
2680 (inf_set_traced, inf_validate_task_sc, inf_validate_procs: Frob it.
2681 (gnu_wait): Only abort for 0 threads if the task isn't dead.
2682
2683 Sat May 25 17:06:05 1996 Miles Bader <miles@gnu.ai.mit.edu>
2684
2685 * gnu-nat.c (inf_signal): Pass SIGCODE when posting a signal.
2686
2687 Wed May 22 18:44:28 1996 Miles Bader <miles@gnu.ai.mit.edu>
2688
2689 * gnu-nat.c (S_proc_wait_reply): Add SIGCODE argument.
2690 (inf_set_traced): Only give no-signal-thread error message if
2691 turning *on* tracing.
2692
2693 Wed May 15 13:03:16 1996 Miles Bader <miles@gnu.ai.mit.edu>
2694
2695 * gnu-nat.c (inf_validate_procs): If INF has no threads, always
2696 set inf->threads_up_to_date to 0.
2697 (inf_signal): Pass in new SIGCODE argument to msg_sig_post_untraced.
2698 (gnu_wait): Pass in new TIMEOUT arg to interrupt_operation.
2699 (proc_update_sc): Cast thread state arg to thread_set_state.
2700 (proc_get_state): Cast thread state arg to thread_get_state.
2701 (inf_validate_task_sc): Cast task_basic_info arg to task_info.
2702 * i386gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Call
2703 inf_update_procs before we lookup the thread.
2704 * config/i386/i386gnu.mh (MH_CFLAGS): New variable.
2705
2706 Tue May 7 17:52:33 1996 Miles Bader <miles@gnu.ai.mit.edu>
2707
2708 * gnu-nat.c (gnu_kill_inferior): Use inf_set_task to clear the task.
2709
2710 Mon May 6 19:06:49 1996 Miles Bader <miles@gnu.ai.mit.edu>
2711
2712 * gnu-nat.c (inf_set_traced): Use msg_set_init_int with
2713 INIT_TRACEMASK instead of setting the exec flags.
2714
2715 Fri May 3 19:10:57 1996 Miles Bader <miles@gnu.ai.mit.edu>
2716
2717 * gnu-nat.c (inf_validate_procs): Don't clear INF->task if we find
2718 the task's died, so others have a chance at it.
2719 (gnu_resume): When single-stepping a single thread, given an error
2720 if there is no such thread. When single-stepping one but running
2721 the others, just given a warning and still run all the threads.
2722 (gnu_wait): If there seem to be no threads, look harder, and
2723 signal an error if there really aren't any.
2724 (gnu_attach): Reset thread numbering to 0.
2725
2726 * i386gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Give
2727 thread name in warning messages.
2728
2729 * gnu-nat.c (active_inf): New function.
2730 (show_sig_thread_cmd, show_stopped_cmd): Use it.
2731 (info_port_rights, info_send_rights_cmd, info_port_sets_cmd,
2732 info_recv_rights_cmd, info_port_rights_cmd, info_port_rights_cmd):
2733 New functions.
2734 (add_task_commands): Add new port-right info commands.
2735
2736 Fri Apr 26 20:42:16 1996 Miles Bader <miles@gnu.ai.mit.edu>
2737
2738 * gnu-nat.c (gnu_wait): Instead of _hurd_intr_rpc_mach_msg, just
2739 use mach_msg with MACH_RCV_INTERRUPT.
2740 (set_noninvasive_cmd): New function.
2741 (add_task_commands): Add command entry for `set noninvasive'.
2742
2743 Mon Mar 4 14:12:02 1996 Miles Bader <miles@gnu.ai.mit.edu>
2744
2745 * gnu-nat.c (gnu_read_inferior): Use hurd_safe_memmove, not safe_bcopy.
2746 (safe_bcopy): Function removed.
2747
2748 Mon Dec 4 14:18:26 1995 Miles Bader <miles@gnu.ai.mit.edu>
2749
2750 * gnu-nat.c (proc_update_sc): Assert only threads can have state.
2751 (make_proc): Initialize state_valid & state_changed fields.
2752
2753 Tue Nov 28 17:51:21 1995 Miles Bader <miles@gnu.ai.mit.edu>
2754
2755 * reply_mig_hack.awk: New file.
2756
2757 Tue Nov 14 14:31:03 1995 Miles Bader <miles@gnu.ai.mit.edu>
2758
2759 * breakpoint.c (breakpoint_1): Print breakpoint thread field.
2760
2761 * lynx-nat.c (child_wait): Return TARGET_WAITKIND_SPURIOUS for new
2762 threads.
2763
2764 Mon Nov 13 18:30:53 1995 Miles Bader <miles@gnu.ai.mit.edu>
2765
2766 * target.c (debug_to_check_threads): New function.
2767
2768 * inflow.c (terminal_init_inferior_with_pgrp): New function.
2769 (terminal_init_inferior): Call terminal_init_inferior_with_pgrp.
2770 * inferior.h (terminal_init_inferior_with_pgrp): New declaration,
2771 but only if PROCESS_GROUP_TYPE is defined.
2772
2773 Mon Nov 6 16:42:09 1995 Miles Bader <miles@gnu.ai.mit.edu>
2774
2775 * target.c (debug_to_thread_alive): Pass through the return value.
2776
2777 Thu Nov 2 18:05:00 1995 Miles Bader <miles@gnu.ai.mit.edu>
2778
2779 * target.c (signals, target_signal_from_host, target_signal_to_host):
2780 Add mach exceptions.
2781 * target.h (enum target_signal): Add mach exceptions.
2782
2783 Mon Oct 30 16:41:04 1995 Miles Bader <miles@gnu.ai.mit.edu>
2784
2785 * gnu-nat.c: New file: gnu native backend.
2786 * i386gnu-nat.c: New file: i386-specific part of gnu native backend.
2787 * gnu-nat.h: New file.
2788 * config/nm-gnu.h: New file.
2789 * config/tm-i386gnu.h: New file.
2790 * config/xm-i386gnu.h: New file.
2791 * config/i386/i386gnu.mh: New file.
2792 * config/i386/i386gnu.mt: New file.
2793
2794 Wed Feb 28 15:50:12 1996 Fred Fish <fnf@cygnus.com>
2795
2796 * Makefile.in (VERSION): Bump version to 4.15.2 to establish
2797 baseline for gdb 4.16 rerelease testing.
2798
2799 Wed Feb 28 13:32:05 1996 Jeffrey A Law (law@cygnus.com)
2800
2801 * somsolib.c (som_solib_create_inferior_hook): Before returning
2802 call clear_symtab_users.
2803
2804 Tue Feb 27 00:04:46 1996 Stu Grossman (grossman@critters.cygnus.com)
2805
2806 * remote-e7000.c (e7000_open): Delete all breakpoints when
2807 connecting to e7000. Change connect message to allow use of
2808 monitor.exp in test suite.
2809 * (e7000_load): Print transfer rate of download.
2810 * symfile.c (generic_load): Print transfer rate of download.
2811
2812 Sun Feb 25 13:58:33 1996 Stan Shebs <shebs@andros.cygnus.com>
2813
2814 * configure.in (mips*-*-vxworks*): New config.
2815 * configure: Regenerated.
2816
2817 * config/mips/vxmips.mt, config/mips/tm-vxmips.h: New files.
2818 * remote-vxmips.c (vx_convert_to_virtual, vx_convert_from_virtual):
2819 Remove, never used.
2820
2821 Sat Feb 24 12:30:28 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2822
2823 * partial-stab.h (case N_FUN): Function symbols generated
2824 by SPARCworks cc have a meaningless zero value, do not update
2825 pst->textlow if the function symbol value is zero.
2826
2827 * stabsread.c (define_symbol): Initialize SYMBOL_TYPE field
2828 for function prototype declaration symbols.
2829
2830 Fri Feb 23 22:33:04 1996 Stu Grossman (grossman@critters.cygnus.com)
2831
2832 * remote-e7000.c (e7000_load): New routine to download via the
2833 network.
2834 * (e7000_wait): Don't backup PC when we hit a breakpoint.
2835 Apparantly new sh2 pods get this right...
2836 * (e7000_ops): Add call to e7000_load.
2837
2838 Thu Feb 22 00:52:42 1996 J.T. Conklin <jtc@rtl.cygnus.com>
2839
2840 * config/m68k/{nbsd.mh,nbsd.mt,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h},
2841 m68knbsd-nat.c: New files, support for NetBSD/m68k.
2842
2843 * configure.in (m68k-*-netbsd*): New config.
2844 * configure: Regenerated.
2845
2846 Wed Feb 21 19:00:21 1996 Fred Fish <fnf@cygnus.com>
2847
2848 * standalone.c (open, _initialize_standalone): Fix obvious typos
2849 reported by Martin Pool <martin@citr.uq.oz.au>.
2850
2851 Wed Feb 21 14:24:04 1996 Jeffrey A Law (law@cygnus.com)
2852
2853 * solib.c (solib_create_inferior_hook): Fix thinko.
2854
2855 Tue Feb 20 23:59:19 1996 Jeffrey A Law (law@cygnus.com)
2856
2857 * solib.c (solib_break_names): Define for Solaris and Linux.
2858 (enable_break): For SVR4 systems, first try to use the debugger
2859 interfaces in the dynamic linker to track shared library events
2860 as they happen, then fall back to BKPT_AT_SYMBOL code. Convert
2861 BKPT_AT_SYMBOL code to use shared library event breakpoints.
2862 (solib_create_inferior_hook): Simplify BKPT_AT_SYMBOL code,
2863 it no longer needs to restart/wait on the inferior.
2864 * symfile.c (find_lowest_section): No longer static.
2865 * symfile.h (find_lowest_section): Corresponding changes.
2866
2867 Tue Feb 20 18:54:08 1996 Fred Fish <fnf@cygnus.com>
2868
2869 * valops.c (COERCE_FLOAT_TO_DOUBLE): Define default value.
2870 (value_arg_coerce): Use COERCE_FLOAT_TO_DOUBLE.
2871 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Define to 1.
2872 * config/mips/tm-mips.h: Ditto.
2873 * config/pa/tm-hppa.h: Ditto.
2874 * config/rs6000/tm-rs6000.h: Ditto.
2875 * config/sparc/tm-sparc.h: Ditto.
2876
2877 Tue Feb 20 17:32:05 1996 J.T. Conklin <jtc@rtl.cygnus.com>
2878
2879 * config/{i386,ns32k}/nbsd.mh (NATDEPFILES): Remove core-aout.o.
2880
2881 * config/nm-nbsd.h (FETCH_INFERIOR_REGISTERS): Defined.
2882 * config/xm-nbsd.h (CC_HAS_LONG_LONG, PRINTF_HAS_LONG_LONG):
2883 #ifdef'd out definitions --- Causes serious gdb failures on
2884 the i386. Need to investigate further before enabling.
2885
2886 * i386b-nat.c (fetch_inferior_registers, store_inferior_registers,
2887 fetch_core_registers): New functions. These functions are defined
2888 if FETCH_INFERIOR_REGISTERS is set. Registers are fetched/stored
2889 with ptrace PT_GETREGS/PT_SETREGS.
2890
2891 Tue Feb 20 16:55:06 1996 Stu Grossman (grossman@critters.cygnus.com)
2892
2893 * findvar.c (extract_floating store_floating): Replace `long
2894 double' with `DOUBLEST'.
2895
2896 Mon Feb 19 15:25:51 1996 J.T. Conklin <jtc@rtl.cygnus.com>
2897
2898 * config/xm-nbsd.h (CC_HAS_LONG_LONG, PRINTF_HAS_LONG_LONG):
2899 Define.
2900
2901 Mon Feb 19 10:32:05 1996 Jeffrey A Law (law@cygnus.com)
2902
2903 * symtab.h (looup_minimal_symbol_solib_trampoline): Declare.
2904
2905 * breakpoint.h (remove_solib_event_breakpoints): Declare.
2906 * breakpoint.c (remove_solib_event_breakpoints): New function.
2907 * somsolib.c (solib_create_inferior_hook): Remove all solib event
2908 breakpoints before inserting any new ones. Use a solib event
2909 breakpoint for the breakpoint at "_start".
2910 Remove extraneous "\n" from calls to warning.
2911
2912 * breakpoint.c (breakpoint_1): Add missing "sigtramp" to bptypes
2913 name array.
2914
2915 Mon Feb 19 01:09:32 1996 Doug Evans <dje@cygnus.com>
2916
2917 * dwarfread.c (add_partial_symbol): Use ADD_PSYMBOL_ADDR_TO_LIST
2918 for CORE_ADDR values.
2919 (new_symbol): Use SYMBOL_VALUE_ADDRESS for CORE_ADDR values.
2920 * symfile.h (add_psymbol_{,addr}to_list): Add prototypes.
2921
2922 Sun Feb 18 14:37:13 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2923
2924 * mipsread.c (mipscoff_symfile_read): Unconditionally add
2925 alpha coff dynamic symbols for all symbol files. Makes skipping
2926 over the trampoline code work when stepping from a function in a
2927 shared library into a function in a different shared library.
2928
2929 Sun Feb 18 09:27:10 1996 Stu Grossman (grossman@cygnus.com)
2930
2931 * config/sparc/tm-sparc.h: Define PS_FLAG_CARRY. Define
2932 RETURN_VALUE_ON_STACK to return long doubles on the stack.
2933
2934 Sat Feb 17 16:33:11 1996 Fred Fish <fnf@cygnus.com>
2935
2936 * Makefile.in (ch-exp.o): Add dependencies.
2937 (various): Add gdb_string.h to dependencies that need it.
2938
2939 Sat Feb 17 08:57:50 1996 Fred Fish <fnf@cygnus.com>
2940
2941 * symmisc.c (print_symbol_bcache_statistics): Update description for
2942 printing byte cache statistics.
2943
2944 Thu Feb 16 16:02:03 1996 Stu Grossman (grossman@cygnus.com)
2945
2946 * Add native support for long double data type.
2947 * c-exp.y (%union): Change dval to typed_val_float. Use DOUBLEST
2948 to store actual data. Change types of INT and FLOAT tokens to
2949 typed_val_int and typed_val_float respectively. Create new token
2950 DOUBLE_KEYWORD to specify the string `double'. Make production
2951 for FLOAT use type determined by parse_number. Add production for
2952 "long double" data type.
2953 * (parse_number): Use sscanf to parse numbers as float, double or
2954 long double depending upon the type of typed_val_float.dval. Also
2955 allow user to specify `f' or `l' suffix to explicitly specify
2956 float or long double constants. Change typed_val to
2957 typed_val_int.
2958 * (yylex): Change typed_val to typed_val_int. Also, scan for
2959 "double" keyword.
2960 * coffread.c (decode_base_type): Add support for T_LNGDBL basic
2961 type.
2962 * configure, configure.in: Add check for long double support in
2963 the host compiler.
2964 * defs.h: Define DOUBLEST appropriatly depending on whether
2965 HAVE_LONG_DOUBLE (from autoconf) is defined. Also, fix prototypes
2966 for functions that handle this type.
2967 * expression.h (union exp_element): doubleconst is now type
2968 DOUBLEST.
2969 * m2-exp.y f-exp.y (%union): dval becomes type DOUBLEST.
2970 * findvar.c (extract_floating): Make return value be DOUBLEST.
2971 Also, add support for numbers with size of long double.
2972 * (store_floating): Arg `val' is now type DOUBLEST. Handle all
2973 floating types.
2974 * parser-defs.h parse.c (write_exp_elt_dblcst): Arg expelt is now
2975 DOUBLEST.
2976 * valarith.c (value_binop): Change temp variables v1, v2 and v to
2977 type DOUBLEST. Coerce type of result to long double if either op
2978 was of that type.
2979 * valops.c (value_arg_coerce): If argument type is bigger than
2980 double, coerce to long double.
2981 * (call_function_by_hand): If REG_STRUCT_HAS_ADDR is defined, and
2982 arg type is float and > 8 bytes, then use pointer-to-object
2983 calling conventions.
2984 * valprint.c (print_floating): Arg doub is now type DOUBLEST.
2985 Use appropriate format and precision to print out floating point
2986 values.
2987 * value.h: Fixup prototypes for value_as_double,
2988 value_from_double, and unpack_double to use DOUBLEST.
2989 * values.c (record_latest_value): Remove check for invalid
2990 floats. Allow history to store them so that people may examine
2991 them in hex if they want.
2992 * (value_as_double unpack_double): Change return value to DOUBLEST.
2993 * (value_from_double): Arg `num' is now DOUBLEST.
2994 * (using_struct_return): Use RETURN_VALUE_ON_STACK macro (target
2995 specific) to expect certain types to always be returned on the stack.
2996
2997 Fri Feb 16 14:00:54 1996 Fred Fish <fnf@cygnus.com>
2998
2999 * bcache.c, bcache.h: New files to implement a byte cache.
3000 * Makefile.in (SFILES): Add bcache.c.
3001 (symtab_h): Add bcache.h.
3002 (HFILES_NO_SRCDIR): add bcache.h
3003 (COMMON_OBJS): Add bcache.o
3004 (bcache.o): New target.
3005 * dbxread.c (start_psymtab): Make global_syms & static_syms
3006 type "partial_symbol **".
3007 * hpread.c (hpread_start_symtab): Ditto.
3008 * os9kread.c (os9k_start_psymtab): Ditto.
3009 * stabsread.h (start_psymtab): Ditto.
3010 * {symfile.c, symfile.h} (start_psymtab_common): Ditto.
3011 * maint.c (maintenance_print_statistics): Call
3012 print_symbol_bcache_statistics.
3013 * objfiles.c (allocate_objfile): Initialize psymbol bcache malloc
3014 and free pointers.
3015 * solib.c (allocate_rt_common_objfile): Ditto.
3016 * symfile.c (reread_symbols): Ditto.
3017 (free_objfile): Free psymbol bcache when objfile is freed.
3018 (objfile_relocate): Use new indirect psymbol pointers.
3019 * objfiles.h (struct objfile): Add psymbol cache.
3020 * symfile.c (compare_psymbols): Now passed pointers to pointers to
3021 psymbols.
3022 (reread_symbols): Free psymbol bcache when freeing other objfile
3023 resources.
3024 (add_psymbol_to_list, add_psymbol_addr_to_list): Initialize new
3025 psymbol using the psymbol bcache.
3026 (init_psymbol_list): Psymbol lists now contain pointers rather than
3027 the actual psymbols.
3028 * symfile.h (psymbol_allocation_list): Psymbol lists now dynamically
3029 grown arrays of pointers.
3030 (ADD_PSYMBOL_VT_TO_LIST): Initialize new symbol using the psymbol
3031 bcache.
3032 * symmisc.c (print_partial_symbols): Now takes pointer to pointer
3033 to partial symbol.
3034 (print_symbol_bcache_statistics): New function to print per objfile
3035 bcache statistics.
3036 (print_partial_symbol, print_partial_symbols,
3037 maintenance_check_symtabs, extend_psymbol_list):
3038 Account for change to pointer to pointer to partial symbol.
3039 * symtab.c (find_pc_psymbol, lookup_partial_symbol, decode_line_2,
3040 make_symbol_completion_list):
3041 Account for change to pointer to pointer to partial symbol.
3042 * symtab.h (bcache.h): Include.
3043 * xcoffread.c (xcoff_start_psymtab): Make global_syms & static_syms
3044 type "partial_symbol **".
3045
3046 Fri Feb 16 10:02:34 1996 Fred Fish <fnf@cygnus.com>
3047
3048 * dwarfread.c (free_utypes): New function.
3049 (read_file_scope): Call free_utypes as cleanup, rather than just
3050 freeing the utypes pointer.
3051
3052 Thu Feb 15 21:40:52 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
3053
3054 * demangle.c (is_cplus_marker): New function, checks if a
3055 character is one of the commonly used C++ marker characters.
3056 * defs.h (is_cplus_marker): Add prototype.
3057 * c-typeprint.c (c_type_print_base), ch-lang.c (chill_demangle),
3058 cp-valprint.c (cp_print_class_method), mdebugread.c (parse_symbol),
3059 stabsread.c (define_symbol, read_member_functions, read_struct_fields),
3060 symtab.h (OPNAME_PREFIX_P, VTBL_PREFIX_P, DESTRUCTOR_PREFIX_P),
3061 values.c (vb_match): Use is_cplus_marker instead of comparison
3062 with CPLUS_MARKER.
3063
3064 Thu Feb 15 18:08:13 1996 Fred Fish <fnf@cygnus.com>
3065
3066 * symfile.h (INLINE_ADD_PSYMBOL): Default this to 0 and possibly
3067 delete entirely someday.
3068
3069 Thu Feb 15 15:25:34 1996 Stan Shebs <shebs@andros.cygnus.com>
3070
3071 * mpw-make.sed: Edit out makefile rebuild rule.
3072 (host_alias, target_alias): Comment out instead of deleting.
3073 (@LIBS@): Edit out references.
3074
3075 Tue Feb 13 22:56:46 1996 Fred Fish <fnf@cygnus.com>
3076
3077 * symfile.c (add_psymbol_to_list, add_psymbol_addr_to_list):
3078 Use n_psyms in OBJSTAT, not psyms.
3079
3080 Mon Feb 12 15:59:31 1996 Doug Evans <dje@charmed.cygnus.com>
3081
3082 * configure.in (sparclet-*-aout*): New config.
3083 * configure: Regenerated.
3084
3085 Mon Feb 12 14:17:52 1996 Fred Fish <fnf@cygnus.com>
3086
3087 * somsolib.c (som_solib_add): Use xmalloc rather than bare
3088 unchecked call to malloc.
3089 * remote-mips.c (pmon_load_fast): ditto.
3090 * remote-mm.c (mm_open): ditto.
3091 * hpread.c (hpread_lookup_type): ditto.
3092 * remote-adapt.c (adapt_open): ditto.
3093
3094 Mon Feb 12 13:11:32 1996 Fred Fish <fnf@cygnus.com>
3095
3096 * f-lang.c (allocate_saved_bf_node, allocate_saved_function_node,
3097 allocate_saved_f77_common_node, allocate_common_entry_node,
3098 add_common_block): Use xmalloc rather than malloc, some of which
3099 were unchecked.
3100 * gnu-regex.c: At same point as other gdb specific changes
3101 #undef malloc and then #define it to xmalloc.
3102 * ch-exp.c (growbuf_by_size): Use xmalloc/xrealloc rather than
3103 bare unchecked calls to malloc/realloc.
3104 * stabsread.c (dbx_lookup_type): Use xmalloc rather than bare
3105 unchecked call to malloc.
3106
3107 Wed Feb 7 11:31:26 1996 Stu Grossman (grossman@cygnus.com)
3108
3109 * symtab.c (gdb_mangle_name): Change opname var to be const to
3110 match return val of cplus_mangle_name.
3111 * i960-tdep.c: Change arg types of next_insn to match callers.
3112
3113 Wed Feb 7 07:34:24 1996 Fred Fish <fnf@cygnus.com>
3114
3115 * config/i386/linux.mh (XM_CLIBS, GDBSERVER_LIBS): Remove. These
3116 apparently aren't needed in any reasonably recent version of
3117 linux.
3118
3119 Tue Feb 6 21:37:03 1996 Per Bothner <bothner@kalessin.cygnus.com>
3120
3121 * stabsread.c (read_range_type): If !self-subrange and language
3122 is Chill, assume a true range. If a true_range is a sub_subrange,
3123 use builtin_type_int for index_type.
3124
3125 Tue Feb 6 18:38:51 1996 J.T. Conklin <jtc@slave.cygnus.com>
3126
3127 * nindy-share/nindy.c (say): Use stdarg.h macros when compiling
3128 with an ANSI compiler.
3129
3130 start-sanitize-gdbtk
3131 Tue Feb 6 16:31:25 1996 Tom Tromey <tromey@creche.cygnus.com>
3132
3133 * gdbtk.tcl (create_file_win): Eliminate text widget B1 binding so
3134 double-clicking will work again.
3135 (create_asm_win): Put "break" at end of all B1 bindings.
3136 (create_file_win): Lower "sel" tag, don't raise it.
3137 (ensure_line_visible): New proc.
3138 (update_listing, update_assembly): Use it.
3139 (create_copyright_window): Destroy window on Leave event.
3140 (create_command_window): Put "break" at end of all B2 bindings.
3141
3142 end-sanitize-gdbtk
3143 Mon Feb 5 18:24:28 1996 Steve Chamberlain <sac@slash.cygnus.com>
3144
3145 From Michael_Snyder@NeXT.COM (Michael Snyder):
3146 * valops.c (value_arg_coerce): Coerce float to double, unless the
3147 function prototype specifies float.
3148
3149 Mon Feb 5 09:51:55 1996 Tom Tromey <tromey@creche.cygnus.com>
3150
3151 * language.c (set_language_command): Use languages table when
3152 printing available languages.
3153
3154 Sat Feb 3 12:22:05 1996 Fred Fish <fnf@cygnus.com>
3155
3156 Fix problems reported by Hans Verkuil (hans@wyst.hobby.nl):
3157 * command.c (add_cmd): Add missing initialization for enums member.
3158 Reorder members to match structure declaration to make it easier to
3159 tell when one is missing.
3160 * exec.c (exec_file_command): Fix problem where filename in malloc'd
3161 memory is referenced after being freed.
3162
3163 Sat Feb 3 03:26:21 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
3164
3165 * dwarfread.c (read_func_scope): Avoid GDB core dumps if
3166 AT_name tag is missing.
3167
3168 * procfs.c (procfs_stopped_by_watchpoint): Fix logic when
3169 FLTWATCH and FLTKWATCH are defined.
3170
3171 * remote.c (remote_read_bytes): Advance memaddr for transfers,
3172 return number of bytes transferred for partial reads.
3173
3174 * top.c (init_signals): Reset SIGTRAP to SIG_DFL.
3175
3176 Fri Feb 2 13:40:50 1996 Steve Chamberlain <sac@slash.cygnus.com>
3177
3178 * win32-nat.c (mappings): Add ppc registers.
3179 (child_resume): Turn off step for ppc.
3180
3181 Thu Feb 1 10:29:31 1996 Steve Chamberlain <sac@slash.cygnus.com>
3182
3183 * config/powerpc/(cygwin32.mh, cygwin32.mt, tm-cygwin32.h,
3184 xm-cygwin32.h): New.
3185 * config/i386/(*win32*): Becomes *cygwin32*.
3186 * configure.in (i[3456]86-*-win32*): Becomes i[3456]86-*-cygwin32.
3187 (powerpcle-*-cygwin32): New.
3188 * configure: Regenerate.
3189 * win32-nat.c (child_create_inferior): Call CreateProcess
3190 with the right program arg.
3191
3192 Thu Feb 1 11:01:10 1996 Jeffrey A Law (law@cygnus.com)
3193
3194 * config/pa/tm-hppa.h (SOFT_FLOAT): Provide a default definition.
3195
3196 Wed Jan 31 19:01:28 1996 Fred Fish <fnf@cygnus.com>
3197
3198 * serial.c: Change fputc/fputs/fprintf to _unfiltered forms.
3199
3200 Wed Jan 31 18:36:27 1996 Stan Shebs <shebs@andros.cygnus.com>
3201
3202 * config/sparc/xm-sun4os4.h (HAVE_TERMIOS): Remove.
3203
3204 * config/sparc/xm-sparc.h (HAVE_WAIT_STRUCT): Remove, never used.
3205
3206 * config/i386/nm-i386mach.h (CHILD_PREPARE_TO_STORE): Move to
3207 here from config/i386/xm-i386mach.h, fix name.
3208 * config/i386/nm-sun386.h: Ditto, from config/i386/xm-sun386.h.
3209 * config/i386/nm-ptx4.h (CHILD_PREPARE_TO_STORE): Move to
3210 here from config/i386/xm-ptx4.h.
3211 * config/i386/nm-ptx4.h: Ditto, from config/i386/xm-ptx.h.
3212 * config/i386/nm-symmetry.h: Ditto, from config/i386/xm-symmetry.h.
3213 * config/m68k/nm-sun3.h: Ditto, from config/m68k/xm-sun3.h.
3214 * config/sparc/nm-nbsd.h: Ditto, from config/sparc/xm-nbsd.h.
3215 * config/sparc/nm-sun4os4: Ditto, from config/sparc/xm-sparc.h.
3216
3217 * config/sparc/nm-sun4sol2.h: New file, renamed from nm-sysv4.h.
3218 (PRSVADDR_BROKEN): Move here from xm-sun4sol2.h.
3219 * config/sparc/sun4sol2.mh (NAT_FILE): Update.
3220
3221 Wed Jan 31 17:20:26 1996 Jeffrey A Law (law@cygnus.com)
3222
3223 * config/pa/tm-hppa.h (EXTRACT_RETURN_VALUE): Handle software
3224 floating point correctly.
3225 (STORE_RETURN_VALUE): Likewise.
3226 * config/pa/tm-pro.h (SOFT_FLOAT): define.
3227
3228 Wed Jan 31 13:34:52 1996 Fred Fish <fnf@cygnus.com>
3229
3230 * config/i386/xm-linux.h (MMAP_BASE_ADDRESS, MMAP_INCREMENT):
3231 Define to what should be reasonable values. However, apparently
3232 a bug in linux mmap prevents mapped symbol tables from working.
3233
3234 Tue Jan 30 18:26:19 1996 Fred Fish <fnf@cygnus.com>
3235
3236 * defs.h (errno.h>: Move #include closer to head of file to solve
3237 obscure problem with systems that declare perror with const arg, in
3238 both errno.h and stdio.h, and const is defined away by intervening
3239 local include.
3240
3241 Tue Jan 30 15:41:10 1996 Fred Fish <fnf@cygnus.com>
3242
3243 From Jon Reeves <reeves@zk3.dec.com>:
3244 * i386-stub.c (getpacket): Change fprintf stream from "gdb" to stderr.
3245 (mem_fault_routine): Fix misplaced volatile type qualifier in decl.
3246
3247 Mon Jan 29 19:05:58 1996 Fred Fish <fnf@cygnus.com>
3248
3249 * Makefile.in (diststuff): Make all-doc; diststuff target does not
3250 exist in doc/Makefile.in.
3251
3252 Mon Jan 29 18:44:57 1996 Stan Shebs <shebs@andros.cygnus.com>
3253
3254 * config/m88k/xm-cxux.h (BP_HIT_COUNT): Remove, never used.
3255
3256 Mon Jan 29 00:10:35 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
3257
3258 * ch-valprint.c (calculate_array_length): New function to
3259 determine the length of an array type.
3260 (chill_val_print (case TYPE_CODE_ARRAY)): If the length of an
3261 array type is zero, call calculate_array_length.
3262
3263 * gdbtypes.c (get_discrete_bounds (case TYPE_CODE_ENUM)): The
3264 values may not be sorted. Scan all entries and set the real lower
3265 and upper bound.
3266
3267 Sun Jan 28 15:50:42 1996 Fred Fish <fnf@cygnus.com>
3268
3269 * config/xm-linux.h: Move include of solib.h and #define of
3270 SVR4_SHARED_LIBS from here ...
3271 * config/nm-linux.h: ...to here.
3272
3273 Sat Jan 27 10:34:05 1996 Fred Fish <fnf@cygnus.com>
3274
3275 * configure.in (AC_CHECK_HEADERS): Check for sys/procfs.h.
3276 Also check for gregset_t and fpregset_t types.
3277 * configure: Regenerate.
3278 * core-regset.c (sys/procfs.h): Only include if HAVE_SYS_PROCFS_H
3279 is defined.
3280 (fetch_core_registers): Turn into stub unless both HAVE_GREGSET_T
3281 and HAVE_FPREGSET_T are defined. These changes allow systems
3282 like linux that are migrating to /proc support to use a single
3283 configuration for both new and old versions.
3284
3285 * config/i386/linux.mt: Note that this is now for both a.out and
3286 ELF systems.
3287 * config/i386/linux.mh (NATDEPFILES): Add solib.o, core-regset.o,
3288 i386v4-nat.o
3289 * config/i386/tm-linux.h (tm-sysv4.h): Include.
3290 * config/i386/xm-linux.h (solib.h): Include
3291 (SVR4_SHARED_LIBS): Define.
3292 * i386v4-nat.c: Only compile if HAVE_SYS_PROCFS_H is defined.
3293 (supply_gregset, fill_gregset): Compile if HAVE_GREGSET_T defined.
3294 (supply_fpregset, fill_fpregset): Compile if HAVE_FPREGSET_T
3295 defined.
3296
3297 Fri Jan 26 13:48:14 1996 Stan Shebs <shebs@andros.cygnus.com>
3298
3299 * config/sparc/xm-sparc.h (NEW_SUN_CORE): Remove, never used.
3300 * config/i386/xm-sun386.h: Ditto.
3301 * config/m68k/xm-sun2.h, config/m68k/xm-sun3.h: Ditto.
3302
3303 Thu Jan 25 16:05:53 1996 Tom Tromey <tromey@creche.cygnus.com>
3304
3305 * Makefile.in (INSTALLED_LIBS, CLIBS): Include @LIBS@.
3306
3307 Thu Jan 25 09:22:15 1996 Steve Chamberlain <sac@slash.cygnus.com>
3308
3309 From Greg McGary <gkm@gnu.ai.mit.edu>:
3310 * dcache.c (dcache_peek, dcache_poke): Advance addr for
3311 multi-byte I/O.
3312
3313 Thu Jan 25 13:08:51 1996 Doug Evans (dje@cygnus.com)
3314
3315 * infrun.c (normal_stop): Fix test for shared library event.
3316
3317 Thu Jan 25 03:26:38 1996 Doug Evans <dje@charmed.cygnus.com>
3318
3319 * configure.in (sparc64-*-*): Add default host configuration.
3320 start-sanitize-gdbtk
3321 (sparc64-*-solaris2* host): Link statically if GCC used.
3322 end-sanitize-gdbtk
3323 (sparc64-*-solaris2*): Add target configuration.
3324 * configure: Regenerated.
3325 * sparc/sp64sol2.mt: New file.
3326
3327 Wed Jan 24 22:31:37 1996 Doug Evans <dje@charmed.cygnus.com>
3328
3329 * Makefile.in (RUNTEST): srcdir renamed to rootsrc.
3330
3331 Wed Jan 24 15:42:24 1996 Tom Tromey <tromey@creche.cygnus.com>
3332
3333 * Makefile.in (lint): Close backquotes.
3334
3335 start-sanitize-gdbtk
3336 Wed Jan 24 15:28:41 1996 Tom Tromey <tromey@creche.cygnus.com>
3337
3338 * gdbtk.tcl, gdbtk.c: Updated copyrights.
3339
3340 * configure.in: Look for -ldl or -ldld when using Tcl 7.5 or
3341 greater.
3342 * configure: Rebuilt.
3343
3344 end-sanitize-gdbtk
3345 Wed Jan 24 13:19:10 1996 Fred Fish <fnf@cygnus.com>
3346
3347 * NEWS: Make note of new record and replay feature for
3348 remote debug sessions.
3349 * serial.c (gdbcmd.h): Include.
3350 (serial_logfile, serial_logfp, serial_reading, serial_writing):
3351 Define here, for remote debug session logging.
3352 (serial_log_command, serial_logchar, serial_write, serial_readchar):
3353 New functions for remote debug session logging.
3354 (serial_open): Open remote debug session log file when needed.
3355 (serial_close): Close remote debug session log file when needed.
3356 (_initialize_serial): Add set/show commands for name of remote
3357 debug session log file.
3358 * serial.h (serial_readchar): Declare
3359 (SERIAL_READCHAR): Call serial_readchar().
3360 (SERIAL_WRITE): Call serial_write().
3361 (serial_close): Declare as extern.
3362 (serial_logfile, serial_logfp): Declare.
3363 * top.c (execute_command): Declare serial_logfp. Log user command
3364 in remote debug session log if log file is open.
3365 * remote-array.c (array_wait): #ifdef out echo to gdb_stdout.
3366 (array_read_inferior_memory): Rewrite to fix memory overwrite bug.
3367 * remote-array.c (SREC_SIZE): Remove, duplicates define in
3368 monitor.h.
3369 * remote-array.c (hexchars, hex2mem): Remove, unused.
3370 * gdbserver/low-linux.c (store_inferior_registers): Remove
3371 unnecessary extern declaration of registers[].
3372 * gdbserver/Makefile.in (all): Add gdbreplay.
3373 * gdbserver/gdbreplay.c: New file.
3374 * gdbserver/README: Give example of recording a remote
3375 debug session with gdb and then replaying it with gdbreplay.
3376
3377 Tue Jan 23 18:02:35 1996 Per Bothner <bothner@kalessin.cygnus.com>
3378
3379 * stabsread.c (rs6000_builtin_type): Make bool type unsigned.
3380 (read_one_struct_field): Support boolean bitfields.
3381 * c-valprint.c (c_val_print): Print booleans properly.
3382
3383 Tue Jan 23 18:54:09 1996 Stan Shebs <shebs@andros.cygnus.com>
3384
3385 * remote-vxsparc.c (vx_convert_to_virtual, vx_convert_from_virtual):
3386 Remove, never used.
3387 * config/sparc/vxsparc.mt (TDEPFILES): Add remote-vxsparc.o.
3388
3389 Tue Jan 23 14:36:05 1996 Per Bothner <bothner@kalessin.cygnus.com>
3390
3391 * ch-exp.c (parse_tuple): Error if invalid mode.
3392
3393 * value.h (COERCE_ARRAY): Don't coerce enums.
3394 (COERCE_ENUM): Don't COERCE_REF.
3395 (COERCE_NUMBER): New macro (same as COERCE_ARRAY then COERCE_ENUM).
3396 * valops.c (value_assign): Only do COERCE_ARRAY if internalvar (let
3397 value_cast handle it otherwise); do *not* COERCE_ENUM either way.
3398 * valarith.c: Use COERCE_NUMBER instead od COEREC_ARRAY.
3399 Add COERCE_REF before COERCE_ENUM.
3400 * values.c (value_as_long): Simplify.
3401
3402 * valops.c (value_array): Create internalvar if !c_style_arrays.
3403
3404 * language.c (lang_bool_type): Add Fortran support.
3405 * eval.c (OP_BOOL): Use LA_BOOL_TYPE.
3406
3407 Tue Jan 23 13:08:26 1996 Jeffrey A Law (law@cygnus.com)
3408
3409 * symfile.c (auto_solib_add): Renamed from auto_solib_add_at_startup.
3410 All references changed.
3411 * breakpoint.c (bpstat_what): Add shlib_event to the class types.
3412 Update state table. Reformat so that it's still readable.
3413 When we hit the shlib_event breakpoint, set the calss of shlib_event.
3414 (breakpoint_1): Add "shlib events" as a breakpoint type.
3415 Print the shlib_event breakpoint like other breakpoints.
3416 (create_solib_event_breakpoint): New function.
3417 (breakpoint_re_set_one): Handle solib_event breakpoints.
3418 * breakpoint.h (enum bytype): Add bp_shlib_event breakpoint type.
3419 (enum bpstat_what_main_action): Add BPSTAT_WHAT_CHECK_SHLIBS
3420 action.
3421 (create_solib_event_breakpoint): Declare.
3422 * infrun.c (wait_for_inferior): Handle CHECK_SHLIBS bpstat.
3423 (normal_stop): Inform the user when the inferior stoped due
3424 to a shared library event.
3425 (_initialize_infrun): Add new set/show variable "stop-on-solib-events"
3426 to control whether or not gdb continues the inferior or stops it when
3427 a shared library event occurs.
3428 * minsyms.c (lookup_minimal_symbol_solib_trampoline): New function.
3429 * somsolib.c (TODO list): Update.
3430 (som_solib_create_inferior_hook): Arrange for gdb to be notified
3431 when significant shared library events occur.
3432 * hppa-tdep.c (find_unwind_entry): No longer static.
3433
3434 Tue Jan 23 09:00:48 1996 Doug Evans <dje@charmed.cygnus.com>
3435
3436 * printcmd.c (print_insn): Pass fprintf_unfiltered to
3437 INIT_DISASSEMBLE_INFO.
3438 start-sanitize-gdbtk
3439 * gdbtk.c (gdb_disassemble): Likewise.
3440 end-sanitize-gdbtk
3441
3442 Mon Jan 22 16:59:40 1996 Stan Shebs <shebs@andros.cygnus.com>
3443
3444 * remote.c (remotebreak): New GDB variable.
3445 (remote_break): New global.
3446 (remote_interrupt): Send a break instead of ^C if remote_break.
3447 * NEWS: Describe the new variable.
3448
3449 Mon Jan 22 16:24:11 1996 Doug Evans <dje@charmed.cygnus.com>
3450
3451 * sparc-tdep.c (_initialize_sparc_tdep): Always use print_insn_sparc.
3452
3453 Fri Jan 19 07:19:38 1996 Fred Fish <fnf@cygnus.com>
3454
3455 * hp300ux-nat.c (getpagesize): Remove unused function
3456 fetch_core_registers.
3457 (hp300ux_core_fns): Remove, is unused.
3458 (_initialize_core_hp300ux): Remove, is unused.
3459 (gdbcore.h): Remove #include, no longer needed.
3460
3461 Fri Jan 19 00:59:53 1996 Jeffrey A Law (law@cygnus.com)
3462
3463 * rs6000-nat.c (exec_one_dummy_insn): Rework to avoid
3464 ptrace bug in aix4.1.3 on the rs6000.
3465
3466 Wed Jan 17 13:22:27 1996 Stan Shebs <shebs@andros.cygnus.com>
3467
3468 * remote-hms.c (hms_ops): Add value for to_thread_alive.
3469 * remote-nindy.c (nindy_ops): Ditto.
3470 * remote-udi.c (udi_ops): Ditto.
3471
3472 Tue Jan 16 18:00:35 1996 James G. Smith <jsmith@cygnus.co.uk>
3473
3474 * remote-mips.c (pmon_opn, pmon_wait, pmon_makeb64, pmon_zeroset,
3475 pmon_checkset, pmon_make_fastrec, pmon_check_ack,
3476 pmon_load_fast): New functions. Support for the PMON monitor world.
3477 (common_open): New function to merge support for different monitors.
3478 (mips_open): Use common_open().
3479 (mips_send_command): New function.
3480 (mips_send_packet): Scan out-of-sequence packets.
3481 (mips_enter_debug, mips_exit_debug): New functions.
3482 (pmon_ops): New target definition structure.
3483
3484 Tue Jan 16 11:22:58 1996 Stu Grossman (grossman@cygnus.com)
3485
3486 * Makefile.in (CLIBS): Add LIBS to allow libraries to be
3487 specified on the make command line (via make LIBS=xxx).
3488 start-sanitize-gm
3489 * configure.in (enable-gm): magic.o -> gmagic.o.
3490 end-sanitize-gm
3491
3492 start-sanitize-gdbtk
3493 Mon Jan 15 09:58:41 1996 Tom Tromey <tromey@creche.cygnus.com>
3494
3495 * gdbtk.tcl (create_expr_window): Many changes to update GUI.
3496 (add_expr): Changes from create_expr_window.
3497 (create_command_window): Set focus.
3498 (delete_expr): Rewrote.
3499 (expr_update_button): New proc.
3500 (add_expr): Put bindings on FocusIn, FocusOut.
3501 Don't allow .file_popup to be torn off.
3502 end-sanitize-gdbtk
3503
3504 Fri Jan 12 21:41:58 1996 Jeffrey A Law (law@cygnus.com)
3505
3506 * symtab.c (find_pc_symtab): Don't lose if OBJF_REORDERED
3507 is set but there are no psymtabs.
3508
3509 Fri Jan 12 15:56:12 1996 Steve Chamberlain <sac@slash.cygnus.com>
3510
3511 * dsrec.c (load_srec): Remove unused variable.
3512 * monitor.c (monitor_expect): Don't expect a ^C to echo.
3513 * serial.c (serial_open): Add parallel interface.
3514 * sh3-rom.c (parallel, parallel_in_use): New.
3515 (sh3_load): If parallel_in_use, download though the
3516 parallel port.
3517 (sh3_open): Open parallel port if specified.
3518 (sh3_close): New function.
3519 (_inititalize_sh3): Add sh3_close hook and documentation.
3520 * monitor.c (monitor_close): Export.
3521 * monitor.h (monitor_close): Add prototype.
3522
3523 Fri Jan 12 13:11:42 1996 Stan Shebs <shebs@andros.cygnus.com>
3524
3525 From Wilfried Moser <wilfried.moser@aut.alcatel.at>:
3526 * remote.c (remotetimeout): New GDB variable, use to set the
3527 remote timeout for reading.
3528
3529 start-sanitize-gdbtk
3530 Fri Jan 12 09:36:17 1996 Tom Tromey <tromey@creche.cygnus.com>
3531
3532 * gdbtk.tcl (gdbtk_tcl_query): Swap Yes and No buttons.
3533 (update_listing): Use lassign. Use "see" to scroll. Don't need
3534 screen_top, screen_bot, screen_height.
3535 (update_assembly): Use "see" to scroll.
3536 (textscrollproc): Removed.
3537 (create_file_win): Don't use textscrollproc.
3538 (asmscrollproc): Removed.
3539 (create_asm_window): Don't use asmscrollproc.
3540 (create_asm_win): Ditto.
3541 (screen_height, screen_top, screen_bot): Removed.
3542 (run_editor): New proc.
3543 (build_framework): Use it.
3544 (create_file_win, create_source_window): Don't use textscrollproc.
3545 (create_breakpoints_window): Set -xscrollcommand on canvas.
3546 (not_implemented_yet): Default button is 0.
3547 (delete_char): Don't use tk_textBackspace.
3548 (create_command_window): Allow Tk bindings to fire after deleting
3549 character.
3550 (create_command_window): Make Delete delete left, not right.
3551 end-sanitize-gdbtk
3552
3553 Fri Jan 12 07:14:27 1996 Fred Fish <fnf@cygnus.com>
3554
3555 * lynx-nat.c, irix4-nat.c, sparc-nat.c: Include gdbcore.h
3556 to get "struct core_fns" defined.
3557 * Makefile.in (lynx-nat.o, irix4-nat.o, sparc-nat.o):
3558 Are dependent upon gdbcore_h.
3559
3560 Thu Jan 11 23:13:24 1996 Per Bothner <bothner@cygnus.com>
3561
3562 * symfile.c (decrement_reading_symtab): New function.
3563 * symfile.c, symtab.h (currently_reading_symtab): New variable.
3564 * symfile.c (psymtab_to_symtab): Adjust currently_reading_symtab.
3565 * gdbtypes.c (check_typedef): Don't call lookup_symbol if
3566 currently_reading_symtab (since that could infinitely recurse).
3567
3568 Thu Jan 11 17:21:25 1996 Per Bothner <bothner@kalessin.cygnus.com>
3569
3570 * stabsread.c (read_struct_type): Trivial simplification.
3571
3572 * stabsread.c (define-symbol): Use invisible references
3573 for TYPE_CODE_SET and TYPE_CODE_BITSTRING too.
3574 * valops.c (call_function_by_hand): Likewise.
3575 * eval.c (evaluate_subexp_standard): When known, use the formal
3576 parameter type as the expected type when evaluating arg expressions.
3577 * ch-lang.c (evaluate_subexp_chill): Likewise (for MULTI_SUBSCRIPT).
3578
3579 start-sanitize-gdbtk
3580 Thu Jan 11 10:08:14 1996 Tom Tromey <tromey@creche.cygnus.com>
3581
3582 * main.c (main): Disable window interface if --help or --version
3583 specified.
3584
3585 * gdbtk.tcl (FSBox): Don't use tk_listboxSingleSelect.
3586
3587 Changes in sync with expect:
3588 * configure.in (ENABLE_GDBTK): Use CY_AC_PATH_TCL and
3589 CY_AC_PATH_TK.
3590 * aclocal.m4: Replaced with version from expect.
3591 * configure: Regenerated.
3592 end-sanitize-gdbtk
3593
3594 Wed Jan 10 16:08:49 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
3595
3596 * configure.in, configure: Recognize rs6000-*-aix4*.
3597 * config/powerpc/xm-aix.h: Reduce to include "xm-aix4.h".
3598 * config/rs6000/aix4.mh (XM_FILE): Point to xm-aix4.h.
3599 * config/rs6000/xm-aix4.h: New file.
3600 * config/xm-aix4.h: New file.
3601
3602 Wed Jan 10 11:25:37 1996 Fred Fish <fnf@cygnus.com>
3603
3604 From Wilfried Moser <wilfried.moser@aut.alcatel.at>:
3605 * gdbserver/low-linux.c: New file.
3606 * remote.c (remote_read_bytes): Fix aborts on larger packets.
3607
3608 * config/i386/linux.mh (GDBSERVER_DEPFILES, GDBSERVER_LIBS):
3609 Define.
3610 * stabsread.c (define_symbol): If register value is too large,
3611 tell what it is and what max is.
3612
3613 start-sanitize-gdbtk
3614 Wed Jan 10 09:07:22 1996 Tom Tromey <tromey@creche.cygnus.com>
3615
3616 * gdbtk.tcl (gdbtk_tcl_fputs, gdbtk_tcl_fputs_error,
3617 gdbtk_tcl_flush): Use "see", not "yview".
3618 (gdbtk_tcl_query): Use questhead bitmap.
3619 various: Always wrap condition of 'if' in {...}.
3620 (add_breakpoint_frame): Set -value on radiobuttons.
3621 (lassign): New proc.
3622 (add_breakpoint_frame): Use lassign, not series of assignments.
3623 (decr): Made faster.
3624 (interactive_cmd): Use "see", not "yview".
3625 (not_implemented_yet): Use warning bitmap.
3626 (update_expr): Don't allow $expr to be evalled by Tcl.
3627 (create_expr_window): Don't use "focus".
3628 (delete_char, delete_line): Define globally.
3629 (delete_line, delete_char, create_command_window, update_autocmd,
3630 build_framework, create_asm_win, create_file_win): Use "see", not
3631 "yview".
3632 (create_copyright_window, center_window, bind_widget_after_class):
3633 New procs.
3634 (FSBox,create_command_window, create_autocmd_window): Binding
3635 changes for Tk4.
3636 (textscrollproc): Define globally.
3637 (build_framework): tk_menuBar no longer needed. Keys Prior, Next,
3638 Home, End, Up, and Down are all defined by Tk.
3639 (apply_filespec): Use error bitmap in dialog.
3640 (files_command): Don't use tk_listboxSingleSelect.
3641 (files_command): Don't use "uniq" to remove duplicates from a
3642 list.
3643 (update_assembly): Use lassign.
3644 (create_asm_win): Removed redundant bindings.
3645 (listing_window_button_1, file_popup_menu): Use tk_popup.
3646 (ButtonRelease-1 binding): Just remove tag from window; rest
3647 handled by Tk.
3648
3649 * gdbtk.c (gdbtk_query): Use Tcl_Merge to provide quoting.
3650 (call_wrapper): Use Tcl_Eval, not Tcl_VarEval.
3651 (gdbtk_call_command): Ditto.
3652 end-sanitize-gdbtk
3653
3654 Tue Jan 9 09:33:53 1996 Jeffrey A Law (law@cygnus.com)
3655
3656 * hpread.c (hpread_build_psymtabs): Finish Jan 4th
3657 enum namespace -> enum_namespace change.
3658
3659 Tue Jan 9 04:44:47 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
3660
3661 * ch-exp.c (parse_primval): In case ARRAY, add missing
3662 FORWARD_TOKEN ().
3663
3664 Mon Jan 8 13:29:34 1996 Stan Shebs <shebs@andros.cygnus.com>
3665
3666 * remote-mips.c (mips_receive_header): Recognize \012 instead
3667 of \n, but write \n when program sends a \012.
3668 * ser-mac.c (mac_input_buffer): Increase size of buffer.
3669
3670 Mon Jan 8 12:00:40 1996 Jeffrey A Law (law@cygnus.com)
3671
3672 * infptrace.c (initialize_infptrace): Move function out of
3673 #ifdef conditional; put code within the function inside an
3674 #ifdef conditional.
3675
3676 * buildsym.c (end_symtab): Remove sort_pending and sort_linevec
3677 arguments. Sorting is now dependent on OBJF_REORDERED. All
3678 callers/references changed.
3679 * dbxread.c (read_ofile_symtab): Correctly determine value for
3680 last_source_start_addr for reordered executables.
3681 (process_one_symbol): Handle N_FUN with no name as an end of
3682 function marker.
3683 * partial-stab.h (case N_FN, N_TEXT): Don't assume CUR_SYMBOL_VALUE
3684 is the high text address for a psymtab.
3685 (case N_SO): Likewise.
3686 (case N_FUN): Handle N_FUN with no name as an end of function
3687 marker.
3688 * minsyms.c (lookup_minimal_symbol_by_pc): Examine all symbols
3689 at the same address rather than a random subset of them.
3690 * coffread.c (coff_symfile_init): Set OBJF_REORDERED.
3691 * elfread.c (elf_symfile_init): Similarly.
3692 * somread.c (som_symfile_init): Similarly.
3693 * xcoffread.c (xcoff_symfile_init): Similarly.
3694
3695 Fri Jan 5 17:46:01 1996 Stu Grossman (grossman@cygnus.com)
3696
3697 * stack.c (print_stack_frame print_frame_info) symmisc.c
3698 (dump_symtab): Change RETURN_MASK_ERROR to RETURN_MASK_ALL so
3699 that catch_errors doesn't get blindsided by QUIT and lose the
3700 cleanup chain. This fixes a problem where ^C while in a
3701 user-defined command sometimes leaves instream NULL and causes a
3702 segfault in command_loop.
3703
3704 Fri Jan 5 13:59:16 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
3705
3706 * configure.in, configure: Add `-ldl -lw' for Solaris linking.
3707
3708 Fri Jan 5 12:02:00 1996 Steve Chamberlain <sac@slash.cygnus.com>
3709
3710 * config/sh/sh.mt, config/powerpc/*.mt, config/pa/hppapro.mt,
3711 config/m68k/monitor.mt, config/h8500/h8500.mt, config/h8300/h8300.mt:
3712 srec.o renamed to dsrec.o.
3713
3714 Thu Jan 4 16:04:54 1996 Stu Grossman (grossman@cygnus.com)
3715
3716 * breakpoint.c (remove_breakpoint): Change error to warning so
3717 that hardware watchpoint removal problems won't leave breakpoint
3718 traps in the target.
3719 start-sanitize-gdbtk
3720 * configure configure.in: Make --enable-gdbtk be the default.
3721 end-sanitize-gdbtk
3722 * remote-e7000.c (e7000_insert_breakpoint,
3723 e7000_remove_breakpoint): Use e7000 based breakpoints, not memory
3724 breakpoints.
3725 * (e7000_wait): Adjust PC back by two when we see a breakpoint to
3726 compensate for e7000 maladjustment.
3727 * sparcl-tdep.c (sparclite_check_watch_resources): Fix logic bug
3728 which prevented hardware watchpoints from working.
3729
3730 Thu Jan 4 10:44:17 1996 Fred Fish <fnf@cygnus.com>
3731
3732 * infptrace.c (udot_info): New function.
3733 (PT_*): Define each individually if that one is not defined.
3734 * rs6000-nat.c (kernel_u_size): New function
3735 Include <sys/user.h> for "struct user"
3736 * alpha-nat.c (kernel_u_size): New function.
3737 Include <sys/user.h> for "struct user"
3738 * sparc-nat.c (kernel_u_size): New function.
3739 Include <sys/user.h> for "struct user"
3740 * i386b-nat.c (kernel_u_size): New function.
3741 * i386v-nat.c (kernel_u_size): New function.
3742 * config/i386/nm-fbsd.h (KERNEL_U_SIZE): Define.
3743 (kernel_u_size): Declare.
3744 * config/i386/nm-linux.h (KERNEL_U_SIZE): Define.
3745 (kernel_u_size): Declare.
3746 * config/sparc/nm-sun4os4.h (KERNEL_U_SIZE): Define.
3747 (kernel_u_size): Declare.
3748 * config/alpha/nm-osf2.h (KERNEL_U_SIZE): Define.
3749 (kernel_u_size): Declare.
3750 * config/rs6000/nm-rs6000.h (KERNEL_U_SIZE): Define.
3751 (kernel_u_size): Declare.
3752
3753 Thu Jan 4 11:00:01 1996 steve chamberlain <sac@slash.cygnus.com>
3754
3755 * mdebugread.c (mylookup_symbol): enum namespace becomes
3756 enum_namespace type.
3757 * symfile.c (add_psymbol_to_list)
3758 (add_psymbol_addr_to_list): Ditto.
3759 * symtab.c (lookup_partial_symbol): Ditto.
3760 (lookup_symbol): Ditto.
3761 (lookup_block_symbol): Ditto.
3762 * win32-nat.c (handle_load_dll): Use incoming dll base.
3763 (child_wait): Catch DLL load errors.
3764 (create_child_inferior): Translated between paths correctly.
3765
3766 Wed Jan 3 23:13:53 1996 Fred Fish <fnf@cygnus.com>
3767
3768 * i386v4-nat.c (supply_gregset, fill_gregset): Subtract NUM_FREGS
3769 from NUM_REGS to get number of general registers that we care about.
3770 * config/i386/tm-i386.h (REGISTER_BYTES): Define in terms
3771 of number of general regs and number of floating point regs.
3772
3773 Wed Jan 3 19:49:54 1996 steve chamberlain <sac@slash.cygnus.com>
3774
3775 * config/i386/tm-win32.h (IN_SOLIB_CALL_TRAMPOLINE): New.
3776 (SKIP_TRAMPOLINE_CODE): New.
3777 * config/i386/xm-win32.h (CANT_FORK): Deleted.
3778 (SLASH*) Changed to use unix style slash.
3779 * symtab.h (namespace enum): becomes typedef to avoid namespace
3780 collision in C++.
3781 * infcmd.c (path_command): Use empty string if PATH name not set.
3782 * i386-tdep.c (skip_trampoline_code): New function.
3783 * srec.c: Renamed dsrec.c to avoid filename collision.
3784 * Makefile.in: Cope with renaming.
3785
3786 Wed Jan 3 13:09:04 1996 Fred Fish <fnf@cygnus.com>
3787
3788 * symmisc.c (print_objfile_statistics): Print memory use statistics
3789 for objfile psymbol, symbol, and type obstacks.
3790
3791 Tue Jan 2 13:41:14 1996 Stan Shebs <shebs@andros.cygnus.com>
3792
3793 * config/mips/nm-irix5.h: Restore.
3794 (TARGET_HAS_HARDWARE_WATCHPOINTS, etc): Define as for Irix 4;
3795 from Lee Iverson <leei@ai.sri.com>.
3796 * config/mips/irix5.mh (NAT_FILE): Use nm-irix5.h.
3797 * config/mips/irix[345].mh (MUNCH_DEFINE): Remove.
3798
3799 For older changes see ChangeLog-95
3800 \f
3801 Local Variables:
3802 mode: indented-text
3803 left-margin: 8
3804 fill-column: 74
3805 version-control: never
3806 End: