* README: Update for 4.16 release.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 Fri Apr 12 13:19:27 1996 Fred Fish <fnf@cygnus.com>
2
3 * README: Update for 4.16 release.
4 * configure.in (AC_CHECK_FUNCS): Also check for sbrk.
5 * configure: Regenerate with autoconf.
6 * config.in: Regenerate with autoheader.
7 * main.c (main): Only use sbrk() when HAVE_SBRK is defined.
8 * top.c (command_loop): Ditto.
9
10 Fri Apr 12 09:45:29 1996 Stu Grossman (grossman@critters.cygnus.com)
11
12 * defs.h: Define TARGET_{FLOAT DOUBLE LONG_DOUBLE}_FORMAT
13 defaults for bi-endian targets. Replace function pointers for
14 floatformat routines with macros. No need for these to be runtime
15 selectable.
16 * findvar.c: Get rid of floatformat function pointers. Use
17 macros in extract_floating and store_floating.
18 * remote-nindy.c (nindy_fetch_registers nindy_store_registers):
19 Use floatformat macros.
20
21 Thu Apr 11 21:28:02 1996 Fred Fish <fnf@cygnus.com>
22
23 From: Miles Bader <miles@gnu.ai.mit.edu>
24 * configure.in (AC_CHECK_HEADERS): check for endian.h.
25 Use AC_CHECK_TOOL to find AR & RANLIB. Add AC_PROG_AWK.
26 Add host & target cases for i[345]86-*-gnu*.
27 * config.in: Regenerate with autoheader.
28 * configure: Regenerate with autoconf.
29 * Makefile.in (AR, AWK): Set from corresponding autoconf substs.
30 (init.c): Don't scan mig-generated files.
31 * defs.h (endian.h): Include if HAVE_ENDIAN_H defined.
32 * config/nm-m3.h (ATTACH_NO_WAIT): Define.
33 * infcmd.c (attach_command): Use "#ifndef ATTACH_NO_WAIT"
34 rather than "#ifndef MACH".
35
36 Thu Apr 11 18:49:42 1996 Stan Shebs <shebs@andros.cygnus.com>
37
38 * remote.c (remotewritesize): New GDB variable, controls size
39 of memory packets sent to the target.
40
41 Thu Apr 11 13:47:52 1996 Stu Grossman (grossman@critters.cygnus.com)
42
43 * dcache.c: Add prototypes. Make many functions static.
44 * (dcache_peek dcache_fetch dcache_poke): Make dcache_fetch and
45 dcache_poke call dcache_xfer_memory directly in order to fix
46 problems with turning off dcache. dcache_peek is now unnecessary,
47 so it goes away.
48
49 * defs.h: Define new macros HOST_{FLOAT DOUBLE LONG_DOUBLE}_FORMAT
50 and TARGET_{FLOAT DOUBLE LONG_DOUBLE}_FORMAT to specify a pointer
51 to a struct floatformat. This allows for better handling of
52 targets whose floating point formats differ from the host by more
53 than just byte order.
54 * (floatformat_to_long_double floatformat_from_long_double):
55 Prototypes for new functions in utils.c.
56 * (floatformat_to_doublest floatformat_from_doublest): Prototypes
57 for pointers to floating point conversion functions. The actual
58 function uses either double or long double if the host supports it.
59 * findvar.c (floatformat_to_doublest floatformat_from_doublest):
60 Initialize to point at correct function depending on HAVE_LONG_DOUBLE.
61 * (extract_floating store_floating): Rewrite. Now, if host fp
62 format is the same as the target, we just do a copy. Otherwise,
63 we call floatformat_{to from}_doublest.
64 * remote-nindy.c (nindy_xfer_inferior_memory): Change param
65 `write' to `should_write'.
66 * utils.c (floatformat_to_long_double
67 floatformat_from_long_double): New routines that implement long
68 double versions of functions in libiberty/floatformat.c.
69 * config/i960/tm-i960.h (TARGET_LONG_DOUBLE_FORMAT): Define this for
70 i960 extended real (80 bit) numbers.
71 * nindy-share/nindy.c (ninMemGet ninMemPut): Return number of bytes
72 actually read or written.
73
74 Wed Apr 10 02:56:06 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
75
76 * ch-valprint.c (chill_val_print): Remove call to calculate_array_length.
77 (calculate_array_length): Move function from here ...
78
79 * ch-exp.c (calculate_array_length): ... to here.
80 (parse_primval): If we have a symbol with an array type
81 and the length is 0, call calculate_array_length.
82
83 Tue Apr 9 01:23:05 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
84
85 * eval.c (evaluate_subexp_standard): In case of TYPE_CODE_SET:
86 Add some checks for powerset compatibility.
87
88 * valops.c (value_slice): Use lowbound instead of lowerbound for
89 call to slice_range_type to get correct bounds.
90
91 Mon Apr 8 12:53:56 1996 Fred Fish <fnf@cygnus.com>
92
93 * Makefile.in (scm-exp.o, scm-lang.o, scm-valprint.o): Add targets and
94 dependencies.
95 * scm-lang.c (gdb_string.h): Include.
96 * objfiles.c (add_to_objfile_sections): Cast second arg of obstack_grow
97 call to correct type (char *).
98 * cp-valprint.c (cp_print_static_field): Ditto.
99 * somsolib.c (som_solib_create_inferior_hook): Add a declaration
100 for external find_unwind_entry function (from hppa-tdep.c).
101 * remote-pa.c (remote_write_bytes, remote_read_bytes): Change
102 type of second arg to "char *" to be type compatible with
103 dcache.
104 (remote_wait): Cast second arg to strtol to correct type.
105 * hppa-tdep.c (compare_unwind_entries): Change argument types to
106 "const void *" to be type compatible with qsort, and then
107 assign to local args prior to use.
108
109 Mon Apr 8 15:35:52 1996 Jeffrey A Law (law@cygnus.com)
110
111 * infptrace.c (kill_inferior): Remove call to "kill"; update
112 comments.
113
114 Mon Apr 8 14:05:07 1996 Geoffrey Noer <noer@cygnus.com>
115
116 * remote-e7000.c: don't append :23 to target port if __WIN32__
117 is defined (it's WinGDB).
118
119 Sun Apr 7 22:34:29 1996 Fred Fish <fnf@cygnus.com>
120
121 From: Miles Bader <miles@gnu.ai.mit.edu>
122 * gnu-nat.c, gnu-nat.h, msg.defs, exc_request.defs, i386gnu-nat.c,
123 msg_reply.defs, notify.defs, process_reply.defs, reply_mig_hack.awk,
124 config/nm-gnu.h, config/i386/{i386gnu.mh, i386gnu.mt, nm-gnu.h,
125 m-i386gnu.h, xm-i386gnu.h}: New files for GNU hurd.
126
127 Sun Apr 7 13:32:41 1996 Fred Fish <fnf@cygnus.com>
128
129 * configure.in (case host): Add i386sco5 host.
130 * configure: Regenerate.
131
132 From: Robert Lipe <robertl@dgii.com>
133 Add support for SCO OpenServer 5 (a.k.a. 3.2v5*) This
134 target is an SVR3.2 with COFF, ELF, and shared libes, but
135 no /proc.
136 * config/i386/i386sco5.mh: New file.
137 * config/i386/nm-i386sco5.h: New file.
138
139 Sat Apr 6 08:55:22 1996 Fred Fish <fnf@cygnus.com>
140
141 * bcache.c (bcache): When size of chunk to cache is exactly equal to
142 BCACHE_MAXLENGTH, stash chunk as unique copy.
143
144 Sat Apr 6 00:46:26 1996 Fred Fish <fnf@cygnus.com>
145
146 * symfile.c (INLINE_ADD_PSYMBOL): Remove ifdef.
147 (add_psymbol_to_list): Add an arg for passing CORE_ADDR values and
148 use it, rather than calling add_psymbol_addr_to_list.
149 (add_psymbol_addr_to_list): Delete.
150 (add_psymbol_to_list): Make psymbol static to avoid random data in
151 gaps due to alignment of structure members.
152 * symfile.h (INLINE_ADD_PSYMBOL, ADD_PSYMBOL_TO_LIST,
153 ADD_PSYMBOL_ADDR_TO_LIST): Remove. Real world tests show no
154 performance improvements by inlining via complicated macros and
155 they just make gdb larger and harder to maintain.
156 * dwarfread.c (add_enum_psymbol): Replace ADD_PSYMBOL_TO_LIST
157 and/or ADD_PSYMBOL_ADDR_TO_LIST macro(s) with call to
158 add_psymbol_to_list with appropriate long or CORE_ADDR args.
159 (add_partial_symbol): Ditto.
160 * partial-stab.h: Ditto.
161 * os9kread.c (read_os9k_psymtab): Ditto
162 * mdebugread.c (parse_partial_symbols): Ditto.
163 (handle_psymbol_enumerators): Ditto.
164 (demangle.h): Include.
165 * hpread.c (hpread_build_psymtabs): Ditto.
166 (hpread_build_psymtabs): Ditto.
167 (demangle.h): Include
168
169 start-sanitize-gdbtk
170 Fri Apr 5 13:44:40 1996 Stan Shebs <shebs@andros.cygnus.com>
171
172 * gdbtk.c (running_now): New global variable.
173 (gdb_cmd): Test it before executing any command.
174 (gdbtk_call_command): Set it when inferior is running.
175 * gdbtk.tcl (gdbtk_tcl_busy, gdbtk_tcl_idle): Enable and
176 disable interaction with command window's text appropriately.
177
178 Fri Apr 5 13:25:42 1996 Michael Meissner <meissner@tiktok.cygnus.com>
179
180 * gdbtk.c (SIOCSPGRP, linux): If on Linux, undef SIOCSPGRP, since
181 some versions of the kernel don't support it.
182 end-sanitize-gdbtk
183
184 Thu Apr 4 20:16:55 1996 Fred Fish <fnf@cygnus.com>
185
186 * configure.in: Check for setpgid function.
187 * config.in: Regenerate with autoheader.
188 * configure: Regenerate with autoconf.
189 * inflow.c (_initialize_inflow): Only try to use _SC_JOB_CONTROL
190 if it is actually defined.
191 (gdb_setpgid): Use HAVE_SETPGID.
192 * ch-exp.c: Change include of <string.h> to "gdb_string.h".
193 * c-exp.y, f-exp.y, m2-exp.y: Ditto.
194 * c-exp.y, serial.c: Include <ctype.h>.
195 * config/m68k/nm-news.h: Add typedef for pid_t which is
196 apparently missing from <sys/types.h>. Enclose entire
197 file in NM_NEWS_H ifndef and define when included.
198 * config/mips/nm-news-mips.h: Ditto.
199 * config/m68k/tm-m68k.h (REGISTER_CONVERT_TO_VIRTUAL,
200 REGISTER_CONVERT_TO_RAW): Change name of temporary variable.
201
202 Thu Apr 4 19:04:18 1996 Stan Shebs <shebs@andros.cygnus.com>
203
204 * arm-xdep.c: Move native-specific code to here from arm-tdep.c.
205 * arm-tdep.c (arm_apcs_32): New global.
206 (arm_addr_bits_remove, arm_saved_pc_after_call,
207 arm_push_dummy_frame, arm_pop_frame): New functions.
208 (arm_skip_prologue): Updated version from Richard Earnshaw.
209 (_initialize_arm_tdep): Add set/show "apcs32".
210 * config/arm/tm-arm.h (ADDR_BITS_REMOVE): Call
211 arm_addr_bits_remove.
212 (SAVED_PC_AFTER_CALL): Call arm_saved_pc_after_call.
213 (frame_find_saved_regs): Declare properly.
214 (PUSH_DUMMY_FRAME): Call arm_push_dummy_frame.
215 (POP_FRAME): Call arm_pop_frame, use ADDR_BITS_REMOVE instead of
216 explicit mask.
217 * config/arm/nm-arm.h: New file.
218 * config/arm/xm-arm.h (KERNEL_U_ADDR, FETCH_INFERIOR_REGISTERS):
219 Move definitions to nm-arm.h.
220 * config/arm/arm.mh (NAT_FILE): Define.
221
222 * symfile.c (generic_load): Initialize data_count properly.
223
224 Thu Apr 4 17:17:53 1996 Fred Fish <fnf@cygnus.com>
225
226 * symmisc.c (print_objfile_statistics): Print memory used by
227 psymbol cache obstack.
228
229 Thu Apr 4 15:43:07 1996 Stan Shebs <shebs@andros.cygnus.com>
230
231 * symfile.c (report_transfer_performance): New function.
232 (generic_load): Call it to report transfer rate.
233 * remote-e7000.c (e7000_load): Ditto.
234
235 Mon Apr 1 16:31:00 1996 Stan Shebs <shebs@andros.cygnus.com>
236
237 * mpw-make.sed: Change references to config.h to be in objdir,
238 edit out rules to rebuild config.h.
239
240 Mon Apr 1 08:32:23 1996 Fred Fish <fnf@cygnus.com>
241
242 * hppa-tdep.c (hppa_pop_frame): Call clear_proceed_status before
243 proceeding.
244
245 Sun Mar 31 16:15:43 1996 Fred Fish <fnf@.cygnus.com>
246
247 * hppah-nat.c (store_inferior_registers, store_inferior_registers,
248 fetch_register, child_xfer_memory): Use call_ptrace function supplied
249 by infptrace.c rather than calling ptrace directly.
250
251 Sun Mar 31 15:39:00 1996 Stan Shebs <shebs@andros.cygnus.com>
252
253 * mon960-rom.c: Cleanups and elimination of unused code,
254 clarify documentation string.
255 (mon960_serial, mon960_ttyname): Remove.
256 * config/i960/tm-mon960.h (ADDITIONAL_OPTIONS,
257 ADDITIONAL_OPTION_CASES, ADDITIONAL_OPTION_HELP): Remove.
258
259 Sat Mar 30 11:00:22 1996 Fred Fish <fnf@cygnus.com>
260
261 * configure.in: Check whether printf family supports printing
262 long doubles or not and define PRINTF_HAS_LONG_DOUBLE if so.
263 * acconfig.h: Provide default undef for PRINTF_HAS_LONG_DOUBLE.
264 * configure: Regenerate.
265 * valprint.c (print_floating): Use PRINTF_HAS_LONG_DOUBLE.
266 * c-exp.y (parse_number): Use PRINTF_HAS_LONG_DOUBLE.
267 * configure.in: Fix have_gregset and have_fpregset autoconf
268 variable names so that they match the pattern required to
269 cache them.
270
271 Fri Mar 29 21:39:56 1996 Fred Fish <fnf@cygnus.com>
272
273 * core-aout.c (fetch_core_registers): Cast core_reg_size to int
274 before testing against reg_ptr.
275 * eval.c (evaluate_subexp_standard): Cast type of
276 TYPE_FN_FIELD_VOFFSET to int.
277 * findvar.c (extract_signed_integer, extract_unsigned_integer,
278 extract_long_unsigned_integer): Cast type of sizeof to int.
279 * values.c (unpack_field_as_long, modify_field): Ditto.
280 * valops.c (value_assign, call_function_by_hand): Ditto.
281 * infcmd.c (do_registers_info): Ditto.
282 * ser-tcp.c (tcp_open): Ditto.
283 * remote.c (putpkt): Ditto.
284 * dcache.c (dcache_peek): Ditto.
285 * dcache.c (dcache_poke): Ditto.
286 * m2-exp.y (yylex): Ditto.
287 * gnu-regex.c (re_match_2): Ditto.
288 * f-lang.c (ADD_BF_SYMNUM, saved_bf_list_end, tmp_bf_ptr): Ifdef
289 out unused macro definition and variables.
290 * inftarg.c (proc_wait): Move from main.c to here, and make static.
291 * valprint.c (val_print_string): Change bufsize from int to unsigned.
292 * main.c (wait.h): Include.
293 * top.c (command_line_input): Remove unused variable "c".
294 * f-typeprint.c (f_type_print_varspec_prefix): Add missing enum
295 value TYPE_CODE_TYPEDEF to switch statement.
296 (f_type_print_varspec_suffix): Add missing enum value
297 TYPE_CODE_TYPEDEF to switch statement.
298 * ch-exp.c (parse_primval): Add remaining enumeration values to
299 switch statement, with no specific action.
300 (ch_lex): Add LOC_UNRESOLVED in switch statement.
301 (pushback_token): Ifdef out, since code using it is ifdef'd out.
302 * stabsread.c (cleanup_undefined_types): Remove unused label
303 "badtype".
304 * objfiles.h (print_symbol_bcache_statistics): Add prototype.
305 * maint.c (objfiles.h): Include.
306 (maintenance_print_statistics): Remove unused variable "temp".
307 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Remove
308 unused variable "found_file_symbol".
309 * m2-exp.y (yylex): Add LOC_UNRESOLVED case to switch.
310 * language.c (lang_bool_type): Use existing function local type
311 variable rather than create block local variables.
312 * solib.c (disable_break): Enclose in ifndef SVR4_SHARED_LIBS.
313 * infptrace.c (wait.h, command.h): Include.
314 * ser-tcp.c (gdb_string.h): Include
315 * i386-tdep.c (codestream_seek): Change "place" to CORE_ADDR.
316 (i386_get_frame_setup): Change "pc" from int to CORE_ADDR.
317 * command.c (complete_on_enum): Make assignment used as truth value
318 explictly check against NULL.
319 (wait.h): Include.
320 * infrun.c (wait_for_inferior): Ifdef out prologue_pc since code
321 that uses it is ifdef'd out.
322 * parser-defs.h: Add prototype for write_dollar_variable.
323 * infrun.c: Add prototype for write_pc_pid.
324 * breakpoint.h: Add prototype for re_enable_breakpoints_in_shlibs.
325 * symmisc.c (bcache.h): Include.
326 * bcache.h: Add prototype for print_bcache_statistics.
327 * symfile.c: Include <time.h>.
328 * printcmd.c (print_scalar_formatted): Change len to unsigned int.
329 * valarith.c (value_equal): Cast result of TYPE_LENGTH to int.
330 * valarith.c (value_binop): Change result_len, promoted_len1,
331 and promoted_len2 to unsigned int.
332 * valarith.c (value_subscripted_rvalue): Change elt_offs and
333 elt_size to unsigned int.
334 * valops.c (value_array): Change typelength to unsigned int.
335 (destructor_name_p): Change len to unsigned int.
336 * scm-lang.h (scm_parse): Add prototype for scm_unpack.
337 * symfile.c (decrement_reading_symtab): Change return type to void.
338 * valarith.c (value_subscript): Remove unused variable "word".
339 (value_subscript): Remove unused variable "tint".
340 * valops.c (auto_abandon): Ifdef out, since code using it is also
341 ifdef'd out.
342 * eval.c (init_array_element): Remove unused variable "val".
343 * Makefile.in (values.o): Depends on scm-lang.h.
344 (command.o): Depends upon wait_h.
345 (ser-tcp.o): Depends upon gdb_string.h.
346 (infptrace.o): Depends upon wait_h and command_h.
347 (maint.o): Depends on objfiles.h and symfile.h.
348 * values.c (allocate_repeat_value): Remove unused variable
349 "element_type".
350 (scm-lang.h): Include.
351 * breakpoint.c (create_longjmp_breakpoint): Enclose in
352 GET_LONGJMP_TARGET define, unused otherwise.
353 * config/i386/nm-linux.h: Add prototypes for i386_insert_watchpoint,
354 i386_remove_watchpoint and i386_stopped_by_watchpoint.
355
356 Thu Mar 28 12:53:19 1996 Doug Evans <dje@canuck.cygnus.com>
357
358 * configure.in (sparc64-*-solaris2*): Delete.
359 Stick with sparc-*-solaris2*.
360 * configure: Regenerated.
361
362 Thu Mar 28 06:51:26 1996 Fred Fish <fnf@cygnus.com>
363
364 * valops.c (value_assign): Make copy of internal variable value
365 before returning it as a new value, since it is owned by the
366 internal variable and will be freed along with it.
367
368 Wed Mar 27 08:36:17 1996 Jeffrey A Law (law@cygnus.com)
369
370 * From Peter Schauer.
371 * breakpoint.c (breakpoint_re_set_one): Keep temporary
372 breakpoints bp_until, bp_finish, bp_watchpoint_cope, bp_call_dummy
373 and bp_step_resume in case breakpoint_re_set_one is called due
374 to a step over a dlopen call.
375 * infrun.c (wait_for_inferior): Always remove breakpoints from
376 inferior in BPSTAT_WHAT_CHECK_SHLIBS case.
377
378 Tue Mar 26 13:15:32 1996 Fred Fish <fnf@cygnus.com>
379
380 * config/mips/tm-mips.h (COERCE_FLOAT_TO_DOUBLE): Only prefer
381 non-prototyped case over prototyped case for C.
382 * config/pa/tm-hppa.h (COERCE_FLOAT_TO_DOUBLE): Ditto.
383
384 Sat Mar 23 17:24:28 1996 Fred Fish <fnf@cygnus.com>
385
386 * os9kread.c (os9k_process_one_symbol): Note nonportable
387 assumption that an int can hold a char *.
388
389 * bcache.h (struct hashlink): Wrap data[] inside union with
390 double to force longest alignment.
391 (BCACHE_DATA): New macro to access data[].
392 (BCACHE_ALIGNMENT): New macro to get offset to data[].
393 * bcache.c (lookup_cache, bcache): Use BCACHE_DATA to get
394 address of cached data. Use BCACHE_ALIGNMENT to compute
395 amount of space to allocate for each hashlink struct.
396
397 Sat Mar 23 12:14:02 1996 Fred Fish <fnf@cygnus.com>
398
399 * ch-lang.c (evaluate_subexp_chill): Fix typo.
400
401 Thu Mar 21 08:27:19 1996 Fred Fish <fnf@cygnus.com>
402
403 * Makefile.in (VERSION): Bump version to 4.15.3
404
405 Thu Mar 21 10:56:41 1996 Ian Lance Taylor <ian@cygnus.com>
406
407 * config.in: Rename from config.h.in.
408 * configure.in: Call AC_CONFIG_HEADER with config.h:config.in.
409 Change CONFIG_HEADERS test in AC_OUTPUT accordingly.
410 * configure: Rebuild.
411 * Makefile.in (stamp-h): Depend upon config.in, not config.h.in.
412 Set CONFIG_HEADERS to config.h:config.in.
413
414 Tue Mar 19 12:47:51 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
415
416 * partial-stab.h (case N_ENDM): Finish current partial symbol
417 table for Solaris 2 cc.
418
419 Tue Mar 19 10:39:15 1996 Jeffrey A Law (law@cygnus.com)
420
421 * rs6000-nat.c (exec_one_dummy_insn): Don't clobber the
422 PC in the registers array. From Peter Schauer.
423
424 Mon Mar 18 13:47:09 1996 Fred Fish <fnf@cygnus.com>
425
426 * symfile.c (reread_symbols): Reinitialize bcache struct
427 members to zero using memset. Also use memset to reinit
428 global_psymbols and static_psymbols, rather than explicitly
429 resetting each structure member.
430
431 Sat Mar 16 19:47:36 1996 Fred Fish <fnf@cygnus.com>
432
433 * configure.in: Add fragment to create stamp-h.
434
435 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
436 * configure.in (AC_CHECK_HEADERS): Check for link.h.
437 * configure: Regenerate with autoconf.
438 * config.h.in: Regenerate with autoheader.
439 * config/i386/nm-linux.h: Include solib.h only if HAVE_LINK_H
440 is defined.
441 * solib.c: Exclude most of the code if HAVE_LINK_H is not defined.
442 * config/i386/linux.mh: Reinstate XM_CLIBS, it is needed for
443 older a.out based systems.
444
445 Sat Mar 16 16:45:43 1996 Fred Fish <fnf@cygnus.com>
446
447 * config.h.in: New file.
448 * acconfig.h: New file, for autoheader.
449 * configure.in (AC_CONFIG_HEADER): Add, generate config.h.
450 * configure: Regenerate.
451 * Makefile.in (defs_h): Add config.h
452 (distclean): Remove config.h and stamp-h during distclean.
453 (config.h, stamp-h): New targets to remake config.h when necessary.
454 * defs.h (config.h): Include before any other includes or defines.
455 * i386-tdep.c (gdb_string.h): Move include after include of defs.h.
456 * i386v4-nat.c (defs.h): Include before testing HAVE_SYS_PROCFS_H.
457
458 Sat Mar 16 14:55:27 1996 Fred Fish <fnf@cygnus.com>
459
460 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
461 * Makefile.in (INSTALLED_LIBS): Make sure that @LIBS@ will not
462 result in an empty line, to work around a bug in native Ultrix 4.4
463 and OSF/1-3.2C make.
464
465 Sat Mar 16 13:33:17 1996 Fred Fish <fnf@cygnus.com>
466
467 * configure.in: Add gdbserver to configdirs under linux.
468 * configure: Regenerate.
469
470 Fri Mar 15 12:06:58 1996 J.T. Conklin <jtc@rtl.cygnus.com>
471
472 * config/i386/nm-nbsd.h (FLOAT_INFO): Comment out.
473 * config/i386/tm-nbsd.h (NUM_REGS): Define.
474
475 Thu Mar 14 10:31:18 1996 Jeffrey A Law (law@cygnus.com)
476
477 * solib.c (solib_break_names): Add _r_debug_state for
478 vanilla SVR4 implementations. From Peter Schauer.
479
480 Mon Mar 11 14:24:57 1996 Dawn Perchik <dawn@critters.cygnus.com>
481
482 * mon960-rom.c: New file; support mon960 rom monitor on i960.
483 * monitor.c (monitor_debug): Change remotedebug to buffer strings.
484 * monitor.c (monitor_open): Add test for flag MO_NO_ECHO_ON_OPEN before
485 epecting prompt and echo during open.
486 * monitor.c (monitor_stop): Add test for flag MO_SEND_BREAK_ON_OPEN to
487 determine if break should be sent as stop command.
488 * monitor.h: Add flags MO_NO_ECHO_ON_OPEN and MO_SEND_BREAK_ON_OPEN.
489 * i960-tdep.c (mon960_frame_chain_valid): New function for getting
490 stack frame on mon960.
491 * Makefile.in: Add mon960 files.
492 * configure.in: Changed i960-*-coff* and i960-*-elf* to target mon960;
493 added i960-nindy-coff* and i960-nindy-elf* for target nindy.
494 * configure: Regenerated.
495 * config/i960/mon960.mt, config/i960/tm-mon960.h: New files;
496 support mon960 rom monitor on i960.
497
498 Mon Mar 11 11:02:47 1996 Steve Chamberlain <sac@slash.cygnus.com>
499
500 With Michael Snyder:
501 * i386-tdep.c (skip_trampoline_code): Fix strncmp length.
502 * win32-nat.c (CHECK, DEBUG*, debug_*): New.
503 (handle_load_dll): Don't reload symbols.
504 (handle_exception): Use the DEBUG_* names.
505 (child_wait): Add DEBUG_* code.
506 (_initialize_inftarg): Add new commands to set debug_ names.
507
508 Mon Mar 11 09:19:58 1996 Jeffrey A Law (law@cygnus.com)
509
510 * From Peter Schauer:
511 * breakpoint.c (insert_breakpoints): Use ALL_BREAKPOINTS_SAFE.
512 (bpstat_stop_status): Likewise.
513 (remove_solib_event_breakpoints): Likewise.
514 (clear_momentary_breakpoints): Likewise.
515 (re_enable_breakpoints_in_shlibs): Don't reenable a breakpoint
516 if we still can't read the memory for that breakpoint.
517 (mention): Add bp_shlib_event case to keep gcc quiet.
518
519 Fri Mar 8 12:08:12 1996 Jeffrey A Law (law@cygnus.com)
520
521 * breakpoint.h (enum enable): New enum shlib_disabled for
522 shared library breakpoints that have been temporarily disabled.
523 * breakpoint.c: Handle temporarily disabled shared library
524 breakpoints like disabled breakpoints in most places.
525 (insert_breakpoints): Use shlib_disabled to indicate
526 that an unsettable breakpoint is only temporarily disabled.
527 (re_enable_breakpoints_in_shlibs): New function.
528 * corelow.c (solib_add_stub): After adding shared libraries,
529 try to reenable any temporarily disabled breakpoints.
530 * infcmd.c (attach_command): Likewise.
531 * infrun.c (wait_for_inferior): Likewise.
532
533 Fri Mar 8 11:41:25 1996 Ian Lance Taylor <ian@cygnus.com>
534
535 * defs.h (extract_long_unsigned_integer): Declare.
536 * findvar.c (extract_long_unsigned_integer): New function.
537 * printcmd.c (print_scalar_formatted): Use it.
538 * valprint.c (val_print_type_code_int): Likewise.
539
540 Thu Mar 7 17:40:50 1996 Stan Shebs <shebs@andros.cygnus.com>
541
542 * infcmd.c (do_registers_info): Ignore anonymous registers.
543 * sh-tdep.c (set processor): New command to set specific
544 processor type.
545 (sh_reg_names, sh3_reg_names): Arrays of register names for
546 SH and SH3 processors.
547 (sh_set_processor_type): New function.
548 * sh3-rom.c (sh3_open): Call it.
549 (sh3_regname): Add names of all the bank registers.
550 (sh3_supply_register): Clean up formatting.
551 * config/sh/tm-sh.h (NUM_REGS, NUM_REALREGS): Increase to include
552 bank registers.
553 (REGISTER_NAMES): Add names of bank registers.
554 (FP15_REGNUM): Define.
555 (REGISTER_VIRTUAL_TYPE): Use it.
556 * monitor.c: Clean up some comments.
557
558 Thu Mar 7 12:09:51 1996 J.T. Conklin <jtc@rtl.cygnus.com>
559
560 * i386b-nat.c: Revert part of Mar 5 change. FreeBSD collapsed the
561 s* and t* symbols too.
562
563 Thu Mar 7 15:18:51 1996 James G. Smith <jsmith@cygnus.co.uk>
564
565 * symfile.c (generic_load): Avoid division by zero.
566
567 Wed Mar 6 17:57:59 1996 Jeffrey A Law (law@cygnus.com)
568
569 * breakpoint.c (bfd_lookup_symbol): Provide for all SVR4 systems,
570 not just those with HANDLE_SVR4_EXEC_EMULATORS.
571
572 From Peter Schauer:
573 * breakpoint.c (internal_breakpoint_number): Move to file scope.
574 (create_solib_event_breakpoint): Use an internal breakpoint number.
575
576 Wed Mar 6 00:32:44 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
577
578 * valarith.c (value_in): Change builtin_type_chill_bool to
579 LA_BOOL_TYPE.
580
581 Tue Mar 5 23:48:36 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
582
583 * ch-exp.c (parse_primval): Handle CARD, MAX, MIN.
584 (match_string_literal): Handle control sequence.
585 (match_character_literal): Deto.
586
587 * ch-lang.c (chill_printchar): Change formating of nonprintable
588 characters from C'xx' to ^(num).
589 (chill_printstr): Deto.
590 (value_chill_card, value_chill_max_min): New functions to process
591 Chill's CARD, MAX, MIN.
592 (evaluate_subexp_chill): Process UNOP_CARD, UNOP_CHMAX, UNOP_CHMIN.
593
594 * expression.h (exp_opcode): Add UNOP_CARD, UNOP_CHMAX, UNOP_CHMIN
595 for Chill's CARD, MAX, MIN.
596
597 * valarith.c (value_in): Add processing of TYPE_CODE_RANGE
598 and change return type from builtin_type_int to
599 builtin_type_chill_bool.
600
601 Tue Mar 5 18:54:04 1996 Stan Shebs <shebs@andros.cygnus.com>
602
603 * config/nm-nbsd.h (link_object, lo_name, etc): Move to here
604 from config/nm-nbsd.h.
605 * config/sparc/nm-nbsd.h (regs, fp_status, etc): Move to here
606 from config/sparc/tm-nbsd.h.
607
608 * config/m68k/nm-hp300hpux.h (FIVE_ARG_PTRACE): Define here
609 instead of in config/m68k/xm-hp300hpux.h.
610
611 Tue Mar 5 12:05:35 1996 J.T. Conklin <jtc@rtl.cygnus.com>
612
613 * i386b-nat.c, m68knbsd-nat.c (fetch_core_registers): Provide
614 implementation for NetBSD systems.
615
616 Mon Mar 4 23:44:16 1996 Per Bothner <bothner@kalessin.cygnus.com>
617
618 * valarith.c (binop_user_defined_p): Return 0 for BINOP_CONCAT.
619 (value_concat): Handle varying strings (add COERCE_VARYING_ARRAY).
620
621 * ch-lang.c (evaluate_subexp_chill case MULTI_SUBSCRIPT): Error
622 if "function" is pointer to non-function.
623
624 Mon Mar 4 17:47:03 1996 Stan Shebs <shebs@andros.cygnus.com>
625
626 * top.c (print_gdb_version): Update copyright year.
627
628 Mon Mar 4 14:44:54 1996 Jeffrey A Law (law@cygnus.com)
629
630 From Peter Schauer:
631 * infrun.c (wait_for_inferior): Remove breakpoints and
632 switch terminal settings before calling SOLIB_ADD.
633 * solib.c (enable_break, SVR4 variant): Don't map in symbols
634 for the dynamic linker, the namespace pollution causes real
635 problems.
636
637 Sun Mar 3 17:18:57 1996 James G. Smith <jsmith@cygnus.co.uk>
638
639 * remote-mips.c (common_breakpoint): Explicitly terminate the
640 returned buffer.
641
642 Wed Feb 28 22:32:18 1996 Stan Shebs <shebs@andros.cygnus.com>
643
644 From Wilfried Moser <wilfried.moser@aut.alcatel.at>:
645 * remote.c (remote_detach): Send a command 'D' to the target
646 when detaching, update the function's comments.
647
648 Wed Feb 28 15:50:12 1996 Fred Fish <fnf@cygnus.com>
649
650 * Makefile.in (VERSION): Bump version to 4.15.2 to establish
651 baseline for gdb 4.16 rerelease testing.
652
653 Wed Feb 28 13:32:05 1996 Jeffrey A Law (law@cygnus.com)
654
655 * somsolib.c (som_solib_create_inferior_hook): Before returning
656 call clear_symtab_users.
657
658 Tue Feb 27 00:04:46 1996 Stu Grossman (grossman@critters.cygnus.com)
659
660 * remote-e7000.c (e7000_open): Delete all breakpoints when
661 connecting to e7000. Change connect message to allow use of
662 monitor.exp in test suite.
663 * (e7000_load): Print transfer rate of download.
664 * symfile.c (generic_load): Print transfer rate of download.
665
666 Sun Feb 25 13:58:33 1996 Stan Shebs <shebs@andros.cygnus.com>
667
668 * configure.in (mips*-*-vxworks*): New config.
669 * configure: Regenerated.
670
671 * config/mips/vxmips.mt, config/mips/tm-vxmips.h: New files.
672 * remote-vxmips.c (vx_convert_to_virtual, vx_convert_from_virtual):
673 Remove, never used.
674
675 Sat Feb 24 12:30:28 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
676
677 * partial-stab.h (case N_FUN): Function symbols generated
678 by SPARCworks cc have a meaningless zero value, do not update
679 pst->textlow if the function symbol value is zero.
680
681 * stabsread.c (define_symbol): Initialize SYMBOL_TYPE field
682 for function prototype declaration symbols.
683
684 Fri Feb 23 22:33:04 1996 Stu Grossman (grossman@critters.cygnus.com)
685
686 * remote-e7000.c (e7000_load): New routine to download via the
687 network.
688 * (e7000_wait): Don't backup PC when we hit a breakpoint.
689 Apparantly new sh2 pods get this right...
690 * (e7000_ops): Add call to e7000_load.
691
692 Thu Feb 22 00:52:42 1996 J.T. Conklin <jtc@rtl.cygnus.com>
693
694 * config/m68k/{nbsd.mh,nbsd.mt,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h},
695 m68knbsd-nat.c: New files, support for NetBSD/m68k.
696
697 * configure.in (m68k-*-netbsd*): New config.
698 * configure: Regenerated.
699
700 Wed Feb 21 19:00:21 1996 Fred Fish <fnf@ninemoons.com>
701
702 * standalone.c (open, _initialize_standalone): Fix obvious typos
703 reported by Martin Pool <martin@citr.uq.oz.au>.
704
705 Wed Feb 21 14:24:04 1996 Jeffrey A Law (law@cygnus.com)
706
707 * solib.c (solib_create_inferior_hook): Fix thinko.
708
709 Tue Feb 20 23:59:19 1996 Jeffrey A Law (law@cygnus.com)
710
711 * solib.c (solib_break_names): Define for Solaris and Linux.
712 (enable_break): For SVR4 systems, first try to use the debugger
713 interfaces in the dynamic linker to track shared library events
714 as they happen, then fall back to BKPT_AT_SYMBOL code. Convert
715 BKPT_AT_SYMBOL code to use shared library event breakpoints.
716 (solib_create_inferior_hook): Simplify BKPT_AT_SYMBOL code,
717 it no longer needs to restart/wait on the inferior.
718 * symfile.c (find_lowest_section): No longer static.
719 * symfile.h (find_lowest_section): Corresponding changes.
720
721 Tue Feb 20 18:54:08 1996 Fred Fish <fnf@rtl.cygnus.com>
722
723 * valops.c (COERCE_FLOAT_TO_DOUBLE): Define default value.
724 (value_arg_coerce): Use COERCE_FLOAT_TO_DOUBLE.
725 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Define to 1.
726 * config/mips/tm-mips.h: Ditto.
727 * config/pa/tm-hppa.h: Ditto.
728 * config/rs6000/tm-rs6000.h: Ditto.
729 * config/sparc/tm-sparc.h: Ditto.
730
731 Tue Feb 20 17:32:05 1996 J.T. Conklin <jtc@rtl.cygnus.com>
732
733 * config/{i386,ns32k}/nbsd.mh (NATDEPFILES): Remove core-aout.o.
734
735 * config/nm-nbsd.h (FETCH_INFERIOR_REGISTERS): Defined.
736 * config/xm-nbsd.h (CC_HAS_LONG_LONG, PRINTF_HAS_LONG_LONG):
737 #ifdef'd out definitions --- Causes serious gdb failures on
738 the i386. Need to investigate further before enabling.
739
740 * i386b-nat.c (fetch_inferior_registers, store_inferior_registers,
741 fetch_core_registers): New functions. These functions are defined
742 if FETCH_INFERIOR_REGISTERS is set. Registers are fetched/stored
743 with ptrace PT_GETREGS/PT_SETREGS.
744
745 Tue Feb 20 16:55:06 1996 Stu Grossman (grossman@critters.cygnus.com)
746
747 * findvar.c (extract_floating store_floating): Replace `long
748 double' with `DOUBLEST'.
749
750 Mon Feb 19 15:25:51 1996 J.T. Conklin <jtc@rtl.cygnus.com>
751
752 * config/xm-nbsd.h (CC_HAS_LONG_LONG, PRINTF_HAS_LONG_LONG):
753 Define.
754
755 Mon Feb 19 10:32:05 1996 Jeffrey A Law (law@cygnus.com)
756
757 * symtab.h (looup_minimal_symbol_solib_trampoline): Declare.
758
759 * breakpoint.h (remove_solib_event_breakpoints): Declare.
760 * breakpoint.c (remove_solib_event_breakpoints): New function.
761 * somsolib.c (solib_create_inferior_hook): Remove all solib event
762 breakpoints before inserting any new ones. Use a solib event
763 breakpoint for the breakpoint at "_start".
764 Remove extraneous "\n" from calls to warning.
765
766 * breakpoint.c (breakpoint_1): Add missing "sigtramp" to bptypes
767 name array.
768
769 Mon Feb 19 01:09:32 1996 Doug Evans <dje@cygnus.com>
770
771 * dwarfread.c (add_partial_symbol): Use ADD_PSYMBOL_ADDR_TO_LIST
772 for CORE_ADDR values.
773 (new_symbol): Use SYMBOL_VALUE_ADDRESS for CORE_ADDR values.
774 * symfile.h (add_psymbol_{,addr}to_list): Add prototypes.
775
776 Sun Feb 18 14:37:13 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
777
778 * mipsread.c (mipscoff_symfile_read): Unconditionally add
779 alpha coff dynamic symbols for all symbol files. Makes skipping
780 over the trampoline code work when stepping from a function in a
781 shared library into a function in a different shared library.
782
783 Sun Feb 18 09:27:10 1996 Stu Grossman (grossman@cygnus.com)
784
785 * config/sparc/tm-sparc.h: Define PS_FLAG_CARRY. Define
786 RETURN_VALUE_ON_STACK to return long doubles on the stack.
787
788 Sat Feb 17 16:33:11 1996 Fred Fish <fnf@cygnus.com>
789
790 * Makefile.in (ch-exp.o): Add dependencies.
791 (various): Add gdb_string.h to dependencies that need it.
792
793 Sat Feb 17 08:57:50 1996 Fred Fish <fnf@cygnus.com>
794
795 * symmisc.c (print_symbol_bcache_statistics): Update description for
796 printing byte cache statistics.
797
798 Thu Feb 16 16:02:03 1996 Stu Grossman (grossman@cygnus.com)
799
800 * Add native support for long double data type.
801 * c-exp.y (%union): Change dval to typed_val_float. Use DOUBLEST
802 to store actual data. Change types of INT and FLOAT tokens to
803 typed_val_int and typed_val_float respectively. Create new token
804 DOUBLE_KEYWORD to specify the string `double'. Make production
805 for FLOAT use type determined by parse_number. Add production for
806 "long double" data type.
807 * (parse_number): Use sscanf to parse numbers as float, double or
808 long double depending upon the type of typed_val_float.dval. Also
809 allow user to specify `f' or `l' suffix to explicitly specify
810 float or long double constants. Change typed_val to
811 typed_val_int.
812 * (yylex): Change typed_val to typed_val_int. Also, scan for
813 "double" keyword.
814 * coffread.c (decode_base_type): Add support for T_LNGDBL basic
815 type.
816 * configure, configure.in: Add check for long double support in
817 the host compiler.
818 * defs.h: Define DOUBLEST appropriatly depending on whether
819 HAVE_LONG_DOUBLE (from autoconf) is defined. Also, fix prototypes
820 for functions that handle this type.
821 * expression.h (union exp_element): doubleconst is now type
822 DOUBLEST.
823 * m2-exp.y f-exp.y (%union): dval becomes type DOUBLEST.
824 * findvar.c (extract_floating): Make return value be DOUBLEST.
825 Also, add support for numbers with size of long double.
826 * (store_floating): Arg `val' is now type DOUBLEST. Handle all
827 floating types.
828 * parser-defs.h parse.c (write_exp_elt_dblcst): Arg expelt is now
829 DOUBLEST.
830 * valarith.c (value_binop): Change temp variables v1, v2 and v to
831 type DOUBLEST. Coerce type of result to long double if either op
832 was of that type.
833 * valops.c (value_arg_coerce): If argument type is bigger than
834 double, coerce to long double.
835 * (call_function_by_hand): If REG_STRUCT_HAS_ADDR is defined, and
836 arg type is float and > 8 bytes, then use pointer-to-object
837 calling conventions.
838 * valprint.c (print_floating): Arg doub is now type DOUBLEST.
839 Use appropriate format and precision to print out floating point
840 values.
841 * value.h: Fixup prototypes for value_as_double,
842 value_from_double, and unpack_double to use DOUBLEST.
843 * values.c (record_latest_value): Remove check for invalid
844 floats. Allow history to store them so that people may examine
845 them in hex if they want.
846 * (value_as_double unpack_double): Change return value to DOUBLEST.
847 * (value_from_double): Arg `num' is now DOUBLEST.
848 * (using_struct_return): Use RETURN_VALUE_ON_STACK macro (target
849 specific) to expect certain types to always be returned on the stack.
850
851 Fri Feb 16 14:00:54 1996 Fred Fish <fnf@cygnus.com>
852
853 * bcache.c, bcache.h: New files to implement a byte cache.
854 * Makefile.in (SFILES): Add bcache.c.
855 (symtab_h): Add bcache.h.
856 (HFILES_NO_SRCDIR): add bcache.h
857 (COMMON_OBJS): Add bcache.o
858 (bcache.o): New target.
859 * dbxread.c (start_psymtab): Make global_syms & static_syms
860 type "partial_symbol **".
861 * hpread.c (hpread_start_symtab): Ditto.
862 * os9kread.c (os9k_start_psymtab): Ditto.
863 * stabsread.h (start_psymtab): Ditto.
864 * {symfile.c, symfile.h} (start_psymtab_common): Ditto.
865 * maint.c (maintenance_print_statistics): Call
866 print_symbol_bcache_statistics.
867 * objfiles.c (allocate_objfile): Initialize psymbol bcache malloc
868 and free pointers.
869 * solib.c (allocate_rt_common_objfile): Ditto.
870 * symfile.c (reread_symbols): Ditto.
871 (free_objfile): Free psymbol bcache when objfile is freed.
872 (objfile_relocate): Use new indirect psymbol pointers.
873 * objfiles.h (struct objfile): Add psymbol cache.
874 * symfile.c (compare_psymbols): Now passed pointers to pointers to
875 psymbols.
876 (reread_symbols): Free psymbol bcache when freeing other objfile
877 resources.
878 (add_psymbol_to_list, add_psymbol_addr_to_list): Initialize new
879 psymbol using the psymbol bcache.
880 (init_psymbol_list): Psymbol lists now contain pointers rather than
881 the actual psymbols.
882 * symfile.h (psymbol_allocation_list): Psymbol lists now dynamically
883 grown arrays of pointers.
884 (ADD_PSYMBOL_VT_TO_LIST): Initialize new symbol using the psymbol
885 bcache.
886 * symmisc.c (print_partial_symbols): Now takes pointer to pointer
887 to partial symbol.
888 (print_symbol_bcache_statistics): New function to print per objfile
889 bcache statistics.
890 (print_partial_symbol, print_partial_symbols,
891 maintenance_check_symtabs, extend_psymbol_list):
892 Account for change to pointer to pointer to partial symbol.
893 * symtab.c (find_pc_psymbol, lookup_partial_symbol, decode_line_2,
894 make_symbol_completion_list):
895 Account for change to pointer to pointer to partial symbol.
896 * symtab.h (bcache.h): Include.
897 * xcoffread.c (xcoff_start_psymtab): Make global_syms & static_syms
898 type "partial_symbol **".
899
900 Fri Feb 16 10:02:34 1996 Fred Fish <fnf@cygnus.com>
901
902 * dwarfread.c (free_utypes): New function.
903 (read_file_scope): Call free_utypes as cleanup, rather than just
904 freeing the utypes pointer.
905
906 Thu Feb 15 21:40:52 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
907
908 * demangle.c (is_cplus_marker): New function, checks if a
909 character is one of the commonly used C++ marker characters.
910 * defs.h (is_cplus_marker): Add prototype.
911 * c-typeprint.c (c_type_print_base), ch-lang.c (chill_demangle),
912 cp-valprint.c (cp_print_class_method), mdebugread.c (parse_symbol),
913 stabsread.c (define_symbol, read_member_functions, read_struct_fields),
914 symtab.h (OPNAME_PREFIX_P, VTBL_PREFIX_P, DESTRUCTOR_PREFIX_P),
915 values.c (vb_match): Use is_cplus_marker instead of comparison
916 with CPLUS_MARKER.
917
918 Thu Feb 15 18:08:13 1996 Fred Fish <fnf@cygnus.com>
919
920 * symfile.h (INLINE_ADD_PSYMBOL): Default this to 0 and possibly
921 delete entirely someday.
922
923 Thu Feb 15 15:25:34 1996 Stan Shebs <shebs@andros.cygnus.com>
924
925 * mpw-make.sed: Edit out makefile rebuild rule.
926 (host_alias, target_alias): Comment out instead of deleting.
927 (@LIBS@): Edit out references.
928
929 Tue Feb 13 22:56:46 1996 Fred Fish <fnf@cygnus.com>
930
931 * symfile.c (add_psymbol_to_list, add_psymbol_addr_to_list):
932 Use n_psyms in OBJSTAT, not psyms.
933
934 Mon Feb 12 15:59:31 1996 Doug Evans <dje@charmed.cygnus.com>
935
936 * configure.in (sparclet-*-aout*): New config.
937 * configure: Regenerated.
938
939 Mon Feb 12 14:17:52 1996 Fred Fish <fnf@cygnus.com>
940
941 * somsolib.c (som_solib_add): Use xmalloc rather than bare
942 unchecked call to malloc.
943 * remote-mips.c (pmon_load_fast): ditto.
944 * remote-mm.c (mm_open): ditto.
945 * hpread.c (hpread_lookup_type): ditto.
946 * remote-adapt.c (adapt_open): ditto.
947
948 Mon Feb 12 13:11:32 1996 Fred Fish <fnf@cygnus.com>
949
950 * f-lang.c (allocate_saved_bf_node, allocate_saved_function_node,
951 allocate_saved_f77_common_node, allocate_common_entry_node,
952 add_common_block): Use xmalloc rather than malloc, some of which
953 were unchecked.
954 * gnu-regex.c: At same point as other gdb specific changes
955 #undef malloc and then #define it to xmalloc.
956 * ch-exp.c (growbuf_by_size): Use xmalloc/xrealloc rather than
957 bare unchecked calls to malloc/realloc.
958 * stabsread.c (dbx_lookup_type): Use xmalloc rather than bare
959 unchecked call to malloc.
960
961 Wed Feb 7 11:31:26 1996 Stu Grossman (grossman@cygnus.com)
962
963 * symtab.c (gdb_mangle_name): Change opname var to be const to
964 match return val of cplus_mangle_name.
965 * i960-tdep.c: Change arg types of next_insn to match callers.
966
967 Wed Feb 7 07:34:24 1996 Fred Fish <fnf@cygnus.com>
968
969 * config/i386/linux.mh (XM_CLIBS, GDBSERVER_LIBS): Remove. These
970 apparently aren't needed in any reasonably recent version of
971 linux.
972
973 Tue Feb 6 21:37:03 1996 Per Bothner <bothner@kalessin.cygnus.com>
974
975 * stabsread.c (read_range_type): If !self-subrange and language
976 is Chill, assume a true range. If a true_range is a sub_subrange,
977 use builtin_type_int for index_type.
978
979 Tue Feb 6 18:38:51 1996 J.T. Conklin <jtc@slave.cygnus.com>
980
981 * nindy-share/nindy.c (say): Use stdarg.h macros when compiling
982 with an ANSI compiler.
983
984 start-sanitize-gdbtk
985 Tue Feb 6 16:31:25 1996 Tom Tromey <tromey@creche.cygnus.com>
986
987 * gdbtk.tcl (create_file_win): Eliminate text widget B1 binding so
988 double-clicking will work again.
989 (create_asm_win): Put "break" at end of all B1 bindings.
990 (create_file_win): Lower "sel" tag, don't raise it.
991 (ensure_line_visible): New proc.
992 (update_listing, update_assembly): Use it.
993 (create_copyright_window): Destroy window on Leave event.
994 (create_command_window): Put "break" at end of all B2 bindings.
995
996 end-sanitize-gdbtk
997 Mon Feb 5 18:24:28 1996 Steve Chamberlain <sac@slash.cygnus.com>
998
999 From Michael_Snyder@NeXT.COM (Michael Snyder):
1000 * valops.c (value_arg_coerce): Coerce float to double, unless the
1001 function prototype specifies float.
1002
1003 Mon Feb 5 09:51:55 1996 Tom Tromey <tromey@creche.cygnus.com>
1004
1005 * language.c (set_language_command): Use languages table when
1006 printing available languages.
1007
1008 Sat Feb 3 12:22:05 1996 Fred Fish <fnf@cygnus.com>
1009
1010 Fix problems reported by Hans Verkuil (hans@wyst.hobby.nl):
1011 * command.c (add_cmd): Add missing initialization for enums member.
1012 Reorder members to match structure declaration to make it easier to
1013 tell when one is missing.
1014 * exec.c (exec_file_command): Fix problem where filename in malloc'd
1015 memory is referenced after being freed.
1016
1017 Sat Feb 3 03:26:21 1996 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1018
1019 * dwarfread.c (read_func_scope): Avoid GDB core dumps if
1020 AT_name tag is missing.
1021
1022 * procfs.c (procfs_stopped_by_watchpoint): Fix logic when
1023 FLTWATCH and FLTKWATCH are defined.
1024
1025 * remote.c (remote_read_bytes): Advance memaddr for transfers,
1026 return number of bytes transferred for partial reads.
1027
1028 * top.c (init_signals): Reset SIGTRAP to SIG_DFL.
1029
1030 Fri Feb 2 13:40:50 1996 Steve Chamberlain <sac@slash.cygnus.com>
1031
1032 * win32-nat.c (mappings): Add ppc registers.
1033 (child_resume): Turn off step for ppc.
1034
1035 Thu Feb 1 10:29:31 1996 Steve Chamberlain <sac@slash.cygnus.com>
1036
1037 * config/powerpc/(cygwin32.mh, cygwin32.mt, tm-cygwin32.h,
1038 xm-cygwin32.h): New.
1039 * config/i386/(*win32*): Becomes *cygwin32*.
1040 * configure.in (i[3456]86-*-win32*): Becomes i[3456]86-*-cygwin32.
1041 (powerpcle-*-cygwin32): New.
1042 * configure: Regenerate.
1043 * win32-nat.c (child_create_inferior): Call CreateProcess
1044 with the right program arg.
1045
1046 Thu Feb 1 11:01:10 1996 Jeffrey A Law (law@cygnus.com)
1047
1048 * config/pa/tm-hppa.h (SOFT_FLOAT): Provide a default definition.
1049
1050 Wed Jan 31 19:01:28 1996 Fred Fish <fnf@cygnus.com>
1051
1052 * serial.c: Change fputc/fputs/fprintf to _unfiltered forms.
1053
1054 Wed Jan 31 18:36:27 1996 Stan Shebs <shebs@andros.cygnus.com>
1055
1056 * config/sparc/xm-sun4os4.h (HAVE_TERMIOS): Remove.
1057
1058 * config/sparc/xm-sparc.h (HAVE_WAIT_STRUCT): Remove, never used.
1059
1060 * config/i386/nm-i386mach.h (CHILD_PREPARE_TO_STORE): Move to
1061 here from config/i386/xm-i386mach.h, fix name.
1062 * config/i386/nm-sun386.h: Ditto, from config/i386/xm-sun386.h.
1063 * config/i386/nm-ptx4.h (CHILD_PREPARE_TO_STORE): Move to
1064 here from config/i386/xm-ptx4.h.
1065 * config/i386/nm-ptx4.h: Ditto, from config/i386/xm-ptx.h.
1066 * config/i386/nm-symmetry.h: Ditto, from config/i386/xm-symmetry.h.
1067 * config/m68k/nm-sun3.h: Ditto, from config/m68k/xm-sun3.h.
1068 * config/sparc/nm-nbsd.h: Ditto, from config/sparc/xm-nbsd.h.
1069 * config/sparc/nm-sun4os4: Ditto, from config/sparc/xm-sparc.h.
1070
1071 * config/sparc/nm-sun4sol2.h: New file, renamed from nm-sysv4.h.
1072 (PRSVADDR_BROKEN): Move here from xm-sun4sol2.h.
1073 * config/sparc/sun4sol2.mh (NAT_FILE): Update.
1074
1075 Wed Jan 31 17:20:26 1996 Jeffrey A Law (law@cygnus.com)
1076
1077 * config/pa/tm-hppa.h (EXTRACT_RETURN_VALUE): Handle software
1078 floating point correctly.
1079 (STORE_RETURN_VALUE): Likewise.
1080 * config/pa/tm-pro.h (SOFT_FLOAT): define.
1081
1082 Wed Jan 31 13:34:52 1996 Fred Fish <fnf@cygnus.com>
1083
1084 * config/i386/xm-linux.h (MMAP_BASE_ADDRESS, MMAP_INCREMENT):
1085 Define to what should be reasonable values. However, apparently
1086 a bug in linux mmap prevents mapped symbol tables from working.
1087
1088 Tue Jan 30 18:26:19 1996 Fred Fish <fnf@cygnus.com>
1089
1090 * defs.h (errno.h>: Move #include closer to head of file to solve
1091 obscure problem with systems that declare perror with const arg, in
1092 both errno.h and stdio.h, and const is defined away by intervening
1093 local include.
1094
1095 Tue Jan 30 15:41:10 1996 Fred Fish <fnf@cygnus.com>
1096
1097 From Jon Reeves <reeves@zk3.dec.com>:
1098 * i386-stub.c (getpacket): Change fprintf stream from "gdb" to stderr.
1099 (mem_fault_routine): Fix misplaced volatile type qualifier in decl.
1100
1101 Mon Jan 29 19:05:58 1996 Fred Fish <fnf@cygnus.com>
1102
1103 * Makefile.in (diststuff): Make all-doc; diststuff target does not
1104 exist in doc/Makefile.in.
1105
1106 Mon Jan 29 18:44:57 1996 Stan Shebs <shebs@andros.cygnus.com>
1107
1108 * config/m88k/xm-cxux.h (BP_HIT_COUNT): Remove, never used.
1109
1110 Mon Jan 29 00:10:35 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
1111
1112 * ch-valprint.c (calculate_array_length): New function to
1113 determine the length of an array type.
1114 (chill_val_print (case TYPE_CODE_ARRAY)): If the length of an
1115 array type is zero, call calculate_array_length.
1116
1117 * gdbtypes.c (get_discrete_bounds (case TYPE_CODE_ENUM)): The
1118 values may not be sorted. Scan all entries and set the real lower
1119 and upper bound.
1120
1121 Sun Jan 28 15:50:42 1996 Fred Fish <fnf@cygnus.com>
1122
1123 * config/xm-linux.h: Move include of solib.h and #define of
1124 SVR4_SHARED_LIBS from here ...
1125 * config/nm-linux.h: ...to here.
1126
1127 Sat Jan 27 10:34:05 1996 Fred Fish <fnf@cygnus.com>
1128
1129 * configure.in (AC_CHECK_HEADERS): Check for sys/procfs.h.
1130 Also check for gregset_t and fpregset_t types.
1131 * configure: Regenerate.
1132 * core-regset.c (sys/procfs.h): Only include if HAVE_SYS_PROCFS_H
1133 is defined.
1134 (fetch_core_registers): Turn into stub unless both HAVE_GREGSET_T
1135 and HAVE_FPREGSET_T are defined. These changes allow systems
1136 like linux that are migrating to /proc support to use a single
1137 configuration for both new and old versions.
1138
1139 * config/i386/linux.mt: Note that this is now for both a.out and
1140 ELF systems.
1141 * config/i386/linux.mh (NATDEPFILES): Add solib.o, core-regset.o,
1142 i386v4-nat.o
1143 * config/i386/tm-linux.h (tm-sysv4.h): Include.
1144 * config/i386/xm-linux.h (solib.h): Include
1145 (SVR4_SHARED_LIBS): Define.
1146 * i386v4-nat.c: Only compile if HAVE_SYS_PROCFS_H is defined.
1147 (supply_gregset, fill_gregset): Compile if HAVE_GREGSET_T defined.
1148 (supply_fpregset, fill_fpregset): Compile if HAVE_FPREGSET_T
1149 defined.
1150
1151 Fri Jan 26 13:48:14 1996 Stan Shebs <shebs@andros.cygnus.com>
1152
1153 * config/sparc/xm-sparc.h (NEW_SUN_CORE): Remove, never used.
1154 * config/i386/xm-sun386.h: Ditto.
1155 * config/m68k/xm-sun2.h, config/m68k/xm-sun3.h: Ditto.
1156
1157 Thu Jan 25 16:05:53 1996 Tom Tromey <tromey@creche.cygnus.com>
1158
1159 * Makefile.in (INSTALLED_LIBS, CLIBS): Include @LIBS@.
1160
1161 Thu Jan 25 09:22:15 1996 Steve Chamberlain <sac@slash.cygnus.com>
1162
1163 From Greg McGary <gkm@gnu.ai.mit.edu>:
1164 * dcache.c (dcache_peek, dcache_poke): Advance addr for
1165 multi-byte I/O.
1166
1167 Thu Jan 25 13:08:51 1996 Doug Evans (dje@cygnus.com)
1168
1169 * infrun.c (normal_stop): Fix test for shared library event.
1170
1171 Thu Jan 25 03:26:38 1996 Doug Evans <dje@charmed.cygnus.com>
1172
1173 * configure.in (sparc64-*-*): Add default host configuration.
1174 start-sanitize-gdbtk
1175 (sparc64-*-solaris2* host): Link statically if GCC used.
1176 end-sanitize-gdbtk
1177 (sparc64-*-solaris2*): Add target configuration.
1178 * configure: Regenerated.
1179 * sparc/sp64sol2.mt: New file.
1180
1181 Wed Jan 24 22:31:37 1996 Doug Evans <dje@charmed.cygnus.com>
1182
1183 * Makefile.in (RUNTEST): srcdir renamed to rootsrc.
1184
1185 Wed Jan 24 15:42:24 1996 Tom Tromey <tromey@creche.cygnus.com>
1186
1187 * Makefile.in (lint): Close backquotes.
1188
1189 start-sanitize-gdbtk
1190 Wed Jan 24 15:28:41 1996 Tom Tromey <tromey@creche.cygnus.com>
1191
1192 * gdbtk.tcl, gdbtk.c: Updated copyrights.
1193
1194 * configure.in: Look for -ldl or -ldld when using Tcl 7.5 or
1195 greater.
1196 * configure: Rebuilt.
1197
1198 end-sanitize-gdbtk
1199 Wed Jan 24 13:19:10 1996 Fred Fish <fnf@cygnus.com>
1200
1201 * NEWS: Make note of new record and replay feature for
1202 remote debug sessions.
1203 * serial.c (gdbcmd.h): Include.
1204 (serial_logfile, serial_logfp, serial_reading, serial_writing):
1205 Define here, for remote debug session logging.
1206 (serial_log_command, serial_logchar, serial_write, serial_readchar):
1207 New functions for remote debug session logging.
1208 (serial_open): Open remote debug session log file when needed.
1209 (serial_close): Close remote debug session log file when needed.
1210 (_initialize_serial): Add set/show commands for name of remote
1211 debug session log file.
1212 * serial.h (serial_readchar): Declare
1213 (SERIAL_READCHAR): Call serial_readchar().
1214 (SERIAL_WRITE): Call serial_write().
1215 (serial_close): Declare as extern.
1216 (serial_logfile, serial_logfp): Declare.
1217 * top.c (execute_command): Declare serial_logfp. Log user command
1218 in remote debug session log if log file is open.
1219 * remote-array.c (array_wait): #ifdef out echo to gdb_stdout.
1220 (array_read_inferior_memory): Rewrite to fix memory overwrite bug.
1221 * remote-array.c (SREC_SIZE): Remove, duplicates define in
1222 monitor.h.
1223 * remote-array.c (hexchars, hex2mem): Remove, unused.
1224 * gdbserver/low-linux.c (store_inferior_registers): Remove
1225 unnecessary extern declaration of registers[].
1226 * gdbserver/Makefile.in (all): Add gdbreplay.
1227 * gdbserver/gdbreplay.c: New file.
1228 * gdbserver/README: Give example of recording a remote
1229 debug session with gdb and then replaying it with gdbreplay.
1230
1231 Tue Jan 23 18:02:35 1996 Per Bothner <bothner@kalessin.cygnus.com>
1232
1233 * stabsread.c (rs6000_builtin_type): Make bool type unsigned.
1234 (read_one_struct_field): Support boolean bitfields.
1235 * c-valprint.c (c_val_print): Print booleans properly.
1236
1237 Tue Jan 23 18:54:09 1996 Stan Shebs <shebs@andros.cygnus.com>
1238
1239 * remote-vxsparc.c (vx_convert_to_virtual, vx_convert_from_virtual):
1240 Remove, never used.
1241 * config/sparc/vxsparc.mt (TDEPFILES): Add remote-vxsparc.o.
1242
1243 Tue Jan 23 14:36:05 1996 Per Bothner <bothner@kalessin.cygnus.com>
1244
1245 * ch-exp.c (parse_tuple): Error if invalid mode.
1246
1247 * value.h (COERCE_ARRAY): Don't coerce enums.
1248 (COERCE_ENUM): Don't COERCE_REF.
1249 (COERCE_NUMBER): New macro (same as COERCE_ARRAY then COERCE_ENUM).
1250 * valops.c (value_assign): Only do COERCE_ARRAY if internalvar (let
1251 value_cast handle it otherwise); do *not* COERCE_ENUM either way.
1252 * valarith.c: Use COERCE_NUMBER instead od COEREC_ARRAY.
1253 Add COERCE_REF before COERCE_ENUM.
1254 * values.c (value_as_long): Simplify.
1255
1256 * valops.c (value_array): Create internalvar if !c_style_arrays.
1257
1258 * language.c (lang_bool_type): Add Fortran support.
1259 * eval.c (OP_BOOL): Use LA_BOOL_TYPE.
1260
1261 Tue Jan 23 13:08:26 1996 Jeffrey A Law (law@cygnus.com)
1262
1263 * symfile.c (auto_solib_add): Renamed from auto_solib_add_at_startup.
1264 All references changed.
1265 * breakpoint.c (bpstat_what): Add shlib_event to the class types.
1266 Update state table. Reformat so that it's still readable.
1267 When we hit the shlib_event breakpoint, set the calss of shlib_event.
1268 (breakpoint_1): Add "shlib events" as a breakpoint type.
1269 Print the shlib_event breakpoint like other breakpoints.
1270 (create_solib_event_breakpoint): New function.
1271 (breakpoint_re_set_one): Handle solib_event breakpoints.
1272 * breakpoint.h (enum bytype): Add bp_shlib_event breakpoint type.
1273 (enum bpstat_what_main_action): Add BPSTAT_WHAT_CHECK_SHLIBS
1274 action.
1275 (create_solib_event_breakpoint): Declare.
1276 * infrun.c (wait_for_inferior): Handle CHECK_SHLIBS bpstat.
1277 (normal_stop): Inform the user when the inferior stoped due
1278 to a shared library event.
1279 (_initialize_infrun): Add new set/show variable "stop-on-solib-events"
1280 to control whether or not gdb continues the inferior or stops it when
1281 a shared library event occurs.
1282 * minsyms.c (lookup_minimal_symbol_solib_trampoline): New function.
1283 * somsolib.c (TODO list): Update.
1284 (som_solib_create_inferior_hook): Arrange for gdb to be notified
1285 when significant shared library events occur.
1286 * hppa-tdep.c (find_unwind_entry): No longer static.
1287
1288 Tue Jan 23 09:00:48 1996 Doug Evans <dje@charmed.cygnus.com>
1289
1290 * printcmd.c (print_insn): Pass fprintf_unfiltered to
1291 INIT_DISASSEMBLE_INFO.
1292 start-sanitize-gdbtk
1293 * gdbtk.c (gdb_disassemble): Likewise.
1294 end-sanitize-gdbtk
1295
1296 Mon Jan 22 16:59:40 1996 Stan Shebs <shebs@andros.cygnus.com>
1297
1298 * remote.c (remotebreak): New GDB variable.
1299 (remote_break): New global.
1300 (remote_interrupt): Send a break instead of ^C if remote_break.
1301 * NEWS: Describe the new variable.
1302
1303 Mon Jan 22 16:24:11 1996 Doug Evans <dje@charmed.cygnus.com>
1304
1305 * sparc-tdep.c (_initialize_sparc_tdep): Always use print_insn_sparc.
1306
1307 Fri Jan 19 07:19:38 1996 Fred Fish <fnf@cygnus.com>
1308
1309 * hp300ux-nat.c (getpagesize): Remove unused function
1310 fetch_core_registers.
1311 (hp300ux_core_fns): Remove, is unused.
1312 (_initialize_core_hp300ux): Remove, is unused.
1313 (gdbcore.h): Remove #include, no longer needed.
1314
1315 Fri Jan 19 00:59:53 1996 Jeffrey A Law (law@cygnus.com)
1316
1317 * rs6000-nat.c (exec_one_dummy_insn): Rework to avoid
1318 ptrace bug in aix4.1.3 on the rs6000.
1319
1320 Wed Jan 17 13:22:27 1996 Stan Shebs <shebs@andros.cygnus.com>
1321
1322 * remote-hms.c (hms_ops): Add value for to_thread_alive.
1323 * remote-nindy.c (nindy_ops): Ditto.
1324 * remote-udi.c (udi_ops): Ditto.
1325
1326 Tue Jan 16 18:00:35 1996 James G. Smith <jsmith@cygnus.co.uk>
1327
1328 * remote-mips.c (pmon_opn, pmon_wait, pmon_makeb64, pmon_zeroset,
1329 pmon_checkset, pmon_make_fastrec, pmon_check_ack,
1330 pmon_load_fast): New functions. Support for the PMON monitor world.
1331 (common_open): New function to merge support for different monitors.
1332 (mips_open): Use common_open().
1333 (mips_send_command): New function.
1334 (mips_send_packet): Scan out-of-sequence packets.
1335 (mips_enter_debug, mips_exit_debug): New functions.
1336 (pmon_ops): New target definition structure.
1337
1338 Tue Jan 16 11:22:58 1996 Stu Grossman (grossman@cygnus.com)
1339
1340 * Makefile.in (CLIBS): Add LIBS to allow libraries to be
1341 specified on the make command line (via make LIBS=xxx).
1342 start-sanitize-gm
1343 * configure.in (enable-gm): magic.o -> gmagic.o.
1344 end-sanitize-gm
1345
1346 start-sanitize-gdbtk
1347 Mon Jan 15 09:58:41 1996 Tom Tromey <tromey@creche.cygnus.com>
1348
1349 * gdbtk.tcl (create_expr_window): Many changes to update GUI.
1350 (add_expr): Changes from create_expr_window.
1351 (create_command_window): Set focus.
1352 (delete_expr): Rewrote.
1353 (expr_update_button): New proc.
1354 (add_expr): Put bindings on FocusIn, FocusOut.
1355 Don't allow .file_popup to be torn off.
1356 end-sanitize-gdbtk
1357
1358 Fri Jan 12 21:41:58 1996 Jeffrey A Law (law@cygnus.com)
1359
1360 * symtab.c (find_pc_symtab): Don't lose if OBJF_REORDERED
1361 is set but there are no psymtabs.
1362
1363 Fri Jan 12 15:56:12 1996 Steve Chamberlain <sac@slash.cygnus.com>
1364
1365 * dsrec.c (load_srec): Remove unused variable.
1366 * monitor.c (monitor_expect): Don't expect a ^C to echo.
1367 * serial.c (serial_open): Add parallel interface.
1368 * sh3-rom.c (parallel, parallel_in_use): New.
1369 (sh3_load): If parallel_in_use, download though the
1370 parallel port.
1371 (sh3_open): Open parallel port if specified.
1372 (sh3_close): New function.
1373 (_inititalize_sh3): Add sh3_close hook and documentation.
1374 * monitor.c (monitor_close): Export.
1375 * monitor.h (monitor_close): Add prototype.
1376
1377 Fri Jan 12 13:11:42 1996 Stan Shebs <shebs@andros.cygnus.com>
1378
1379 From Wilfried Moser <wilfried.moser@aut.alcatel.at>:
1380 * remote.c (remotetimeout): New GDB variable, use to set the
1381 remote timeout for reading.
1382
1383 start-sanitize-gdbtk
1384 Fri Jan 12 09:36:17 1996 Tom Tromey <tromey@creche.cygnus.com>
1385
1386 * gdbtk.tcl (gdbtk_tcl_query): Swap Yes and No buttons.
1387 (update_listing): Use lassign. Use "see" to scroll. Don't need
1388 screen_top, screen_bot, screen_height.
1389 (update_assembly): Use "see" to scroll.
1390 (textscrollproc): Removed.
1391 (create_file_win): Don't use textscrollproc.
1392 (asmscrollproc): Removed.
1393 (create_asm_window): Don't use asmscrollproc.
1394 (create_asm_win): Ditto.
1395 (screen_height, screen_top, screen_bot): Removed.
1396 (run_editor): New proc.
1397 (build_framework): Use it.
1398 (create_file_win, create_source_window): Don't use textscrollproc.
1399 (create_breakpoints_window): Set -xscrollcommand on canvas.
1400 (not_implemented_yet): Default button is 0.
1401 (delete_char): Don't use tk_textBackspace.
1402 (create_command_window): Allow Tk bindings to fire after deleting
1403 character.
1404 (create_command_window): Make Delete delete left, not right.
1405 end-sanitize-gdbtk
1406
1407 Fri Jan 12 07:14:27 1996 Fred Fish <fnf@cirdan.cygnus.com>
1408
1409 * lynx-nat.c, irix4-nat.c, sparc-nat.c: Include gdbcore.h
1410 to get "struct core_fns" defined.
1411 * Makefile.in (lynx-nat.o, irix4-nat.o, sparc-nat.o):
1412 Are dependent upon gdbcore_h.
1413
1414 Thu Jan 11 23:13:24 1996 Per Bothner <bothner@cygnus.com>
1415
1416 * symfile.c (decrement_reading_symtab): New function.
1417 * symfile.c, symtab.h (currently_reading_symtab): New variable.
1418 * symfile.c (psymtab_to_symtab): Adjust currently_reading_symtab.
1419 * gdbtypes.c (check_typedef): Don't call lookup_symbol if
1420 currently_reading_symtab (since that could infinitely recurse).
1421
1422 Thu Jan 11 17:21:25 1996 Per Bothner <bothner@kalessin.cygnus.com>
1423
1424 * stabsread.c (read_struct_type): Trivial simplification.
1425
1426 * stabsread.c (define-symbol): Use invisible references
1427 for TYPE_CODE_SET and TYPE_CODE_BITSTRING too.
1428 * valops.c (call_function_by_hand): Likewise.
1429 * eval.c (evaluate_subexp_standard): When known, use the formal
1430 parameter type as the expected type when evaluating arg expressions.
1431 * ch-lang.c (evaluate_subexp_chill): Likewise (for MULTI_SUBSCRIPT).
1432
1433 start-sanitize-gdbtk
1434 Thu Jan 11 10:08:14 1996 Tom Tromey <tromey@creche.cygnus.com>
1435
1436 * main.c (main): Disable window interface if --help or --version
1437 specified.
1438
1439 * gdbtk.tcl (FSBox): Don't use tk_listboxSingleSelect.
1440
1441 Changes in sync with expect:
1442 * configure.in (ENABLE_GDBTK): Use CY_AC_PATH_TCL and
1443 CY_AC_PATH_TK.
1444 * aclocal.m4: Replaced with version from expect.
1445 * configure: Regenerated.
1446 end-sanitize-gdbtk
1447
1448 Wed Jan 10 16:08:49 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
1449
1450 * configure.in, configure: Recognize rs6000-*-aix4*.
1451 * config/powerpc/xm-aix.h: Reduce to include "xm-aix4.h".
1452 * config/rs6000/aix4.mh (XM_FILE): Point to xm-aix4.h.
1453 * config/rs6000/xm-aix4.h: New file.
1454 * config/xm-aix4.h: New file.
1455
1456 Wed Jan 10 11:25:37 1996 Fred Fish <fnf@cygnus.com>
1457
1458 From Wilfried Moser <wilfried.moser@aut.alcatel.at>:
1459 * gdbserver/low-linux.c: New file.
1460 * remote.c (remote_read_bytes): Fix aborts on larger packets.
1461
1462 * config/i386/linux.mh (GDBSERVER_DEPFILES, GDBSERVER_LIBS):
1463 Define.
1464 * stabsread.c (define_symbol): If register value is too large,
1465 tell what it is and what max is.
1466
1467 start-sanitize-gdbtk
1468 Wed Jan 10 09:07:22 1996 Tom Tromey <tromey@creche.cygnus.com>
1469
1470 * gdbtk.tcl (gdbtk_tcl_fputs, gdbtk_tcl_fputs_error,
1471 gdbtk_tcl_flush): Use "see", not "yview".
1472 (gdbtk_tcl_query): Use questhead bitmap.
1473 various: Always wrap condition of 'if' in {...}.
1474 (add_breakpoint_frame): Set -value on radiobuttons.
1475 (lassign): New proc.
1476 (add_breakpoint_frame): Use lassign, not series of assignments.
1477 (decr): Made faster.
1478 (interactive_cmd): Use "see", not "yview".
1479 (not_implemented_yet): Use warning bitmap.
1480 (update_expr): Don't allow $expr to be evalled by Tcl.
1481 (create_expr_window): Don't use "focus".
1482 (delete_char, delete_line): Define globally.
1483 (delete_line, delete_char, create_command_window, update_autocmd,
1484 build_framework, create_asm_win, create_file_win): Use "see", not
1485 "yview".
1486 (create_copyright_window, center_window, bind_widget_after_class):
1487 New procs.
1488 (FSBox,create_command_window, create_autocmd_window): Binding
1489 changes for Tk4.
1490 (textscrollproc): Define globally.
1491 (build_framework): tk_menuBar no longer needed. Keys Prior, Next,
1492 Home, End, Up, and Down are all defined by Tk.
1493 (apply_filespec): Use error bitmap in dialog.
1494 (files_command): Don't use tk_listboxSingleSelect.
1495 (files_command): Don't use "uniq" to remove duplicates from a
1496 list.
1497 (update_assembly): Use lassign.
1498 (create_asm_win): Removed redundant bindings.
1499 (listing_window_button_1, file_popup_menu): Use tk_popup.
1500 (ButtonRelease-1 binding): Just remove tag from window; rest
1501 handled by Tk.
1502
1503 * gdbtk.c (gdbtk_query): Use Tcl_Merge to provide quoting.
1504 (call_wrapper): Use Tcl_Eval, not Tcl_VarEval.
1505 (gdbtk_call_command): Ditto.
1506 end-sanitize-gdbtk
1507
1508 Tue Jan 9 09:33:53 1996 Jeffrey A Law (law@cygnus.com)
1509
1510 * hpread.c (hpread_build_psymtabs): Finish Jan 4th
1511 enum namespace -> enum_namespace change.
1512
1513 Tue Jan 9 04:44:47 1996 Wilfried Moser (Alcatel) <moser@rtl.cygnus.com>
1514
1515 * ch-exp.c (parse_primval): In case ARRAY, add missing
1516 FORWARD_TOKEN ().
1517
1518 Mon Jan 8 13:29:34 1996 Stan Shebs <shebs@andros.cygnus.com>
1519
1520 * remote-mips.c (mips_receive_header): Recognize \012 instead
1521 of \n, but write \n when program sends a \012.
1522 * ser-mac.c (mac_input_buffer): Increase size of buffer.
1523
1524 Mon Jan 8 12:00:40 1996 Jeffrey A Law (law@cygnus.com)
1525
1526 * infptrace.c (initialize_infptrace): Move function out of
1527 #ifdef conditional; put code within the function inside an
1528 #ifdef conditional.
1529
1530 * buildsym.c (end_symtab): Remove sort_pending and sort_linevec
1531 arguments. Sorting is now dependent on OBJF_REORDERED. All
1532 callers/references changed.
1533 * dbxread.c (read_ofile_symtab): Correctly determine value for
1534 last_source_start_addr for reordered executables.
1535 (process_one_symbol): Handle N_FUN with no name as an end of
1536 function marker.
1537 * partial-stab.h (case N_FN, N_TEXT): Don't assume CUR_SYMBOL_VALUE
1538 is the high text address for a psymtab.
1539 (case N_SO): Likewise.
1540 (case N_FUN): Handle N_FUN with no name as an end of function
1541 marker.
1542 * minsyms.c (lookup_minimal_symbol_by_pc): Examine all symbols
1543 at the same address rather than a random subset of them.
1544 * coffread.c (coff_symfile_init): Set OBJF_REORDERED.
1545 * elfread.c (elf_symfile_init): Similarly.
1546 * somread.c (som_symfile_init): Similarly.
1547 * xcoffread.c (xcoff_symfile_init): Similarly.
1548
1549 Fri Jan 5 17:46:01 1996 Stu Grossman (grossman@cygnus.com)
1550
1551 * stack.c (print_stack_frame print_frame_info) symmisc.c
1552 (dump_symtab): Change RETURN_MASK_ERROR to RETURN_MASK_ALL so
1553 that catch_errors doesn't get blindsided by QUIT and lose the
1554 cleanup chain. This fixes a problem where ^C while in a
1555 user-defined command sometimes leaves instream NULL and causes a
1556 segfault in command_loop.
1557
1558 Fri Jan 5 13:59:16 1996 Brendan Kehoe <brendan@lisa.cygnus.com>
1559
1560 * configure.in, configure: Add `-ldl -lw' for Solaris linking.
1561
1562 Fri Jan 5 12:02:00 1996 Steve Chamberlain <sac@slash.cygnus.com>
1563
1564 * config/sh/sh.mt, config/powerpc/*.mt, config/pa/hppapro.mt,
1565 config/m68k/monitor.mt, config/h8500/h8500.mt, config/h8300/h8300.mt:
1566 srec.o renamed to dsrec.o.
1567
1568 Thu Jan 4 16:04:54 1996 Stu Grossman (grossman@cygnus.com)
1569
1570 * breakpoint.c (remove_breakpoint): Change error to warning so
1571 that hardware watchpoint removal problems won't leave breakpoint
1572 traps in the target.
1573 start-sanitize-gdbtk
1574 * configure configure.in: Make --enable-gdbtk be the default.
1575 end-sanitize-gdbtk
1576 * remote-e7000.c (e7000_insert_breakpoint,
1577 e7000_remove_breakpoint): Use e7000 based breakpoints, not memory
1578 breakpoints.
1579 * (e7000_wait): Adjust PC back by two when we see a breakpoint to
1580 compensate for e7000 maladjustment.
1581 * sparcl-tdep.c (sparclite_check_watch_resources): Fix logic bug
1582 which prevented hardware watchpoints from working.
1583
1584 Thu Jan 4 10:44:17 1996 Fred Fish <fnf@cirdan.cygnus.com>
1585
1586 * infptrace.c (udot_info): New function.
1587 (PT_*): Define each individually if that one is not defined.
1588 * rs6000-nat.c (kernel_u_size): New function
1589 Include <sys/user.h> for "struct user"
1590 * alpha-nat.c (kernel_u_size): New function.
1591 Include <sys/user.h> for "struct user"
1592 * sparc-nat.c (kernel_u_size): New function.
1593 Include <sys/user.h> for "struct user"
1594 * i386b-nat.c (kernel_u_size): New function.
1595 * i386v-nat.c (kernel_u_size): New function.
1596 * config/i386/nm-fbsd.h (KERNEL_U_SIZE): Define.
1597 (kernel_u_size): Declare.
1598 * config/i386/nm-linux.h (KERNEL_U_SIZE): Define.
1599 (kernel_u_size): Declare.
1600 * config/sparc/nm-sun4os4.h (KERNEL_U_SIZE): Define.
1601 (kernel_u_size): Declare.
1602 * config/alpha/nm-osf2.h (KERNEL_U_SIZE): Define.
1603 (kernel_u_size): Declare.
1604 * config/rs6000/nm-rs6000.h (KERNEL_U_SIZE): Define.
1605 (kernel_u_size): Declare.
1606
1607 Thu Jan 4 11:00:01 1996 steve chamberlain <sac@slash.cygnus.com>
1608
1609 * mdebugread.c (mylookup_symbol): enum namespace becomes
1610 enum_namespace type.
1611 * symfile.c (add_psymbol_to_list)
1612 (add_psymbol_addr_to_list): Ditto.
1613 * symtab.c (lookup_partial_symbol): Ditto.
1614 (lookup_symbol): Ditto.
1615 (lookup_block_symbol): Ditto.
1616 * win32-nat.c (handle_load_dll): Use incoming dll base.
1617 (child_wait): Catch DLL load errors.
1618 (create_child_inferior): Translated between paths correctly.
1619
1620 Wed Jan 3 23:13:53 1996 Fred Fish <fnf@cygnus.com>
1621
1622 * i386v4-nat.c (supply_gregset, fill_gregset): Subtract NUM_FREGS
1623 from NUM_REGS to get number of general registers that we care about.
1624 * config/i386/tm-i386.h (REGISTER_BYTES): Define in terms
1625 of number of general regs and number of floating point regs.
1626
1627 Wed Jan 3 19:49:54 1996 steve chamberlain <sac@slash.cygnus.com>
1628
1629 * config/i386/tm-win32.h (IN_SOLIB_CALL_TRAMPOLINE): New.
1630 (SKIP_TRAMPOLINE_CODE): New.
1631 * config/i386/xm-win32.h (CANT_FORK): Deleted.
1632 (SLASH*) Changed to use unix style slash.
1633 * symtab.h (namespace enum): becomes typedef to avoid namespace
1634 collision in C++.
1635 * infcmd.c (path_command): Use empty string if PATH name not set.
1636 * i386-tdep.c (skip_trampoline_code): New function.
1637 * srec.c: Renamed dsrec.c to avoid filename collision.
1638 * Makefile.in: Cope with renaming.
1639
1640 Wed Jan 3 13:09:04 1996 Fred Fish <fnf@cygnus.com>
1641
1642 * symmisc.c (print_objfile_statistics): Print memory use statistics
1643 for objfile psymbol, symbol, and type obstacks.
1644
1645 Tue Jan 2 13:41:14 1996 Stan Shebs <shebs@andros.cygnus.com>
1646
1647 * config/mips/nm-irix5.h: Restore.
1648 (TARGET_HAS_HARDWARE_WATCHPOINTS, etc): Define as for Irix 4;
1649 from Lee Iverson <leei@ai.sri.com>.
1650 * config/mips/irix5.mh (NAT_FILE): Use nm-irix5.h.
1651 * config/mips/irix[345].mh (MUNCH_DEFINE): Remove.
1652
1653 For older changes see ChangeLog-95
1654 \f
1655 Local Variables:
1656 mode: indented-text
1657 left-margin: 8
1658 fill-column: 74
1659 version-control: never
1660 End:
This page took 0.064189 seconds and 4 git commands to generate.