* Makefile.in (SFILES_MAINDIR): Add ch-exp.y.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
e58de8a2
FF
1Sun Nov 15 09:22:09 1992 Fred Fish (fnf@cygnus.com)
2
3 * Makefile.in (SFILES_MAINDIR): Add ch-exp.y.
4 * Makefile.in (YYFILES): Add ch-exp.tab.c.
5 * Makefile.in (YYOBJ): Add ch-exp.tab.o.
6 * Makefile.in (saber_gdb): Add unload of ch-exp.y and load
7 of ch-exp.tab.c.
8 * Makefile.in (distclean): Add target ch-exp.tab.c.
9 * Makefile.in (realclean): Add rm of ch-exp.tab.c.
10 * Makefile.in (c-exp.tab.c, m2-exp.tab.c): Add dependency on
11 Makefile since it contains sed patterns used in generation.
12 Add sed pattern to also delete #include of any malloc.h.
13 * Makefile.in (ch-exp.tab.o, ch-exp.tab.c): New targets.
14 * ch-exp.y: New expression parser, for GNU-Chill.
15 * c-exp.y, expr.c, expression.h, language.c, m2-exp.y,
16 parser-defs.h, valarith.c, valops.c, value.h: Remap macros and
17 function names to conform to K&R terminology with respect to
18 logical and bitwise operators:
19 UNOP_ZEROP => UNOP_LOGICAL_NOT
20 UNOP_LOGNOT => UNOP_COMPLEMENT
21 BINOP_LOGAND => BINOP_BITWISE_AND
22 BINOP_LOGXOR => BINOP_BITWISE_XOR
23 BINOP_LOGIOR => BINOP_BITWISE_IOR
24 BINOP_AND => BINOP_LOGICAL_AND
25 BINOP_OR => BINOP_LOGICAL_OR
26 PREC_OR => PREC_LOGICAL_OR
27 PREC_AND => PREC_LOGICAL_AND
28 PREC_LOGIOR => PREC_BITWISE_IOR
29 PREC_LOGXOR => PREC_BITWISE_XOR
30 PREC_LOGAND => PREC_BITWISE_AND
31 value_zerop() => value_logical_not()
32 value_lognot() => value_complement()
33 * c-exp.y (c_op_print_tab): Add explicit empty terminator.
34 * m2-exp.y (m2_op_print_tab): Add explicit empty terminator.
35 * defs.h (enum language): Add language_chill.
36 * dwarfread.c (set_cu_language): Add LANG_CHILL case and make
37 LANG_MODULA2 a recognized language.
38 * eval.c (evaluate_subexp): Add OP_BOOL case.
39 * expprint.c (print_subexp): Add OP_BOOL case.
40 * gdbtypes.h (enum_typecode): Note TYPE_CODE_BOOL used for
41 Chill as well as Modula-2.
42 * gdbtypes.y (builtin_type_chill_bool, builtin_type_chill_long,
43 builtin_type_chill_ulong, builtin_type_chill_real): Add.
44 * i387-tdep.c (sys/dir.h): Remove, appears to be unnecessary
45 and is nonexistant in some SVR4 based systems.
46 * language.c (DEFAULT_ALLOCSIZE): Change from 3 => 4.
47 * language.c (set_language_command): Add chill.
48 * language.c (binop_result_type, integral_type, character_type,
49 boolean_type, structured_type, value_true, binop_type_check):
50 Add language_chill cases.
51 * language.h (_LANG_chill): Define.
52 * m2-exp.y (number_sign, modblock): Make static, #ifdef out
53 unused modblock.
54 * m2-exp.y (ANDAND): Rename to LOGICAL_AND.
55 * source.c (source_info): Fix minor nits, print "1 line" rather
56 than "1 lines", and "language is <lang>".
57 * symfile.c (deduce_language_from_filename): Recognize the
58 filename extensions ".chill", ".c186", and ".c286" for Chill.
59 * valarith.c (value_binop): Handle TYPE_CODE_BOOL as well
60 as TYPE_CODE_INT and TYPE_CODE_FLOAT.
61 * valprint.c (val_print): Print TYPE_CODE_BOOL type values as
62 "TRUE" or "FALSE".
63 * valprint.c (typedef_print): Add case for language_chill.
64 * values.c (value_from_longest): Handle TYPE_CODE_BOOL.
65
c1878f87
SG
66Fri Nov 13 20:24:10 1992 Stu Grossman (grossman at cygnus.com)
67
68 * infcmd.c (step_over_calls): Improve comments.
69 * symtab.c (find_pc_psymtab): Clean up a bit.
70 * (find_pc_symtab): Fix comments, clean up code.
71 * (find_pc_line): General cleanups, efficiency improvements.
72 Also, don't return garbage when some line info exists, but there
73 was no good match.
74
b6113cc4
SG
75Wed Nov 11 17:09:17 1992 Stu Grossman (grossman at cygnus.com)
76
77 * Makefile.in: Remove dependancies for 29k-share/dfe/yank.o and
78 29k-share/dfe/mini2udi.o.
79 * config/a29k-udi.mt: Remove yank.o and mini2udi.o.
80 * alldeps.mak, depend: Update to deal with removal of
81 aforementioned files.
82 * remote-udi.c: Major cleanups. Clean up udi_open and drop
83 requirement for useless 'program' argument. Clean up
84 udi_create_inferior, and udi_load to call common download()
85 routine. Create download routine to load remote hosts directly
86 (with the help of BFD) so that we don't need yank.c and
87 mini2udi.c.
88 Fix udi_detach to call UDIDisconnect with
89 the right arguments. Clean up udi_resume, don't assign tip_error
90 twice. Clean up udi_wait, straighten out status codes. Make
91 udi_kill really work.
92
93Fri Nov 6 10:26:01 1992 Steve Chamberlain (sac@thepub.cygnus.com)
94
95 * c-exp.y: separated host/target idea of integer type size,
96 removed redundant parse rules. (YYSTYPE): added typed_val, removed
97 UINT and CHAR rules. (parse_number): work out the targetwise type
98 of a number based upon it's size and qualifiers. (yylex): chars
99 are now treated the same way as ints.
100
101 * source.c (indentify_source_line): don't core dump if wanted
102 line is larger than number of lines in source. (can happen when
103 coff gets confused about #included source).
104
59c84bd8
JG
105Fri Nov 6 03:00:39 1992 John Gilmore (gnu@cygnus.com)
106
107 Fix problems noticed by Allan Steel, <allan@maths.su.oz.au>,
108 when debugging a program with 100 shared libraries.
109
110 * solib.c (solib_map_sections): Always close the BFD we open.
111 Free all malloc'd storage we allocate, too, including error cases.
112 (struct so_list): Remove unused so_bfd member.
113 (clear_solib): Don't bother closing so_bfd.
114
115 * symfile.c (symfile_bfd_open): Mark newly opened BFD as
116 cacheable. `So many symbol files, so little file descriptors.'
117
8a96d79b
JG
118Fri Nov 6 00:14:38 1992 John Gilmore (gnu@cygnus.com)
119
120 * m68k-stub.c: Remove ansidecl.h and the few uses of it.
121 Stubs should stand alone as much as possible.
122
123 * source.c (show_directories): Avoid printf_filtered length prob
124 pointed out by Jonathan Stone.
125
126 * i960-pinsn.c (MEM_MAX, MEM_SIZ): Set upper limit properly to
127 avoid accesses beyond end of table. Fix by Lee W. Cooprider,
128 <Lee_Cooprider@vos.stratus.com>.
129
402dca80
FF
130Thu Nov 5 17:33:08 1992 Fred Fish (fnf@cygnus.com)
131
132 * {ser-bsd.c, ser-termios.c} (serial_close): Pass address of
133 struct, not struct itself.
134 * serial.h (serial_restore): Fix prototype, takes pointer not
135 struct.
136
2352d20b
SG
137Thu Nov 5 17:12:42 1992 Stu Grossman (grossman at cygnus.com)
138
139 * Makefile.in (depend): Add nm.h to the list of things to fixup.
140 * depend: Redo, to fixup nm.h problems with *-tab.c files.
141
61f55ca3
JG
142Thu Nov 5 00:19:51 1992 John Gilmore (gnu@cygnus.com)
143
042bf84c
JG
144 * i386-stub.c: Remove ansidecl.h and the few uses of it.
145 Stubs should stand alone as much as possible.
146
61f55ca3
JG
147 * README: Add remote-es1800.c and remote-st2000.c to table.
148 * go32-nat.c: Remove, there is no native go32 support.
149 * go32-xdep.c: Remove unused fork, fvork, wait, execlp, kill_inferior.
150
740b7efa
SG
151Wed Nov 4 15:27:31 1992 Stu Grossman (grossman at cygnus.com)
152
1549918a
SG
153 * inflow.c (pass_signal, set_sigint_trap, clear_sigint_trap): Add
154 new routines to deal with sending SIGINTs to attached processes
155 when the user interrupts the controlling GDB.
156 * inftarg.c (child_wait), procfs.c (procfs_wait): Add calls to
157 the aforementioned routines when waiting for the attached process.
158
740b7efa
SG
159 * elfread.c, mipsread.c: Include <string.h>.
160 * i386-stub.c: Include "ansidecl.h" to deal with prototypes.
161 * serial.h: Add prototype for serial_restore().
162
a521e93a
ILT
163Wed Nov 4 11:13:25 1992 Ian Lance Taylor (ian@cygnus.com)
164
165 * minsyms.c (lookup_minimal_symbol_by_pc): subtract 1, not 2, from
166 minimal_symbol_count, because the NULL symbol is not included in
167 the count. This prevented this function from finding the last
168 symbol in the table.
169
b1fbbed4
ILT
170Tue Nov 3 11:29:17 1992 Ian Lance Taylor (ian@cygnus.com)
171
172 * dbxread.c (process_one_symbol): if not defined
173 (BLOCK_ADDRESS_FUNCTION_RELATIVE), set function_start_offset at
174 the start of the function, not just after N_FUN.
175
176Fri Oct 30 16:33:02 1992 Fred Fish (fnf@cygnus.com)
e35843d4
FF
177
178 * Makefile.in (c-exp.tab.c, m2-exp.tab.c): Add sed patterns to
179 remap all malloc's to xmalloc's and all realloc's to xrealloc's.
180 * c-exp.y, m2-exp.y: Add comment about how malloc/realloc are
181 remapped to xmalloc/xrealloc, use only malloc/realloc in grammer
182 file. Remove preprocessor defines that previously did remapping.
183
61f55ca3
JG
184Fri Oct 30 00:58:18 1992 John Gilmore (gnu@cygnus.com)
185
186 * infcmd.c (run_command): Avoid long calls to printf_filtered.
187 Bug fix courtesy of Alexander Klaiber.
188
851fffcf
RP
189Tue Oct 27 17:08:45 1992 K. Richard Pixley (rich@cygnus.com)
190
b1de302a
RP
191 hp300 native support (hp300hpux untested).
192
193 * hp300ux-xdep.c: removed.
194 * xm-hp300bsd.h (REGISTER_U_ADDR): removed.
195 * xm-hp300hpux.h: updated copyright.
196 (ATTACH_DETACH, FETCH_INFERIOR_REGISTERS): removed.
197 * nm-hp300bsd.h, nm-hp300hpux.h, hp300ux-nat.c: new files.
198 * Makefile.in (HFILES): added nm-hp300bsd.h and nm-hp300hpux.h.
199 * config/hp300bsd.mh (XDEPFILES): removed infptrace.o inftarg.o
200 fork-child.o coredep.o corelow.o.
201 (NAT_FILE, NATDEPFILES): new macros.
202 * config/hp300bsd.mt (TDEPFILES): removed exec.o.
203 * config/hp300hpux.mh (XDEPFILES): removed infptrace.o inftarg.o
204 fork-child.o.
205 (NAT_FILE, NATDEPFILES): new macros.
206 * config/hp300hpux.mt (TDEPFILES): removed exec.o.
207
7aae0974
RP
208 Vax ultrix native support.
209
210 * nm-vax.h: new file.
211 * Makefile.in (HFILES): added nm-vax.h.
212 * config/vaxult.mh (XDEPFILES): infptrace.o inftarg.o fork-child.o
213 coredep.o corelow.o removed.
214 (NAT_FILE, NATDEPFILES): new macros.
215 * xm-vax.h: updated copyright.
216 (REGISTER_U_ADDR): removed.
217
5c9bbfe6
RP
218 Apollo native support (untested).
219
124a6fc0 220 * Makefile.in (HFILES): added nm-apollo68[bv].h.
5c9bbfe6
RP
221 * a68v-nat.c, nm-apollo68[bv].h: new files.
222 * xm-apollo68[bv].h (FETCH_INFERIOR_REGISTERS): removed.
223 * xm-apollo68b.h (PTRACE_IN_WRONG_PLACE): removed.
224 * a68v-xdep.c: removed.
225 * config/apollo68[bv].mh (XDEPFILES): removed infptrace.o
226 inftarg.o fork-child.o a68v-xdep.o.
227 (NAT_FILE, NATDEPFILES): new macros.
228
851fffcf
RP
229 * defs.h: include nm.h.
230 * coredep.c, infptrace.c, procfs.c, rs6000-nat.c, sparc-nat.c,
231 sparc-tdep.c, : do not include nm.h.
232 * doc/gdbint.texinfo: nm.h now included in defs.h.
233
451df680
SG
234Fri Oct 23 04:47:17 1992 Stu Grossman (grossman at cygnus.com)
235
bccaecc6
SG
236 * Makefile.in (VERSION): 4.7.1 post release!
237
451df680
SG
238 * config/hppahpux.mh (NATDEPFILES): Add hppah-nat.o.
239
c50c5197
JG
240Fri Oct 23 00:48:08 1992 John Gilmore (gnu@cygnus.com)
241
242 * Makefile.in (VERSION): gdb-4.7 release.
243 * README: Update for gdb-4.7.
244
db5b1f90
SG
245Thu Oct 22 11:24:18 1992 Stu Grossman (grossman at cygnus.com)
246
ee22c7f0
SG
247 * sparc-tdep.c: include nm.h (for now) so that we get USE_PROC_FS
248 when necessary.
249
db5b1f90
SG
250 * alldeps.mak, depend: Update.
251
fef84cc4
JG
252Thu Oct 22 03:14:36 1992 John Gilmore (gnu@cygnus.com)
253
254 * partial-stab.h ('f', 'F'): Don't reference pst->textlow if pst
255 is null.
256 * tm-sun4sol2.h (PROLOGUE_FIRSTLINE_OVERLAP): Remove -- it
257 causes problems in setting breakpoint in the right place in
258 functions with `float' args which are passed as doubles.
259 * xm-vaxbsd.h (MEM_FNS_DECLARED): Avoid erroneous redecl's.
260 * config/rs6000.mh (NATDEPFILES): Add corelow.o.
261
603900c7
SG
262Thu Oct 22 01:01:24 1992 Stu Grossman (grossman at cygnus.com)
263
264 * Makefile.in (HFILES): Add nm-i386sco.h.
265 * dwarfread.c: include <sys/types.h> for SCO.
266 * infptrace.c: Don't include ptrace.h under SCO.
267 * config/i386sco.mh: Use -D_POSIX_SOURCE instead of -posix for
268 gcc.
269 * config/i386v.mt: Add exec.o to TDEPFILES.
270
3496b745
SG
271Wed Oct 21 19:08:20 1992 Stu Grossman (grossman at cygnus.com)
272
273 * i386v-nat.c: Remove space from front of #endif.
274 * irix4-nat.c: Remove externs of registers[], include inferior.h
275 instead.
276 * mips-nat.c: Explicitly initialize zerobuf to 0!
277 * mips-tdep.c (init_extra_frame_info): Undo John's last change.
278 Always setup fci->frame, even if it's non-zero. Too many places
279 depend upon this behavior (and I have to get a release out the
280 door)!
281 * mipsread.c (parse_partial_symbols, psymtab_to_symtab_1): Set
282 processing_gcc_compilation if we find the embedded stabs marker.
283 This fixes several bugs with finding the location of short or char
284 function parameters passed on the stack.
285
99ef5653
RP
286Wed Oct 21 17:46:07 1992 K. Richard Pixley (rich@sendai.cygnus.com)
287
288 Native support for sun4sol2.
289
290 * xm-sysv4.h (USE_PROC_FS, ATTACH_DETACH): removed to nm-sysv4.h.
291 * nm-sysv4.h: new file.
292 * Makefile.in (HFILES): added nm-sysv4.h.
293 * config/sun4sol2.mh (XDEPFILES): removed procfs.o fork-child.o.
294 (NAT_FILE, NATDEPFILES): new macros.
295 * config/sun4sol2.mt (TDEPFILES): removed exec.o and solib.o.
296
e4db3f3e
JG
297Wed Oct 21 03:51:01 1992 John Gilmore (gnu@cygnus.com)
298
0a2a48a2
JG
299 * coredep.c: Include "nm.h" to get REGISTER_U_ADDR.
300 * doc/gdbint.texinfo: Improve REGISTER_U_ADDR and USE_PROC_FS doc.
301
e4db3f3e
JG
302 * Makefile.in (VERSION): Tick to 4.6.9.
303
304Tue Oct 20 23:27:56 1992 John Gilmore (gnu@cygnus.com)
305
306 * mipsread.c (UNSAFE_DATA_ADDR): Remove MIPS-host-specific
307 definition, replace with portable one.
308 * remote-nindy.c: Lint.
309 (nindy_wait): Return type is int, result is inferior_pid.
310 * symmisc.c (dump_psymtab): Only print section_offsets if set.
311 (initialize_symmisc): Remove empty function.
312 * tm-spc-noun.h, tm-sun4os4.h, tm-sun4sol2.h (STACK_END_ADDRESS):
313 Remove obsolete, misspelled macro.
314 * doc/gdbint.texinfo: Document obsolete STACK_END_ADDR.
315 (all @node commands): Use new form to avoid nitpicking errors.
316 * doc/gdbint.texinfo: Document host/native/target split.
317
ce5489d2
SG
318Wed Oct 21 00:14:34 1992 Stu Grossman (grossman at cygnus.com)
319
e0e91077
SG
320 * mips-nat.c (zerobuf): Get rid of const to avoid gcc warnings.
321
ce5489d2
SG
322 * xm-mips.h (offsetof): Don't define this if __STDC__.
323
ca048722
RP
324Tue Oct 20 21:32:18 1992 K. Richard Pixley (rich@sendai.cygnus.com)
325
3fcb9021
RP
326 umax native support (untested).
327
328 * config/umax.mh (XDEPFILES): removed infptrace.o inftarg.o
329 fork-child.o.
330 (NAT_FILE, NATDEPFILES): new macros.
331 * config/umax.mt (TDEPFILES): removed exec.o.
332 * xm-umax.h (U_REGS_OFFSET, ATTACH_DETACH, REGISTER_U_ADDR):
333 removed to nm-umax.h.
334 * nm-umax.h: new file.
335 * Makefile.in (HFILES): added nm-umax.h.
336
ca048722
RP
337 hppa native support (untested).
338
339 * config/hppahpux.mh, config/hppabsd.mh (XDEPFILES): now empty.
340 (NAT_FILE, NATDEPFILES): new macros.
341 * config/hppabsd.mt (TDEPFILES): removed exec.o and hppab-core.o.
342 * config/hppahpux.mt (TDEPFILES): removed exec.o.
343 * xm-hppa[bh].h (REGISTER_U_ADDR, U_REGS_OFFSET): removed.
344 * nm-hppa[bh].h, hppa[bh]-nat.c: new files.
345 * hppa[bh]-xdep.c: removed.
346 * hppa[bh]h-tdep.c: do not include ptrace.h.
347 * Makefile.in (HFILES): added nm-hppa[bh].h.
348
349 * doc/gdbint.texinfo: add PUSH_DUMMY_FRAME, POP_FRAME.
350
2675499b
SG
351Tue Oct 20 00:01:46 1992 Stu Grossman (grossman at cygnus.com)
352
353 * mips-nat.c: Straighten out include files. Work around
354 conflicting defs of JB_xxx syms in <setjmp.h> and <machine/pcb.h>
355 for Ultrix-4.2.
356
d95eb930
SG
357Mon Oct 19 15:09:57 1992 Stu Grossman (grossman at cygnus.com)
358
56fc16c7
SG
359 * mips-nat.c (fetch_core_registers, register_addr): Copy from
360 coredep.c, but zero out FP_REGNUM & ZERO_REGNUM so that stack
361 backtraces from core files work.
362 * config/decstation.mh, config/irix3.mh: Remove coredep.o.
363 Functions are now defined in mips-nat.c.
364
365 * tm-irix3.h: Put MIPS_EFI_SYMBOL_NAME in here too.
366
3ec5a74b
SG
367 * remote-hms.c: Disable all uses of serial_nextbaudrate and
368 serial_default_name().
369
5a6242dd
SG
370 * remote-hms.c, ser-go32.c, serial.h: Change from
371 serial_timedreadchar() to new serial_readchar().
372
d95eb930
SG
373 * Makefile.in (HFILES): Fixup list of nm-*.h files. Add missing ones.
374
10a297b7
PB
375Mon Oct 19 12:45:23 1992 Per Bothner (bothner@cygnus.com)
376
377 * c-exp.y: Moved handling of 'const' and 'volatile' from
378 <type> to <typebase>. This removes 2 conflicts.
379
e6efef9f
FF
380Sun Oct 18 00:36:30 1992 Fred Fish (fnf@cygnus.com)
381
382 * breakpoint.c (breakpoint_re_set_one): Don't delete watchpoints
383 from breakpoint table when reseting breakpoints.
384
4d0eabff
FF
385Sat Oct 17 00:59:23 1992 Fred Fish (fnf@cygnus.com)
386
387 Native support cleanup and corefile fixes for i386 SVR4 systems.
388
389 * i386-tdep.c (supply_gregset, fill_gregset, supply_fpregset,
390 fill_fpregset): Moved to i386v4-nat.c
391 * i386v4-nat.c, nm-i386v4.h, : New files.
392 * i386sol2.mh, i386v4.mh, ncr3000.mh (NAT_FILE): Use nm-i386v4.h.
393 * i386sol2.mh, i386v4.mh, ncr3000.mh (NATDEPFILES): Add corelow.o,
394 change i386v-nat.o to i386v4-nat.o.
395
173a4f1b
RP
396Fri Oct 16 13:06:08 1992 K. Richard Pixley (rich@sendai.cygnus.com)
397
c36989aa
RP
398 Miscellaneous 386 configs updated.
399
400 * config/i386aout.mt (TDEPFILES): removed exec.o.
401 * config/i386sol2.mh, config/ncr3000.mh, config/i386v4.mh
402 (XDEPFILES): removed procfs.o fork-child.o i386-xdep.o.
403 (NAT_FILE, NATDEPFILES): new macros.
404 * config/i386aout.mt, config/i386sol2.mt, config/ncr3000.mt,
405 config/i386v4.mt (TDEPFILES): removed exec.o.
406 * config/i386v32.mh (XDEPFILES): removed infptrace.o inftarg.o
407 fork-child.o coredep.o corelow.o i386-xdep.o i387-tdep.o.
408 (NAT_FILE, NATDEPFILES): new macros.
409 * config/i386sco.mh (XDEPFILES): removed infptrace.o inftarg.o
410 fork-child.o coredep.o corelow.o i386-xdep.o.
411 (NAT_FILE, NATDEPFILES): new macros.
412
f1a353db
RP
413 Native support cleanup for i386bsd (untested).
414
415 * config/i386bsd.mt (NATDEPFILES): exec.o removed.
416 * config/i386bsd.mh (NATDEPFILES): added exec.o
417 * tm-i386bsd.h (FLOAT_INFO): removed.
418 * nm-i386bsd.h (FLOAT_INFO): added.
419
c7c94073
RP
420 Native support for i386v (untested).
421
422 * config/i386v.mh (XDEPFILES): removed infptrace.o inftarg.o
423 fork-child.o coredep.o corelow.o i386-xdep.o i387-tdep.o.
424 (NAT_FILE, NATDEPFILES): new macros.
425 * config/i386v.mt (TDEPFILES): removed exec.o, added i387-tdep.o.
426 * i386-xdep.c: removed.
427 * Makefile.in (HFILES): added nm-i386v.h
428 * i386v-nat.c, nm-i386v.h: new file.
429 * xm-i386v.h: (REGISTER_U_ADDR, i386_register_u_addr): removed to
430 nm-i386v.h.
431 * tm-i386v.h (FLOAT_INFO): removed.
432
e24cb83d
RP
433 Native support for linux (untested).
434
435 * config/linux.mh (XDEPFILES): removed infptrace.o inftarg.o
c7c94073 436 fork-child.o coredep.o corelow.o i387-tdep.o i386-xdep.o.
e24cb83d
RP
437 (NAT_FILE, NATDEPFILES): new macros.
438 * config/linux.mt (TDEPFILES): removed exec.o, added i387-tdep.o.
439 * Makefile.in (HFILES): added nm-linux.h.
440 * nm-linux.h: new file.
441 * xm-linux.h: updated copyright. cleaned up formatting.
442 (ATTACH_DETACH, U_REGS_OFFSET): removed to nm-linux.h.
443
61bbb1c2
RP
444 Native support for sun386 (untested).
445
446 * config/sun386.mh (XDEPFILES): removed infptrace.o inftarg.o
447 fork-child.o sun386-xdep.o.
448 (NAT_FILE, NATDEPFILES): new macros.
449 * config/sun386.mt (TDEPFILES): removed exec.o.
450 * Makefile.in (HFILES): added nm-sun386.h.
451 * sun386-nat.c, nm-sun386.h: new file.
452 * sun386-xdep.c: removed.
453 * xm-sun386.h: updated comment and copyright.
454 (ATTACH_DETACH, FETCH_INFERIOR_REGISTERS): removed to
455 nm-sun386.h.
456
a113beac
RP
457 Native support for i386mach (untested).
458
459 * config/i386mach.mh (XDEPFILES): removed infptrace.o inftarg.o
460 fork-child.o mach386-xdep.o.
461 (NAT_FILE, NATDEPFILES): new macros.
462 * Makefile.in (HFILES): added nm-i386mach.h.
463 * nm-i386mach.h, i386mach-nat.c: new files.
464 * mach386-xdep.c: removed.
465 * xm-i386mach.h: updated copyright.
466 (ATTACH_DETACH, FETCH_INFERIOR_REGISTERS): removed to
467 nm-i386mach.h.
468
d9548d44
RP
469 Native separation for go32 (untested).
470
471 * config/go32.mh (NAT_FILE, NATDEPFILES): new macros.
472 * go32-nat.c: new file.
473 * go32-xdep.c (call_ptrace, child_resume,
474 fetch_inferior_registers, store_inferior_registers,
475 child_xfer_memory, fetch_core_registers): removed to go32-nat.c.
476
173a4f1b
RP
477 Native support for m88k (untested).
478
e367cb3b 479 * Makefile.in (HFILES): added nm-m88k.h
173a4f1b
RP
480 * xm-delta88.h, xm-m88k.h (REGISTER_U_ADDR,
481 FETCH_INFERIOR_REGISTERS): removed.
482 * config/m88k.mh, config/delta88.mh (XDEPFILES): infptrace.o
483 inftarg.o fork-child.o m88k-xdep.o removed to NATDEPFILES.
484 (NAT_FILE, NATDEPFILES): new macros.
485 * config/m88k.mt, config/delta88.mt (TDEPFILES): removed exec.o.
486 * m88k-nat.c, nm-m88k.h, nm-delta88.h: new files.o.
487 * m88k-xdep.c: removed.
488
f4cc0e9b
JG
489Fri Oct 16 04:16:30 1992 John Gilmore (gnu@cygnus.com)
490
491 * i386b-nat.c: Comment changes.
492 * nm-i386bsd.h, xm-i386bsd.h: Split native dependent pieces out
493 into new nm-file.
494 * config/i386bsd.mh (NAT_FILE): Point to new nm-file.
495
2268d619
JG
496Fri Oct 16 03:34:01 1992 John Gilmore (gnu@cygnus.com)
497
498 Avoid longjmp()-catching compilation errors in cross-ports.
499
500 * doc/gdbint.texinfo: Update GET_LONGJMP_TARGET, L_SET doc.
501 * irix4-nat.c, mips-nat.c (JB_ELEMENT_SIZE, get_longjmp_target):
502 Move from mips-tdep.c and tm-{irix3,mips}.h.
503 * mips-nat.c: Remove a bunch of code that was ifdef'd out of
504 native MIPS ports.
505 * nm-irix3.h, nm-mips.h (GET_LONGJMP_TARGET): Move from tm-irix3.h
506 and tm-mips.h.
507
508 * ultra3-nat.c (register_addr): Move from ultra3-xdep.c.
509 (fetch_core_registers): Fix bfd_seek arguments.
510
62aa17e3
JG
511Fri Oct 16 03:02:28 1992 John Gilmore (gnu@cygnus.com)
512
d5a66a8d
JG
513 Make core files work again (add back the `core' target).
514
515 * config/decstation.mh, news.mh, sun2os3.mh, sun2os4.mh
516 (NATDEPFILES): Add corelow.o.
62aa17e3
JG
517 * config/delta88.mt, m88k.mt (TDEPFILES): Remove coredep.o, it's
518 native dependent.
519
d5a66a8d
JG
520 * config/3b1.mh, bigmips.mh, hp300bsd.mh, hppabsd.mh, hppahpux.mh,
521 i386sco.mh, i386v.mh, i386v32.mh, irix3.mh, isi.mh, linux.mh,
522 littlemips.mh, merlin.mh, news1000.mh, pn.mh, rtbsd.mh, tahoe.mh,
523 vaxbsd.mh, vaxult.mh (XDEPFILES): Add corelow.o whenever coredep.o
524 appears. FIXME, these should be moved to NATDEPFILES for native
525 use only.
526
b396595a
RP
527Thu Oct 15 21:53:53 1992 K. Richard Pixley (rich@sendai.cygnus.com)
528
6bf98ac0
RP
529 Ultra3 host/target/native split. (untested).
530
531 * ultra3-xdep.c: updated copyright. Do not include sys/ptrace.h.
532 (fetch_register, fetch_inferior_registers,
533 store_inferior_registers, fetch_core_registers): removed to
534 ultra3-nat.c.
535 * xm-ultra3.h (FETCH_INFERIOR_REGISTERS, U_REGS_OFFSET): removed
536 to nm-ultra3.h.
537 * Makefile.in (HFILES): added nm-ultra3.h.
538 * nm-ultra3.h, ultra3-nat.c: new files for native support.
539 * config/ultra3.mh (XDEPFILES): removed infptrace.o inftarg.o
540 fork-child.o.
541 (NAT_FILE, NATDEPFILES): new macros for native support.
542 * config/ultra3.mt (TDEPFILES): exec.o removed.
543
b396595a
RP
544 * xm-vaxult.h: add MEM_FNS_DECLARED.
545
d5931d79
JG
546Thu Oct 15 02:59:30 1992 John Gilmore (gnu@cygnus.com)
547
548 * Makefile.in (VERSION): Roll to 4.6.8.
549 (OBS): Put version.o first, so Makefile rebuild happens early.
550
551 * command.h: Publicize prototype for not_just_help_class_command.
552 * command.c: Remove proto.
327f7197
JG
553 * maint.c: Mark "mt" as an abbrev, to avoid duplicated help
554 output. Move "maint info" from class info to class maintenance,
555 and improve text.
556 * infrun.c: Move "stop" to class_obscure, and give it a
d5931d79
JG
557 function so it will not be seen as a global help topic. FIXME,
558 it should be possible to set these attributes independently.
559
560 * core.c (core_command): Make nicer error message for no core support.
d5931d79
JG
561
562 Lint around file_ptr's (bfd's off_t's) and bfd_seek.
563
564 * dbxread.c (read_dbx_symtab): Use L_SET as bfd_seek arg.
565 (elfstab_build_psymtabs): staboffset and stabstroffset args are
566 file_ptr's.
567 * dwarfread.c (struct dwfinfo): Convert dbfoff, lnfoff to file_ptr.
568 (scan_compilation_units): Punt unused filename arg. dbfoff,
569 lnoffset, and curlnoffset are file_ptr's now.
570 (dwarf_build_psymtabs): Drop desc and filename args; use
571 objfile. dbfoff and lnoffset are file_ptr's now.
572 (read_ofile_symtab): foffset is now file_ptr. Use L_SET in bfd_seek.
573 * elfread.c (struct elfinfo): dboffset and lnoffset are file_ptr's.
574 (elf_symfile_read): Skip desc and filename args to
575 dwarf_build_psymtabs. Pass file_ptr's to elfstab_build_psymtabs.
576 * gdb-stabs.h: Use file_ptr rather than off_t.
577 * mipsread.c (fixup_symtab): f_ptr is a file_ptr. Re-enable
578 compile-time debug check that someone turned off as "unused".
579 (read_the_mips_symtab): st_filptr is a file_ptr. Fix bfd_seek call.
580 * symfile.h: Update dwarf_build_psymtabs and
581 elfstab_build_psymtabs prototypes.
582 * xcoffread.c (init_stringtab, init_lineno, xcoff_symfile_read):
583 Use file_ptr offsets. bfd_seeks use L_SET.
584
dac4929a
SG
585Thu Oct 15 01:27:32 1992 Stu Grossman (grossman at cygnus.com)
586
587 * mips-tdep.c, mipsread.c, tm-mips.h: Get rid of ".gdbinfo."
588 symbol. #define MIPS_EFI_SYMBOL_NAME instead. Use different
589 value so that demangler won't be invoked. This greatly speeds up
590 stepping.
591 * mips-tdep.c (mips_pop_frame): Rewrite handling of
592 linked_proc_info so that it properly deallocates the appropriate
593 item after it is done with it instead of before.
594 * Don't pass bogus frame pointer to create_new_frame(). Just
595 leave it as zero so that lower level code will figure out the
596 correct value.
597
a6b98cb9
RP
598Wed Oct 14 18:56:28 1992 K. Richard Pixley (rich@sendai.cygnus.com)
599
75365589
RP
600 Sony News native support.
601
602 * Makefile.in (HFILES): added nm-news.h.
603 * nm-news.h: new file.
604 * config/news.mh (XDEPFILES): removed infptrace.o inftarg.o
605 fork-child.o coredep.o to NATDEPFILES.
606 (NAT_FILE, NATDEPFILES): new macros for native support.
607 * config/news.mt (TDEPFILES): removed exec.o.
608
170d4f55
RP
609 * remote-vx.c: remove redundant include of sys/time.h.
610
a6b98cb9
RP
611 * infrun.c: include ctype.h. Otherwise some machines result in
612 undefined for isdigit.
613
358ca35e
JG
614Tue Oct 13 01:27:14 1992 John Gilmore (gnu@cygnus.com)
615
616 * configure.in: Convert m68k entries to m68* entries to handle
617 all the various m68xxx hosts and targets.
849d81e5 618 * config/news1000.mt: No longer needed, same as news.mt.
358ca35e 619
601f1570
RP
620Fri Oct 9 18:54:37 1992 K. Richard Pixley (rich@sendai.cygnus.com)
621
622 * config/sun3os[34].mh (NATDEPFILES): remove duplicate inftarg.o.
623
89f1a7df
SG
624Fri Oct 9 14:20:08 1992 Stu Grossman (grossman at cygnus.com)
625
47b7176b
SG
626 * Makefile.in (HFILES): Add all nm-irix3.h, nm-irix4.h,
627 nm-sun2.h, nm-mips.h.
628
30328636
SG
629 * config/irix3.mh (NATDEPFILES): nat-mips.o => mips-nat.o.
630
a1096574
SG
631 * Makefile.in (alldeps.mak): Add = sign after NATDEPFILES.
632
89f1a7df
SG
633 * config/bigmips.mh config/littlemips.mh: Remove mips-xdep.o.
634
b5ddc101
ILT
635Fri Oct 9 08:41:11 1992 Ian Lance Taylor (ian@cygnus.com)
636
637 * xm-hppah.h: if __STDC__ is not defined, define
638 HPPA_COMPILER_BUG.
639 symtab.c (decode_line_1): avoid a bug in the HP9000/700 native
640 compiler; see the comment in the file.
641
0e35d2f3
JG
642Fri Oct 9 04:43:43 1992 John Gilmore (gnu@cygnus.com)
643
644 First cut at support for all BSD variants on 386.
645
646 * tm-i386bsd.h, xm-i386bsd.h: New config files.
647 * i386b-nat.c: New native support file.
648 * configure.in: Add host and target for i[34]86-*-bsd*.
649 * config/i386bsd.mh, config/i386bsd.mt: New config files.
650
a70dc898
RP
651Fri Oct 9 00:31:33 1992 K. Richard Pixley (rich@sendai.cygnus.com)
652
56e89422
RP
653 Sun2 native support (untested).
654
655 * xm-sun2.h (ATTACH_DETACH, FETCH_INFERIOR_REGISTERS,
656 REGISTER_U_ADDR): removed to nm-sun2.h.
657 * nm-sun2.h: new file.
658 * config/sun2os[34].mh (XDEPFILES): infptrace.o inftarg.o
659 fork-child.o sun3-xdep.o removed.
660 (NAT_FILE, NATDEPFILES): new macros.
661
a70dc898
RP
662 Mips native support. Decstation and iris4 have been tested.
663 Iris3 has not.
664
665 * mips-tdep.c (supply_gregset, fill_gregset, supply_fpregset,
666 fill_fpregset): removed to irix4-nat.c
667 * mips-xdep.c: removed.
668 * irix4-nat.c, mips-nat.c, nm-irix3.h, nm-irix4.h, nm-mips.h: new
669 files.
670 * procfs.c: include nm.h.
671 * xm-irix3.h (U_REGS_OFFSET, FETCH_INFERIOR_REGISTERS): removed.
672 * xm-irix4.h: bump copyright.
673 (U_REGS_OFFSET, FETCH_INFERIOR_REGISTERS, USE_PROC_FS,
674 PROC_NAME_FMT): removed.
675 * xm-mips.h (FETCH_INFERIOR_REGISTERS): removed.
676 * config/irix4.mh (XDEPFILES): removed procfs.o fork-child.o.
677 (NAT_FILE, NATDEPFILES): new macros for native support.
678 (CC): supply default compiler switches.
d5931d79
JG
679 * config/irix3.mh (XDEPFILES): removed infptrace.o inftarg.o
680 fork-child.o coredep.o.
a70dc898
RP
681 (NAT_FILE, NATDEPFILES): new macros for native support. Note that
682 irix3 is untested.
683 * config/decstation.mh (XDEPFILES): removed infptrace.o inftarg.o
684 fork-child.o mips-xdep.o coredep.o.
685 (NAT_FILE, NATDEPFILES): new macros for native support.
686
55ec69fb
RP
687Thu Oct 8 23:50:51 1992 K. Richard Pixley (rich@sendai.cygnus.com)
688
689 * config/rs6000.mh (XDEPFILES): removed fork-child.o.
690 (NATDEPFILES): added fork-child.o
691 * config/sun3os3.mh (XDEPFILES): removed fork-child.o.
692 (NATDEPFILES): added fork-child.o
693 * config/sun3os4.mh (XDEPFILES): removed fork-child.o.
694 (NATDEPFILES): added fork-child.o
695
01ae50eb
JG
696Thu Oct 8 23:19:25 1992 John Gilmore (gnu@cygnus.com)
697
698 * infcmd.c (path_info): Avoid 250-char limit on printf_filtered,
699 by using puts_filtered instead.
700
0256270d
KR
701Fri Oct 9 00:28:25 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
702
703 * remote-nindy.c (nindy_load): Replacement version from Steve
704 Chamberlain, doesn't require forking to run "strip" or "sx".
705
e6c61372
SG
706Thu Oct 8 18:27:35 1992 Stu Grossman (grossman at cygnus.com)
707
708 * Makefile.in (HFILES): Add nm-*.h files.
709
968720bf
RP
710Thu Oct 8 16:27:45 1992 K. Richard Pixley (rich@sendai.cygnus.com)
711
dd6f8695
RP
712 * config/sun4os4.mh (XDEPFILES): fork-child.o removed.
713 (NATDEPFILES): added fork-child.o.
714
968720bf
RP
715 * doc/gdbint.texinfo: document a few more macros, create new
716 section for native macros.
717
e7ae70e9
SG
718Thu Oct 8 13:52:46 1992 Stu Grossman (grossman at cygnus.com)
719
720 * Makefile.in alldeps.mak depend: Rip out 29k/udi pending
721 resolution of copyright issues.
722
0da70124
SG
723Wed Oct 7 20:08:53 1992 Stu Grossman (grossman at cygnus.com)
724
725 * Makefile.in (setup-to-dist): Remove -norecursion so that doc
726 subdir gets configured.
727
6a1f93f6
KR
728Wed Oct 7 12:24:01 1992 Ken Raeburn (raeburn@cygnus.com)
729
730 * Makefile.in (nindy.o): Define "STRIP" as pathname of strip
731 program.
732 * nindy-share/nindy.c (coffstrip): Use that pathname, instead of
733 searching for a "bfd_strip" program. Also, fixed up arguments
734 passed to that program.
735
736 * tm-nindy960.h (ADDITIONAL_OPTIONS): Use "-ser" rather than "-r",
737 which is now used for something else. Rewrite description of
738 associated parameters to match how gdb does it now.
739 (ADDITIONAL_OPTION_HELP): Fix message accordingly.
740
741 * m68k-pinsn.c (print_insn_arg): Handle new "`" operand type.
742
3950a34e
RP
743Tue Oct 6 14:47:11 1992 K. Richard Pixley (rich@sendai.cygnus.com)
744
745 NOTICE_SIGNAL_HANDLING_CHANGE macro added to the target vector as
746 to_notice_signals.
747
748 * inferior.h (proc_signal_handling_change): prototype removed.
749 * infrun.c (NOTICE_SIGNAL_HANDLING_CHANGE): default removed.
750 (handle_command): now calls target_notice_signals.
751 * procfs.c (proc_signal_handling_change): renamed to
752 procfs_notice_signals. Now static. Add prototype. All callers
753 changed.
754 * target.h (struct target_ops): new field, to_notice_signals.
755 (target_notice_signals): new macro to cover new field.
756 * target.c (cleanup_target): default to_notice_signals to ignore.
757 * corelow.c (core_ops),
758 exec.c (exec_ops),
759 inftarg.c (child_ops),
760 procfs.c (procfs_ops),
761 remote-adapt.c (adapt-ops),
762 remote-eb.c (eb_ops),
763 remote-es1800.c (es1800_ops, es1800_child_ops),
764 remote-hms.c (hms_ops),
765 remote-mm.c (mm_ops),
766 remote-nindy.c (nindy_ops),
767 remote-st2000.c (st2000_ops),
e7ae70e9 768 remote-udi.c (udi_ops),
3950a34e
RP
769 remote-vx.c (vx_ops, vx_run_ops),
770 remote.c (remote_ops),
771 target.c (dummy_target),
772 xcoffexec.c (exec_ops): added static initializer for
773 to_notice_signals.
774 * xm-irix4.h, xm-sysv4.h (NOTICE_SIGNAL_HANDLING_CHANGE): removed.
775
06e4d12d
JG
776Tue Oct 6 12:13:08 1992 John Gilmore (gnu@cygnus.com)
777
778 * main.c (define_command): Add forgotten initializer.
779
48ab6c0e
JG
780Tue Oct 6 02:23:17 1992 John Gilmore (gnu@cygnus.com)
781
b5af69c3
JG
782 * language.c, language.h: Move saved_language out to global
783 expected_language. Set expected_language when user expectation
784 changes.
785 * language.c (language_info): Don't print type/range checking gub.
786 * main.c (main): Set expected language.
787 (execute_command): Check against expected language.
788 * symfile.c (set_initial_language): Set expected language.
789
48ab6c0e
JG
790 * configure.in, config/i386sol2.{mh,mt}: Preliminary Solaris-x86 conf.
791
94603999
JG
792Fri Sep 4 00:34:30 1992 Per Bothner (bothner@rtl.cygnus.com)
793
794 A bunch of changes mostly to improve debugging of C++ programs.
795 Specifically, the calling of inferiors methods is improved.
796
797 * value.h: New macros METHOD_PTR_IS_VIRTUAL,
798 METHOD_PTR_FROM_VOFFSET, METHOD_PTR_TO_VOFFSET to partially
799 hide the implementation details of pointer-to-method objects.
800 How to tell if the pointer points to a virtual method is
801 still very dependent on the particular compiler, but this
802 should make it easier to find the places to change.
803 * eval.c (evaluate_subexp [case OP_FUNCALL]), valprint.c
804 (val_print [case TYPE_CODE_PTR]): Use the new METHOD_PTR_*
805 macros, instead of a hard-wired-in code that incorrectly
806 assumed a no-longerused representation of pointer-to-method
807 values. And otherwise fix the relevant bit-rotted code.
808
809 * valprint.c (type_print_base [case TYPE_CODE_STRUCT]):
810 If there are both fields and methods, put a space between.
811
812 * stabsread.c (read_struct_type): Fix bug in handling of
813 GNU C++ anonymous type (indicated by CPLUS_MARKER followed
814 by '_'). (It used to prematurely exit the loop reading in
815 the fields, so it would think it should start reading
816 methods while still in the fields. This could crash gdb
817 given a gcc that can emit nested type information.)
818
819 * valops.c (search_struct_method): Pass 'this' value by
820 reference instead of by value. This provides a more
821 consistent interface through a recursive search where the
822 "bottom" functions may need to adjust offsets (due to multiple
823 inheritance).
824 * valops.c, value.h, values.c: Pass extra parameters to
825 value_fn_field and value_virtual_fn_field so we can
826 correctly adjust offset for multiple inheritance.
827 * eval.c (evaluate_subexp [case OP_FUNCALL]): Simplify
828 virtual function calls by using value_virtual_fn_field().
829 * values.c: New function baseclass_offset, derived from
830 baseclass_addr (which perhaps can be made obsolete?).
831 It returns an offset rather than an address. This is a
832 cleaner interface since it doesn't mess around allocating
833 new values.
834 * valops.c (search_struct_method): Use baseclass_offset
835 rather than baseclass_addr.
836
aa1dea48
SG
837Mon Oct 5 16:02:04 1992 Stu Grossman (grossman at cygnus.com)
838
e7ae70e9
SG
839 * Makefile.in: Re-install 29K/UDI stuff.
840 * remote-udi.c (udi_resume): Clean up.
841 * (udi_wait): Rewrite, leave out bugs.
842 * Add debugging code to print out all register fetches and stores.
843 * Straighten out target_ops.
aa1dea48
SG
844 * tm-29k.h (DUMMY_FRAME_RSIZE): Pad out to doubleword.
845
e661aaae
ILT
846Mon Oct 5 09:46:44 1992 Ian Lance Taylor (ian@cygnus.com)
847
e7ae70e9
SG
848 * remote-udi.c (udi_create_inferior): run with no arguments should
849 not pass the program name as an argument, since the UDI code
850 already handles that.
851 (udi_load): get the symbols from prog_name, not arg_string (the
852 load command should really use arg_string as the program name, not
853 prog_name, but at least the run command works now).
854
5d5a9c3c 855 * munch: HP9000/300 nm puts an extra space between T and symbol
91912864
ILT
856 name.
857
e661aaae
ILT
858 * config/irix4.mh: added -lsun to XM_CLIBS to get RPC functions
859 needed for vxworks targets.
860
34517ebc
JG
861Fri Oct 2 22:04:42 1992 John Gilmore (gnu@cygnus.com)
862
863 * am29k-tdep.c (_initialize_29k): Make it possible for the
864 user to set and query the address where function calls into the
865 inferior write a small scratch routine. `set call_scratch_address'
866 * inferior.h (PC_IN_CALL_DUMMY): Fix fencepost error.
867 * remote.c (remote_prepare_to_store): Only fetch regs if they are
868 not already cached validly.
869
93282e61
RP
870Thu Oct 1 14:36:42 1992 K. Richard Pixley (rich@sendai.cygnus.com)
871
ef6f3a8b
RP
872 Rs6000 native support.
873
874 * infptrace.c: remove #ifdef USG from around include ptrace.h.
875 machines without this header should not be compiling this file.
876 * nm-rs6000.h, rs6000-nat.c: new files for native support.
877 * rs6000-tdep.c: do not include sys/ptrace.h or sys/reg.h.
878 * rs6000-xdep.c: removed. all code now in rs6000-nat.c.
879 * xm-rs6000.h: do not include ptrace.h.
880 (ATTACH_DETACH, FETCH_INFERIOR_REGISTERS): moved to nm-rs6000.h.
881 * config/rs6000.mh (XDEPFILES): removed rs6000-xdep.o.
882 infptrace.o and inftarg.o move to NATDEPFIES.
883 (NAT_FILE, NATDEPFILES): new macro for native support.
884
93282e61
RP
885 Sun3 native support.
886
887 * config/sun3os3.mh, config/sun3os4.mh (NAT_FILE, NATDEPFILES):
888 new macros for native support.
889 (XDEPFILES): moved infptrace.o and inftarg.o to NATDEPFILES,
890 removed sun3-xdep.o.
891 * xm-sun3.h (ATTACH_DETACH, FETCH_INFERIOR_REGISTERS): moved to
892 nm-sun3.h.
893 * sun3-xdep.c: removed. All code is now in sun3-nat.c.
894 * sun3-nat.c, nm-sun3.h: new files for native support.
895
896Thu Oct 1 10:30:54 1992 Fred Fish (fnf@cygnus.com)
897
898 * dwarfread.c (dbsize): New variable to hold size of dwarf info.
899 * dwarfread.c (dwarf_build_psymtabs): Rename dbsize parameter to
900 dbfsize and use it to initialize new local file scope dbsize.
901 * dwarfread.c (read_ofile_symtab): Initialize dbsize and use it.
902 * dwarfread.c (basicdieinfo): Use dbsize to check for oversize
903 DIEs as well as the current check for undersize DIEs. This helps
904 to gracefully detect and reject corrupted DIE information.
905
a65841d7
JG
906Thu Oct 1 01:57:56 1992 John Gilmore (gnu@cygnus.com)
907
908 Add `command hooks' and a hook for inferior program stopping.
909
910 * command.h (struct cmd_list_element): Remove unused `aux'
911 field. Add new `hook', `hookee', and `cmd_pointer' fields.
912 * command.c (add_cmd): Initialize new fields, elim old.
913 (add_alias_cmd): Clone new fields.
914 (delete_cmd): Un-hook hookee if we're deleting hook.
915 (help_cmd): Tell user the command is hooked, if it is.
916 (lookup_cmd_1): Abbreviations return the original command
917 instead of themselves, so that hooks on the original cmd will be
918 run.
919 * defs.h (enum command_class): Add class_pseudo and comments.
920 * gdbcmd.h (execute_user_command): Add prototype.
921 * infrun.c (normal_stop): If the stop command is hooked,
922 run the hook whenever we stop.
923 (hook_stop_stub): Stub for catch_errors.
924 (_initialize_infrun): Set up pseudo "stop" command.
925 * main.c (execute_user_command): Code extracted from execute_command.
926 (execute_command): If hooked, run the hook before the command.
927 (define_command): If defining a new hook, check the command it
928 is hooking, and warn if none. Install the hook.
929 * source.c (_initialize_source): "l" is an abbrev for "list".
930 * doc/gdb.texinfo: Document command hooks.
931
932 * Makefile.in (VERSION): Roll to 4.6.7.
933 * config/sun4os4.mh: Remove dup inftarg.o from NATDEPFILES.
934 * infrun.c (breakpoints_inserted): Make it static again.
935 * tm-symmetry.h (FLOAT_INFO): #if 0 it for cross-ptrace abuse.
936
dfc82617
RP
937Wed Sep 30 15:33:22 1992 K. Richard Pixley (rich@sendai.cygnus.com)
938
939 Native file renaming.
940
941 * nat-sparc.c -> sparc-nat.c
942 * nat-sun4os4.h -> nm-sun4os4.h
943 * nat-trash.h -> nm-trash.h
9c14e78d 944 * config/sun4os4.mh: track file renaming.
dfc82617
RP
945 * configure.in: link to nm.h rather than nat.h.
946 * infptrace.c: include nm.h rather than nat.h.
947
df9b3bfc
RP
948Tue Sep 29 14:35:00 1992 K. Richard Pixley (rich@sendai.cygnus.com)
949
c9c23412
RP
950 Host/target/native split for sun4.
951
952 * Makefile.in (TSOBS): removed corelow.o.
953 * infptrace.c: included nat.h.
954 * nat-trash.h: temporary header file. This should be removed once
955 all hosts have the native/host/target split.
956 * configure.in: add a symlink from nat-trash.h to nat.h if no
957 other nat file exists for this configuration.
958 * sparc-tdep.c: no longer include sys/ptrace.h.
959 * sparc-xdep.c: removed. contents have been moved to nat-sparc.c.
960 * xm-sparc.h (ATTACH_DETACH, FETCH_INFERIOR_REGISTERS): moved to
961 nat-sun4os4.h.
962 * nat-sparc.c, nat-sun4os4.h: new files for sun4 native support.
963 * config/sun4os4.mh (XDEPFILES): moved infptrace.o and inftarg.o
964 to NATDEPFILES. removed sparc-xdep.o.
965 (NATDEPFILES, NAT_FILE): new macros for native support.
966
df9b3bfc
RP
967 Break the direct connection from core_file_command to any
968 particular type of core file support.
969
970 * target.h (find_core_target): new prototype.
971 * target.c (find_core_target): new function. Walks the target
972 list looking for the core target.
973 * core.c (core_file_command): replace calls to core_detach and
974 core_open with find_core_target and direct calls.
975
be891e75
ILT
976Tue Sep 29 10:19:00 1992 Ian Lance Taylor (ian@cygnus.com)
977
978 * xm-hp300hpux.h: define MEM_FNS_DECLARED; include <sys/ptrace.h>
979 for infptrace.c.
980 config/hp300hpux.mh: ALLOCA1 was not defined.
981
597dc86b
SG
982Mon Sep 28 22:03:41 1992 Stu Grossman (grossman at cygnus.com)
983
984 * breakpoint.c, exec.c, language.c, main.c, printcmd.c, symfile.c,
985 target.c, valprint.c: Use unfiltered forms of f/printf, et. al.
986 until we can figure out a better way to do paging.
987
e0ba1d14
JG
988Sat Sep 26 02:07:31 1992 John Gilmore (gnu@cygnus.com)
989
990 * findvar.c (supply_register): Add CLEAN_UP_REGISTER_VALUE hook.
991 * tm-hppa.h (CLEAN_UP_REGISTER_VALUE): Use it.
992 * hppa-coredep.c: Remove, now that we use the hook.
993 * config/hppab.mh, config/hppah.mh: Use standard coredep.o.
994 * hppab-xdep.c, hppah-xdep.c: Remove custom code, use hook.
995
996 * dbxread.c, partial-stab.h: Replace all #ifdef hp9000s800's with
997 GDB_TARGET_IS_HPPA's. This is a SERIOUS KLUDGE. The code needs to all
998 be ripped out and reimplemented right (see elfread.c).
999 * tm-hppa.h (GDB_TARGET_IS_HPPA): Define.
1000
1001 Rename all HPPA files to fit into unique DOS filenames:
1002 * *hppabsd* => *hppab*
1003 * *hppahpux* => *hppah*
1004
b3d4dd73
JG
1005Sat Sep 26 00:25:15 1992 John Gilmore (gnu@cygnus.com)
1006
3fbdd536
JG
1007 Make the /proc support a target-struct in its own right.
1008
b3d4dd73
JG
1009 * Makefile.in: Remove inftarg.[co], since it is now included via
1010 config/*.mh files.
1011 * config/*.mh: Add inftarg.o and fork-child.o to all *.mh that
1012 reference infptrace.o. Add fork-child.o to all *.mh that
1013 reference procfs.o.
1014
3fbdd536
JG
1015 * inferior.h (proc_wait, inferior_proc_init, proc_set_exec_trap):
1016 No longer global functions.
1017 (fork_inferior): New global function from fork-child.c.
1018 * inftarg.c (child_wait): Remove USE_PROC_FS conditional.
1019 (ptrace_me, ptrace_him): New stub functions for fork_inferior().
1020 (child_create_inferior): Moved to fork-child.c as fork_inferior.
1021 (child_create_inferior): New tiny function that calls fork_inferior.
1022 * fork-child.c: New file, containing fork_inferior, which is
1023 built from slight mods to inftarg.c's child_create_inferior.
1024
1025 * procfs.c (procfs_ops): Add target vector.
1026 (attach): Rename as static do_attach.
1027 (procfs_create_inferior): New tiny function that calls fork_inferior.
1028 (child_xfer_memory): Rename to static procfs_xfer_memory.
1029 (store_inferior_registers): Rename to static procfs_store_registers.
1030 (inferior_proc_init): Rename to static procfs_init_inferior.
1031 (procfs_attach, procfs_detach, procfs_prepare_to_store,
1032 procfs_files_info, procfs_open, procfs_mourn_inferior,
1033 procfs_can_run): Slightly mangled copies of the corresponding
1034 child_XXX routines from inftarg.c.
1035 (proc_wait): Renamed to static procfs_wait.
1036 (child_resume): Rename to static procfs_resume.
1037 (fetch_inferior_registers): Rename to static procfs_fetch_registers.
1038 (initialize_proc_fs): Rename to initialize_procfs. Set up
1039 procfs_ops, too.
1040
1041 * putenv.c: index -> strchr.
1042 * regex.c: Always rename bcopy to memcpy, etc.
1043 FIXME: Eventually do the renames rather than use #define's.
1044 * sparc-tdep.c (deferred_stores): Moved from sparc-xdep.c.
1045 Fix bcopy->memcpy.
1046 * sparc-xdep.c: Move deferred_stores to target dependent.
1047 * xm-irix4.h, xm-sysv4.h (CREATE_INFERIOR_HOOK): No longer needed.
1048
836e343b
JG
1049Fri Sep 25 21:59:27 1992 John Gilmore (gnu@cygnus.com)
1050
1051 Split non-target-dependent code out of target_attach routines.
1052
1053 * target.h: Comments on target_attach args and results.
1054 * infcmd.c (attach_command): Check for existing execution, call
1055 target_attach, set up terminal status and wait_for_inferior, wait
1056 for the attach status, and do normal_stop.
1057 * inftarg.c (child_attach): Remove target independent stuff.
1058 * remote-adapt.c (adapt_attach): Ditto.
1059 * remote-mm.c (mm_attach): Ditto.
e7ae70e9 1060 * remote-udi.c (udi_attach): Ditto.
836e343b
JG
1061 * remote-vx.c (vx_attach): Ditto.
1062
1063 Cleanup.
1064
1065 * remote-hms.c (hms_attach): Remove completely, it was useless.
e7ae70e9 1066 * remote-mm.c, remote-hms.c, remote-udi.c, remote-adapt.c: Remove
836e343b 1067 commented-out start_remote calls.
e7ae70e9 1068 * remote-hms.c, remote-adapt.c, remote-mm.c, remote-udi.c: Remove
836e343b
JG
1069 DENTER and DEXIT macros and their calls. Use a real debugger --
1070 like gdb -- to see what functions are being called when.
a5a7c719 1071 * utils.c (strcmp_iw): Make nonstatic, for lint.
836e343b 1072
3aa6856a
JG
1073Fri Sep 25 18:48:20 1992 John Gilmore (gnu@cygnus.com)
1074
1075 * infrun.c, inftarg.c, inferior.h: Comment and lint cleanups.
1076
b869d3f4
SG
1077Fri Sep 25 15:13:44 1992 Stu Grossman (grossman at cygnus.com)
1078
1aed6766
SG
1079 * tm-sparc.h, dbxread.c (read_ofile_symtab): Install Jim Wilson's
1080 fix to differentiate between gcc1 & gcc2 compiled files so that we
1081 can debug calls that pass structs as args correctly.
1082 * symmisc.c (dump_symtab): If block was compiled with gcc, say
1083 so, and what version.
1084
b869d3f4
SG
1085 * remote.c (remote_wait): Make regs be char to avoid picayune
1086 ANSI compiler warnings.
1087
e7ae70e9
SG
1088 * energize.h: Move all external struct decls to inside of
1089 __STDC__, add prototype for energize_shell_wait().
1090 * energize.c (getpty): Clean up, make us really get a controlling
1091 terminal.
1092 * (energize_initialize): Disable SIGIO prior to setting up for
1093 I/O interrupts. Move setsid(), et. al. to getpty().
1094 * (energize_shell_wait): New routine to wait for things started
1095 via the shell command, uses wait() instead of /dev/proc.
1096 * Also, add prototype for execute_command_1().
1097
050d45c5
RP
1098Fri Sep 25 12:09:33 1992 K. Richard Pixley (rich@sendai.cygnus.com)
1099
310cc570
RP
1100 * inftarg.c (child_create_inferior, child_attach,
1101 child_mourn_inferior): collect unix child process stratum
1102 functions which live below the target vector into this file to
1103 facilitate host/target/native split. Also, make them static.
1104 * inflow.c (child_mourn_inferior): removed.
1105 * infrun.c (child_create_inferior, child_attach): removed.
1106 (resume): becomes global so that functions below the
1107 target vector can find it.
1108 * inferior.h (resume): add prototype.
1109 (child_mourn_inferior, child_create_inferior, child_attach):
1110 remove prototypes.
1111
050d45c5
RP
1112 * xcoffexec.c (exec_ops): child_attach and child_create_inferior
1113 replaced with find_default_attach and
1114 find_default_create_inferior.
1115
1116Fri Sep 25 10:21:04 1992 Ken Raeburn (raeburn@rtl.cygnus.com)
1117
1118 * i960-pinsn.c: Use _filtered routines for printing, so symbolic
1119 addresses don't get displayed in the wrong positions.
1120
8afd6ca5
RP
1121Fri Sep 25 09:52:47 1992 K. Richard Pixley (rich@sendai.cygnus.com)
1122
1123 Separate core functions along target vector in preparation for
1124 native support. Functions above vector now live in core.c. Those
1125 below in corelow.c.
1126
1127 * core.c (solib_add_stub, core_close, core_open, core_detach,
1128 get_core_registers, core_files_info, core_ops): moved to corelow.c
1129 (_initialize_core): removed addition of core_ops target.
1130 * corelow.c: new file.
1131 (solib_add_stub, core_close, core_open, core_detach,
1132 get_core_registers, core_files_info, core_ops): moved from core.c
1133 (_initialize_corelow): new function.
1134 * gdbcore.h (core_open, core_detach): added prototypes.
1135 (core_ops): add forward declaration.
1136 * Makefile.in (SFILES_MAINDIR): add core.c
1137 (OBS): add core.o
1138 (TSOBS): change core.o to corelow.o
1139
cdfab267
SG
1140Wed Sep 23 11:14:53 1992 Stu Grossman (grossman at cygnus.com)
1141
1142 * m68k-tdep.c (m68k_saved_pc_after_call): Use 'GDB_TARGET_IS_SUN3'
1143 instead of 'sun' predefined symbol so that trap analysis code is
1144 enabled only when the TARGET is a sun3.
1145
5e9a7f00
KR
1146Tue Sep 22 17:13:19 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
1147
1148 * tm-i960.h (ext_format_i960): Add top-level declaration.
1149 (REGISTER_CONVERT_TO_{VIRTUAL,RAW}): Don't declare it in nested
1150 blocks, else Sun4 compiler complains.
1151
ebeccdf0
JG
1152Tue Sep 22 00:43:51 1992 John Gilmore (gnu@cygnus.com)
1153
1154 * mips-pinsn.c (print_insn_arg, case 'B'): Disassemble `break'
1155 instruction's argument. Patch from jonathan@cs.stanford.edu
1156 (Jonathan Stone).
1157
5ee4e16c
JG
1158Mon Sep 21 18:16:30 1992 K. Richard Pixley (rich@sendai.cygnus.com)
1159
1160 Break the thread of control that implies that a unix child
1161 process will be the default target.
1162
1163 * target.c (find_default_run_target, find_default_attach,
1164 find_default_create_inferior, return_zero): new functions.
1165 (cleanup_target): Make return_zero the default for to_can_run.
1166
1167 * exec.c (exec_ops), core.c (core_ops): Replace child_attach and
1168 child_create_inferior references with find_default_XXX instead.
1169
1170 * target.h (struct target_ops): new field, to_can_run.
1171 (find_default_attach, find_default_create_inferior): new prototypes.
1172 (target_can_run): new macro.
1173
1174 * Also added a zero (default) to_can_run element to all static
1175 struct target_ops initializations throughout GDB, except:
1176 * inftarg.c (child_ops): Use new child_can_run() to enable child runs.
1177
1178 * infrun.c (child_create_inferior): Clean up error handling when
1179 no exec file is specified.
1180 (child_attach): Don't require exec file.
1181
b28d3617
JG
1182Mon Sep 21 19:43:13 1992 John Gilmore and K. Richard Pixley (gnu@cygnus.com)
1183
1184 Remove kill_inferior_fast, in favor of target_kill, which goes
1185 through the target vector.
1186
1187 * inferior.h (kill_inferior_fast): remove declaration.
1188
1189 * main.c (disconnect): call quit_cover using catch_errors rather
1190 than calling kill_inferior_fast directly. New way goes through
1191 the target vector, handles attached processes, and writes
1192 command history if appropriate.
1193 (quit_cover): new function, wrapper for quit_command.
1194
1195 * convex-xdep.c, go32-xdep.c, hppabsd-xdep.c, hppahpux-xdep.c,
1196 infptrace.c, procfs.c: Removed all instances of kill_inferior_fast,
1197 inlining them into the local kill_inferior when needed.
1198
6b50c5c2
JG
1199Mon Sep 21 19:23:05 1992 John Gilmore (gnu@cygnus.com)
1200
1201 * infrun.c (_initialize_infrun): Alias `i handle' == `i signals'.
1202 * stabsread.c (read_struct_type): Simplify complicated expression
1203 for dumb DECstation compiler.
1204
8f61b5e4
ILT
1205Mon Sep 21 14:54:35 1992 Ian Lance Taylor (ian@cygnus.com)
1206
1207 * m68k-pinsn (print_insn_arg, fetch_arg): added support for
1208 operands to memory management instructions, from WRS.
1209
538280d8
FF
1210Sep 20 08:42:12 1992 Fred Fish (fnf@cygnus.com)
1211
1212 * main.c (main): Back out previous language setting changes.
1213 Replace with simple default to C before processing any init
1214 files. There MUST be a language set, even in the absence of
1215 init files or executables, or expression parsing fails.
1216
d75710b0
FF
1217Sat Sep 19 09:52:26 1992 Fred Fish (fnf@cygnus.com)
1218
1219 * main.c (main): Move code that sets initial language to
1220 symfile.c. Fixup places where command files are processed to
1221 be consistent in setting a default language if none has been
1222 previously set.
1223 * symfile.c (set_initial_language): Add code moved from
1224 main() that sets an initial default language when a new
1225 symbol file is read.
1226 * symfile.c (symbol_file_command): Call set_initial_language.
1227 * symtab.c (find_main_psymtab): Add FIXME comment.
1228
45413b27
JG
1229Wed Sep 16 22:31:55 1992 K. Richard Pixley (rich@sendai.cygnus.com)
1230
1231 * breakpoint.c, sparc-tdep.c: comment changes.
f7fe7196
JG
1232 * configure.in: removed target_dependent line.
1233
1234 * remote-mm.c (mm_attach): change printf to error to prevent
1235 fallthrough bug.
e7ae70e9
SG
1236 * remote-udi.c (udi_attach): change printf to error to prevent
1237 fallthrough bug.
45413b27 1238
5f1c39ef
JG
1239 * rs6000-tdep.c (push_dummy_frame, pop_dummy_frame): replace
1240 calls to {fetch|store}_inferior_registers with calls to
1241 target_{fetch|store}_registers, for remote-target independence.
1242
dd9da95a
JG
1243Sat Sep 19 04:23:54 1992 John Gilmore (gnu@cygnus.com)
1244
1245 * Makefile.in: Fix bug I introduced in merging Rich's change.
1246 * infrun.c (child_create_inferior): Use proceed() rather than
1247 doing all the same stuff by hand.
1248
d40309c7
JG
1249Thu Sep 17 17:35:37 1992 K. Richard Pixley (rich@sendai.cygnus.com)
1250
1251 * Makefile.in, configure.in: add support for files used only when
1252 configured native, that is, when host = target.
1253
a4afec9a
JG
1254Wed Sep 16 23:03:23 1992 K. Richard Pixley (rich@sendai.cygnus.com)
1255
1256 * tm-sparc.h, xm-sparc.h: externs and macros relating to deferred
d40309c7 1257 stores are target dependent and were moved from xm to tm.
a4afec9a 1258
2e384b3b
JG
1259Sat Sep 19 03:14:37 1992 John Gilmore (gnu@cygnus.com)
1260
8c095066
JG
1261 * Makefile.in (gdb-all.texi): Build in objdir, not $srcdir.
1262
2e384b3b
JG
1263 * config/decstation.mh: Add MMALLOC_LIB and MMALLOC_DISABLE
1264 overrides, to avoid problem in xdr_bytes with malloc(0) => 0.
1265
dcc8abce
JG
1266Wed Sep 16 20:04:54 1992 K. Richard Pixley (rich@sendai.cygnus.com)
1267
1268 * target.h (struct target_ops): removed to_convert_to_virtual and
1269 to_convert_from_virtual elements. Initializations removed from
1270 all static initializations.
1271 (target_convert_to_virtual, target_convert_from_virtual):
1272 removed.
1273 (host_convert_to_virtual, host_convert_from_virtual): Removed
1274 forward declarations.
1275 * target.c (cleanup_target): removed default assignments for
1276 to_convert_to_virtual and to_convert_from_virtual.
1277 * inftarg.c (host_convert_to_virtual, host_convert_from_virtual):
1278 removed.
1279 * findvar.c (value_of_register, value_from_register):
1280 target_convert_to_virtual inlined.
1281 * infcmd.c (do_registers_info): target_convert_to_virtual inlined.
1282 * valops.c (value_assign): target_convert_from_virtual inlined.
1283
2886f8b2
JG
1284Fri Sep 18 02:07:39 1992 John Gilmore (gnu@cygnus.com)
1285
c35475f9
JG
1286 * main.c (gdb_readline): Avoid printf_filtered, which sets char
1287 position wrong if used for the prompt.
1288 * utils.c (puts_filtered): Comment: NOT a puts() replacement!
1289
2886f8b2
JG
1290 Support for accessing arbitrary MIPS stack frames in memory.
1291
1292 * blockframe.c (get_prev_frame_info): If INIT_FRAME_PC_FIRST is
1293 set, run it before INIT_EXTRA_FRAME_INFO.
1294 * stack.c (frame_info): If PRINT_EXTRA_FRAME_INFO defined, call it.
1295
1296 * mips-tdep.c (init_extra_frame_info): Only clobber the `frame'
1297 (FP) value in the frame_info struct if it is zero (as from top of
1298 execution stack).
1299 (setup_arbitrary_frame): Implement FRAME_SPECIFICATION_DYADIC.
1300
1301 * mips-xdep.c (fetch_inferior_registers): ZERO_REGNUM always
1302 comes back as zero. So does FP_REGNUM, as a trigger for
1303 init_extra_frame_info.
1304
1305 * tm-mips.h (INIT_FRAME_PC_FIRST): Kludge, FIXME, defined to get
1306 the program counter set before INIT_EXTRA_FRAME_INFO is run.
1307 (INIT_FRAME_PC): Defined to null.
1308 (PRINT_EXTRA_FRAME_INFO): print frame pointer location via symtab.
1309 (FRAME_SPECIFICATION_DYADIC): Ask for two args in frame command.
1310 Briefly explain MIPS stacks in GDB.
1311
d974236f
JG
1312Thu Sep 17 03:49:59 1992 John Gilmore (gnu@cygnus.com)
1313
cb1d36fc
JG
1314 * copying.awk, copying.c (show_copying_command,
1315 show_warranty_command): Rename from copying_info, warranty_info,
1316 to match command function conventions.
1317
d974236f
JG
1318 * utils.c (prompt_for_continue): Reinitialize more-counts
1319 before printing anything, and again afterward. Fix comments.
1320 (vfprintf_filtered): Eliminate static buffer; use auto buffer,
1321 or alloca() if needed.
1322
1323 * rs6000-xdep.c: Use correct conditional (IBM6000_TARGET) to
1324 detect native versus cross-host.
1325
f4992534
SG
1326Wed Sep 16 21:57:14 1992 Stu Grossman (grossman at cygnus.com)
1327
1328 * m68k-tdep.c (sun3_saved_pc_after_call): Only do trap check for
1329 Suns. Rename to m68k_saved_pc_after_call.
1330 * tm-68k-noun.h, tm-sun3.h (SAVED_PC_AFTER_CALL): Use
1331 m68k_saved... instead of sun3_saved...
1332
22473f72
JG
1333Wed Sep 16 17:00:07 1992 John Gilmore (gnu@cygnus.com)
1334
1335 * Makefile.in (update-depend, update-alldeps): Split out of
1336 setup-to-dist, for convenience in rebuilding the depend and
1337 alldeps.mak files.
1338 (assorted): Update to catch straggler files when building gdb.tar.Z.
1339
997cc2c0
JG
1340Tue Sep 15 01:18:50 1992 John Gilmore (gnu@cygnus.com)
1341
1342 Preliminary cleanup for splitting host/native/target.
1343
1344 * infptrace.c (child_resume): Don't deal with NO_SINGLE_STEP
1345 here; it is dealt with at a gdb-target-independent level.
1346 * rs6000-tdep.c (single_step): Don't call ptrace, we are a
1347 high toned routine. Fix return type to void.
6bb40269
JG
1348 * tm-rs6000.h (AIX_BUGGY_PTRACE_CALL): Zap, we think we fixed it.
1349 Rich and I believe the "real problem" was that both single_step
1350 and target_resume were issuing PT_CONTINUE calls. This would
1351 cause the second PT_CONTINUE to sometimes fail because the process
1352 was already running.
1353 * infptrace.c (child_resume): Remove AIX_BUGGY_PTRACE_CALL kludge.
997cc2c0 1354
5ca812d4
SG
1355Mon Sep 14 19:20:43 1992 Stu Grossman (grossman at cygnus.com)
1356
e7ae70e9
SG
1357 * energize.c (pty_to_kernel): Must check for EAGAIN as
1358 termination condition.
1359 (full_filename): Don't prepend dirname if filename begins with /.
1360 (breakpoint_notify, kernel_dispatch): Deal with DynamicLoad
1361 messages properly!!
1362 (getpty (NCR)): Lotsa bug fixes...
1363 (kernel_dispatch (case StopRType)): Use kill() instead of
1364 killpg() so we can deal with losing systems...
1365 (wait_for_events): Work around NCR select() lossage. It doesn't
1366 zero out readfds when select() returns zero.
1367 (energize_initialize): Use I_SETSIG to get SIGIO interrupts. Use
1368 getcwd() instead of getwd() (NCR getwd() seg faults).
1369 (energize_wait): Use sigaction() for NCR. Their version of signal()
1370 is unreliable by default.
1371
34da3608
SG
1372 * procfs.c (proc_wait): Call print_sys_errmsg() if we get an
1373 error from PIOCSWSTOP.
1374
a8e033f2
SG
1375 * breakpoint.c, core.c, exec.c, language.c, main.c, printcmd.c,
1376 symfile.c, target.c, valprint.c: Use _filtered form of *printf.
1377 defs.h, utils.c: Make vfprintf_filtered global.
1378
e7ae70e9
SG
1379 * energize.c (send_location): New routine to consolidate all
1380 places where we must notify kernel of where the given pc is.
1381 (cplus_demangle): Put single-quotes around demangled names.
1382 (energize_call_command): Call send_location() after doing up,
1383 down, and frame commands.
1384
549ff100
RP
1385Fri Sep 11 18:28:28 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
1386
d1d1ab12 1387 * doc/gdb.texinfo, doc/gdbinv-m.m4.in, doc/gdbinv-s.m4.in: first
e7ae70e9 1388 pass at doc for two new remote targets---29K using UDI, and Tandem
d1d1ab12
RP
1389 ST2000 using STDBUG.
1390
1391 * doc/all.m4, doc/none.m4: new m4 switch, _ST2000__
1392
1393 * doc/all.m4: turn on H8/300 stuff for generic manual
1394
549ff100
RP
1395 * doc/gdbinv-s.m4.in: remove text on special procedures to continue
1396 after explicit call to breakpoint() in serial stubs.
1397
3de61d8c
JG
1398Fri Sep 11 01:34:25 1992 John Gilmore (gnu@sphagnum.cygnus.com)
1399
57a9bb5f
JG
1400 * mipsread.c: Clean up some white space.
1401 (parse_symbol): Handle stEnd of stFile.
1402 (parse_partial_symbols): Remove old #if 0'd code. Handle stLocal.
1403
3de61d8c
JG
1404 * mips-xdep.c (REGISTER_PTRACE_ADDR, fetch_inferior_registers,
1405 store_inferior_registers): Replace unexplained numbers
1406 with manifest constants from a DECstation header file.
1407 * xm-mips.h (KERNEL_U_ADDR): Get from <machine/param.h>.
1408 (REGISTER_U_ADDR): Fix up for Ultrix 4.2.
1409
1410 * tm-tahoe.h, xm-tahoe.h (KERNEL_U_ADDR): Move macro to xm-tahoe.h.
1411
1412 * stack.c (_initialize_stack): "dow" should be a valid abbreviation
1413 for "down". Suggested by Richard Stallman.
1414
73386fff
KR
1415Thu Sep 10 15:26:07 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
1416
1417 * remote-vx.c: Rename realloc for inclusion of rpc/rpc.h, to avoid
1418 redeclaration bug on SunOS 4.
1419
4ddd278f
JG
1420Wed Sep 9 17:36:53 1992 John Gilmore (gnu@cygnus.com)
1421
1422 * i386-stub.c, sparc-stub.c (getpacket): Actually check checksums.
1423 * m68k-stub.c: Remove a few extraneous ANSI-isms.
1424 * remote-nindy.c (nindy_prepare_to_store): Only fetch regs if
1425 they aren't already there.
1426 * remote-vx.c (vx_prepare_to_store): Ditto.
1427 * xcoffread.c: Surround forward struct defns with #ifdef __STDC__.
1428
2640f7e1
JG
1429Wed Sep 9 16:50:22 1992 John Gilmore (gnu@cygnus.com)
1430
1431 Removed a large number of changes inserted by Per Bothner
1432 for C++ support. These will go back in when they've been
1433 examined.
1434
ed3f6049
SG
1435Tue Sep 8 21:05:18 1992 Stu Grossman (grossman at cygnus.com)
1436
1437 * serial.h: Fix prototye for serial_raw().
1438 * ser-bsd.c, ser-termios.c: Fix args for serial_open() &
1439 serial_write() to match prototypes.
1440 * remote-st2000.c (get_reg_name): Make *p be const.
1441
120f867e
KR
1442Tue Sep 8 17:24:52 1992 Ken Raeburn (raeburn@cambridge.cygnus.com)
1443
1444 * remote-nindy.c (nindy_fetch_registers): Make return type void,
1445 to agree with target structure field type.
1446 (nindy_store_registers): Ditto.
1447
1448 * Makefile (OPCODES): New var, pointing to opcodes library.
1449 (CLIBS, CDEPS): Include it.
1450 (saber_gdb): Load opcodes library.
1451
a090e706
SG
1452Tue Sep 8 15:22:06 1992 Stu Grossman (grossman at cygnus.com)
1453
1454 * a68v-xdep.c (store_inferior_registers): declare as void.
1455 * infptrace.c: HP/Apollos have ptrace.h in the wrong place.
1456 * remote-st2000.c: Massive changes to use new serial package.
1457 Also added 'connect' command to transparantly connect to serial
1458 port.
1459 * ser-termios.c: Big cleanup, use nicer coding conventions.
1460 * ser-bsd.c: New module, serial stuff for BSD systems.
1461 * serial.h: Define struct ttystate properly using HAVE_TERMIO.
1462 * xm-apollo68b.h: #define PTRACE_IN_WRONG_PLACE...
1463
4468ccfb
RP
1464Fri Sep 4 18:53:57 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
1465
1466 * doc/gdb.texinfo: fix shameful error of agreement reported by
1467 jimb@occs.cs.oberlin.edu (Jim Blandy)
1468 * doc/gdb.texinfo: remove old partial discussion of remote serial
1469 protocol (via serial debug stubs)
1470 * doc/gdbinv-m.m4.in, doc/gdbinv-s.m4.in: new section discussing
1471 use of serial debug stubs
1472
35fcebce
PB
1473Fri Sep 4 00:34:30 1992 Per Bothner (bothner@rtl.cygnus.com)
1474
35fcebce
PB
1475 * symfile.h: Declaration of set_demangling_style() moved
1476 here from demangle.h (which is now in ../include).
1477 * i386-xdep.c: Update comment.
35fcebce 1478
8005788c
RP
1479Thu Sep 3 13:44:46 1992 K. Richard Pixley (rich@sendai.cygnus.com)
1480
1481 * symtab.c (completion_list_add_symbol): restructured to optimize
2640f7e1
JG
1482 for time. First clip names that cannot match. Then clip any
1483 names we've already considered. Drop a redundant strncpy. Drop
1484 a redundant malloc and associated free for demangled names.
8005788c 1485
6c7e40b4
SG
1486Thu Sep 3 09:17:05 1992 Stu Grossman (grossman at cygnus.com)
1487
1488 * a68v-xdep.c (store_inferior_registers): Define as type void.
1489 * configure.in: Add host m68k-apollo*-bsd*.
1490 * demangle.c (struct demanglers): Use enum instead of constant
1491 value to keep braindamaged HP/Apollo compiler happy.
1492
546014f7
PB
1493Wed Sep 2 20:45:31 1992 Per Bothner (bothner@rtl.cygnus.com)
1494
1495 * utils.c (strcmp_iw): Add a hack to allow "FOO(ARGS)" to
1496 match "FOO". This allows 'break Foo' to work when Foo is
1497 a mangled C++ function. (See comment before function.)
1498
6131a42a
JG
1499Wed Sep 2 13:45:27 1992 John Gilmore (gnu@cygnus.com)
1500
82eabd43
JG
1501 * config/rs6000.mh (MH_CFLAGS): Circumvent IBM <rpc/rpc.h> bug,
1502 for files in vx-share/*.c.
1503 * xm-rs6000.h (fd_set): Circumvent the rs6000.mh circumvention,
1504 for normal GDB source files.
1505
6d7bfa9a
JG
1506 * Makefile.in (VERSION): Roll to 4.6.6.
1507
6131a42a
JG
1508 * tm-vx68.h, tm-es1800.h: Use tm-68k.h rather than tm-sun3.h.
1509 * tm-sun3.h: Remove STACK_END_ADDR, no longer used.
1510 * tm-sun3os4.h: Update comments.
1511 * xm-delta88.h: Remove STACK_END_ADDR.
1512
b52373a2
JG
1513Wed Sep 2 01:18:31 1992 John Gilmore (gnu@cygnus.com)
1514
6aef3bde
JG
1515 * Makefile.in (VERSION): Roll to 4.6.5.
1516
6131a42a
JG
1517 * infrun.c: Lint for recent `handle' changes.
1518
b52373a2
JG
1519 * ser-termios.c, ser-go32.c: Remove DEFUN crap, clean up.
1520 * serial.h (EXFUN): Remove all uses, convert to PARAMS.
1521 * config/sun4os4.mh: Include ser-termios.o. FIXME, all .mh files
1522 should include a ser-XXX.o module.
1523
1524 * dbxread.c (elfstab_build_psymtabs): Remove DEFUN crap.
1525 * defs.h, i960-pinsn.c, remote-hms.c: Replace CONST with simple const.
1526
1527 * configure.in: Map unrecognized sun 68k's, sun sparcs, into
1528 known suns in configure.in, rather than mapping them to unique
1529 config files that happen to duplicate other config files.
1530 * config/sun3.{mh,mt}: Remove (use identical sun3os4.*).
1531 * config/sun4.{mh,mt}: Remove (use identical sun4os4.*).
1532
ebb3a1e5
JG
1533Wed Sep 2 00:10:43 1992 John Gilmore (gnu@cygnus.com)
1534
1535 * configure.in (*-*-sunos*): Use trailing * to match all
1536 sub-variants of SunOS, e.g. sunos4* to match sunos4.1.1.
1537 (sparc-*-sunos3): Remove host & target. Sunos3 never shipped
1538 in production on Sun-4.
1539 ({a29k,i[34]86,i960}-*-elf): Add targets, equivalent to coff.
1540 (m68k-*-{aout,coff,elf}): Add targets, w/new config and tm files.
1541 (sparc-*-{aout,coff,elf}): Add targets, w/new config and tm files.
1542
1543 * config/m68k-un.mt, config/m68k-noun.mt, config/sparc-un.mt,
1544 config/sparc-noun.mt: New target configs for embedded.
1545 * config/sun4os3.{mh,mt}: Remove, never existed in production.
1546
1547 * tm-68k-un.h, tm-68k-noun.h, tm-spc-un.h, tm-spc-noun.h: New
1548 target definitions for embedded with and without underlines on
1549 identifiers. FIXME -- this ought to be known by BFD instead.
1550
1551 * tm-sparc.h, tm-sun2.h, tm-sun3.h: Delete NAMES_HAVE_UNDERSCORE:
1552 not a parameter of the CPU, but of the development environment.
1553 * tm-es1800.h, tm-sunos.h, tm-vx68.h: Add NAMES_HAVE_UNDERSCORE.
1554
ea678717
JG
1555Tue Sep 1 17:31:45 1992 John Gilmore (gnu@cygnus.com)
1556
1557 * breakpoint.c (breakpoint_re_set): Avoid setting source symtab
1558 (which involves reading in main's symtab) if we have no breakpoints.
1559
95ff889e
FF
1560Mon Aug 31 13:47:45 1992 Fred Fish (fnf@cygnus.com)
1561
1562 * dwarfread.c (cu_language): New local variable to record
1563 language for current compilation unit being processed.
1564 * dwarfread.c (set_cu_language): New local function to decode
1565 and record language for current compilation unit being processed.
1566 * dwarfread.c (synthesize_typedef): Add local function to
1567 synthesize a typedef for C++ classes, structs, unions, and
1568 enumerations.
1569 * dwarfread.c (read_structure_scope): Synthesize typedefs
1570 for C++ classes, structs and unions.
1571 * dwarfread.c (read_enumeration): Synthesize typedefs for
1572 C++ enumerations.
1573 * dwarfread.c (read_file_scope): Call set_cu_language to
1574 record language for current compilation unit. After symtab
1575 is built, save this recorded language.
1576 * dwarfread.c (process_dies, add_partial_symbol, struct_type,
1577 scan_partial_symbols, new_symbol): Recognize TAG_class_type.
1578 * dwarfread.c (add_partial_symbol): Synthesize partial symbol
1579 typedefs for C++ classes, structs, unions, and enumerations.
1580 * dwarfread.c (scan_compilation_units): Call set_cu_language
1581 to record language for current compilation unit.
1582 * dwarfread.c (scan_partial_symbols): Call add_enum_psymbol here
1583 for TAG_enumeration_types, rather than in add_partial_symbol.
1584 * dwarfread.c (add_partial_symbol): Combine TAG_enumeration_type
1585 case with class, struct, and union type cases, now that they are
1586 the same. Remove tests for non-NULL name attributes, now done
1587 by callers.
1588 * gdbtypes.h (TYPE_CODE_CLASS): Add type for C++ classes, but
1589 treat as alias for TYPE_CODE_STRUCT for now.
1590
b68b44fa
ILT
1591Sun Aug 30 21:32:17 1992 Ian Lance Taylor (ian@cygnus.com)
1592
1593 * Makefile.in: map "gdb" through program_transform_name when
1594 installing.
1595
3877a219
FF
1596Sun Aug 30 21:18:51 1992 Fred Fish (fnf@cygnus.com)
1597
1598 * {i386-tdep.c, m68k-tdep.c, mips-tdep.c, sparc-tdep.c}
1599 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset):
1600 Use "regi" for local indexing through register numbers, reserving
1601 "regno" for the name of a specific register passed as an input
1602 parameter. Fix bug propagated through all versions that sometimes
1603 used regno as an index when it should have been regi, thus using
1604 -1 as an index in some cases.
1605
3402b1cf
PB
1606Sun Aug 30 18:15:17 1992 Per Bothner (bothner@rtl.cygnus.com)
1607
1608 * cplus-dem.c, demangle.h: Moved to ../libiberty and ../include,
1609 respectively, so same demangler can be used by other programs.
1610 * Makefile.in: Remove demangler stuff.
1611 * Makefile.in (depend): Pass -I../readline (needed for main.c).
1612 * demangle.c (_initialize_demangler): Tell demangler which
1613 CPLUS_MARKER to assume.
1614
d6776adb
JG
1615Fri Aug 28 13:13:33 1992 John Gilmore (gnu@cygnus.com)
1616
9b280a7f
JG
1617 RS/6000 portability changes (for hosting cross-debuggers).
1618
1619 * breakpoint.c (fixup_breakpoints): Re-kludge to IBM6000_TARGET.
1620 * buildsym.c, rs6000-xdep.c, rs6000-tdep.c, tm-rs6000.h,
1621 xcoffexec.c, xcoffread.c: Rename aixcoff to xcoff everywhere.
1622 * printcmd.c (print_frame_args): Remove an RS/6000 dependency.
1623 * stabsread.c (define_symbol): Remove RS/6000 dependencies.
1624 * tm-rs6000.h (ATTACH_DETACH): Remove: host-dependent.
1625 (PTRACE_ATTACH, PTRACE_DETACH): Remove: host-dep.
1626 (NO_SINGLE_STEP): Add, target-dependent.
1627 (loadinfotextindex): Lowercase, remove "aix_".
1628 * xm-rs6000.h: Add <sys/ptrace.h> for infptrace.c.
1629 (NO_SINGLE_STEP): Remove, target-dependent.
1630 * xcoffexec.c (vmap_symtab): Cleanup #if 0'd code.
1631 * xcoffread.c: Only build file if RS/6000 native GDB.
1632 (build_function_symbol): Remove #if 0'd code.
1633 * rs6000-tdep.c: Cleanup. Add static fn protos.
1634 Use CORE_ADDR for addresses throughout. Make void fns void.
1635 (pop_dummy_frame): Add FIXME about bogosity of design here.
1636 (rs6000_struct_return_address): Ditto.
1637 (frameless_function_invocation, frame_get_cache_fsr,
1638 frame_initial_stack_address, xcoff_relocate_symtab,
1639 xcoff_init_loadinfo, free_loadinfo, xcoff_add_toc_to_loadinfo,
1640 add_text_to_loadinfo, find_toc_address): Move from xdep file.
1641 Use CORE_ADDRs. Change identifiers to lowercase.
1642
1643 * rs6000-xdep.c: Make whole file conditional on native RS/6000,
1644 supplying dummy routines if non-native. Add prototype for
1645 static exec_one_dummy_insn. Move a mess of functions to
1646 rs6000-tdep.c (as above). Remove #if 0'd code.
1647
1648 * config/rs6000.mh (XDEPFILES): Move xcoffexec.o to target side.
1649 (XM_CLIBS): Add -lm to circumvent AIX 3.2 libc ldexp bug.
1650 * config/rs6000.mt (TDEPFILES): Adopt xcoffexec.o.
1651
1652 * gdbtypes.h (TYPE_ALLOC): Parenthesize result to avoid problems
1653 for callers.
1654
d6776adb
JG
1655 * vx-share/README, nindy-share/README: New files describing
1656 how these directories' code is shared, and with whom.
1657
ef131e13
JG
1658Thu Aug 27 20:04:56 1992 John Gilmore (gnu@cygnus.com)
1659
1660 * configure.in (target configurations): Reformat into table.
1661 Remove unsupp. Amigados host and target. Ditto Mach 386 target.
1662
1663 * tm-altosgas.h, tm-i386v-g.h: Remove ancient coff encap configs.
1664 * config/{altosgas.mt, i386v-g.mt, i386v32-g.mt}: Ditto.
1665 * config/{i386sco.mt,i386v32.mt}: Remove; identical to i386v.mt.
1666 * config/{go32.mt,i960.mt}: Remove; they only printed error msgs.
1667 * config/nindy960.mt: Remove useless MT_CFLAGS setting.
1668 * config/i386aout.mt: Use tm-i386v.h, not tm-i386v-g.h.
1669
1670 * Makefile.in (config-check): Add command to check whether
1671 configure.in is consistent with config/*.
1672
19758e9e
JG
1673Wed Aug 26 21:10:52 1992 John Gilmore (gnu@cygnus.com)
1674
1675 * configure.in (host configurations): Reformat nested cases into
1676 easy-to-maintain table.
b1aa08e2
JG
1677 (m68k-altos-*, i386v*): We don't care whether coff encap is used.
1678 config/{altosgas.mh, i386v-g.mh, i386v32-g.mh}: Remove.
19758e9e 1679
38e9ed49
FF
1680Wed Aug 26 16:02:01 1992 Fred Fish (fnf@cygnus.com)
1681
1682 * cplus-dem.c: Reorder args to most local functions to make them
1683 follow the consistent pattern of struct work_stuff pointer first,
1684 followed by pointer into string being demangled, followed by
1685 pointer to the string where the result is being stored, followed
1686 by other args. Also generally replace most variables of name
1687 "type" with "mangled" for consistency. They all pointed to the
1688 same string but half were one name and half the other.
1689 * cplus-dem.c (LONGERNAMES): Remove #ifndef's.
1690 * cplus-dem.c (demangle_qualified): Rewrite to clean up and allow
1691 use whenever a qualified name is being demangled.
1692 * cplus-dem.c (do_type): Qualified names are treated similarly
1693 to fundamental types, not as modifiers of fundamental types.
1694
ee97d673
SG
1695Mon Aug 24 20:44:38 1992 Stu Grossman (grossman at cygnus.com)
1696
38e9ed49
FF
1697 * configure.in: Add sparclite as a target.
1698
ee97d673
SG
1699 * sparc-stub.c (handle_exception): Flush instruction cache just
1700 before returning to the user. (hexToInt): Fix overzealous cleanup.
1701
93220abe
FF
1702Mon Aug 24 11:57:13 1992 Fred Fish (fnf@cygnus.com)
1703
1704 * infrun.c (handle_command): Rewrite to allow multiple signal
1705 numbers, signal number ranges, and to recognize "all" to mean all
1706 signals except those used by the debugger.
1707 * infrun.c (SET_SIGS, UNSET_SIGS): Macros used in handle_command
1708 to set or reset actions for specific signals.
1709
dac9734e
FF
1710Sun Aug 23 17:10:07 1992 Fred Fish (fnf@cygnus.com)
1711
1712 * coffread.c (decode_type): Call alloc_type to alloc new
1713 types.
1714 * stabsread.c (read_array_type, read_range_type, define_symbol):
1715 Call alloc_type to alloc new types.
1716 * stabsread.c (define_symbol): Move dbl_valu symbol field data
1717 from type_obstack to symbol_obstack.
1718 * stabsread.c (define_symbol): Move typedef_sym from type_obstack
1719 to symbol_obstack.
1720 * gdbtypes.h (TYPE_ALLOC): New macro to allocate space for data
1721 associated with a type, using the same mechanism as was used to
1722 allocate space for the type structure itself.
1723 * coffread.c (patch_type, coff_read_struct_type,
1724 coff_read_enum_type): Use TYPE_ALLOC.
1725 * dwarfread.c (struct_type): Use TYPE_ALLOC.
1726 * gdbtypes.c (create_array_type, check_stub_method,
1727 allocate_cplus_struct_type): Use TYPE_ALLOC.
1728 * mipsread.c (parse_symbol, parse_type): Use TYPE_ALLOC.
1729 * stabsread.c (read_struct_type, read_array_type, read_enum_type,
1730 read_range_type): Use TYPE_ALLOC.
1731
ca8820f9
FF
1732Sun Aug 23 11:04:08 1992 Fred Fish (fnf@cygnus.com)
1733
1734 * breakpoint.c (breakpoint_re_set): Select a default source
1735 symtab if one is not currently selected.
1736 * utils.c (query): Call wrap_here before building the output
1737 query string, to turn off wrapping and flush any buffered output.
1738 Otherwise our query may end up in the wrap buffer and never be
1739 seen by the user.
1740 * eval.c (evaluate_subexp): Report error when attempting to
1741 evaluate subscript for types without a target type, rather
1742 than dumping core by using the NULL pointer.
1743 * symfile.c (symbol_file_command): Forget current_source_symtab
1744 and current_source_line when discarding symbol table.
1745
42e8b658
JG
1746Sat Aug 22 22:33:20 1992 John Gilmore (gnu@cygnus.com)
1747
1748 Bug fixes from Andrew Heybey <ath@lcs.mit.edu>.
1749
1750 * tm-mips.h (REGISTER_VIRTUAL_TYPE): Float regs are float type.
1751 * mips-tdep.c (mips_print_register): Alloc enough space for two regs.
1752
39a13178
SG
1753Fri Aug 21 15:17:03 1992 Stu Grossman (grossman at cygnus.com)
1754
1755 * remote.c (remote_open): Fix baud rate setting to make -b flag
1756 work. (remote_wait): Change 'T' message parser to deal with new
1757 improved format which allows stub to send an arbitrary bunch of
1758 registers.
1759 * sparc-stub.c: General cleanups. (trap_low, handle_exception):
1760 make all this re-entrant by storing all state on the stack. Clean
1761 up memory error trapping. (computeSignal, set_debug_traps):
1762 make it all table driven. Make a start at a baud rate setting command.
1763
0d6d92c7
ILT
1764Wed Aug 19 10:23:27 1992 Ian Lance Taylor (ian@cygnus.com)
1765
664cf438
ILT
1766 * m68k-pinsn.c: handle new operand type 'r', introduced for cas2.
1767
0d6d92c7
ILT
1768 * remote-vx.c: redefine malloc to avoid buggy declaration on
1769 RS/6000 <rpc/types.h>.
1770 xm-rs6000.h: include <sys/select.h> to define fd_set for
1771 <rpc/svc.h> on RS/6000.
1772
4bbefa86
ILT
1773Tue Aug 18 14:48:24 1992 Ian Lance Taylor (ian@cygnus.com)
1774
1775 * Makefile.in: added FLAGS_TO_PASS variable, and passed it to
1776 recursive invocations of make. Always create installation
1777 directories.
1778
d6b38bfb
PB
1779Mon Aug 17 18:29:58 1992 Per Bothner (bothner@rtl.cygnus.com)
1780
1781 * m68k-pinsn.c: Minor fix in style of output (don't use
1782 range to indicate floating point control registers).
1783
e893a126
JG
1784Sat Aug 15 02:58:03 1992 John Gilmore (gnu@cygnus.com)
1785
67c9f54c
JG
1786 * m68k-pinsn.c: Surround extended support with #ifdef HAVE_68881.
1787
e893a126
JG
1788 * infcmd.c (registers_info): Handle multiple register names.
1789 Changes inspired by Roland McGrath.
1790
4ecee2f9
SG
1791Sat Aug 15 02:28:52 1992 Stu Grossman (grossman at cygnus.com)
1792
1793 * sparc-stub.c: New file. Mix it with your SPARClite
1794 application, and it will speak GDB remote protocol!
1795 * remote.c (remote_wait): Change 'T' (expedited reply) message to
e893a126 1796 deal with arbitrary registers. Needed for sparc-stub.
4ecee2f9 1797
3dc755fb
FF
1798Fri Aug 14 12:11:25 1992 Fred Fish (fnf@cygnus.com)
1799
1800 * cplus-dem.c (cplus_markers): Add table for gnu style and
1801 use throughout, in place of compile time constant CPLUS_MARKER.
1802 * cplus-dem.c (ARM_VTABLE_STRING, ARM_VTABLE_STRLEN): Add.
1803 * cplus-dem.c (cfront_special): New function, as suggested
1804 by pfieland@stratus.com.
1805 * cplus-dem.c (forget_types): New function.
1806 * cplus-dem.c (cplus_demangle): Call gnu_special, moved from
1807 demangle_prefix().
1808 * cplus-dem.c (mop_up): Call forget_types().
1809 * cplus-dem.c (AUTO_DEMANGLING, GNU_DEMANGLING, LUCID_DEMANGLING):
1810 Use throughout, instead of checking current_demangling_style.
1811 * cplus-dem.c (demangle_signature): When finding an explicit
1812 start of function args, forget all remembered types for
1813 lucid/cfront style demangling.
1814 * cplus-dem.c (demangle_prefix): In a sequence of two or more
1815 underbar characters, use last pair as the delimiter. Hoist
1816 gnu_special() call up to cplus_demangle(). Call cfront_special()
1817 when appropriate.
1818 * cplus-dem.c (cplus_special): Fix virtual table name demangling
1819 for inherited classes.
1820 * cplus-dem.c (demangle_args): Document quirks of numbered
1821 references to previously seen types.
1822 * dbxread.c (read_ofile_symtab, process_one_symbol):
1823 Use AUTO_DEMANGLING rather than explicitly checking
1824 current_demangling_style.
1825 * demangle.h: Add some comments.
1826 * demangle.h (AUTO_DEMANGLING, GNU_DEMANGLING, LUCID_DEMANGLING,
1827 CFRONT_DEMANGLING): New macros.
1828 * dwarfread.c (LCC_PRODUCER): Remove trailing space, which is
1829 not found in the actual producer string produced by lcc.
1830 * dwarfread.c (handle_producer): Use AUTO_DEMANGLING rather
1831 than explicitly checking current_demangling_style.
1832
4e8ea7a6
JG
1833Thu Aug 13 11:54:46 1992 John Gilmore (gnu at cygnus.com)
1834
1835 * breakpoint.c (enable_longjmp_breakpoint,
1836 disable_longjmp_breakpoint, set_longjmp_resume_breakpoint):
1837 Check for duplicate breakpoints at the same address. Bug report
1838 and preliminary fix from Dave Morrison, <drmorris@us.oracle.com>.
1839
7b5d9650
FF
1840Wed Aug 12 11:14:58 1992 Fred Fish (fnf@cygnus.com)
1841
1842 * buildsym.c (end_symtab): Document that end_symtab can return
1843 NULL under non-error conditions.
1844 * dwarfread.c (read_file_scope): Guard against dereferencing NULL
1845 returned from end_symtab for empty compilation units.
1846
6872cfda
JG
1847Tue Aug 11 02:49:39 1992 John Gilmore (gnu at cygnus.com)
1848
1849 * am29k-tdep.c: Lint from DECstation compiler.
1850 * mem-break.c: Restore test of BREAKPOINT size that Fred removed.
1851 As the man page says, "Sometimes you just can't get lint to shut
1852 up". That doesn't mean you should blow away the code it won't
1853 shut up about.
1854 * mips-xdep.c: Revise stubbing-out of code until Rich cleans
1855 it up over the next few weeks. Make mips x 29k build.
1856 * tm-29k.h (CALL_DUMMY): Make it work on cross-endian hosts.
1857 (FIX_CALL_DUMMY): Comment in the patching of the breakpoint,
1858 but leave it as a comment because the breakpoint instruction
1859 is not easily accessible at this moment (it's static, and if
1860 we define one here, it goes into every file compiled).
1861
a679650f
FF
1862Mon Aug 10 22:27:19 1992 Fred Fish (fnf@cygnus.com)
1863
1864 * Makefile.in (VERSION): Bump to 4.6.3.
1865 * dwarfread.c (scan_partial_symbols): Skip over DIE's within
1866 function scopes when building partial symbol tables.
1867 * objfiles.c (open_existing_mapped_file): Make it clear in
1868 warning message that out of date mapped files are ignored.
1869 * symtab.c (lookup_symtab_1, lookup_symbol): Print compilation
1870 unit source file name in error message.
1871
50055e94
FF
1872Sat Aug 8 23:12:22 1992 Fred Fish (fnf@cygnus.com)
1873
1874 * dwarfread.c (struct dieinfo): Add has_at_byte_size.
1875 * dwarfread.c (struct_type): In absence of AT_byte_size for
1876 bitfield, use size of object of member's type for the size of
1877 the anonymous object containing the bit field.
1878 * dwarfread.c (completedieinfo): Set has_at_byte_size when
1879 an AT_byte_size attribute is seen.
1880 * mipsread.c (psymtab_to_symtab_1): Fix misspelled cast to
1881 union aux_ext (was aux_ent).
1882 * i386-pinsn.c (print_insn): Cast 2'nd arg to read_memory from
1883 unsigned char* to char*, for Lucid compiler.
1884 * i386-tdep.c (codestream_fill): Fix cast of 2'nd arg to read_memory
1885 to be correct type (from unsigned char* to char*).
1886 * valprint.c (type_print_derivation_info): Minor tweak to placement
1887 of commas in derived class printing.
1888 * xcoffread.c (builtin_type): Fix misspelling in fatal message.
1889
f6492282
SC
1890Fri Aug 7 11:18:23 1992 Steve Chamberlain (sac@thepub.cygnus.com)
1891
1892 * xm-go32.h: Define LSEEK_NOT_LINEAR
a65841d7 1893 * source.c (find_source_lines): if LSEEK_NOT_LINEAR is defined
f6492282
SC
1894 then work out the lseek positions of newlines by running through
1895 the file and `tell'ing. This makes source file listing work on
1896 OS's where the relationship between physical position in file and
1897 canonical position is indeterminate, eg VMS and DOS.
1898
8275e802
FF
1899Thu Aug 6 10:56:01 1992 Fred Fish (fnf@cygnus.com)
1900
c02a37ea
FF
1901 * stabsread.c: Ensure that all members of all allocated structures
1902 are initialized to known state to avoid hard to find bugs with gdb
1903 using fields containing random data.
3416d90b
FF
1904 * buildsym.c (start_subfile): Compact dirname initialization.
1905 * buildsym.c (patch_subfile_names): New function.
8275e802 1906 * buildsym.c (end_symtab): Make copy of dirname on symbol obstack.
3416d90b
FF
1907 * buildsym.c (end_symtab): Free all malloc'd subfile fields.
1908 * buildsym.h (patch_subfile_names): Add prototype.
1909 * dbxread.c (process_one_symbol): Call patch_subfile_names.
8275e802 1910
38094c60
JG
1911Wed Aug 5 01:42:40 1992 John Gilmore (gnu at cygnus.com)
1912
e7ae70e9
SG
1913 * remote-udi.c: Update comments.
1914
38094c60
JG
1915 * remote.c (getpkt): Only force retransmission ten times;
1916 after that, assume bug in target code, and handle pkt anyway.
1917
d0d0f75e
SG
1918Mon Aug 3 17:06:20 1992 Stu Grossman (grossman at cygnus.com)
1919
1920 * configure.in: Add support for apollo 68k under BSD environment.
1921 * xm-apollo68b.h: New file to support above.
1922
9e4667f6
FF
1923Mon Aug 3 00:25:56 1992 Fred Fish (fnf@cygnus.com)
1924
1925 * configure.in: Recognize i486 host cpu.
1926 * valprint.c (type_print_derivation_info): Print derivation info
1927 in same form as class declarations in source.
1928 * valprint.c (type_print_varspec_suffix): Split arg printing
1929 code out to type_print_args function.
1930
cd46ffad 1931Sat Aug 1 13:32:58 1992 Fred Fish (fnf@cygnus.com)
ddce75e0 1932
cd46ffad
FF
1933 * dwarfread.c (struct dieinfo): Remove obsolete at_visibility,
1934 at_import, at_frame_base.
1935 * dwarfread.c (completedieinfo): Remove cases for obsolete
1936 AT_visibility, AT_import, and AT_frame_base attributes.
1937 * breakpoint.h (BREAKPOINT_MAX): Increase from 10 to 16 for
1938 i860, which can keep up to 4 shadow breakpoints.
1939 * tm-stratus.h (USG): Define.
1940 * tm-stratus.h (TARGET_BYTE_ORDER): Define to BIG_ENDIAN.
1941 * xm-stratus.h (HOST_BYTE_ORDER): Define to BIG_ENDIAN.
1942 * xm-stratus.h (xm-sysv4.h): Include, name changed from xm-svr4.h.
1943 * xm-stratus.h (NO_JOB_CONTROL): Remove define.
1944 * config/stratus.mt (TDEPFILES): Include files available from
1945 stratus that are not yet in release pending receipt of paperwork
1946 at FSF.
1947 * buildsym.c (finish_block): Minor code format change.
1948 * gdbtypes.h (struct field): Add to comments.
1949 * gdbtypes.h (virtual_field_bits): Add to comments.
1950 * objfiles.c (allocate_objfile): Change obstack interface to
1951 match FSF merging efforts.
ddce75e0 1952
cd46ffad 1953Mon Jul 27 21:14:44 1992 Fred Fish (fnf@cygnus.com)
ddce75e0 1954
cd46ffad
FF
1955 * Makefile.in (VERSION): Bump to 4.6.2.
1956 * Makefile.in (SFILES_MAINDIR): Add stabsread.c
1957 * Makefile.in (OBS): Add stabsread.o
1958 * Makefile.in (stabsread.o): Add build rule.
1959 * stabsread.c, stabsread.h: New files.
1960 * buildsym.c: Split out stabs specific support to stabsread.c.
1961 * buildsym.h: Split out stabs specific support to stabsread.h.
1962 * dbxread.c (stabsread.h): Include
1963 * dbxread.c (dbx_new_init): Call stabsread_new_init.
1964 * dbxread.c (dbx_psymtab_to_symtab_1): Call stabsread_init.
1965 * dbxread.c (read_ofile_symtab): Call end_stabs.
1966 * dbxread.c (process_one_symbol): Call end_stabs and start_stabs.
1967 * dbxread.c (elfstab_build_psymtabs): Call stabsread_new_init.
1968 * dwarfread.c (psymtab_to_symtab_1): Call buildsym_init, add
1969 really_free_pendings to cleanups.
1970 * elfread.c (elf_new_init): Call stabsread_new_init.
1971 * gdbtypes.c: Small changes to maintenance commands.
1972 * mipsread.c (stabsread.h): Include.
1973 * mipsread.c (psymtab_to_symtab_1): Call end_stabs.
1974 * xcoffread.c (stabsread.h): Include.
1975 * xcoffread.c (global_stabs): Remove redundant def.
1976 * xcoffread.c (read_xcoff_symtab): Call start_stabs and end_stabs.
ddce75e0 1977
d7808603
FF
1978Wed Jul 22 21:39:33 1992 Fred Fish (fnf@cygnus.com)
1979
1980 * lmode_inferior_valid, lmode_ours_valid: New static vars.
1981 * inflow.c (terminal_init_inferior, terminal_inferior,
1982 terminal_ours_1, initialize_inflow): Record and use state
1983 of lmode_inferior_valid and lmode_ours_valid.
1984
cd46ffad
FF
1985Wed Jul 22 04:23:03 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
1986
1987 * es1800.c: use FREAD|FWRITE rather than _FREAD|_FWRITE.
1988 include <sgtty.h> on USG. (from sef).
1989
1990 * depend: es1800 dependency needed here.
1991
c0f1085b
FF
1992Mon Jul 20 21:09:53 1992 Fred Fish (fnf@cygnus.com)
1993
1994 * buildsym.c (read_struct_type): Initialize structs allocated
1995 with alloca, to avoid using random values from stack later on.
1996 * defs.h (fprintf_filtered): Add prototype.
1997 * gdbtypes.c (check_stub_method): Fix misleading comments.
1998 * gdbtypes.c (print_arg_types, dump_fn_fieldlists): New maint
1999 support functions.
2000 * gdbtypes.c (print_cplus_stuff, recursive_dump_type): Many
2001 small changes to maint support functions.
2002 * gdbtypes.h (cplus_struct_type): Reorganize member ordering
2003 for some fields and expand comments.
2004 * objfiles.c (allocate_objfile): Use new obstack_alloc_arg
2005 macro and track change to obstack_full_begin macro.
2006 * utils.c (fprintfi_filtered): New function.
2007 * valprint.c (type_print_base): Fixup field printing to not
2008 print extraneous lines and not print bogus "no data fields"
2009 messages for C++ classes with no data members. Also use new
2010 fprintfi_filtered function.
2011
cd46ffad
FF
2012Mon Jul 20 11:25:18 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
2013
2014 * configure.in: es1800 ok for 68000 too.
2015
c0f1085b
FF
2016Sat Jul 18 15:48:58 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
2017
2018 * configure.in: echo error messages to stderr, not stdout
2019
2020Fri Jul 17 17:07:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
2021
2022 * configure.in: recognize hppa* instead of hppa
2023
f8e32b6e
SG
2024Fri Jul 17 16:52:04 1992 Stu Grossman (grossman at cygnus.com)
2025
e7ae70e9
SG
2026 * energize.c: Second cut at DynamicLoad message handling.
2027
2028 * energize.c: Relativize pathnames in #include statements.
2029 * (kernel_dispatch): Better error messages for unknown protocol
2030 messages.
2031 * (kernel_dispatch): First cut at DynamicLoad message handling.
2032
f8e32b6e
SG
2033 * Makefile.in: Remove -I../readline from all compilations,
2034 include a special case for main.o instead.
2035
d4902ab0
FF
2036Fri Jul 17 10:14:56 1992 Fred Fish (fnf@cygnus.com)
2037
51a9d78c
FF
2038 * eval.c (evaluate_subexp): Ask lookup_struct_elt_type to call
2039 error if it fails to find a member type, rather than return NULL
2040 and trigger a coredump.
2041 * symtab.c (lookup_symbol, lookup_demangled_block_symbol,
2042 lookup_demangled_partial_symbol,): Ask demangle_and_match to
2043 match on complete demanglings, including argument lists for member
2044 functions, rather than just accepting the first demangling that
2045 matches the class and function name.
d4902ab0
FF
2046 * dwarfread.c (read_file_scope): Pass contents of AT_comp_dir
2047 to start_symtab as the directory name.
2048 * dwarfread.c (completedieinfo): Strip off any leading hostname
2049 portion of the AT_comp_dir attribute string. Gdb doesn't know
2050 what to do with them (FIXME).
2051
cdaa27e9
SG
2052Thu Jul 16 13:37:09 1992 Stu Grossman (grossman at cygnus.com)
2053
cb48d806
SG
2054 * breakpoint.c (commands_command): Simplify code a bit, remove
2055 unnecessary fflush().
2056
cdaa27e9
SG
2057 * Makefile.in (OTHERS): Add gcc.patch.
2058 * partial-stab.h (N_SO): Fix handling of redundant SOs (again...)
2059
345e9ab8
FF
2060Thu Jul 16 12:07:40 1992 Fred Fish (fnf@cygnus.com)
2061
2062 * dwarfread.c (LCC_PRODUCER): Change to match current NCR
2063 lcc producer string.
2064
3ddcdc59
SG
2065Thu Jul 16 11:40:55 1992 Stu Grossman (grossman at cygnus.com)
2066
2067 * WHATS.NEW renamed to NEWS.
2068
d23639b2
FF
2069Wed Jul 15 11:37:31 1992 Fred Fish (fnf@cygnus.com)
2070
2071 * dbxread.c, dwarfread.c: Re-enable experimental code to
2072 automatically select demangling style.
2073 * demangle.c (DEFAULT_DEMANGLING_STYLE): Rename from simply
2074 DEMANGLING_STYLE, to make more descriptive. Revert back to
2075 "auto" as default. Comment use.
2076 * Makefile.in (DEMANGLING_STYLE, DEMANGLE_OPTS): Remove.
2077 * Makefile.in (${DEMANGLER}.o) Remove target and special
2078 compilation rule.
2079
5e85287e
FF
2080Tue Jul 14 23:05:14 1992 Fred Fish (fnf@cygnus.com)
2081
2082 * Makefile.in (VERSION): Bump to 4.6.1 (post-release versions).
2083
d1fbc20d
SG
2084Tue Jul 14 19:26:54 1992 Stu Grossman (grossman at cygnus.com)
2085
2086 * Makefile.in, demangle.c: Change default demangling style to
2087 gnu.
2088 * Makefile.in: Update version to 4.6 !!!
2089 * README, WHATS.NEW: Update for 4.6.
2090
7e94a17b
KR
2091Tue Jul 14 16:59:46 1992 Ken Raeburn (raeburn@cygnus.com)
2092
7b8ca0a0
KR
2093 * i960-tdep.c (frame_args_address): If arg pointer can't be found,
2094 use frame address.
2095
7e94a17b
KR
2096 * buildsym.c (read_struct_type): Don't die on TYPE_CODE_UNDEF
2097 nodes as base classes.
2098
efcc6e06
SG
2099Tue Jul 14 00:12:30 1992 Stu Grossman (grossman at cygnus.com)
2100
d1fbc20d
SG
2101 * alldeps.mak, depend: Update.
2102
930acbe5
SG
2103 * xcoffread.c: Add decl for section_offset to keep prototype happy.
2104
67ba524f
SG
2105 * Makefile.in (VERSION): 4.5.9.
2106
efcc6e06
SG
2107 * xm-hp300bsd.h: Add decl for strdup().
2108 * mips-tdep.c (heuristic_proc_desc): Fill in proc start addr in
2109 PDR. Cleanup a few things, fix compilation warnings.
2110
2dbde378
FF
2111Mon Jul 13 19:06:54 1992 Fred Fish (fnf@cygnus.com)
2112
2113 * Makefile.in (DEMANGLING_STYLE): New define to set default
2114 demangling style for C++. Defaults to "auto".
2115 * Makefile.in (DEMANGLE_OPTS): Use DEMANGLING_STYLE.
2116 * Makefile.in (SFILES_MAINDIR): Add demangle.c
2117 * Makefile.in (OBS): Add demangle.o
2118 * cplus-dem.c (GNU_DEMANGLING, ARM_DEMANGLING, LUCID_DEMANGLING):
2119 Remove compile time decisions about demangling style and replace
2120 with runtime decisions using current_demangling_style.
2121 * cplus-dem.c (main): Expand code included during building of
2122 standalone demangler to recognize demangling style options.
2123 * dbxread.c (demangle.h): Include.
2124 * dbxread.c (read_ofile_symtab, process_one_symbol): Set GNU C++
2125 demangling style if processing g++ code and current demangling style
2126 is auto (Note: this feature currently disabled.)
2127 * demangle.c: New file, generic demangling control.
2128 * demangle.h (demangling_styles): New enumeration to select one
2129 of several demangling styles. Also define string names for each
2130 style.
2131 * demangle.h (set_demangling_style): Add prototype.
2132 * dwarfread.c (demangle.h): Include.
2133 * dwarfread.c (GPLUS_PRODUCER, LCC_PRODUCER, CFRONT_PRODUCER):
2134 New producer string prefixes to recognize.
2135 * dwarfread.c (handle_producer): Consolidate actions for specific
2136 producers. Set demangling style based on producer string if
2137 current style is auto. (Note: this feature currently disabled.)
2138 * config/ncr3000.mt (DEMANGLE_OPTS): Remove.
2139
49f3be18
JG
2140Sat Jul 11 18:23:58 1992 John Gilmore (gnu at cygnus.com)
2141
2142 * config/sun4sol2.mh: Remove -xs flag, default INSTALL to cp.
2143
a252e715
PB
2144Fri Jul 10 13:58:34 1992 Per Bothner (bothner@rtl.cygnus.com)
2145
2146 * gdbtypes.c, gdbtypes.h: New function lookup_signed_typename.
2147 * c-exp.y: Call lookup_signed_typename() after seeing
2148 "signed". This handles "signed char" correctly.
2149 * c-exp.y: Recognize (but ignore) 'const' and 'volatile'
2150 keywords before a type specifier.
2151
311592ff
FF
2152Fri Jul 10 10:19:52 1992 Fred Fish (fnf@cygnus.com)
2153
2154 * command.c (lookup_cmd_1): Clarify descriptive comments.
2155 * gdbcmd.h (maintenanceprintlist): Add declaration.
2156 * main.c (maintenanceprintlist): Add definition.
2157 * main.c (gdb_completer_command_word_break_characters): Add.
2158 * main.c (symbol_completion_function): Switch completer word
2159 break character sets dynamically, based on whether completion is
2160 being done on commands or on something else.
2161 * main.c (initialize_cmd_lists): Init maintenanceprintlist.
2162 * maint.c: Include demangle.h.
2163 * maint.c (maintenance_demangle): New function.
2164 * maint.c (maintenance_print_command): New function.
2165 * maint.c (_initialize_maint_cmds): Reorganize some commands
2166 under new maintenance print subcommand.
2167
5c5b5d4b
PB
2168Thu Jul 9 19:05:27 1992 Per Bothner (bothner@rtl.cygnus.com)
2169
2170 * gdbtypes.c (lookup_struct_elt_type): If the input type is
2171 TYPE_CODE_PTR or TYPE_CODE_REF, dereference it to get the
2172 target type. Otherwise, 'whatis this.field' wouldn't work,
2173 which would be inconsistent, since 'print this.field' works.
2174 * buildsym.c (read_struct_type, read_enum_type): Clear
2175 TYPE_FLAG_STUB flag.
2176 * buildsym.c (cleanup_undefined_types): Don't rely on a
2177 flawed "Reasonable test to see if" a type has been defined
2178 since it was referred to; now we can just see if the
2179 TYPE_FLAG_STUB flag has been cleared.
2180 * valprint.c (print_type_base): Emit public/protected/private
2181 labels for methods as well as fields. Also, indent these labels
2182 2 spaces instead of 4, for a more conventional "look".
2183 * symtab.c (gdb_mangle_name): Undo Fred's change, unless
2184 GCC_MANGLE_BUG is defined. Also, handle destructors specially.
2185 * gcc.patch: New file. Contains patch for gcc (so people
2186 with gdb-2.2.x won't have to wait for a new gcc release).
2187
c5f5b482
KR
2188Thu Jul 9 18:44:26 1992 Ken Raeburn (raeburn@cygnus.com)
2189
7eec00ed
KR
2190 * i960-pinsn.c (mem): Variables reg[123] should point to CONST.
2191 (print_addr): Call print_address to show symbolic version as well.
2192
c5f5b482
KR
2193 * remote-vx.c (vx_kill): Don't look for arguments; they aren't
2194 being passed.
2195 (vx_read_register): Declare inferior_fp_regs. Delete code for
2196 copying "inferior_registers" around; the values are already in var
2197 "registers". Use correct size for register set.
2198
2199 * remote-vx.c (vx_write_register): Don't try writing FP regs; the
2200 target doesn't support it.
2201 (vx_read_register): Don't try reading them either.
2202
2203 * tm-i960.h (IP_REGNUM): Move to end of non-FP list, since the
2204 VxWorks back end reads them in one contiguous set except for this
2205 one.
2206 (register_names): Change "pc" to "pcw" to avoid confusion printing
2207 "$pc".
2208 * tm-vx960.h (PC_REGNUM): Use RIP_REGNUM, since that's where we
2209 find the PC under VxWorks.
2210
8050a57b
FF
2211Wed Jul 8 21:34:30 1992 Fred Fish (fnf@cygnus.com)
2212
2213 * dwarfread.c (alloc_utype, decode_subscr_data): Call alloc_type
2214 to create new blank types, instead of handcrafting them.
2215 * defs.h (printfi_filtered): Add prototype.
2216 * utils.c (printfi_filtered): New function.
2217 * gdbtypes.c (recursive_dump_type): Use printfi_filtered to
2218 to simplify the code. Other cleanups.
2219 * gdbtypes.c (check_stub_method): Demangle using DMGL_ANSI.
2220 * gdbtypes.h (struct cplus_struct_type): Add comments describing
2221 use of various fields.
2222 * gdbtypes.c (print_bit_vector, print_cplus_stuff): New functions.
2223 * c-exp.y (%token): Add CLASS as a token for C++, add grammar
2224 production that currently treats it exactly the same as STRUCT.
2225 * c-exp.y (yylex): Recognize "class" as token CLASS.
2226 * symtab.c (gdb_mangle_name): Rewrite to match current g++ stabs.
2227 * symtab.c (decode_line_1): Fix to pass quoted args on down to
2228 general symbol handling code. Call cplus_mangle_opname with
2229 DMGL_ANSI.
2230 * symtab.c (decode_line_2): Print demangled function names in
2231 breakpoint menus, instead of just file and line number.
2232 * symtab.c (name_match): Call cplus_demangle with DMGL_ANSI.
2233 * valprint.c (type_print_base): Print "class" for C++ classes,
2234 rather than "struct". Print section labels for public, protected
2235 and private members of C++ classes.
2236 * values.c: Include demangle.h.
2237 * values.c (value_headof): Call cplus_demangle with DMGL_ANSI.
2238
e17e8e0e
SG
2239Wed Jul 8 17:23:07 1992 Stu Grossman (grossman at cygnus.com)
2240
2241 * Makefile.in (VERSION): Update to 4.5.8.
2242
2243 Wed Jul 8 00:11:02 1992 Stu Grossman (grossman at cygnus.com)
784fd92b
SG
2244
2245 * dbxread.c (dbx_symfile_init): Init stab_section_info to NULL to
2246 prevent crashes when examining cross-targets.
2247 * dbxread.c (process_one_symbol): Include directory name when
2248 calling start_subfile for SOL & BINCL symbols. This allows gdb to
2249 find include files, and yacc/lex sources when the cwd doesn't match
2250 that in which the object was compiled.
2251 * objfiles.h (ALL_MSYMBOLS): Don't seg fault when there are no
2252 msymbols.
2253 * symtab.c (lookup_symtab_1): Rewrite. It now handles include
2254 files.
2255
2e9309df
FF
2256Tue Jul 7 09:00:42 1992 Fred Fish (fnf@cygnus.com)
2257
2258 * maint.c (maintenance_command, maintenance_info_command):
2259 Install with allow_unknown as 0 and call help_list to show
2260 list of possibilities when no subcommand is specified.
2261
498f1df0
FF
2262Tue Jul 7 00:20:29 1992 Fred Fish (fnf@cygnus.com)
2263
2264 * configure.in: Add m68k-ericsson-*.
2265 * remote-es1800.c, tm-es1800.h, config/es1800.mt: New files.
2266
0239d9b3
FF
2267Sun Jul 5 17:17:16 1992 Fred Fish (fnf@cygnus.com)
2268
2269 * maint.c: New file.
2270 * Makefile.in (SFILES_MAINDIR): Add new file maint.c.
2271 * Makefile.in (OBS): Add new file maint.o.
2272 * defs.h (command_class): Add class_maintenance.
2273 * defs.h (MAINTENANCE_CMDS): Default to including maintenance
2274 commands. Allow for them (and other nonessential parts of gdb)
2275 to be selectively left out under special circumstances.
2276 * gdbtypes.c (recursive_dump_type): New function; supports
2277 maintenance print-type command.
2278 * gdbtypes.h (recursive_dump_type, maintenance_print_type):
2279 Add prototypes.
2280 * main.c (maintenancelist, maintenanceinfolist): Add maintenance
2281 command lists.
2282 * main.c (initialize_cmd_lists): Eliminate unnecessary casts on
2283 initializers. Add initializations for setprintlist, showprintlist,
2284 setchecklist, showchecklist, maintenancelist, and maintenanceinfolist.
2285 * printcmd.c (maintenance_print_type): New maintenance cmd.
2286 * valprint.c (setprintlist, showprintlist): Move to main.c, as
2287 implied by comment that all cmd lists are owned by main.c.
2288 * infcmd.c (unsetlist): Move to main.c, as implied by comment
2289 that all cmd lists are owned by main.c.
2290 * language.c (setchecklist, showchecklist): Move to main.c, as
2291 implied by comment that all cmd lists are owned by main.c
2292 * breakpoint.c (enablelist, enablebreaklist, disablelist, cmdlist,
2293 deletelist): Remove redundant declarations (also in gdbcmd.h).
2294 * symmisc.c (printsyms_command): Now maintenance_print_symbols.
2295 * symmisc.c (printmsyms_command): Now maintenance_print_msymbols.
2296 * symmisc.c (printpsyms_command): Now maintenance_print_psymbols.
2297 * symmisc.c (printobjfiles_command): Now maintenance_print_objfiles.
2298 * symtab.h (maintenance_print_symbols, maintenance_print_psymbols,
2299 maintenance_print_msymbols, maintenance_print_objfiles):
2300 Add prototypes.
2301 * symmisc.c (printsyms_command, printpsyms_command,
2302 printmsyms_command, printobjfiles_command): Removed from
2303 _initialize_symmisc.
2304 * main.c (dump_me_command): Moved to maint.c and renamed to
2305 maintenance_dump_me.
2306 * breakpoint.c (all_breakpoints_info): Rename to
2307 maintenance_info_breakpoints.
2308 * breakpoint.c (_initialize_breakpoint): Convert add_info of
2309 all_breakpoints_info to add maintenance_info_breakpoints to the
2310 maintenanceinfolist instead.
2311 main.c (initialize_main): Set up maintenance class commands.
2312
e7ae70e9
SG
2313Sun Jul 5 11:03:53 1992 Stu Grossman (grossman at cygnus.com)
2314
2315 * energize-patches: Fix minor problems with building energize lib.
2316
2317 * energize-patches: Change names of all cadillac procedure calls
2318 to be energize procedure calls. Simplify many hooks by moving
2319 tests energize.c. Configure energize, and build it automatically now.
2320
91fef76b
FF
2321Sun Jul 5 09:43:28 1992 Fred Fish (fnf@cygnus.com)
2322
2323 * Makefile.in (VERSION): Bump to 4.5.7.
2324 * cplus-dem.c (demangle_args): Validate index for previously
2325 seen type to guard against bogus values from malformed manglings.
2326 * valops.c (value_struct_elt_for_reference): Guard against
2327 blindly using NULL return value from lookup_symbol.
2328
e7ae70e9
SG
2329Sun Jul 5 09:46:43 1992 Stu Grossman (grossman at cygnus.com)
2330
2331 * cadillac.c, cadillac-patches: Rename to energize.c and
2332 energize-patches. Change all routines and variables named
2333 'cadillac*' to 'energize*'. Create new file called energize.h to
2334 hold all interface declarations.
2335
2336 * deblib/connection/*: Move all of this stuff into energize/, but
2337 delete unneeded files.
2338
ec8ceca3
JG
2339Sun Jul 5 03:06:39 1992 John Gilmore (gnu at cygnus.com)
2340
23053b80
JG
2341 * tm-sysv4.h (NAMES_HAVE_UNDERSCORE): SVR4 systems don't.
2342
ec8ceca3
JG
2343 * buildsym.c (finish_block): Fix thinko `inner block' complaints.
2344 * dbxread.c (process_one_symbol): Parse N_OPT "gcc2_compiled.".
2345 * procfs.c (proc_set_exec_trap): Set run-on-last-close flag on
2346 child processes, to avoid dead ones "hanging around" after GDB exits.
2347 (attach): Always stop the process if it needs it. Set RLC flag
2348 when attaching running processes, so it will continue if we detach
2349 it, quit, or are killed.
2350 (detach): Clear faults and set RLC flag to make process run
2351 when we close it.
2352 (open_proc_file): New `mode' argument for O_RDONLY or O_RDWR.
2353 Callers changed.
2354 (info_proc): Open process O_RDONLY, so we can see any process,
2355 even those controlled by debuggers.
2356 * tm-sun4sol2.h (SUN_FIXED_LBRAC_BUG): They did (in Sol 2).
2357
2670f34d
JG
2358Sat Jul 4 03:43:38 1992 John Gilmore (gnu at cygnus.com)
2359
2360 Relocate symbols using an array of section_offsets, rather than a
2361 single `addr' or `offset'. This makes Solaris-2 support work, and
2362 permits better VxWorks (and maybe xcoff) support later.
2363
2364 * symtab.h (struct section_offsets): New structure for keeping
2365 a set of offsets, rather than a single one.
2366 (struct objfile): Replace addr with section_offsets member.
2367 * symfile.h: Add sym_offsets to struct sym_fns. Conforming changes.
2368 * gdb-stabs.h: New include file with `symbol type specific'
2369 parameters for psymtabs and objfiles.
2370 * Makefile.in (HFILES): Add gdb-stabs.h.
2371 * buildsym.h (start_psymtab, process_one_symbol): Fix prototypes.
2372 * coffread.c: Conforming changes. Fake offset array always 0.
2373 * dbxread.c: Conforming changes.
2374 (struct dbx_symfile_info): Move to gdb-stabs.h.
2375 (start_psymtab): Call elfstab_offset_sections to calculate good
2376 offsets for this source file, based on the ELF symbol table info.
2377 (read_ofile_symtab): Yank N_CATCH, which is dead.
2378 (process_one_symbol, N_CATCH): Yank.
2379 (", N_FUN, N_FNAME, N_FN, N_FN_SEQ, N_SO, N_SOL, N_ENTRY):
2380 Relocate with SECT_OFF_TEXT.
2381 (", N_STSYM, N_LCSYM, N_ROSYM): Grope around in the stab string
2382 to distinguish relocatable from absolute symbols. Then, if not
2383 absolute, do:
2384 (", N_STSYM, N_DSLINE): SECT_OFF_DATA.
2385 (", N_LCSYM, N_BSLINE): SECT_OFF_BSS.
2386 (", N_ROSYM): SECT_OFF_RODATA.
2387 (elfstab_build_psymtabs): Caller has allocated dbx_symfile_info.
2388 (dbx_symfile_offsets): Add to translate addr to offset.
2389 * dwarfread.c: Conforming changes. Single offset currently used.
2390 * elfread.c: Add various complaints about elf/stab stuff.
2391 #include gdb-stabs.h. Conforming changes, using a single offset.
2392 (elf_symtab_read): Record info from BSF_FILE symbols, and local
2393 variables called "Bbss.bss", "Ddata.data", and "Drodata.rodata",
2394 for later use in building psymtabs.
2395 (elf_symfile_read): Allocate dbx_symfile_info here, to keep
2396 the info collected in elf_symtab_read. Cleanup calls free_elfinfo.
2397 (free_elfinfo): New fn, frees all chained stab_section_infos
2398 in an objfile, and zaps the start-of-chain pointer.
2399 (elfstab_offset_sections): New fn, looks in stab_section_info
2400 chain to determine section bases to relocate a psymtab's worth
2401 of symbols, as they are being read.
2402 * mipsread.c: Conforming changes. Stabs-reading will relocate
2403 using one offset. MIPS-reading will not relocate at all.
2404 * partial-stab.h: Relocate different symbol types using different
2405 offsets from section_offsets.
2406 * symfile.c: Conforming changes.
2407 (find_lowest_section): Unused function to use later
2408 to free us from the Tyranny of the Text Section.
2409 (syms_from_objfile): Translate absolute arg ADDR to offsets used
2410 in all lower layers of symbol reading. Call format-specific
2411 sym_offsets function to initialize offsets for high speed symbol
2412 reading.
2413 (symbol_file_add): Call reinit_frame_cache so callers don't have to.
2414 (symbol_file_command, add_symbol_file_command): Callers changed.
2415 * symmisc.c (dump_psymtab): Print new relocation parameters.
2416 * xcoffread.c: Corresponding changes.
2417
2418 * buildsym.c: Tidy innerblock_complaint and blockvector_complaint.
2419 * main.c (main): Read the $HOME/.gdbinit file before processing
2420 the argv arguments (e.g. reading symbol files or core
2421 files). This allows global parameters to be set, which will apply
2422 during the symbol reading. The ./.gdbinit is still read after
2423 argv processing.
2424 * symtab.c (list_symbols): `i variables' shouldn't show enum values.
2425 * xcoffexec.c: Clean up quote inside comment.
2426
4ed3a9ea
FF
2427Fri Jul 3 20:18:26 1992 Fred Fish (fnf@cygnus.com)
2428
2429 * breakpoint.c, buildsym.c, c-exp.y, coffread.c, command.c,
2430 core.c, cplus-dem.c, dbxread.c, dwarfread.c, elfread.c, environ.c,
2431 eval.c, findvar.c, gdbtypes.c, hppabsd-tdep.c, hppahpux-tdep.c,
2432 i386-tdep.c, ieee-float.c, infcmd.c, inflow.c, infptrace.c,
2433 infrun.c, m2-exp.y, mipsread.c, objfiles.c, parse.c, procfs.c,
2434 putenv.c, remote-mm.c, remote-vx.c, solib.c, sparc-tdep.c,
2435 sparc-xdep.c, stack.c, symfile.c, symtab.c, symtab.h, target.c,
2436 tm-i386v.h, tm-sparc.h, utils.c, valarith.c, valops.c, valprint.c,
2437 values.c, xcoffread.c:
2438 Remove "(void)" casts from function calls where the return value
2439 is ignored, in accordance with GNU coding standards.
2440
4c7c6bab
JG
2441Fri Jul 3 00:00:49 1992 John Gilmore (gnu at cygnus.com)
2442
2443 * dbxread.c (process_one_symbol): Ignore N_MAIN, N_ENDM for Solaris.
2444 * partial-stab.h: Ignore N_ENDM.
2445 * elfread.c (elf_symtab_read): Ignore symbols that don't have a
2446 CODE or DATA section attachment. This eliminates a lot of random
2447 values from shared libraries, which screw up the ordinary symbols
2448 in the address ranges they happen to overlap.
2449 * buildsym.c (define_symbol): Eliminate special tests
2450 for function types; move into "function" cases in switch statement.
2451 (define_symbol: 'f', 'F', 'P'): Process all parameter types
2452 in case they define new type numbers. But ignore them (FIXME).
2453 ('k', 'B'): Ignore const and volatile if we see them (FIXME).
2454 (read_sun_builtin_type): Add commentary.
2455
37e2f5cb
DZ
2456Wed Jul 1 00:47:02 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
2457
2458 * xm-rs6000.h: define MEM_FNS_DECLARED
2459
43a16f26
JG
2460Tue Jun 30 02:25:10 1992 John Gilmore (gnu at cygnus.com)
2461
2462 * tm-mips.h (GDB_TARGET_IS_MIPS): Define for mips-xdep.c.
2463 (READ_MIPS_FORMAT, COFF_FORMAT): Remove, unused now.
2464 * mips-xdep.c: Remove most include files (unused, caused errs).
2465 (fetch_core_registers): Use right parameters in dummy fn.
2466
c47793da
JG
2467Mon Jun 29 18:30:57 1992 John Gilmore (gnu at cygnus.com)
2468
0f552c5f
JG
2469 * buildsym.c (scan_file_globals): Beware the null file.
2470 Fix from Jim Williams.
2471
2472 * stack.c (return_command): Evaluate expression *before* popping
2473 off the stack frames! Fix inspired by Jim Williams.
2474 (up_silently_command, down_silently_command): No sel frame is error.
2475
2476 * defs.h (memcpy, memset): Conditionalize decls on
2477 #ifndef MEM_FNS_DECLARED, since DECstation differs.
2478 (alloca): Break out the STDC and non-STDC alloca cases, to make
2479 it work on old preprocessors as well as "picky ANSI" ones.
2480 * xm-mips.h (memcpy, memset): Declare, and set MEM_FNS_DECLARED.
2481
2482 * mips-tdep.c (heuristic_proc_start): Zero arg produces zero.
2483 * utils.c (fputs_demangled): Rename SLOP since DECstation system
2484 header files define it!
2485
c47793da
JG
2486 * tm-29k.h (BREAKPOINT): Allow it to be overridden with -D.
2487
51b57ded
FF
2488Mon Jun 29 16:30:25 1992 Fred Fish (fnf@cygnus.com)
2489
2490 * dbxread.c, i386-pinsn.c, i386-tdep.c, regex.c, solib.c, symmisc.c,
2491 symtab.h, tm-i386v4.h, valprint.c, values.c: Lint.
2492 * breakpoint.c, c-exp.y, coffread.c, command.c, environ.c, eval.c,
2493 findvar.c, infcmd.c, infptrace.c, infrun.c, m2-exp.y, parse.c,
2494 putenv.c, solib.c, sparc-xdep.c, symtab.c, tm-i386v.h, tm-sparc.h,
2495 utils.c, valarith.c, valops.c, valprint.c, values.c:
2496 Replace bcopy() use with memcpy(), which is more standard and can
2497 take advantage of gcc's builtin functions for increased performance.
2498 * breakpoint.c, buildsym.c, coffread.c, dbxread.c, i386-tdep.c,
2499 ieee-float.c, infcmd.c, sparc-tdep.c, stack.c, symtab.c, symtab.h,
2500 target.c, values.c:
2501 Replace bzero() use with memset(), which is more standard and can
2502 take advantage of gcc's builtin functions for increased performance.
2503 * i386-tdep.c, main.c, valprint.c:
2504 Replace bcmp() use with memcmp(), which is more standard and can
2505 take advantage of gcc's builtin functions for increased performance.
2506
22fd4704
FF
2507Sun Jun 28 13:30:22 1992 Fred Fish (fnf@cygnus.com)
2508
2509 * remote.c (remote_wait): Fix cast on signal() call.
2510 * defs.h (alloca): More diddling with alloca. Have to ensure
2511 that it has a prototype, so that if alloca is defined as a macro
2512 that takes an arg, the definition is seen as a use of a macro
2513 that takes an arg, to satisfy picky ANSI preprocessors.
2514
74fb91be
FF
2515Sat Jun 27 12:12:20 1992 Fred Fish (fnf@cygnus.com)
2516
2517 * sparc-pinsn.c: Use <string.h> rather than "string.h", for
2518 consistency with all other gdb files.
e7ae70e9
SG
2519 * cadillac.c: Use <string.h> rather than <strings.h>.
2520 * cadillac.c (kernel_dispatch): Convert rindex usage to strrchr.
74fb91be
FF
2521 * Makefile.in (MAKE): Remove definition for consistency with
2522 other Makefile.in files and to fix problem with recursive makes.
2523
3a1e7a62
JG
2524Fri Jun 26 19:03:23 1992 John Gilmore (gnu at cygnus.com)
2525
2526 * hppahpux-xdep.c (child_xfer_memory): Avoid PT_WDUSER because it
2527 crashes H-PUX.
2528
b951b38d
SC
2529Fri Jun 26 11:09:10 1992 Steve Chamberlain (sac@thepub.cygnus.com)
2530
2531 * source.c (print_source_lines): for DOS interoperability; don't
2532 print CR (013) as ^M.
2533
99fd9e3e
SG
2534Thu Jun 25 15:18:42 1992 Stu Grossman (grossman at cygnus.com)
2535
bf18ac80
SG
2536 * dbxread.c (dbx_symfile_init): Move more code under hp9000s800
2537 conditional.
2538 * hppabsd-core.c: Don't include "param.h", include <sys/param.h>
2539 instead.
2540 * remote.c (remote_wait): Cast signal to void * to avoid warning
2541 from busted HP compiler.
2542
cf79373a
SG
2543 * partial-stab.h (N_SO): Rearrange code a little so that all SO
2544 stabs cause end_psymtab to be called.
2545
50a11e49
SG
2546 * buildsym.c (read_sun_builtin_type): Handle new FCS Sun CC
2547 compiler feature of putting 'c' into basic type descriptors for
2548 all forms of char.
2549
99fd9e3e
SG
2550 * procfs.c (child_resume): Work around Solaris (on Sparc) lossage
2551 where there is no place for nPC in prrun struct.
2552
50e0dc41
FF
2553Thu Jun 25 12:06:00 1992 Fred Fish (fnf@cygnus.com)
2554
2555 * mipsread.c: Pass NULL name pointer to init_type, not 0.
2556 * gdbtypes.c (init_type): Use copy of typename on type_obstack.
2557 * dwarfread.c (enum_type): Save enum names on type_obstack.
2558 * dwarfread.c (struct_type): Save member name on type_obstack.
2559 * symtab.c (_initialize_symtab): Fix misspelling.
2560 * regex.c (store_jump, insert_jump): Return void.
2561
5140562f
JG
2562Thu Jun 25 04:00:10 1992 John Gilmore (gnu at cygnus.com)
2563
debd3443
JG
2564 * defs.h (PARAMS): Move to ../include/ansidecl.h.
2565 (alloca): Declare return type on SPARC, since Sun doesn't.
2566 (*_BYTE_ORDER): Improve comment: *must* be defined.
2567
5140562f
JG
2568 * tm-hppa.h: New file, architectural definition of HP PA.
2569 * tm-hppabsd.h, tm-hppahpux.h: Shrink to deltas from tm-hppa.h.
2570
2571 * am29k-pinsn.c, am29k-tdep.c, copying.awk, copying.c,
2572 hppa-coredep.c, hppa-pinsn.c, hppabsd-core.c, hppabsd-tdep.c,
e7ae70e9 2573 hppabsd-xdep.c, hppahpux-tdep.c, hppahpux-xdep.c, remote-udi.c,
5140562f
JG
2574 ser-go32.c, xcoffsolib.c: Remove <stdio.h> which is already in
2575 "defs.h".
2576
2577 * hppa-coredep.c, hppa-pinsn.c, hppabsd-core.c, hppabsd-tdep.c,
2578 hppabsd-xdep.c, hppahpux-tdep.c, hppahpux-xdep.c, xcoffsolib.c,
2579 xcoffsolib.h, xm-go32.h, xm-hppabsd.h, xm-hppahpux.h: Copyrights.
2580
fef9f55c
JG
2581Wed Jun 24 12:53:20 1992 John Gilmore (gnu at cygnus.com)
2582
4d38b5a8
JG
2583 * printcmd.c (output_command): Thinko.
2584 (x_command): Only set remembered size/format if cmd succeeds.
2585
fef9f55c
JG
2586 * dbxread.c (read_ofile_symtab): Remove N_CATCH special case,
2587 since it is no longer used and burns time for every symbol read.
2588 (process_one_symbol): Treat N_CATCH like default (complain).
2589
369172bb
SG
2590Wed Jun 24 00:26:56 1992 Stu Grossman (grossman at cygnus.com)
2591
2592 * partial-stab.h (case N_TEXT): Fix fencepost error when
2593 detecting start of new symbol info after reading symtab for a
2594 module with a zero length TEXT segment.
2595
e676a15f
FF
2596Tue Jun 23 21:46:26 1992 Fred Fish (fnf@cygnus.com)
2597
2598 * Makefile.in (VERSION): Bump to 4.5.6.
2599 * coffread.c (coff_end_symtab): Cast 2nd arg of complain() to
2600 correct type.
2601 * defs.h (NORETURN): Define away for Lucid compiler.
2602 * remote.c (remote_timer, remote_interrupt): Signal handlers
2603 take one int arg.
2604 * ser-termios.c (serial_write, serial_close): Return whatever
2605 value the write/close call returns, rather than falling off end.
2606 * inferior.h (PTRACE_ARG3_TYPE): Third arg to ptrace is int on
2607 more systems than it is "char *". Define PTRACE_ARG3_TYPE to
2608 default to int.
2609 * infptrace.c, hppabsd-xdep.c, hppahpux-xdep.c, i386-xdep.c,
2610 inferior.h (call_ptrace): Use PTRACE_ARG3_TYPE to declare type
2611 of third arg.
2612 * a68v-xdep.c, arm-xdep.c, convex-xdep.c, hp300ux-xdep.c, infrun.c,
2613 m88k-xdep.c, mach386-xdep.c, mips-xdep.c, os68k-xdep.c, pyr-tdep.c,
2614 pyr-xdep.c, rs6000-xdep.c, sparc-xdep.c, sun3-xdep.c, sun386-xdep.c,
2615 symm-xdep.c, ultra3-xdep.c: Use PTRACE_ARG3_TYPE to cast ptrace
2616 argument 3.
2617 * sparc-xdep.c, a68v-xdep.c (fetch_inferior_registers,
2618 store_inferior_registers): Supply missing fourth argument to
2619 ptrace().
e7ae70e9
SG
2620 * cadillac.c (kernel_dispatch): Make return type void.
2621 * cadillac.c (iosig): Signal handlers take one int arg.
b4cc55b5
FF
2622 * valprint.c (val_print_fields): Call fprint_symbol to get
2623 automatic C++ demangling for mangled field names.
e676a15f 2624
0efe20a6
FF
2625Mon Jun 22 20:18:06 1992 Fred Fish (fnf@cygnus.com)
2626
2627 * command.c (add_abbrev_prefix_cmd): Fix misspelling in comment.
2628 * dwarfread.c (enum_type): Fix misspelling in comment.
2629 * valprint.c (val_print_fields, cplus_val_print): Minor
2630 adjustment to printing of C++ class structures to more closely
2631 match format for printing C structures, with and without setting
2632 pretty print.
2633
e37a6e9c
PB
2634Mon Jun 22 17:19:02 1992 Per Bothner (bothner@cygnus.com)
2635
2636 * infrun.c (wait_for_inferior): Don't test for SIGEMT
2637 (which is not a Posix signal) if it isn't defined.
2638 * tm-linux.h, xm-linux.h, config/linux.m[ht], configure.in:
2639 New port to Linux (a free Unix clone for 386 machines).
2640
f70be3e4
JG
2641Sat Jun 20 19:19:52 1992 John Gilmore (gnu at cygnus.com)
2642
2643 COFF changes for dealing better with EPI 29K C compiler output.
2644
2645 * coffread.c (record_minimal_symbol): Pass the minsym type to it.
2646 Callers changed.
2647 (coff_end_symtab): Sort blocks if needed. Complain if misordered.
2648 (read_coff_symtab): Move patch_opaque_types call from
2649 coff_symfile_read. Restrict it to symtabs from this objfile.
2650 (process_coff_symbol: C_TPDEF): Don't put ordinary foward
2651 references on opaque type chain; just let coff_lookup_type handle 'em.
2652 (decode_type): Complain about tagndx values on
2653 non-struct/union/enum types, which the EPI compiler tends to produce.
2654
2655 * symtab.c (list_symbols): Make minimal symbol variable-finding work.
2656
2657 * tm-68k.h (FIX_CALL_DUMMY): Avoid alignment and byte order
2658 dependency.
2659
2660 * elfread.c (elf_symfile_read): Update bfd_elf_find_section
2661 usage to match new prototype. Include libbfd.h to get prototype.
2662
28df0c3e
JG
2663 * source.c (find_source_lines): Handle large st_size fields.
2664
b4fde6fa
FF
2665Sat Jun 20 16:28:39 1992 Fred Fish (fnf@cygnus.com)
2666
2667 * infcmd.c (jump_command): Use cleanups to avoid memory leaks.
2668 * stack.c (return_command): Use cleanups to avoid memory leaks.
2669
e95bfbf1
JG
2670Fri Jun 19 19:06:41 1992 John Gilmore (gnu at cygnus.com)
2671
2672 * remote-adapt.c, remote-eb.c, remote-mm.c: Lint. Fix
2673 INT_REGNUM to INTE_REGNUM.
2674
2675 * tm-29k.h (SDB_REG_TO_REGNUM): Add for EPI 29K C compiler.
2676
9aa44833
SG
2677Fri Jun 19 15:30:15 1992 Stu Grossman (grossman at cygnus.com)
2678
7da1e27d
SG
2679 * configure.in, dbxread.c, hppa-coredep.c, hppa-pinsn.c,
2680 hppabsd-core.c, hppabsd-tdep.c, hppabsd-xdep.c, hppahpux-tdep.c,
2681 hppahpux-xdep.c, munch, partial-stab.h, tm-hppabsd.h,
2682 tm-hppahpux.h, xm-hppabsd.h, xm-hppahpux.h: HPPA merge.
2683
9aa44833
SG
2684 * Makefile.in (c-exp.tab.c, m2-exp.tab.c): Filter out bogus extern
2685 declarations of malloc/realloc/free that are inserted by some
2686 versions of yacc.
2687 * m2-exp.y: Prevent conflicts with TRUE and FALSE tokens by
2688 #undeffing them.
2689 * xm-rs6000.h: Declare malloc/realloc/free appropriately. Yet
2690 another decl of strdup (this really ought to come from libiberty.h!).
2691
8f86a4e4
JG
2692Fri Jun 19 10:28:05 1992 John Gilmore (gnu at cygnus.com)
2693
2694 * remote.c (getpkt): Error if input exceeds buffer size.
2695 (_initialize_remote): `set remotedebug' enables packet trace.
2696
2697 * dbxread.c (process_one_symbol:N_FUN): GCC now produces relative
2698 N_SLINE's, etc, just like Sun cc on Solaris2.
2699
2700 * am29k-tdep.c (read_register_stack, write_register_stack):
2701 Change RSTACK_HIGH_ADDR to rstack_high_address, a user-settable
2702 variable. Add `set' and `show' commands for it.
2703 * doc/gdb.texinfo: Document it.
2704
4341615d
FF
2705Thu Jun 18 19:35:22 1992 Fred Fish (fnf@cygnus.com)
2706
2707 * valprint.c (type_print_1): Plug memory leak. Print all
2708 C++ syms as demangled, not just functions.
2709 * buildsym.c (read_range_type): When we find a signed char
2710 type, do a lookup of signed char, not plain char. Plain char's
2711 still get looked up as plain char's elsewhere.
2712
8f86a4e4
JG
2713Thu Jun 18 18:59:04 1992 John Gilmore (gnu at cygnus.com)
2714
2715 * eval.c: Avoid residue-by-zero when evaluating without side effects.
2716 (Bug and fix found by Pierre Willard.)
2717
427d778c
SG
2718Wed Jun 17 13:08:33 1992 Stu Grossman (grossman at cygnus.com)
2719
7634ebc8
SG
2720 * xm-rs6000.h: Fix decls for malloc, realloc, and free.
2721
826f73d0
SG
2722 * xm-rs6000.h: Add decl for strdup().
2723
2724 * tm-rs6000.h: Remove #include of inferior.h. Fixes many
65c36045
SG
2725 compilation errors.
2726
423e9664
SG
2727 * breakpoint.c (enable_command, disable_command): Without args,
2728 should only affect normal breakpoints and watchpoints.
427d778c 2729
423e9664
SG
2730 * m68k-pinsn.c (print_insn_arg): Make register be const.
2731 * xcoffexec.c: Remove ' from comment.
427d778c
SG
2732 * xm-sun3os4.h: Define MALLOC_INCOMPATIBLE to avoid conflicts
2733 with decls of malloc in c-exp.tab.c (as produced by yacc).
2734 There's got to be a better way to do this...
2735
323227fe
FF
2736Wed Jun 17 11:10:40 1992 Fred Fish (fnf@cygnus.com)
2737
2738 * partial-stab.h: Convert single rindex use to strrchr.
2739 * mipsread.c, dbxread.c: Remove troublesome inclusion of non-
2740 standard <strings.h> file, now that the only single use of
2741 rindex in the gdb source files is gone.
2742
fa0bcaa3
FF
2743Tue Jun 16 22:17:49 1992 Fred Fish (fnf@cygnus.com)
2744
2745 * mipsread.c: Undo ill effects from including <strings.h>,
2746 which #defines index to be strchr. Unfortunately, index is
2747 a member of a symbol table structure that can't be changed.
2748 * mipsread.c: tm-mips.h includes coff/symconst.h and coff/sym.h,
2749 remove redundant #include's.
2750
b303297a
SG
2751Tue Jun 16 14:15:51 1992 Stu Grossman (grossman at cygnus.com)
2752
2753 * mipsread.c: #include <strings.h> for rindex().
2754
d1140eb5
FF
2755Tue Jun 16 09:01:49 1992 Fred Fish (fnf@cygnus.com)
2756
2757 * xcoffexec.c (map_vmap): Turn comment into a real C comment.
2758
c72af089
SG
2759Mon Jun 15 18:41:23 1992 Stu Grossman (grossman at cygnus.com)
2760
2761 * dbxread.c (process_one_symbol), partial-stab.h: Ignore
2762 extraneous SO stabs from busted C++ compilers.
2763
4c07f28d
FF
2764Mon Jun 15 12:21:45 1992 Fred Fish (fnf@cygnus.com)
2765
2766 * Makefile.in (VERSION): Bump to 4.5.5.
2767 * symtab.c (decode_line_1): Until C++ support stabilizes, when
2768 C++ lookups fail, print possibly helpful hint about completion.
2769 * cplus-dem.c (demangle_signature): Fix ARM style demangling
2770 for static data members.
2771 * dbxread.c (dbx_psymtab_to_symtab_1): Fix prototype.
2772 * config/ncr3000.mh (INSTALL): Don't use /usr/ucb/install,
2773 it's broken on ncr3000's.
2774
1c92ca6f
FF
2775Mon Jun 15 07:21:00 1992 Fred Fish (fnf@cygnus.com)
2776
2777 * dwarfread.c (decode_modified_type): Change type of first arg.
2778 Change 'modifier' to char from unsigned char. Cast single use
2779 that needs to be unsigned char.
2780 * symtab.h (SYMBOL_BASEREG_VALID): Explain disabling.
2781 * utils.c (strdup_demangled): Add function.
2782 * defs.h (strdup_demangled): Add prototype.
2783 * stack.c (return_command): Demangle C++ function names for query.
2784 * infcmd.c (jump_command): Demangle C++ function names for query.
2785 * cplus-dem.c (consume_count): New function and prototype.
2786 * cplus-dem.c (demangle_class, gnu_special, demangle_func_type,
2787 do_type): Replace conversion code with consume_count().
2788 * cplus-dem.c (gnu_special): Fix demangled of static members.
2789 * source.c (list_command): Print demangled function names
2790 when appropriate. Fix supplied by Peter Schauer.
2791
2792Mon Jun 15 01:45:48 1992 John Gilmore (gnu at cygnus.com)
2793
8f86a4e4
JG
2794 * sparc-tdep.c: Clean up slightly for Solaris2.
2795
1c92ca6f
FF
2796 * buildsym.c (define_symbol): Nameless types are now on several
2797 platforms; generalize them and un-ifdef them to make Solaris 2
2798 work.
2799
bcbf9559
JG
2800Sun Jun 14 10:55:51 1992 John Gilmore (gnu at cygnus.com)
2801
d69bba12
JG
2802 * infcmd.c: Fix typo (reported by Rob Savoye).
2803 * xm-sun4sol2.h (gregset_t): Thinko in register set definition.
2804 * symtab.h: Disable SYMBOL_BASEREG_VALID until it works.
2805 * dbxread.c (dbx_psymtab_to_symtab_1): Renamed from
2806 psymtab_to_symtab_1. Use current psymtab's sym_offset and symbol_size,
2807 rather than the one for the first file in the dependency chain.
2808
bcbf9559
JG
2809 * dbxread.c (end_psymtab): Only reset texthigh if it's not already
2810 set. Don't reset our own texthigh, or dependency-only pst's, in
2811 scanning all the rest of the psymtabs.
2812 (process_one_symbol): Fix comments around N_OBJ, N_OPT, N_UNDF.
2813
2814 * buildsym.h (N_UNDF): Improve comments.
2815 (N_LSYM, etc): Skip types without names (":T(0,3)=sfoob...").
2816
252f6c65
FF
2817Sat Jun 13 11:16:45 1992 Fred Fish (fnf at cygnus.com)
2818
2819 * symtab.h (struct symbol): Add aux_value union for preserving
2820 an additional per-symbol value.
2821 * symtab.h (SYMBOL_BASEREG, SYMBOL_BASEREG_VALID): Add defines.
2822 * frame.h (FRAME_GET_BASEREG_VALUE): Provide default definition.
2823 * findvar.c (read_var_value): Use SYMBOL_BASEREG if valid.
2824 * printcmd.c (address_info): Use SYMBOL_BASEREG if valid.
2825 * symmisc.c (print_symbol): Use SYMBOL_BASEREG if valid.
2826
a6b46ad4
MT
2827Sat Jun 13 09:18:46 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
2828
2829 * symfile.c (clear_symtab_users_once): Now non-static (for
2830 objfiles.c).
2831
bf2e5f6b
JG
2832Fri Jun 12 18:54:40 1992 John Gilmore (gnu at cygnus.com)
2833
346168a2
JG
2834 * arm-pinsn.c, i960-pinsn.c, m68k-pinsn.c, mips-pinsn.c,
2835 ns32k-pinsn.c, pyr-pinsn.c, sparc-pinsn.c, tahoe-pinsn.c,
2836 vax-pinsn.c: Remove reg_names decl (now in defs.h).
2837
2838 Solaris-2 support on SPARC:
2839
2840 * dbxread.c: Add symbol_size to struct dbx_symfile_info.
2841 Add symbol_size and file offsets to struct symloc.
2842 Add static symbol_table_offset, string_table_offset,
2843 file_string_table_offset, next_file_string_table_offset,
2844 last_function_name.
2845 (add_old_header_file): Convert error() to complain()t.
2846 (dbx_symfile_read): Get symbol size via the objfile.
2847 Also get symbol_table_offset.
2848 (dbx_symfile_init): Record symbol size and count via the objfile.
2849 (dbx_next_symbol_text): Always add file_string_table_offset when
2850 accessing string table.
2851 (read_dbx_symtab): Initialize file_string_table_offset to 0.
2852 (SET_NAMESTRING): Use the offset.
2853 (end_psymtab): Large kludge to determine addresses where source
2854 files start and end (for the psymtab header).
2855 (psymtab_to_symtab_1): Set file_string_table_offset before reading.
2856 Get this, symbol size, and symbol offset, from psymtab.
2857 (read_ofile_symtab): Don't back up one symbol for Solaris2.
2858 Patch up last_source_start_addr if zero in N_SO.
2859 (process_one_symbol): Add variable function_start_offset.
2860 ( "", N_FUN, N_LBRAC, N_RBRAC, N_SLINE): Add ifdef for
2861 BLOCK_ADDRESS_FUNCTION_RELATIVE.
2862 ( "", N_OBJ, N_OPT): Ignore.
2863 (elfstab_build_psymtabs): New function to read stabs out of
2864 an ELF file.
2865
2866 * Makefile.in: Accept $(BISON) even though we really want $(YACC).
2867 (gdb): use GLOBAL_CFLAGS when linking, too.
2868 * partial-stab.h (N_UNDF): Deal with Sol2 relative stringtab offsets.
2869 (N_OBJ, N_OPT): Ignore.
2870 ('f', 'F'): Save last function name.
2871
2872 * elfread.c (record_minimal_symbol_and_info): Kludged to put
2873 extra info in the minimal symbol.
2874 (elf_symtab_read): The extra info is the size of an ELF object,
2875 which was kludged to us in the `udata' field of the BFD symbol.
2876 Gag me with a crowbar...
2877 (elf_symfile_read): Keep track of both the absolute load address,
2878 and the offset between load addr and symbols. Handle STABS as
2879 well as DWARF sections, passing the absolute load address to
2880 elfstab_build_psymtabs.
2881
2882 * symfile.h: Prototype elfstab_build_psymtabs.
2883 * symfile.c: Add almost-OK debug versions of add_psymbol_*to_list.
2884
2885 * xm-sysv4.h: Add <limits.h> to avoid conflicting defns in defs.h.
2886
93297ea0
JG
2887 * buildsym.h: Add processing_acc_compilation flag.
2888 * buildsym.c (read_sun_builtin_type, read_sun_floating_type): New.
2889 (define_symbol): Skip arg types in function entries. Resolve
2890 overloaded 'P' which acc uses for prototypes of functions called
2891 by this file.
2892 (read_type: 'b', 'r'): Handle Solaris2 builtin types.
2893
2894 * minsyms.c (prim_record_minimal_symbol_and_info): Hack to
2895 save size of ELF symbols. FIXME.
2896 * tm-sun4os5.h: Rename to tm-sun4sol2.h. Update defines for Sol2.
2897 * xm-sun4os5.h: Rename to xm-sun4sol2.h. Hack more defines.
2898
bf2e5f6b 2899 * configure.in: Solaris config is sparc-sun-solaris2.
93297ea0 2900 * config/sun4os5.m[ht]: Rename to config/sun4sol2.m[ht]; new xm, tm.
bf2e5f6b 2901
346168a2
JG
2902 * objfiles.c (free_objfile): Eliminate storage leaks. Contributed
2903 by <Peter.Schauer@regent.e-technik.tu-muenchen.dbp.de>.
2904 * symfile.c (symfile_bfd_open): Comment where name is freed.
2905 * symmisc.c (extend_psymbol_list): Comment where list is freed.
2906
252f6c65 2907Fri Jun 12 08:24:36 1992 Fred Fish (fnf at cygnus.com)
6b53bf34
FF
2908
2909 * expprint.c (print_subexp): Add missing ']'.
2910 * defs.h (reg_names): Fix declaration to match that in infcmd.c
2911 * stack.c (reg_names): Delete redundant (and inconsistent) decl.
2912 * WHATS.NEW: Point out improved C++ function name handling.
2913 * gdbtypes.c (lookup_fundamental_type): For now, use the same
2914 type names for both implicitly and explicitly signed integral
2915 types. See comment in the source code.
2916
28de880c
JG
2917Thu Jun 11 12:31:50 1992 John Gilmore (gnu at cygnus.com)
2918
2919 Two `long long' fixes from Robert R. Henry (rrh@dino.tera.com):
2920 * defs.h (longest_to_int): Avoid void arm of ?: in error case.
2921 * expprint.c (print_subexp): Fix printing of register names.
2922
1304f099
JG
2923Thu Jun 11 01:33:40 1992 John Gilmore (gnu at cygnus.com)
2924
2925 * inferior.h (register_valid): Declare.
e7ae70e9 2926 * remote-udi.c, rs6000-xdep.c, sparc-xdep.c, tm-rs6000.h: Remove decl.
1304f099
JG
2927 * objfiles.h (ALL_OBJFILE_{SYMTABS,PSYMTABS,MSYMBOLS}): Add
2928 macros for traversing the data structures in a single objfile.
2929 * tm-m88k.h, tm-sparc.h (REGISTER_NAMES): Remove extra semicolon.
2930 * tm-i960.h (REGISTER_NAMES): Cosmetic change.
2931 * infcmd.c: Lint.
2932
252f6c65 2933Tue Jun 9 17:19:45 1992 Fred Fish (fnf at cygnus.com)
36ce1b64
FF
2934
2935 * c-exp.y, m2-exp.y: Move remapping defines for malloc and
2936 realloc. Add remapping defines for {yyss, yyssp, yyvs, yyvsp}.
2937 * config/{amix.mh, i386v4.mh, ncr3000.mh, stratus.mh,
2938 sun4os5.mh}: Add definition for INSTALL using /usr/ucb/install.
2939
55488e9e
SG
2940Tue Jun 9 16:29:19 1992 Stu Grossman (grossman at cygnus.com)
2941
2942 * depend: rebuild to account for remote-st2000.c.
2943 * remote-st2000.c: Almost works now.
2944 * tm-st2000.h: Need to turn on HAVE_68881, else things won't compile.
2945
d630b615
FF
2946Mon Jun 8 23:05:51 1992 Fred Fish (fnf@cygnus.com)
2947
2948 * c-exp.y (yylex): Recognize single-quoted strings that specify
2949 tokens with embedded whitespace, such as C++ demangled names.
2950 * defs.h (demangle_and_match, strcmp_iw, skip_quoted): Prototypes.
2951 * main.c (gdb_completer_quote_characters): Add global variable.
2952 * main.c (symbol_completion_function): Total rewrite for C++
2953 demangled name handling.
2954 * main.c (skip_quoted): New function.
2955 * main.c (main): Set rl_completer_quote_characters.
2956 * symmisc.c (dump_symtab): Print source language for symtab.
2957 * symtab.c (expensive_mangler): Add prototype and function.
2958 * symtab.c (completion_list_add_symbol): Total rewrite for new
2959 C++ demangled name handling.
2960 * symtab.c (lookup_symbol): Check for demangled C++ symbol first,
2961 other changes for demangled C++ symbol handling.
2962 * symtab.c (lookup_demangled_block_symbol): Use demangle_and_match.
2963 * symtab.c (lookup_demangled_partial_symbol): Use demangle_and_match.
2964 * symtab.c (decode_line_1): Recognize C++ demangled names on input.
2965 * symtab.c (completion_list_add_symbol): Total rewrite for new
2966 C++ demangled name handling.
2967 * symtab.c (expensive_mangler): New function.
2968 * utils.c (strcmp_iw, demangle_and_match): New functions.
2969 * xcoffread.c (aixcoff_symfile_read): Fix prototype.
2970
d9915ebc
JG
2971Mon Jun 8 21:59:08 1992 John Gilmore (gnu at cygnus.com)
2972
2973 * Makefile.in: Roll VERSION to 4.5.4.
2974 * Makefile.in, config/*.mh, config/*.mt: Rename TM_CFLAGS
2975 to MT_CFLAGS, XM_CFLAGS to MH_CFLAGS to match file names.
2976 * config/sun4os5.mh: Add MH_CFLAGS=-xs to save debug info.
2977
88cc9a36
SG
2978Mon Jun 8 14:17:42 1992 Stu Grossman (grossman at cygnus.com)
2979
55488e9e
SG
2980 * alldeps.mak: Rebuild to account for new files.
2981 * config/st2000.mt: Use tm-st2000.h, not tm-68k.h.
2982 * tm-st2000.h: New file.
88cc9a36
SG
2983 * configure.in: Tandem debug monitor (st2000) support.
2984 * remote-st2000.c, config/st2000.mt: ditto.
2985
6f8db23a
JG
2986Fri Jun 5 11:51:01 1992 John Gilmore (gnu at cygnus.com)
2987
2988 * blockframe.c (inside_entry_file, inside_main_func,
2989 inside_entry_func): Return 0 if no symbols; avoid crashing.
2990
2991Wed Jun 3 17:48:04 1992 John Gilmore (gnu@cygnus.com)
2795260c
JG
2992
2993 * xcoffread.c (read_xcoff_symtab): Set c_sclass from n_sclass
2994 without masking, since it is signed and will later be compared
2995 against signed quantities. The right fix is probably to make
2996 it all unsigned, but this is a small, safe fix for this release.
2997 FIXME -- make the real change sometime soon.
2998
a748555b
MT
2999Mon Jun 1 16:16:12 1992 Michael Tiemann (tiemann@cygnus.com)
3000
fb44a8f5
MT
3001 * remote-vx.c (vx_load_command,add_symbol_stub): Default READNOW
3002 parameter in call to `symbol_file_add' to 0.
3003
a748555b
MT
3004 * xm-sun4os4.h (MALLOC_INCOMPATIBLE): Define it.
3005
3006Sun May 31 06:38:27 1992 Michael Tiemann (tiemann@cygnus.com)
3007
3008 * configure.in: Handle -m680[01234]0-wrs.
3009
48079d66
MT
3010Fri May 29 22:16:02 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
3011
3012 * m68k-pinsn.c (print_insn_arg): Pass &EXT_FORMAT_68881 to
3013 `ieee_extended_to_double'.
3014
cb614788
JG
3015Wed May 27 09:27:57 1992 John Gilmore (gnu at cygnus.com)
3016
3017 * valops.c (value_assign): Lint, by Pierre Willard.
3018
6ad6ef42
JG
3019Tue May 19 19:38:10 1992 John Gilmore (gnu at cygnus.com)
3020
cb614788
JG
3021 * coredep.c (fetch_core_registers): Remove premature warning,
3022 which triggers on DECstation even though all regs are accessible.
3023
3024 * m68k-pinsn.c (print_insn_arg): Use new macros to get
3025 sign-extension of instruction fields even on unsigned-char hosts.
3026 Bug found by Fred J Roeber, fjr@sgfb.ssd.ray.com.
6ad6ef42 3027
cb614788 3028 88K changes inspired by Ted Lemon (uunet!lupine!mellon):
6ad6ef42
JG
3029 * tm-m88k.h, tm-umax.h: Avoid sizeof() in REGISTER_xxx macros,
3030 since they define the target, not the host.
3031 * m88k-pinsn.c: Fix typo.
3032
3033Thu May 14 01:16:48 1992 John Gilmore (gnu at cygnus.com)
3034
3035 * valarith.c (value_zerop): -0.0 is still zero.
3036 * eval.c (evaluate_subexp): Avoid NaN anomalies in float compares.
3037 Patches by Paul Eggert <eggert@twinsun.com>.
3038
3039Mon May 18 13:53:51 1992 Stu Grossman (grossman at cygnus.com)
3040
3041 * alldeps.mak, depend: re-make to account for ser-*.c.
3042
6c316cfd
FF
3043Sun May 17 16:51:20 1992 Fred Fish (fnf@cygnus.com)
3044
3045 * inflow.c (new_tty): Temporarily ignore SIGTTOU when
3046 disconnecting from controlling terminal, to avoid gdb hanging
3047 on SVR4. Fixes bug reported by Oliver Okrongli.
3048 * procfs.c (PROC_NAME_FMT): Change format to match default used
3049 by system, as suggested by Oliver Okrongli.
3050 * tm-68k.h (FRAME_FIND_SAVED_REGS): Apply missing parentheses
3051 bug fix from Brent Townshend (bst%tt@cam.ORG).
3052 * c-exp.y (nonempty_typelist): Fix memory overrun bug reported
3053 by turlais@rechser.total.fr.
3054 * dwarfread.c (decode_subscr_data): Fix bug in calculation of
3055 length of non-zero lowerbound arrays. Bug fix from Peggy Fieland.
3056 * objfiles.h (unlink_objfile): Add prototype.
3057 * objfiles.c (unlink_objfile): Add function.
3058 * objfiles.c (free_objfile): Call unlink_objfile.
3059 * objfiles.c (allocate_objfile): Call unlink_objfile on newly
3060 remapped objfiles. Bug reported by hahn@sunshine.labs.tek.com.
3061 Also, discard old possibly bogus sf struct.
3062 * symfile.c (symbol_file_add): Call init_entry_point_info() and
3063 find_sym_fns() for remapped symbol files, in case of any changes
3064 since the last mapping.
3065
3066Wed May 13 18:28:20 1992 Steve Chamberlain (sac@thepub.cygnus.com)
3067
3068 * findvar.c (read_relative_register_raw_bytes): use the raw size
3069 of a register to bcopy, rather than the host's sizeof(CORE_ADDR).
3070
ae0ea72e 3071Tue May 12 17:44:39 1992 Steve Chamberlain (sac@thepub.cygnus.com)
6ad6ef42 3072
ae0ea72e
SC
3073 Changes to support GDB running on DOS using GO32 and H8 support
3074
3075 * defs.h: if xm.h doesn't define FOPEN_RB, include "fopen-same.h",
3076 allowing hosts with different text and binary file formats to
3077 work.
3078 * coffread.c (read_coff_symtab): changed calling convention and
3079 operation - now it opens its own file with FOPEN_RB rather than
3080 duping and fdopening the provided handle.
3081 * dbxread.c, cplus-dem.c: #include mangling.
3082 * exec.c: If O_BINARY isn't defined, set it to 0, call openp for
3083 binary files oring in the right bit.
3084 * utils.c, terminal.h, inflow.c: hackery because dos doesn't have terminals.
3085 * remote-hms.c: cleanup to use the new remote serial stuff
3086 * serial.h, ser-termios.c, ser-go32.c: newfiles to provide host
3087 independent remote terminal I/O.
3088 * remote.c: if DONT_USE_REMOTE not defined, then don't use it.
3089 * source.c (openp): fix off by one problem removing / - can now
3090 open a source file in the root directory with DOS.
3091 * values.c (value_as_pointer): remove bogus address bits from
3092 long. (unpack_long): unpack into unsigned long/short if pointer.
3093
0defac02
SG
3094Tue May 12 14:15:48 1992 Stu Grossman (grossman at cygnus.com)
3095
84c8f62d
SG
3096 * infrun.c (child_attach): Don't allow gdb to attach to itself.
3097 It gets permanently stuck in many OSes.
bcf2e6ab
SG
3098 * breakpoint.c, infcmd.c, infrun.c, utils.c: Change many printfs
3099 to printf_filtered.
70d47e66 3100 * breakpoint.c: Improve help text for info breakpoints.
0defac02
SG
3101
3102Mon May 11 14:17:18 1992 John Gilmore (gnu at cygnus.com)
3103
3104 * README: Add pointer to internals doc, and describe reading
3105 info files.
3106 * utils.c (print_sys_errmsg): Use stderr. Reported by Pierre Willard.
3107 * symtab.c (output_source_filename): Remove old glop for wrapping
3108 lines, use wrap_here. Reported by Pierre Willard (pierre@la.tce.com).
3109
3110Thu May 7 11:45:03 1992 John Gilmore (gnu at cygnus.com)
3111
3112 * Makefile.in: version.c should depend on Makefile, not Makefile.in.
3113 * munch: Add sort -u to avoid duplications.
3114 * symtab.c (lookup_symbol): Improve Stu's fix of 22 April.
3115 Improved fix by hahn@sunshine.labs.tek.com (Doug Hahn).
3116
7fd31a84
FF
3117Mon May 11 13:27:46 1992 Fred Fish (fnf@cygnus.com)
3118
3119 * cplus-dem.c (demangle_signature): Recognize misplaced '_' to
3120 avoid infinite loops while demangling bogus mangled names.
3121 * valprint.c (type_print_base): Minor fix for GNU style guide
3122 conformance.
3123
f9b5584c
FF
3124Sat May 9 18:02:17 1992 Fred Fish (fnf at fishpond)
3125
3126 * Makefile.in (VERSION): Bump to 4.5.3
3127 * Makefile.in (DEMANGLE_OPTS): Remove obsolete -Dnounderscore
3128 * Makefile.in (demangle): New target to create standalone
3129 demangler with same code and options as internal demangler.
3130 * cplus-dem.c: Massive restructuring, rewriting, cleanups, etc
3131 to support ARM style and Lucid style demangling, improve
3132 maintainability, fix several demangling bugs. More changes
3133 to follow.
3134 * defs.h (strstr): Add ANSI compatible prototype.
3135 * valprint.c (type_print_1): Demangle using ansi option.
3136 * config/ncr3000.mt (DEMANGLE_OPTS): Remove -Dnounderscore.
3137
1e939db1
SG
3138Sat May 9 14:47:28 1992 Stu Grossman (grossman at cygnus.com)
3139
3140 * xcoffexec.c (vmap_exec): Don't assume .text and .data are the
3141 first two sections.
3142
d5e88583
PB
3143Fri May 8 11:42:15 1992 Per Bothner (bothner@rtl.cygnus.com)
3144
3145 * mipsread.c (parse_procedure): Return rather than using
3146 uninitialized variable 'b'.
3147
e7ae70e9
SG
3148Fri May 8 07:48:27 1992 Stu Grossman (grossman at cygnus.com)
3149
3150 * Makefile.in, remote-udi.c, remote-vx.c, 29k-share/dfe/mini2udi.c,
3151 29k-share/dfe/yank.c, vx-share/xdr_ptrace.c, vx-share/xdr_regs.c:
3152 Remove -I29k-share, -Ivx-share from Makefile.in. Make #includes
3153 relative to each source file.
3154
0defac02
SG
3155Fri May 8 07:48:27 1992 K. Richard Pixley (rich@cygnus.com)
3156
9b98dea2 3157 * Makefile.in: propogate INSTALL, INSTALL_DATA, INSTALL_PROGRAM on
0defac02 3158 recursions.
9b98dea2
RP
3159
3160Thu May 7 10:00:52 1992 Stu Grossman (grossman at cygnus.com)
3161
3162 * am29k-pinsn.c: Use new opcode table in "opcode/a29k.h".
3163 * am29k-tdep.c: Update to latest code from AMD.
3164 (get_saved_register) don't crap out if no frame.
e7ae70e9
SG
3165 * remote-udi.c: Set/clear inferior_pid as appropriate.
3166 (udi_open) call target_preopen, don't close fd 0!!!, clean up
3167 error handling. Fixup end-of-debugging messages.
3168 (udi_fetch_registers) clean up big time, mainly don't multiply
3169 register_valid indices by 4, and use proper Offset when reading
3170 gr96-gr127. (udi_store_registers) general cleanup.
3171 (fetch_register) cleanup, simplify. (regnum_to_srnum)
3172 INT_REGNUM->INTE_REGNUM.
9b98dea2 3173 * tm-29k.h: Upgrade to latest code from AMD.
e7ae70e9
SG
3174 * 29k-share/udi/udip2soc.c: Get rid of useless errmsg_m macro.
3175 (UDIConnect) Clean up error processing (like, don't do exit() if
3176 execlp fails), make code restartable, make more attractive.
3177 (UDIStop) Use SIGINT instead of SIGUSR1, as isstip won't stop
3178 otherwise.
9b98dea2 3179
ba2c9027
PB
3180Wed May 6 14:34:18 1992 Per Bothner (bothner@rtl.cygnus.com)
3181
3182 * tm-irix3.h: Re-define CPLUS_MARKER to '.'.
3183 * xm-rs6000.h, tm-rs6000.h: Move re-definition of CPLUS_MARKER
3184 from former to latter.
3185
55b3ef9a
FF
3186Wed May 6 14:12:35 1992 Fred Fish (fnf@cygnus.com)
3187
3188 * cplus-dem.c (do_args): Handle void args the same as others.
3189 * objfiles.c (free_objfile): Only try to unmap files when
3190 reusable objfiles are supported.
3191 * valprint.c (type_print_varspec_suffix): Add parameter that
3192 specifies if C++ demangling included function arguments. Use
3193 it to suppress printing extra pair of ()'s.
3194 * valprint.c (type_print_1): Fix problem with printing demangled
3195 C++ function types where demangled type includes the function
3196 args.
3197
8f793aa5
FF
3198Tue May 5 11:10:27 1992 Fred Fish (fnf@cygnus.com)
3199
3200 * Makefile.in (DEMANGLER): Define and default to cplus-dem.
3201 Allows selection of C++ demangler to be a configuration option
3202 until multiple demanglers are supported.
3203 * demangle.h: New include file for extended demangler support.
3204 * breakpoint.c, gdbtypes.c, printcmd.c, stack.c, symtab.c,
3205 utils.c, valprint.c: Include "demangle.h" and change all calls
3206 to cplus_demangle() or fputs_demangled() to use individual
3207 demangling options.
3208 * valprint.c (type_print_1): Change options to cplus_demangle
3209 to print demangled function args. Still broken, but now less so.
3210 * cplus-dem.c: Include demangle.h, reorganize and update some
3211 comments to reflect reality.
3212 * cplus-dem.c (cplus_demangle, cplus_mangle_opname): Change
3213 second arg from fixed integer to bit based multiple options.
3214 * cplus-dem.c (optable): Reformat and replace ansi members with
3215 bit based options.
3216 * cplus-dem.c (do_type): Fix bug with parsing missing return type.
3217
6fab5bef
JG
3218Mon May 4 22:26:59 1992 John Gilmore (gnu at cygnus.com)
3219
3220 * values.c (set_internalvar): Force evaluation of lazy values.
3221 Bug reported by RMS.
3222
4db8e515
FF
3223Sun May 3 15:47:45 1992 Fred Fish (fnf@cygnus.com)
3224
3225 * Makefile.in (VERSION): Bump to 4.5.2.
3226 * Makefile.in (DEMANGLE_OPTS): Add, default to -Dnounderscore.
3227 * configure.in: Simplify ncr3000 gdb_host logic, add gdb_target.
3228 * dwarfread.c (struct_type): Apply fix from Peggy Fieland for
3229 proper handling of bit fields.
3230 * gdbtypes.h (struct type): Clarify use of field.bitpos.
3231 * symtab.h: Fix couple of misspellings in comments.
3232 * value.h (struct value): Clarify use of bitpos.
3233 * value.h (unpack_field_as_long): Change prototype, returns
3234 LONGEST.
3235 * values.c (unpack_field_as_long): Change return type to LONGEST,
3236 sign extend unpacked fields that are signed, other rewriting.
3237 * config/ncr3000.mt: New target config file.
3238
ea1549b3
JG
3239Fri May 1 01:53:26 1992 John Gilmore (gnu at cygnus.com)
3240
fcdb113e
JG
3241 * utils.c (printchar): Print 0x7F and 0x80-0x9F in \nnn notation
3242 even when printing 8-bit characters.
3243
ea1549b3
JG
3244 * gdbtypes.c (make_{reference,pointer,function}_type): New
3245 functions which handle overwriting of forward-referenced types
3246 for stabs file reading.
3247 (lookup_{reference,pointer,function}_type): These just call
3248 the make_*_type functions with a null storage alloc parameter.
3249 * gdbtypes.h (make_{reference,pointer,function}_type): Declare.
3250 * xcoffread.c (smash_to_pointer_type): Remove, no longer used.
3251
3252 * buildsym.c (dbx_lookup_type): Zero result for (-1,-1) arg.
3253 (dbx_alloc_type): Make it easier to understand. No funct change.
3254 (define_symbol: 't'): Don't put the typedef name into the name of
3255 the struct, union, or enum. Bugfix.
3256 (read_type: '*', '&', 'f'): Add comments. Use make_XXX_type
3257 routines to properly handle overwriting preallocated types so that
3258 forward references will work.
3259 (read_enum_type): Force enum values to file scope, due to bug in
3260 Sun compiler output. FIXME, fix later.
3261
3262 Remove unused header_file_prev_index mechanism. It was already
3263 obsolete in gdb-3.5. These comments appeared in 3.5:
3264 /* This code was used before I knew about the instance codes.
3265 My first hypothesis is that it is not necessary now
3266 that instance codes are handled. */
3267 * dbxread.c (add_new_header_file): Remove header_file_prev_index.
3268 * buildsym.h: Remove it and prev_index that saves it.
3269 * buildsym.c (push_subfile, pop_subfile, start_symtab): Remove it.
3270
3271 * solib.c (special_symbol_handling): When called from core files,
3272 must set up debug_addr. Don't print error messages, just return.
3273 * symmisc.c (print_symbol): Less ascii diarrhea for enums, please.
3274
f536aa39
PB
3275Wed Apr 29 15:26:51 1992 Per Bothner (bothner@rtl.cygnus.com)
3276
3277 * cplus-dem.c: Allow nested class names (as in
3278 Foo::Bar::method()).
3279 Allow the cleaner cfront style of nested class names
3280 (Q2_3Foo3Bar as well as Q23Foo3Bar).
3281 Make cplus_demangle re-entrant by removing use of global
3282 variables. Instead, place all shared variables in a
3283 stack-allocated structure, and pass around its address.
3284
72b1aa30
SG
3285Fri Apr 24 07:41:19 1992 Stu Grossman (grossman at cygnus.com)
3286
9e91f617
SG
3287 * Makefile.in (make-proto-gdb-1): 1st cut at packaging
3288 29k-share/* subdirs...
3289
e7ae70e9
SG
3290 * remote-udi.c (udi_insert/remove_breakpoint): Completely
3291 rewrite, only leave out the bugs.
3292
3293 * Makefile.in: Add 29k/UDI support. Improve depend.
3294 * alldeps.mak, configure.in, depend: Add 29k/UDI support.
3295
07df4831
SG
3296 * am29k-tdep.c: Update to use new calling conventions, and misc
3297 symbol elements.
3298
72b1aa30
SG
3299 * m68k-pinsn.c (print_insn_arg): Make branch offsets be signed.
3300
c8094777
FF
3301Thu Apr 23 18:43:17 1992 Fred Fish (fnf@cygnus.com)
3302
66a8a9b4
SG
3303 * tm-29k.h: Set DECR_PC_AFTER_BREAK to 0, as 29ks have nice
3304 breakpoint instructions that leave PC pointing at the right place.
3305
c8094777
FF
3306 * core.c (core_open): Call warning() to print warnings.
3307
35a25840
SG
3308Wed Apr 22 09:55:42 1992 Stu Grossman (grossman at cygnus.com)
3309
3310 * symtab.c (lookup_symbol): Need to check if msymbol->name is
3311 NULL, as ALL_MSYMBOLS will never return a NULL msymbol pointer.
3312 This prevents a crash when trying to lookup the value of a
3313 non-existent symbol.
3314
4ace50a5
FF
3315Wed Apr 22 09:42:15 1992 Fred Fish (fnf@cygnus.com)
3316
3317 * signame.c, signame.h: Remove, replaced by strsignal.c in
3318 libiberty.
3319 * i960-tdep.c, infrun.c, mach386-xdep.c, procfs.c, sparc-tdep.c,
3320 sun386-xdep.c: Remove include of signame.h
3321 * Makefile.in (SFILES_MAINDIR): Remove signame.c
3322 * Makefile.in (HFILES): Remove signame.h
3323 * Makefile.in (OBS): Remove signame.o
3324 * defs.h (safe_strerror, safe_strsignal, strerrno, strsigno,
3325 errno_max, signo_max, strtoerrno, strtosigno, strsignal,
3326 psignal, perror): Add prototypes.
3327 * defs.h, xm-apollo68v.h, xm-ultra3.h (SYS_SIGLIST_MISSING):
3328 Remove define.
3329 * depend: Manually remove signame.[cho] references.
3330 * convex-tdep.c (subsig_name): Replace use of sys_siglist with
3331 strsignal.
3332 * convex-xdep.c (core_file_command): Replace use of sys_siglist
3333 with safe_strsignal.
3334 * core.c (core_open): Replace use of sys_siglist with
3335 safe_strsignal.
3336 * core.c (memory_error): Replace use of sys_errlist with
3337 safe_strerror.
3338 * i960-tdep.c (print_fault): Replace use of sys_siglist with
3339 safe_strsignal.
3340 * infcmd.c (program_info): Replace use of sys_siglist with
3341 safe_strsignal.
3342 * infrun.c (signal_stop, signal_print, signal_program):
3343 Allocate dynamically based on dynamic determination of number
3344 of signals to support.
3345 * infrun.c (child_create_inferior): Replace use of sys_errlist
3346 with safe_strerror.
3347 * infrun.c (wait_for_inferior): Replace use of sys_siglist with
3348 safe_strsignal.
3349 * infrun.c (sig_print_info): Replace use of sig_abbrev with
3350 strsigno and sys_siglist with safe_strsignal.
3351 * infrun.c (handle_command): Call signo_max to find number of
3352 signals. Replace sig_number with strtosigno and sig_abbrev with
3353 strsigno.
3354 * infrun.c (signals_info): Replace sig_number with strtosigno.
3355 * infrun.c (_initialize_infrun): Call signo_max to find number of
3356 signals. Dynamically allocate signal_{stop,print,program}.
3357 * procfs.c (errno_table): Remove, now in libiberty/strerror.c.
3358 * procfs.c (errnoname): Add function and prototype.
3359 * procfs.c (info_proc_siginfo): Call errnoname, replace use
3360 of sys_siglist with safe_strsignal.
3361 * procfs.c (info_proc_stop, info_proc_signals): Replace use of
3362 sys_siglist with safe_strsignal.
3363 * procfs.c (info_proc_stop): Call errnoname.
3364 * procfs.c (signalname): Replace sig_abbrev with strsigno.
3365 * stuff.c (main, get_offset): Replace use of sys_errlist with
3366 strerror.
3367 * sun386-xdep.c (core_file_command): Replace use of sys_siglist
3368 with safe_strsignal.
3369 * umax-xdep.c (core_file_command): Replace use of sys_siglist
3370 with safe_strsignal.
3371 * utils.c (safe_strerror, safe_strsignal): Add functions that
3372 call strerror and strsignal respectively, and deal with NULL
3373 returns.
3374 * utils.c (perror_with_name, print_sys_errmsg): Replace use of
3375 sys_errlist with safe_strerror.
3376 * valprint.c (val_print): Replace use of sys_errlist with
3377 safe_strerror.
3378
6e6bf7f2
RP
3379Tue Apr 21 12:00:47 1992 K. Richard Pixley (rich@cygnus.com)
3380
3381 * Makefile.in: rework CFLAGS so that they can be set from the
3382 command line to make. CFLAGS -> INTERNAL_CFLAGS.
3383 USER_CFLAGS -> CFLAGS. Remove MINUS_G. Default CFLAGS to -g.
3384 Pass CFLAGS on recusions.
3385
3386Fri Apr 17 19:25:57 1992 Fred Fish (fnf@cygnus.com)
3387
3388 * gdbtypes.h, c-exp.y, m2-exp.y, mipsread.c, gdbtypes.c: Back
3389 out of change on 4/14/92 and remove TYPE_FLAG_FUND_TYPE. It was
3390 overkill for the problem it solved.
3391 * valprint.c (type_print_base): Remove TYPE_FLAG_FUND_TYPE test
3392 and default to simply printing type names as appropriate.
3393 * main.c (main): Remove one of the leading newlines from
3394 warning_pre_print initialization.
3395 * objfiles.c (open_existing_mapped_file): Add function and
3396 prototype.
3397 * objfiles.c (open_mapped_file): Rewrite to use new function
3398 open_existing_mapped_file.
3399
b0c8c726
JG
3400Thu Apr 16 23:50:12 1992 John Gilmore (gnu at cygnus.com)
3401
3402 * sun3-xdep.c (fetch_core_registers): Lint.
3403 * tm-sun3.h: Prototype lint.
3404 * value.h: Typo.
3405
2d6d969c
FF
3406Thu Apr 16 19:56:50 1992 Fred Fish (fnf@cygnus.com)
3407
3408 * dwarfread.c (TARGET_FT_POINTER_SIZE, TARGET_FT_LONG_SIZE):
3409 Define using TARGET_PTR_BIT and TARGET_LONG_BIT for now.
3410 * objfiles.c: Cast calls to close() with unused returns to void.
3411 * objfiles.c (allocate_objfile): Initialize objfile's mmfd, free
3412 old objfile's name before updating it.
3413 * objfiles.c (free_objfile): Major rewrite for mapped objfiles.
3414 * objfiles.h (objfile struct): Add mmfd member.
3415 * symfile.c (syms_from_objfile): Move some code to
3416 new_symfile_objfile.
3417 * symfile.c (new_symfile_objfile): Add new function, common code
3418 from syms_from_objfile.
3419 * symfile.c (symbol_file_add): Call new_symfile_objfile for both
3420 mapped and unmapped symbol files.
3421 * symfile.c (symbol_file_command): Print "No symbol file now"
3422 message, ala exec_file_command for the exec file.
3423 * symfile.h (new_symfile_objfile): Add prototype.
3424 * xcoffexec.c (map_vmap): Add call to new_symfile_objfile.
3425 * xcoffsolib.c (solib_add): Add call to new_symfile_objfile.
3426
d453b386
PB
3427Thu Apr 16 18:26:34 1992 Per Bothner (bothner@cygnus.com)
3428
3429 * rs6000-pinsn.c: New version from IBM (Metin).
3430 * m2-exp.y: Re-write string initializers ("<>" => {'<', '>'})
3431 to avoid warnings from some compilers.
3432
4a11eef2
FF
3433Tue Apr 14 22:33:55 1992 Fred Fish (fnf@cygnus.com)
3434
3435 * gdbtypes.h (FT_FIXED_DECIMAL, FT_FLOAT_DECIMAL): Add defines.
3436 * gdbtypes.h (TYPE_FLAG_FUND_TYPE): Add define for bit in a
3437 type's flag word that marks it as a fundamental type.
3438 * c-exp.y (_initialize_c_exp): Add TYPE_FLAG_FUND_TYPE bit to
3439 flags argument for all calls to init_type().
3440 * m2-exp.y (_initialize_m2_exp): Add TYPE_FLAG_FUND_TYPE bit to
3441 flags argument for all calls to init_type(). Also remove
3442 dependency on host sizes for ints, floats, etc.
3443 * mipsread.c (_initialize_mipsread): Add TYPE_FLAG_FUND_TYPE bit to
3444 flags argument for all calls to init_type(). Also remove
3445 dependency on host sizes for ints, floats, etc.
3446 * gdbtypes.c (lookup_fundamental_type): Add TYPE_FLAG_FUND_TYPE
3447 bit to flags argument for all calls to init_type(). Add types
3448 FT_FIXED_DECIMAL and FT_FLOAT_DECIMAL.
3449 * valprint.c (unsigned_type_table, signed_type_table,
3450 float_type_table): Remove.
3451 * valprint.c (type_print_base): Test new TYPE_FLAG_FUND_TYPE
3452 bit when printing fundamental types, and print the actual name
3453 for such types, rather than inventing one. Remove code that
3454 invented fundamental type names.
3455 * valprint.c (_initialize_valprint): Remove initializations
3456 for now removed unsigned_type_table, signed_type_table, and
3457 float_type_table.
3458
35a25840
SG
3459Tue Apr 14 14:30:46 1992 Stu Grossman (grossman at cygnus.com)
3460
3461 * remote-vx.c, vx-share/xdr_ptrace.c, vx-share/xdr_ptrace.h,
3462 vx-share/xdr_rdb.h: Update for new remote protocol under VxWorks
3463 5.0.2.
3464
13b5a7ff
FF
3465Mon Apr 13 20:59:21 1992 Fred Fish (fnf@cygnus.com)
3466
3467 * dwarfread.c (target_to_host): New function similar to previous
3468 swapin function.
3469 * dwarfread.c (SWAPIN, swapin): Remove macro and support function.
3470 Extensive changes to convert all previous usages to use new
3471 target_to_host() function.
3472 * dwarfread.c (struct dieinfo): Change types of most integral
3473 members to be unsigned.
3474
3bc82410
JG
3475Mon Apr 13 15:59:10 1992 John Gilmore (gnu at cygnus.com)
3476
3477 * WHATS.NEW: Revise -mapped doc.
3478
817bc7b8
JG
3479Sat Apr 11 23:14:36 1992 John Gilmore (gnu at cygnus.com)
3480
3481 * mipsread.c (parse_partial_symbols): Complain when sh->index is
3482 too high or when skipping `forwards' moves us backwards.
3483 (parse_type): Print mis-guessed tag name in complaint.
3484 (parse_external): Eliminate cur_stab and obscure top_stack clobbers.
3485 (parse_procedure): Do not attempt to create symbols; just fill in
3486 the SYMBOL_VALUE field of a .gdbinfo. symbol if we can find one.
3487 (psymtab_to_symtab_1): Split up `stabs' from `native ecoff' code
3488 for clarity. Set top_stack before calling parse_external. In
3489 stabs, sort symbols before calling parse_procedure.
3490 * mipsread.c: Lint.
3491 * symmisc.c (std_in, std_out, std_err): Add vars to access std
3492 FILE *'s when debugging GDB (e.g. as args to dump_symtab).
3493 * Makefile.in: Remove stage* targets. Avoid echo on recursive
3494 makes. Eliminate doc/Makefile from tar.Z file if doc/Makefile.in
3495 exists.
3496
554d1be4
JG
3497Fri Apr 10 23:47:37 1992 John Gilmore (gnu at cygnus.com)
3498
44d835be 3499 * Makefile.in (VERSION): Set to 4.5.1.
554d1be4
JG
3500 * xcoffread.c (NO_TYPEDEFS): Fix typo in commented-out #define.
3501 * sparc-tdep.c (supply_gregset, fill_gregset, supply_fpregset,
3502 fill_gregset): New functions for SVR4 /proc support.
44d835be
JG
3503 * mipsread.c: Cleanup. Add more complaints for unhandled cases.
3504 Remove new symbol types and such to ../include/coff/symconst.h.
3505 (parse_symbol): Simplify code for parsing struct/enum/unions.
3506 (parse_type): Handle `long long' types.
3507 (upgrade_type): Handle `const' qualifier.
3508 (parse_partial_symbols): fix indentation, clean a bit.
554d1be4 3509
6e706950
FF
3510Fri Apr 10 22:41:03 1992 Fred Fish (fnf@cygnus.com)
3511
95967e73
FF
3512 * dwarfread.c (SWAPIN,swapin): New macro and function to call to
3513 copy in data from raw read buffers, calling bfd byteswapping
3514 routines as appropriate. Use to replace most existing memcpy
3515 calls.
3516 * dwarfread.c (basicdieinfo, completedieinfo): Add objfile arg.
6e706950
FF
3517 * configure.in: Recognize new ncr3000 config.
3518 * config/ncr3000.mh: New config file.
3519
601836ef
SG
3520Fri Apr 10 08:30:58 1992 Stu Grossman (grossman at cygnus.com)
3521
6e706950
FF
3522 GDB-4.5 release!
3523
3524 * README: Update for release.
b69ce5ab
SG
3525 * Makefile.in: Update version to 4.5.
3526 * WHATS.NEW: The obvious.
3527
ece32565
SG
3528 * depend: Generate new depend file for this release.
3529
601836ef
SG
3530 * Makefile.in (depend): Fix dependancy generation so that it does
3531 not include gcc 'fixincluded' files, which are usually in a system
3532 specific location.
3533
9b6f92db
PB
3534Thu Apr 9 13:35:00 1992 Per Bothner (bothner@rtl.cygnus.com)
3535
3536 Changes from metin@ibmpa.awdpa.ibm.com (Metin G. Ozisik).
3537 * buildsym.c (#ifdef RS6000_TARGET): Don't create unnecessary
3538 symbols for nameless types. And, handle `R' (register parameter
3539 type) for AIX. (an extension to existing stabstring grammar).
3540 * rs6000-xdep.c: Fix typo (= should have been ==).
3541
7fe388ad
SG
3542Thu Apr 9 12:10:06 1992 Stu Grossman (grossman at cygnus.com)
3543
3544 * Makefile.in: version=4.4.88, add xm-vax.h to HFILES.
3545
9e53d9dc
JG
3546Thu Apr 9 02:29:03 1992 John Gilmore (gnu at cygnus.com)
3547
3548 * xm-sun4os5.h (DO_DEFERRED_STORES, CLEAR_DEFERRED_STORES): Zap.
3549 * signame.c (SIGWAITING, SIGLWP): Add.
3550
6fba3d7c
PB
3551Tue Apr 7 16:34:07 1992 Per Bothner (bothner@cygnus.com)
3552
56619803 3553 * xm-i386mach.h: add decls for errno and strdup().
ff1e35cb 3554
6fba3d7c
PB
3555 * breakpoint.c (breakpoint_1): Add (int) casts for enums
3556 used in array index context (otherwise, some compilers barf).
3557
628c6d3b
SG
3558Tue Apr 7 08:45:46 1992 Stu Grossman (grossman at cygnus.com)
3559
e05ba37d
SG
3560 * m68k-tdep.c, tm-sun3.h: #ifdef around get_longjmp_target().
3561 Change def of SAVED_PC_AFTER_CALL to call routine to see if we are
3562 in a system call, and provide better backtrace if so.
3563
1f415ae7 3564 * Makefile.in (HFILES): Add xcoffsolib.h.
c994feb6 3565 * rs6k-opcode.h: Move to ../include/opcode/rs6k.h.
2741887b 3566 * rs6000-pinsn.c: #include "opcode/rs6k.h"
c994feb6 3567
96c19d0f
SG
3568 * mipsread.c (read_mips_symtab, read_the_mips_symtab,
3569 mipscoff_symfile_read): Convert to BFD to do file I/O.
3570
c1bde665
SG
3571 * symfile.c: #include <ctype.h> to get proper def if isspace().
3572
628c6d3b
SG
3573 * i386-tdep.c (get_longjmp_target): #ifdef GET_LONGJMP_TARGET.
3574
ad142b8e
PB
3575Mon Apr 6 17:25:45 1992 Per Bothner (bothner@cygnus.com)
3576
3577 * mipsread.c: Create a .gdbinfo pseudo-symbol for each
3578 function also when parsing embedded stabs.
3579
ce9260ae
SG
3580Mon Apr 6 15:25:03 1992 Stu Grossman (grossman at cygnus.com)
3581
391ca579
SG
3582 * mipsread.c: Fix more declarations.
3583
e5578a31
SG
3584 * mipsread.c: Fix many invocations of complain. Use enum
3585 type_code where appropriate.
41bd448e 3586
995e7f86
SG
3587 * xm-vaxult.h: Add decl for strdup().
3588
ce9260ae
SG
3589 * Makefile.in: Add dependancies for xm-vaxbsd.h and xm-vaxult.h
3590 for xm-vax.h.
3591
b2de19e3
SG
3592Fri Apr 3 17:41:29 1992 Stu Grossman (grossman at cygnus.com)
3593
3594 * buildsym.h, dbxread.c, mipsread.c: Add objfile arg to
3595 process_one_symbol.
3596
556f3d90
PB
3597Fri Apr 3 12:17:14 1992 Per Bothner (bothner@cygnus.com)
3598
3599 * munch: Must pre-pend "_" to "initialize" for SYSV style nm.
3600 * tm-rs6000.h, xcoffexec.c, xcoffread.c, xm-rs6000.h:
3601 Merge in more patches for rs6000 from Metin Ozisik.
3602 * utils.c: Fix typo in comment.
3603
d65eee73
FF
3604Fri Apr 3 11:23:03 1992 Fred Fish (fnf@cygnus.com)
3605
3606 * procfs.c (procinfo struct): Add nopass_next_sigstop member.
3607 * procfs.c (attach): Set nopass_next_sigstop if attached
3608 process is forcibly stopped.
3609 * procfs.c (child_resume): Use nopass_next_sigstop to suppress
3610 resending SIGSTOP to attached process on first resume.
3611
239e7ee9
SG
3612Fri Apr 3 01:37:26 1992 Stu Grossman (grossman at cygnus.com)
3613
3614 * Makefile.in (SFILES_MAINDIR): add mipsread.c
3615
e10a3052
JG
3616Thu Apr 2 20:20:54 1992 John Gilmore (gnu at cygnus.com)
3617
3618 * Makefile.in (OBS): Compile mipsread.c for all targets now.
3619 (VERSION): Bump to 4.4.85.
3620 * mipsread.c: Update for new include files. Lint.
3621 * tm-irix3.h, tm-mips.h: Use new include files for ECOFF symtab.
3622 * config/{bigmips.mt, littlemips.mt, irix3.mt, decstation.mt}:
3623 Don't need to bring in mipsread.o specially any more.
3624
4ad1963e
SG
3625Thu Apr 2 19:38:31 1992 Stu Grossman (grossman at cygnus.com)
3626
3627 * mipsread.c (fixup_sigtramp): Also look for _sigtramp as a real
3628 routine (for Irix-4.x). Make many funcs static and void.
3629 * mips-tdep.c (mips-frame-chain): Clean up, simplify.
3630 * (init_extra_frame_info): Don't trash cached value of frame
3631 pointer register. This fixes backtracing through routines that use
3632 alloca(). Generally clean up declarations of functions, and use
3633 typedefs and macros to reference data structures as appropriate.
3634 * tm-irix3.h, tm-mips.h (EXTRA_FRAME_INFO): use proper type for
3635 proc_desc element.
3636
5c1c5e67
FF
3637Thu Apr 2 09:47:11 1992 Fred Fish (fnf@cygnus.com)
3638
3639 * values.c (unpack_long): Fix unpacking error for signed chars
3640 on hosts where the default character type is unsigned.
3641 * procfs.c (pr_flag_table, pr_why_table): Add some entries
3642 for newer SVR4 variants.
3643 * procfs.c (proc_set_exec_trap): Reorder tests for ioctl's that
3644 turn off trace inherit-on-fork flag to favor latest SVR4 method.
3645 * procfs.c (mappingflags): Add support for MA_PHYS
3646
ac88ca20
JG
3647Thu Apr 2 00:55:56 1992 John Gilmore (gnu at cygnus.com)
3648
03c93c66
JG
3649 * buildsym.c (read_struct_type): Avoid coredump when C++
3650 abbreviated type name is messed up. Reported by Joe Buck.
3651 FIXME, we need to determine whether GDB or GCC needs to be
3652 smarter to correctly locate this type name.
3653
ac88ca20
JG
3654 * c-exp.y, coffread.c, command.c, command.h, copying.awk,
3655 dbxread.c, gdbtypes.c, infcmd.c, inferior.h, infrun.c,
3656 m2-exp.y, printcmd.c, remote.c, solib.c, source.c, stack.c,
3657 symtab.c, tm-sun4os4.h, tm-sun4os5.h, values.c: Lint.
3658 * symfile.c (add_symbol_file_command): Initialize mapped/readnow.
3659
cc221e76
FF
3660Wed Apr 1 11:39:52 1992 Fred Fish (fnf@cygnus.com)
3661
3662 * breakpoint.h (bpdisp, bptype): Remove trailing comma.
3663 * symtab.h (current_source_symtab): Make extern
3664 * symtab.h (current_source_line): Make extern
3665 * inferior.h: Move all procfs.c prototypes to one place, add
3666 prototype for proc_signal_handling_change. Add prototypes for
3667 signal_stop_state, signal_print_state, and signal_pass_state.
3668 * inferior.h (stop_soon_quietly): Make extern
3669 * inferior.h (attach_flag): Make extern
3670 * infrun.c (NOTICE_SIGNAL_HANDLING_CHANGE): Default is null.
3671 * infrun.c (signal_stop_state, signal_print_state,
3672 signal_pass_state): New functions to query specific signal
3673 handling flags.
3674 * infrun.c (handle_command): Minor error message change, add
3675 NOTICE_SIGNAL_HANDLING_CHANGE.
3676 * procfs.c (open_proc_file): Remove iris specific reset of
3677 inherit-on-fork flag, moved to proc_set_exec_trap().
3678 * procfs.c (proc_set_exec_trap): Add SVR4 and iris code
3679 to reset inherit-on-fork flag, bash comment to GNU form.
3680 * procfs.c (proc_base_address, set_proc_siginfo,
3681 fetch_core_registers): Conform to code style.
3682 * procfs.c (signame.h): Include.
3683 * procfs.c (MAX_SYSCALLS, syscall_table[], init_syscalltable(),
3684 syscallname(), info_proc_syscalls()): New macros, tables, and
3685 functions to organize and report system call information.
3686 * procfs.c (saved_fltset, saved_trace, saved_sighold,
3687 saved_exitset, saved_entryset): Add to procinfo struct.
3688 * procfs.c (struct trans): Add.
3689 * procfs.c (pr_flag_table, pr_why_table, faults_table,
3690 siginfo_table, errno_table): Tables to translate numeric values
3691 to symbolic names and short descriptions.
3692 * procfs.c (signalname, info_proc_signals): Add function and
3693 prototype.
3694 * procfs.c (proc_info): Now info_proc.
3695 * procfs.c (proc_info_address_map): Now info_proc_mappings.
3696 * procfs.c (info_proc_flags, info_proc_stop, info_proc_siginfo,
3697 info_proc_faults, lookupname, lookupdesc, sigcodename,
3698 sigcodedesc): New functions.
3699 * procfs.c (proc_signal_handling_change): New function to set
3700 the trace flags based on the state of gdb's signal handling flags.
3701 * procfs.c (inferior_proc_init): Call proc_signal_handling_change
3702 and remove code to do PIOCSTRACE ioctl.
3703 * procfs.c (attach, detach): Preserve and restore process flags
3704 using saved_* fields in procinfo struct.
3705 * procfs.c (attach): Call proc_signal_handling_change.
3706 * procfs.c (info_proc): Major rework to expand "info proc" cmd.
3707 * procfs.c (proc_desc): Update for latest changes.
3708 * xm-irix4.h (CREATE_INFERIOR_HOOK): Protect by USE_PROC_FS.
3709 * xm-irix4.h (NOTICE_SIGNAL_HANDLING_CHANGE): Add definition.
3710 * xm-sysv4.h (NOTICE_SIGNAL_HANDLING_CHANGE): Add definition.
3711
3712Tue Mar 31 18:38:28 1992 Fred Fish (fnf@cygnus.com)
3713
3714 * procfs.c (set_proc_siginfo): Add prototype and new function.
3715 * procfs.c (detach, child_resume): Call set_proc_siginfo to set
3716 up inferior siginfo struct.
3717 * elfread.c (elf_symfile_read): Compute the relocation amount
3718 by subtracting off the address of the ".text" section.
3719 * solib.c: Add pointer to ".text" section to so_list struct.
3720 * solib.c (solib_map_sections): Initialize pointer to ".text"
3721 section in so_list struct.
3722 * solib.c (symbol_add_stub): Pass base address of ".text"
3723 section to symbol_file_add, rather than the load address of
3724 the shared library. On SunOS they are the same. On SVR4 they
3725 are not.
3726
3bec9cdd
SG
3727Tue Mar 31 17:48:15 1992 Stu Grossman (grossman at cygnus.com)
3728
3729 * mipsread.c (parse_procedure): PDR.isym should get pointer to
3730 function name, not .gdbinfo. symbol.
3731
e360572c
JG
3732Tue Mar 31 17:05:04 1992 John Gilmore (gnu at cygnus.com)
3733
3734 * breakpoint.c (breakpoint_1): Fix prototype, this time for sure!
3735
fad3fc94
SG
3736Tue Mar 31 11:01:06 1992 Stu Grossman (grossman at cygnus.com)
3737
e360572c 3738 * Makefile.in (VERSION): 4.4.8
5e8fdb82 3739
fad3fc94
SG
3740 * procfs.c (open_proc_file): Disable inherit-on-fork flag so that
3741 commands in .cshrc/.profile won't get traced.
3742
3b0b9220
JG
3743Tue Mar 31 08:11:58 1992 John Gilmore (gnu at cygnus.com)
3744
3745 * elfread.c (elf_symtab_read): Use xmalloc, not bfd_xmalloc.
3746 * exec.c (build_section_table): Don't abort if no sections.
3747 * sparc-tdep.c (single_step): Lint.
3748 * utils.c (mrealloc): Handle realloc (0, size) case here.
3749
d1bb1d41
SG
3750Mon Mar 30 16:50:43 1992 Stu Grossman (grossman at cygnus.com)
3751
f8b4aa8e
SG
3752 * Makefile.in (alldeps.mak): Config files are now *.m[ht] as
3753 opposed to m[ht]-*!
3754
9d4c62df
SG
3755 * config/irix4.mh: Don't use coredep.o. It doesn't work with procfs.
3756
d1bb1d41
SG
3757 * mipsread.c (parse_symbol, parse_procedure): Re-do the way that
3758 .gdbinfo. symbols are created. Move creation from parse_procedure
3759 to parse_symbol, where it is fairly easy to grow the symtab. This
3760 also fixes a symtab trashing bug on all mips-based systems.
3761 * (got_numargs, lookup_numargs, free_numargs): Delete. Not
3762 needed anymore.
3763 * tm-mips.h, tm-iris3.h, mips-tdep.c, mipsread.c: Re-do struct
3764 mips_extra_func_info, and all the PROC_xxx macros that look at it.
3765
d26b50b7
PB
3766Mon Mar 30 14:17:53 1992 Per Bothner (bothner@cygnus.com)
3767
3768 * c-exp.y: Add missing return type to yyparse() prototype.
3769
be772100
JG
3770Sat Mar 28 22:22:06 1992 John Gilmore (gnu at cygnus.com)
3771
3772 Create and use macros for iterating on symtabs, psymtabs, msymbols.
3773
3774 * minsyms.c (iterate_over_msymbols): Remove; clunky and slow.
3775 * symfile.h, symtab.h (iterate_over_msymbols): Remove prototype
3776 * coffread.c (coff_symfile_read): iterate_over_symtabs => ALL_SYMTABS.
3777 (patch_opaque_types): Avoid dummy args and result.
3778 * objfiles.c (have_partial_symbols, have_full_symbols,
3779 have_minimal_symbols): explicit iteration => ALL_OBJFILES; simplify.
3780 (iterate_over_objfiles, iterate_over_symtabs,
3781 iterate_over_psymtabs): Remove, clunky and slow.
3782 * objfiles.h: Replace iterate_over_* prototypes with ALL_SYMTABS,
3783 ALL_PSYMTABS, and ALL_MSYMBOLS macros.
3784 * symmisc.c (dump_symtab, dump_psymtab, dump_msymbols,
3785 dump_objfile): Remove dummy args and results. Move filename
3786 comparisons to callers.
3787 (printsyms_command, printpsyms_command, printmsyms_command,
3788 printobjfiles_command): iterate_over_* => ALL_*. Compare filenames.
3789 * symtab.c (lookup_symtab_1, lookup_symtab, lookup_partial_symtab,
3790 lookup_symbol, find_main_psymtab, find_pc_symtab, sources_info,
3791 list_symbols, make_symbol_completion_list): Replace explicit
3792 iteration with ALL_SYMTABS, ALL_PSYMTABS, or ALL_MSYMBOLS.
3793 Eliminate Dijkstra flag crap, break out of loops with gotos.
3794 (lookup_symtab_1): Protect '/' tests from short filenames.
3795 (cplus_mangled_symbol): Move inline into lookup_symbol.
3796 * xcoffexec.c (relocate_objfile_msymbols): Remove poor hack.
3797 (relocate_minimal_symbol): Move inline to vmap_symtab.
3798 (vmap_symtab): Replace iteration with ALL_OBJFILES,
3799 iterate_over_msymbols with ALL_MSYMBOLS.
3800
3801 Misc cleanup prior to release.
3802
3803 * Makefile.in (VERSION): Roll to 4.4.7.
3804 (HFILES): Add call-cmds.h.
3805 * call-cmds.h: New header for command fns called by other files.
3806 * breakpoint.c (watchpoints_info): Remove, same as breakpoints_info.
3807 (breakpoint_1): Remove unused type arg. Change callers.
3808
3809 * dwarfread.c (dwarf_build_psymtabs): Remove mainline test.
3810 * mipsread.c (compare_symtabs, compare_psymtabs): Remove, unused.
3811 * mipsread.c: Add prototypes for all static functions.
3812
3813 * symmisc.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
3814 dump_blockvector, dump_block, dump_addrchass, dump_namespace,
3815 dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove, unused.
3816 * xcoffread.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
3817 dump_blockvector, dump_block, dump_addrchass, dump_namespace,
3818 dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove 2nd
3819 unused copy!
3820
3821 * buildsym.c (define_symbol): Handle global register variables
3822 (from Pierre Willard). Complain if register numbers are too large.
3823 * target.c (nomemory): Now that higher levels examine errno, give EIO.
3824 * tm-sparc.h: Don't #include <sun4/reg.h>.
3825 * sparc-tdep.c (sparc_frame_chain, frame_saved_pc): Remove
3826 dependency on <sun4/reg.h>. Start to handle cross-byte-order.
3827
3828 * language.h: Avoid forward enum declaration.
3829 * configure.in, tm-sun4os5.h, xm-sun4os5.h, config/sun4os5.mh,
3830 config/sun4os5.mt: New host and target.
3831 * defs.h (errno): #include <errno.h> rather than assuming int.
3832 From Pierre Willard.
3833
3834 * breakpoint.c, breakpoint.h, buildsym.c, coffread.c, cplus-dem.c,
3835 dbxread.c, dwarfread.c, elfread.c, infcmd.c, infrun.c, inftarg.c,
3836 language.c, main.c, mem-break.c, mips-tdep.c, mipsread.c,
3837 partial-stab.h, remote.c, saber.suppress, symfile.c, symtab.c,
3838 valops.c, valprint.c, xcoffread.c, c-exp.y, m2-exp.y, blockframe.c,
3839 command.c, core.c, exec.c, gdbtypes.h, parse.c, printcmd.c, solib.c,
3840 sparc-xdep.c, utils.c, value.h, values.c: Lint.
3841
3842Sat Mar 28 02:43:26 1992 John Gilmore (gnu at cygnus.com)
3843
3844 * buildsym.c (read_range_type): Avoid int overflow by using unsigned.
3845 * dbxread.c (dbx_symfile_init): Remove bogus `lvalue cast'.
3846 * language.h (enum exp_opcode): Avoid forward enum def.
3847 * main.c (define_command, user_defined_command): Lint.
3848 * mem-break.c, xcoffread.c: Lint.
3849 * solib.c: Only #include <a.out.h> on SunOS, not SVR4.
3850
1eeba686
PB
3851Sun Mar 29 14:16:22 1992 Per Bothner (bothner@cygnus.com)
3852
3853 * Merged in latest RS6000 diffs from Metin G. Ozisik.
3854 * xcoffsolib.c, xcoffsolib.h: New files, from Metin.
3855 * Various files: Changed #ifdef IBM6000 to IBM6000_HOST
3856 or IBM6000_TARGET as (approximately) appropriate.
3857
bf349b77
FF
3858Sat Mar 28 13:00:10 1992 Fred Fish (fnf@cygnus.com)
3859
3860 * objfiles.h (OBJF_SYMS): Define flag bit for objfile flags.
3861 * symfile.c (symbol_file_add): Use OBJF_SYMS to decide whether
3862 or not to try reading symbols from a mapped objfile. Plugs memory
3863 leak due to shared libraries generating no psymtabs or symtabs.
3864
c2e4669f
JG
3865Fri Mar 27 15:44:55 1992 John Gilmore (gnu at cygnus.com)
3866
3867 * buildsym.c (MAX_OF_C_TYPE, MIN_OF_C_TYPE): Unused, remove.
3868 * copying.awk: Lint. Make stronger warning at top of copying.c.
3869 * elfread.c (elf_symtab_read): Eliminate check of mainline.
3870 * gdbtypes.c (smash_to_*): Remove FIXME comments.
3871 (lookup_pointer_type): Add FIXME comment.
3872 * main.c (set_history_size_command): Disallow negative size.
3873 * partial-stab.h: Update copyright.
3874 * rs6000-tdep.c (skip_trampoline_code): Better comments.
3875
3876Wed Mar 25 10:45:38 1992 John Gilmore (gnu at cygnus.com)
3877
3878 * main.c (set_history_size_command): Negative size is error.
3879 (Reported by Peggy Fieland.)
3880
3624c875
FF
3881Thu Mar 26 17:01:18 1992 Fred Fish (fnf@cygnus.com)
3882
3883 * coffread.c (coff_symfile_init): Update comment.
3884 * dbxread.c (DBX_SYMFILE_INFO, DBX_TEXT_SECT, DBX_SYMCOUNT,
3885 DBX_STRINGTAB, DBX_STRINGTAB_SIZE, DBX_SYMTAB_OFFSET): Define
3886 macros to access the dbx specific objfile information.
3887 * dbxread.c (symfile_string_table, symfile_string_table_size):
3888 Remove these local variables.
3889 * dbxread.c (read_ofile_symtab, psymtab_to_symtab_1,
3890 read_dbx_symtab): Remove the stringtab and stringtab_size params
3891 from the function prototypes, the function definition, and the
3892 function calls. These are now available via DBX_STRINGTAB and
3893 DBX_STRINGTAB_SIZE using the objfile pointer.
3894 * dbxread.c (dbx_symfile_read): Relocate addr before using as
3895 an arg to read_dbx_symtab.
3896 * dbxread.c (dbx_symfile_read): Remove code that free'd the
3897 stringtab and the dbx specific per-objfile private info.
3898 * dbxread.c (init_psymbol_list): Remove symbol count from passed
3899 args in prototype, function definition, and function calls. It is
3900 now available via the DBX_SYMCOUNT macro using the objfile
3901 pointer.
3902 * dbxread.c (dbx_symfile_read, dbx_symfile_init): Remove the
3903 local instance of struct dbx_symfile_info and replace with DBX_*
3904 macros.
3905 * dbxread.c (dbx_symfile_read): Remove init's of now deleted
3906 symfile_string_table and symfile_string_table_size.
3907 * dbxread.c (dbx_symfile_finish): Remove now obsolete free of
3908 symfile_string_table.
3909 * dbxread.c (init_psymbol_list): Use DBX_SYMCOUNT.
3910 * dbxread.c (dbx_psymtab_to_symtab): Remove local stringtab and
3911 stringtab size variables. Remove all code that used to reread
3912 the stringtab.
3913 * objfiles.c (allocate_objfile): Move calls to init_malloc()
3914 to prior to any calls to mmalloc for the objfile specific heap.
3915 * utils.c (init_malloc): Document the requirement that for each
3916 heap for which corruption checking is desired, that init_mmalloc
3917 must be called prior to any mmalloc calls on the heap.
3918
3919Thu Mar 26 13:20:06 1992 Per Bothner (bothner@cygnus.com)
3920
3921 * rs6000-pinsn.c: Make dis-assembly output more like
3922 other targets: Don't print instruction in hex before
3923 the assembly; use print_address to print out jump
3924 destinations.
3925
04f27ddc
PB
3926Wed Mar 25 16:52:35 1992 Per Bothner (bothner@cygnus.com)
3927
3928 * c-exp.y, gdbtypes.h: Add builtin_type_signed_char.
3929 * cplus-dem.c: Support "Sc" meaning "signed char".
3930
88f36033
SG
3931Wed Mar 25 15:21:44 1992 Stu Grossman (grossman at cygnus.com)
3932
3933 * configure.in: fix iris/iris3.
3934
5c71cf23
PB
3935Wed Mar 25 14:55:48 1992 Per Bothner (bothner@cygnus.com)
3936
3937 * command.c, main.c (various places): Use ctype.h macros
3938 (such as isupper(x)), instead of hard-wiring in ASCII-isms
3939 (such as (x >= 'A' && x <= 'Z')).
3940 (There are still more of these in other files.)
3941 * main.c (defined_command): Lower-case the user's
3942 new command before entering it. Needed because
3943 command lookup is case-insensitive (and also lower-cases).
3944 (Based on Metin's earlier patch.)
3945
fd2329d7
RP
3946Tue Mar 24 23:27:01 1992 K. Richard Pixley (rich@cygnus.com)
3947
3948 * config/irix4.mh: new file.
3949
4f301966
SG
3950Tue Mar 24 14:17:48 1992 Stu Grossman (grossman@cygnus.com)
3951
0a22f63e
SG
3952 * infcmd.c (step_1): Call disable_longjmp_breakpoint at the right
3953 time.
3954
3955 * xm-mips.h: Declare strdup for ultrix.
9d53db1a 3956
4f301966
SG
3957 * mipsread.c (fixup_sigtramp): Make sure that current_objfile is setup
3958 when calling new_symbol.
3959 * mips-tdep.c (mips_frame_chain): Use symfile_objfile instead of
3960 current_objfile.
3961
5c8d3927
PB
3962Tue Mar 24 13:26:25 1992 Per Bothner (bothner@rtl.cygnus.com)
3963
3964 * config/rs6000.mh: Update (for Fred's new mmalloc)
3965 flags to disable use of GNU malloc/mmalloc.
3966 * munch: Change SYSV rule to allow .text before the label,
3967 as well as after, to work for AIX.
3968 * gdbtypes.h: Minor clarifiction.
3969
be1384b0
MT
3970Tue Mar 24 07:26:19 1992 Michael Tiemann (tiemann@cygnus.com)
3971
3972 * buildsym.c (read_struct_type): Handle cretinous dbx symbol name
3973 continuation in yet another place (between method declarations).
3974
62a469e1
SG
3975Mon Mar 23 23:01:41 1992 Stu Grossman (grossman at cygnus.com)
3976
3977 * mips-tdep.c: include symfile.h and objfiles.h to fix
3978 compilation errors.
3979
b3024b21
PB
3980Mon Mar 23 15:49:14 1992 Per Bothner (bothner@cygnus.com)
3981
3982 * valops.c (value_struct_elt_for_reference): Added 'offset'
3983 parameter to handle multiple inheritance.
3984 * eval.c, value.h: Update accordingly.
3985
5e2e79f8
FF
3986Fri Mar 20 17:43:27 1992 Fred Fish (fnf@cygnus.com)
3987
3988 * objfiles.h: New file
3989 * Makefile.in (HFILES): Add objfiles.h
3990 * blockframe.c: Remove entry_scope_lowpc, entry_scope_highpc,
3991 main_scope_lowpc, main_scope_highpc.
3992 * blockframe.c, buildsym.c, coffread.c, dbxread.c, dwarfread.c,
3993 elfread.c, gdbtypes.h, minsyms.c, mipsread.c, objfiles.c, solib.c,
3994 source.c, symfile.c, symmisc.c, symtab.c, target.c, xcoffexec.c,
3995 xcoffread.c, : Include objfiles.h.
3996 * tm-29k.h, tm-i386v.h, tm-merlin.h, tm-rs6000.h, tm-sun386.h,
3997 tm-symmetry.h, tm-tahoe.h, tm-umax.h, tm-vax.h, m88k-tdep.c,
3998 mips-tdep.c (FRAME_CHAIN): Renamed outside_startup_file to
3999 inside_entry_file() and logic changed appropriately.
4000 * blockframe.c (outside_startup_file): Renamed to
4001 inside_entry_file() and logic changed appropriately.
4002 * blockframe.c (inside_main_scope): Renamed to inside_main_func()
4003 and logic changed to use per-objfile specific fields.
4004 * blockframe.c (inside_entry_scope): Renamed to
4005 inside_entry_func() and logic changed to use per-objfile specific
4006 fields.
4007 * blockframe.c, buildsym.h, coffread.c, dwarfread.c, mipsread.c,
4008 symfile.c, mips-tdep.c (startup_file_start, startup_file_end):
4009 Remove extern decls.
4010 * symfile.c, symfile.h (entry_point): Remove extern decl.
4011 * coffread.c (coff_symfile_init): Common entry point init code
4012 moved to symfiles.c, call init_entry_point_info().
4013 * coffread.c (complete_symtab): Use new per-objfile entry info.
4014 * mip-tdep.c (mips_frame_chain): Use new per-objfile entry info.
4015 * mipsread.c (parse_partial_symbols): Use new per-objfile entry
4016 info.
4017 * dbxread.c (read_dbx_symtab): Use new per-objfile entry info.
4018 * defs.h (inside_entry_scope, outside_startup_file,
4019 inside_main_scope): Prototypes changed for renames to
4020 inside_entry_func, inside_entry_file, inside_main_func,
4021 respectively.
4022 * symfile.c (syms_from_objfile): Common entry point init code
4023 moved to init_entry_point_info() and call init_entry_point_info().
4024 * symfile.h (init_entry_point_info): Include prototype.
4025 * xcoffread.c (aixcoff_symfile_init): Common entry point init code
4026 moved to symfiles.c and call init_entry_point_info().
4027 * dwarfread.c (entry_scope_lowpc, entry_scope_highpc,
4028 main_scope_lowpc, main_scope_highpc): Remove extern decls.
4029 * dwarfread.c (read_func_scope, read_file_scope): Use new per-
4030 objfile entry info.
4031 * frame.h (FRAME_CHAIN_VALID): Provide default definition that
4032 works for the majority of targets.
4033 * tm-68k.h, tm-convex.h, tm-h8300.h, tm-i386v.h, tm-irix3.h,
4034 tm-merlin.h, tm-mips.h, tm-pyr.h, tm-rs6000.h, tm-sparc.h,
4035 tm-sun386.h, tm-tahoe.h, tm-umax.h, tm-vax.h (FRAME_CHAIN_VALID):
4036 Use default definition in frame.h.
4037 * frame.h (selected_frame_level): Make decl extern.
4038 * objfiles.c, symfile.c (current_objfile): Moved to objfiles.c
4039 * objfiles.c, symfile.c (symfile_objfile): Moved to objfiles.c
4040 * partial-stab.h: Use new per-objfile entry info.
4041 * symfile.h (struct objfile): Removed, moved to objfiles.h.
4042 * symfile.h, objfiles.h (allocate_objfile, free_objfile,
4043 free_all_objfiles, iterate_over_objfiles, iterate_over_symtabs,
4044 iterate_over_psymtabs, have_partial_symbols, have_full_symbols,
4045 have_minimal_symbols): Prototypes moved to objfiles.h.
4046 * symfile.h, objfiles.h (ALL_OBJFILES, ALL_OBJFILES_SAFE):
4047 Macros moved to objfiles.h.
4048 * tm-h8300.h, tm-i386v4.h (FRAME_CHAIN_VALID_ALTERNATE): Define.
4049
01be6913
PB
4050Thu Mar 19 18:49:45 1992 Per Bothner (bothner@cygnus.com)
4051
4052 More C++ improvements (pointers to members, qualified names).
4053 * c-exp.y: Support exp.type::name and exp->type::name
4054 syntaxes. (Unfortunately, doesn't work for static members.)
4055 * c-exp.y, eval.c: Make type::~type work better.
4056 * eval.c (evaluate_subexp: OP_SCOPE): Replace use of
4057 value_static_field by value_struct_elt_for_reference.
4058 * eval.c (evaluate_subexp): Merge code for STRUCTOP_MEMBER
4059 and STRUCTOP_MPTR; cast arg1 to domain-type of arg2.
4060 * eval.c (evaluate_subexp): Remove special case for UNOP_ADDR
4061 for OP_SCOPE operand; no point in it now that we use lazy
4062 reading of values, and use "reference to member" objects.
4063 * gdbtypes.h: Clarify comment.
4064 * valops.c: Change value_struct_elt_for_address to return
4065 a reference (or variable), rather than a pointer. Change
4066 the name to value_struct_elt_for_reference to reflect this.
4067 Returning a reference instead of a address provides a
4068 generalization, since we can use the routine for both
4069 class::name as well as &class::name.
4070 Also, recurse to handle multiple inheritance properly.
4071 * valprint.c: Moved code to print pointer-to-members
4072 to new function point_class_member. This allows a
4073 "reference-to-member" to be printed using the same code.
4074 * valprint.c (type_print_varspec_prefix): Avoid printing
4075 "struct " for domains of class-member types.
4076 * valops.c (search_struct_field): Inline code for simplified
4077 version of value_static_field (which can then be deleted).
4078 * value.h: Rename value_struct_elt_for_address to
4079 value_struct_elt_for_reference. Delete value_static_field.
4080 * values.c: Remove no longer used function value_static_field.
4081
80d68b1d
FF
4082Thu Mar 19 13:54:11 1992 Fred Fish (fnf@cygnus.com)
4083
4084 * coffread.c, mipsread.c, xcoffread.c, coffread.c, dbxread.c,
4085 elfread.c (coff_symfile_finish): Add function, prototype, and
4086 add to the xxxx_sym_fns struct for each file type. Also reformat
4087 the xxxx_sym_fns vector to a standard format and add comments.
4088 * coffread.c, mipsread.c, xcoffread.c, coffread.c, dbxread.c,
4089 elfread.c (xxx_symfile_new_init, xxx_symfile_init, xxx_symfile_read):
4090 Pass pointer to struct objfile rather than pointer to sym_fns.
4091 Change references inside each function accordingly. Allocate any
4092 symbol file specific info in the per-objfile memory region.
4093 * dbxread.c (free_and_init_header_files): Break function into
4094 free_header_files(), called from dbx_symfile_finish(), and
4095 init_header_files(), called from dbx_new_init().
4096 * dbxread.c (dbx_new_init): Move deallocation things to new
4097 dbx_symfile_finish function.
4098 * elfread.c (elf_new_init): Call buildsym_new_init().
4099 * objfiles.c (free_objfile): Call the appropriate symfile_finish()
4100 routine for the objfile before deallocating other stuff.
4101 * sparc-tdep.c (get_longjmp_target): Cast target_read_memory arg.
4102 * symfile.h: Move struct sym_fns to before struct objfile def.
4103 Add sym_finish function pointer and change prototypes of other
4104 function pointers to reflect passing struct objfile pointer rather
4105 than struct sym_fns pointer.
4106 * symfile.c: Remove now obsolete symtab_fns pointer.
4107 * symfile.c (symfile_init): Renamed to find_sym_fns, and now only
4108 locates the correct sym_fns struct for the given objfile.
4109 * symfile.c (syms_from_objfile, symbol_file_add): Restructured
4110 for better support of mapped symbol tables.
4111 * symfile.c (symbol_file_command): Remove obsolete code using
4112 symfile_fns.
4113 * symfile.h: Remove duplicate declarations for symfile_objfile,
4114 entry_point, and object_files.
4115 * target.c (target_info): Compare symfile_objfile to NULL.
4116 * xcoffread.c (aixcoff_new_init): Move deallocation stuff to
4117 aixcoff_symfile_finish().
4118
dc52fc71
FF
4119Wed Mar 18 18:22:46 1992 Fred Fish (fnf@cygnus.com)
4120
4121 * infrun.c (IN_SOLIB_TRAMPOLINE): Add default definition.
4122 * infrun.c (wait_for_inferior): Use IN_SOLIB_TRAMPOLINE.
4123 * tm-sysv4.h (IN_SOLIB_TRAMPOLINE): Add SVR4 definition.
4124
2cd99985
PB
4125Wed Mar 18 15:51:15 1992 Per Bothner (bothner@cygnus.com)
4126
4127 Some improvements to g++ debugging.
4128 * symtab.c (list_symbols): demangle before pattern matching.
4129 * symtab.c: Other fixes to improve handing of operators.
4130 * valprint.c (type_print_base): Fix test for constructor.
4131 * values.c (value_static_field): Allow evaluation of
4132 CLASS::METHOD, returning a function pointer.
4133
b0246b3b
FF
4134Wed Mar 18 08:39:52 1992 Fred Fish (fnf@cygnus.com)
4135
4136 * Makefile.in (VERSION): Roll 4.4.6.
4137 * exec.c (exec_file_command): Add code to ignore optional args
4138 passed in by file_command() for use in symbol_file_command().
4139 * main.c (main): Document -mapped and -readnow in help summary.
4140 * objfiles.c (open_mapped_file): Cosmetic change, arg renamed.
4141 * objfiles.c (allocate_objfile): Filename arg removed. Changes
4142 to get filename from bfd with bfd_get_filename(). Test mapto
4143 against 0, not NULL. Use mstrsave() to make copy of filename.
4144 * remote-mm.c (mm_load): Symbol_file_add() takes an additional
4145 arg.
4146 * remote-vx.c (vx_load_command, add_symbol_stub):
4147 Symbol_file_add() takes an additional arg.
4148 * solib.c (symbol_add_stub): Symbol_file_add() takes an
4149 additional arg.
4150 * symfile.c (symfile_open): Renamed to symfile_bfd_open and
4151 changed to return a bfd not an objfile pointer.
4152 * symfile.c (syms_from_objfile): Eliminate local copy of bfd.
4153 * symfile.c (symbol_file_add): Takes an additional arg (readnow).
4154 Change to eliminate local bfd and use symfile_bfd_open() plus
4155 allocate_objfile(). Add code to implement readnow option.
4156 * symfile.c (symbol_file_command): Changes to option handling,
4157 readnow functionality moved to symbol_file_add().
4158 * symfile.c (symfile_init): Eliminate local copy of bfd.
4159 * symfile.c (add_symbol_file_command): Changes to parse mapped
4160 and readnow options.
4161 * symfile.h (allocate_objfile): Arg removed from prototype.
4162 * symtab.h (symbol_file_add): Arg added to prototype.
4163 * xcoffexec.c (map_vmap): Allocate_objfile() takes an additional
4164 arg.
4165
318bf84f
FF
4166Sat Mar 14 16:38:47 1992 Fred Fish (fnf@cygnus.com)
4167
4168 * gmalloc.c, gmalloc.h mcheck.c mmap-alloc.c mmap-sbrk.c mtrace.c,
5a4470de 4169 mtrace.awk, state.c, state.h: Removed.
318bf84f
FF
4170 * .gdbinit: Add ../malloc, ../libiberty, and ../bfd to list of
4171 directories searched for source files.
4172 * Makefile.in (GNU_MALLOC, MALLOC_CFLAGS, MALLOCSRC): Removed
4173 * Makefile.in (MMALLOC_DIR, MMALLOC_DEP, MMALLOC_LIB,
4174 MMALLOC_DISABLE, MMALLOC_CHECK, MMALLOC_CFLAGS): Add
4175 * Makefile.in (CFLAGS): Replace MALLOC_CFLAGS with MMALLOC_CFLAGS.
4176 * Makefile.in (CLIBS, CDEPS): Add MMALLOC_LIB
4177 * Makefile.in (ADD_FILES, ADD_DEPS): Remove GNU_MALLOC.
4178 * Makefile.in (SFILES_MAINDIR): Remove stat.c mmap-alloc.c, mmap-
4179 sbrk.c
4180 * Makefile.in (HFILES): Remove state.h
4181 * Makefile.in (POSSLIBS_MAINDIR): Remove MALLOCSRC.
4182 * Makefile.in (OBS): Remove state.o mmap-alloc.o mmap-sbrk.o
4183 * Makefile.in (saber_gdb): Remove mcheck, mtrace. Add MMALLOC_DIR.
4184 * Makefile.in (clean): Remove all object files.
4185 * c-exp.y: Define malloc to xmalloc and realloc to xrealloc.
4186 * cplus-dem.c: Remove prototypes definitions that are now done in
4187 def.h.
4188 * dbxread.c (throughout): Change from using per-objfile
4189 xmalloc/xrealloc/free functions to xmmalloc/xmrealloc/mfree.
4190 * defs.h: Remove prototypes for mmap_* functions. Add prototypes
4191 for xmmalloc, xmrealloc, mfree, mmcheck, mmtrace, mmalloc_attach,
4192 mmalloc_detach, mmalloc_setkey, msavestring, and mstrsave, nomem.
4193 * depend: Remove dependencies for state.o, state.h.
4194 * dwarfread.c: Add declaration for warning_pre_print.
4195 * dwarfread.c (dwarfwarn): Use warning_pre_print.
4196 * dwarfread.c (throughout): Change from using per-objfile
4197 xmalloc/xrealloc/free functions to xmmalloc/xmrealloc/mfree.
4198 * gdbtypes.c (lookup_fundamental_type): Fix init_type calls to
4199 use supplied objfile.
4200 * i386-xdep.c (print_387_status): Change to use warning() rather
4201 than printfs.
4202 * i387-tdep.c (print_387_control_word): Change to use warning()
4203 rather than printfs.
4204 * infrun.c (wait_for_inferior): Remove unreachable abort() call
4205 that some compilers grumble about.
4206 * language.c (throughout): Add declaration for warning_pre_print
4207 and using warning() instead of printfs.
4208 * m2-exp.y: Define malloc to xmalloc and realloc to xrealloc.
4209 * main.c (main): Add declaration for warning_pre_print and set it
4210 similarly to error_pre_print. Add declarations for
4211 mapped_symbol_files and readnow_symbol_files. Add appropriate
4212 definitions to long_options[].
4213 * minsyms.c: Trivial fix to comment.
4214 * objfiles.c (allocate_objfile): Substantially rewritten for
4215 using mapped symbol files.
4216 * objfiles.c (throughout): Change from using per-objfile
4217 xmalloc/xrealloc/free functions to xmmalloc/xmrealloc/mfree.
4218 * objfiles.c (open_mapped_file, mapped_to_address): Add functions.
4219 * source.c (throughout): Change from using per-objfile
4220 xmalloc/xrealloc/free functions to xmmalloc/xmrealloc/mfree.
4221 * source.c (open_source_file): Use mstrsave to save file name in
4222 mapped symbol region for objfile.
4223 * symfile.c: Remove include for state.h.
4224 include to local form.
4225 * symfile.c (symbol_file_add_digested): Remove.
4226 * symfile.c (symbol_file_add): Substantially rewritten for mapped
4227 symbol files.
4228 * symfile.h: Remove malloc/xrealloc/xmalloc/xrealloc/free members
4229 from objfile structure. Add malloc descriptor pointer (md).
4230 * symfile.h (OBJF_DUMPABLE): Changed name to OBJF_MAPPED.
4231 * symm-xdep.c (print_fpu_status): Use warning() rather than
4232 printfs.
4233 * symmisc.c (free_symtab_block): Now takes and uses current
4234 objfile pointer.
4235 * symmisc.c (throughout): Change from using per-objfile
4236 xmalloc/xrealloc/free functions to xmmalloc/xmrealloc/mfree.
4237 * symtab.c (cplus_mangled_symbol): Cast return value to avoid
4238 Sun compiler grumblings when PTR is char *.
4239 * symtab.c (lookup_symbol): Cast return value of iterate_over_
4240 msymbols() to correct pointer type.
4241 * utils.c (warning_pre_print): Initialize to "\nwarning: ".
4242 * utils.c (fatal, fatal_dump_core): Ensure that the fatal
4243 error always starts on a line of it's own.
4244 * utils.c (init_malloc, malloc_botch, xmalloc, xrealloc):
4245 Rewrite for new mapped malloc package use.
4246 * utils.c (mmalloc, mrealloc, mfree): Stubs for configurations
4247 that don't want to use the mapped malloc package; pass arguments
4248 on to traditional malloc package functions.
4249 * utils.c (nomem): Add for fatal virtual memory exhausted aborts.
4250 * utils.c (xmmalloc, xmrealloc, xmalloc, xrealloc): Like mmalloc,
4251 mrealloc, malloc, and realloc but get fatal error if runs out
4252 of memory.
4253 * utils.c (msavestring, mstrsave): Save a string in a specific
4254 mapped malloc region.
4255 * utils.c (print_spaces): Use xmalloc to get the buffer.
4256 * xm-amix.h, xm-i386v4.h, xm-sun3os4.h, xm-sun4os4.h: Add defines
4257 for MMAP_BASE_ADDRESS and MMAP_INCREMENT.
4258 * config/i386v4.mh: Insignificant reorganization.
4259
0750528a
FF
4260Sat Mar 14 11:44:47 1992 Fred Fish (fnf@cygnus.com)
4261
4262 * xcoffread.c: Only enable compilation of debugging functions
4263 if IBM6000 is defined. Fails to compile otherwise.
4264
4db3902a
RP
4265Fri Mar 13 15:51:11 1992 K. Richard Pixley (rich@cygnus.com)
4266
4267 * Makefile.in: pass MAKEINFO down on info.
4268
bec9fad9
JG
4269Fri Mar 13 12:56:36 1992 John Gilmore (gnu at cygnus.com)
4270
4271 * mipsread.c (mipscoff_symfile_read): Eliminate a lot of
4272 useless code, including an lseek to an uninitialized variable.
4273 Reported by Jim Williams <jimbo@wrs.com>.
4274
6730b139
PB
4275Thu Mar 12 11:56:46 1992 Per Bothner (bothner@cygnus.com)
4276
4db3902a
RP
4277 Merged in patches from metin@ibmpa.awdpa.ibm.com (Metin G.
4278 Ozisik) (dated Fri, 6 Mar 92 17:51) for the rs6000.
4279 * minsyms.c, symfile.c: Changes that may be generally
4280 applicable, but are #ifdef IBM6000 for now.
4281 * rs6000-xdep.c: Fixed typo in comment.
4282 * rs6000-tdep.c: Non-substatial changes.
4283 * xoffread.c: The main change here is addition of some
4284 debugging functions.
4285 * xoffexec.c: More changes.
4286
4287 * xcoffread.c: Fixed two too-few-parameters bugs.
4288
6730b139
PB
4289 * solib.h, infrun.c, tm-rs6000.h: Add a PID parameter
4290 to SOLIB_CREATE_INFERIOR_HOOK macro.
4291
a846ac55
FF
4292Sun Mar 8 21:17:48 1992 Fred Fish (fnf@cygnus.com)
4293
4294 * symfile.h: Add prototype for iterate_over_msymbols().
4295 * symtab.c (cplus_mangled_symbol): Add function.
4296 * symtab.c (lookup_symbol): Call cplus_mangled_symbol via
4297 iterate_over_msymbols to find demangled C++ symbol.
4298 * xcoffexec.c (relocate_minimal_symbol): Return meaningful
4299 value to iterate_over_msymbols().
4300 * xcoffexec.c (vmap_symtab): Ignore return from iterate_over_
4301 msymbols().
4302
4303Fri Mar 6 21:59:34 1992 K. Richard Pixley (rich@cygnus.com)
4304
4305 * Makefile.in: added check target.
4306
a1106a1e
JG
4307Thu Mar 5 23:56:01 1992 John Gilmore (gnu at cygnus.com)
4308
4309 * ecoff.c: Move to ../bfd/coff-msym.c.
4310 * config/mt-*mips: Remove ecoff.o from the configuration.
53ccaf5f
JG
4311 * remote.c (): Add newline to initial +.
4312 (remote_resume): Mention how to cope with signals.
4313 (remote_interrupt): Add debug msg.
4314 (remote-wait): Implement new 'T' reply, which includes
4315 status, PC, and FP all in a single short message.
4316 (putpkt): Add further debugging of packet acks.
4317 * mipsread.c (fixup_symtab): Also swap RFD's.
4318 (parse_partial_symbols): Avoid bug on unknown symbol types.
b67cb9d5 4319 * Makefile.in (VERSION): Roll to 4.4.5.
a846ac55
FF
4320 * mips-tdep.c (heuristic_proc_start): Avoid long delays
4321 for remote MIPS by limiting heuristic to 200 byte search.
4322 (heuristic_proc_desc): Byte-swapping.
4323 (mips_print_register): Cope with failure of
4324 read_relative_register_raw_bytes. Byte-swap integers for
4325 printing.
4326 * mips-pinsn.c (print_insn): Byte-swap instruction.
a1106a1e 4327
1170a046
SG
4328Thu Mar 5 12:32:09 1992 Stu Grossman (grossman at cygnus.com)
4329
89f1a7df
SG
4330 * config.sub configure.in config/mh-irix4
4331 gdb/configure.in gdb/mips-tdep.c gdb/mipsread.c
1170a046 4332 gdb/procfs.c gdb/signame.h gdb/tm-irix3.h gdb/tm-mips.h
89f1a7df 4333 gdb/xm-irix4.h gdb/config/mt-irix3
1170a046
SG
4334 gdb/config/mh-irix4 texinfo/configure.in: Port to SGI Irix-4.x.
4335
d7eddc51
FF
4336Wed Mar 4 11:56:42 1992 Fred Fish (fnf@cygnus.com)
4337
4338 * defs.h, utils.c: xrealloc takes PTR as first arg.
4339 * defs.h: Reword confusing comment about ANSI prototypes.
4340 * defs.h: Some minor whitespace changes.
4341 * infrun.c (wait_for_inferior): Compare int tmp to int 0,
4342 not NULL, which can be (void *).
4343 * tm-amix.h, tm-i386v4.h: Add defines for setjmp/longjmp handling.
4344 * tm-i386v.h (SP_ARG0): Define
4345 * xm-sysv4.h: Back out of change for missing prototypes.
4346 * i386-tdep.c (get_longjmp_target): Add function.
4347
a846ac55
FF
4348Wed Mar 4 05:46:11 1992 K. Richard Pixley (rich@rtl.cygnus.com)
4349
4350 * Makefile.in: install man page too.
4351
d747e0af
MT
4352Tue Mar 3 15:11:52 1992 Michael Tiemann (tiemann@cygnus.com)
4353
4354 * All GDB files that #include defs.h: Removed stdio.h.
4355 (defs.h): #include stdio.h.
4356
96743d3c
SC
4357Mon Mar 2 23:00:12 1992 Steve Chamberlain (sac@thepub.cygnus.com)
4358
4359 * gdbtypes.c (lookup_pointer_type): initialize the TYPE_LENGTH of
4360 a ptype to reflect the setting of TARGET_PTR_BIT. Set the
4361 TYPE_FLAGS of a ptype to TYPE_FLAG_UNSIGNED.
4362 * tm-h8300.h, h8300-tdep.c, remote-hms.c: personal checkpoint
4363 * printcmd.c (print_address): if ADDR_BITS_REMOVE is defined, use
4364 it before printing out the hex shape of an address.
4365
6c6afbb9
PB
4366Sun Mar 1 17:41:09 1992 Per Bothner (bothner@cygnus.com)
4367
bff1c97a
FF
4368 * rs6000-xdep.c (frame_initial_stack_address): Move
4369 code to set frame->cache_fsr into new separate function
4370 frame_get_cacahe_fsr. This allows fixing a fatal error.
4371 * xcoffexec.c: Turn previously suppressed error
4372 message back on, after cleaning up BFD.
4373
6c6afbb9
PB
4374 * breakpoint.c (breakpoint_re_set): Removed (at least for now)
4375 printing of blank line, since it cases printing of an
4376 extra blank line. Is this intended? It does mess up
4377 gdb test suite.
4378 * defs.h: Put back declarations of malloc and realloc,
4379 but protected by #ifndef MALLOC_INCOMPATIBLE.
4380 * objfiles.c: Undo previous change: Use malloc/realloc
4381 for objfile malloc/realloc fields (but add a cast).
4382 * xcoffexec.c: Suppress an error message (for now).
4383
4384Sat Feb 29 14:43:02 1992 Per Bothner (bothner@cygnus.com)
4385
4386 Changes from metin@ibmpa.awdpa.ibm.com (Metin G. Ozisik)
4387 [Mail dated Fri, 21 Feb 92 13:14:54 -0800]
4388 * buildsym.c: Use smash_to_pointer_type() to handle forward type
4389 references.
4390 * xcoffread.c: Modifications to C_DECL storage class handling, and
4391 introduction of an old smash_to_pointer_type() routine.
4392
4393 Changes from metin@ibmpa.awdpa.ibm.com (Metin G. Ozisik)
4394 [Mail dated Thu, 20 Feb 92 13:57:16 -0800]
4395 * rs6000-xdep.c, rs6000-tdep.c, tm-rs6000.h: function_frame_info()
4396 parameters have been modified.
4397
4398 Changes from metin@ibmpa.awdpa.ibm.com (Metin G. Ozisik)
4399 [Mail dated Thu, 20 Feb 92 10:10:05 -0800]
4400 * rs6000-tdep.c: Before Feb 5 92, register_valid[] array was not used,
4401 and fetch_inferior_registers() always fetched all the registers
4402 resulting valid register values at hand all the time. Pushing a dummy
4403 frame did not require validating all register values first. After
4404 putting the above mechanism into action, we didn't have valid registers
4405 values always ready. Thus, all registers need to be fetched before
4406 pushing a dummy frame now.
4407
4408 Changes from metin@ibmpa.awdpa.ibm.com (Metin G. Ozisik)
4409 [Mail dated Thu, 13 Feb 92 16:22:44 -0800]
4410 * rs6000-xdep.c: frame_initial_stack_address() function to calculate
4411 the starting address (actual frame address) of a frame.
4412 * rs6000-tdep.c: modifications to function_frame_info() to see if
4413 function reserves a frame pointer register (alloca register)
4414 * tm-rs6000.h: EXTRA_FRAME_INFO, FRAME_ARGS_ADDRESS and
4415 FRAME_LOCALS_ADDRESS has been updated to support debugging of
4416 functions with alloca() calls.
4417
4b8333de
FF
4418Sun Mar 1 13:13:39 1992 Fred Fish (fnf@cygnus.com)
4419
4420 * xm-sysv4.h: Provide definitions/prototypes for host environment
4421 functions for which no definitions or prototypes are provided in
4422 any currently included gdb or host environment header files.
4423 For SVR4, this currently includes malloc and realloc, which cannot
4424 be portably prototyped in any gdb include file.
4425
4426Sat Feb 29 14:43:02 1992 Per Bothner (bothner@cygnus.com)
4427
4428 * buildsym.h: Remove obsolete variable file_stabs.
4429
4430 * Makefile.in: Move place where configure merges in host-
4431 and target-dependent fragments later, so the latter
4432 can override (say) GNU_MALLOC.
4433 * config/mh-rs6000: Use system malloc. Otherwise, I
4434 ended up with *two* incompatible versions of malloc
4435 (functions in libc would call the malloc in libc).
4436 I assume this is a shared library problem.
4437
4438 * remote.c: Fix (presumed) typo.
4439 * objfiles.c: Use xmalloc/xrealloc instead of
4440 malloc/realloc (since the latter are no longer declared).
4441
4442 Changes from metin@ibmpa.awdpa.ibm.com (Metin G. Ozisik)
4443 [Mail dated Thu, 6 Feb 1992 10:22:02 -0800]
4444 * rs6000-xdep.c: Improvements to fetch_inferior_registers() to
4445 handle individual registers.
4446 * tm-rs6000.h: Fix SAVED_PC_AFTER_CALL macro to handle pc value
4447 correctly in case it wasn't cached yet. (A problem showed up
4448 after fetching individual registers.)
4449 * buildsym.c: Disable type_synonym_name's type name overwriting
4450 in cases it is unnecesary. rs6000 portation doesn't use
4451 type_synonym_name, and it used to nullify type names
4452 * xcoffread.c: to handle g++'s typename abbreviation, fill in a
4453 type's name as soon as space for that type is allocated.
4454 * xcoffread.c: ignore a section's lineno information if it is
4455 not `.text'. (In rs6000 bfd portation integration, skipping over
4456 `.pad' sections are ignored since it was in machine independent
4457 part of the code. Thus, a problem of fake sections with invalid
4458 lineno information arised.)
4459
4460 Changes from metin@ibmpa.awdpa.ibm.com (Metin G. Ozisik)
4461 [Mail dated Thu, 6 Feb 1992 13:26:22 -0800]
4462 * rs6000-tdep.c: make function_frame_info() work whether or not
4463 reading from a core file.
4464 * tm-rs6000.h: Implementation of FRAME_FIND_SAVED_REGS macro.
4465
4466 * infrun.c. main.c, printcmd.c. symtab.c:
4467 More changes from IBM for rs6000.
4468
4469
818de002
PB
4470Thu Feb 27 22:57:19 1992 Per Bothner (bothner@cygnus.com)
4471
4472 * rs6k-opcode.h, tm-rs6000.h, xm-rs6000.h, rs6000-tdep.c,
4473 rs6000-xdep.c, xcoffexec.c, xcoffread.c:
4474 Merge in changes (mostly from IBM) for RS6000.
4475 * breakpoint.c, buildsym.c, infptrace.c, stack.c, symtab.c:
4476 More changes from IBM for RS6000. These are in machine-
4477 independent code, and probably could do with some cleaning
4478 up. The most questionable of these are #ifdef IBM6000.
4479 * infrun.c, sparc-tdep.c: Pass a parameter (signal number)
4480 to single_step() (for consistency with rs6000 and i860).
4481 * utils.c: Allow the 1st arg to xrealloc to be NULL
4482 (in which case do malloc). This removes the need for
4483 some tests in xcoff code (and perhaps other places?).
4484 * coffread.c: Removed variables last_source_file,
4485 type_vector, and type_vector_length as these are now
4486 defined by buildsym.[ch].
4487 * defs.h: Remove prototypes for malloc and realloc, since
4488 these should only be used to implement xmalloc and xrealloc,
4489 and they conflict with <stdlib.h> in AIX - where they
4490 return void* even when __STDC__ isn't defined. Sigh.
4491 * munch: Recognize *initialize* in data as well as text
4492 (AIX uses data). Also, incorporate a patch from Garrett
4493 Wollman <wollman@uvm-gen.uvm.edu> to make the sed script
4494 much more sensible, by only trying to match the name of
4495 the initialize_foo function, and not the junk before it.
4496
8537ba60
SG
4497Thu Feb 27 20:07:43 1992 Stu Grossman (grossman at cygnus.com)
4498
4499 * breakpoint.c (breakpoint_re_set_one): Don't reset breakpoint
4500 unless symbol table indicates that something has changed.
4501
069bc454
JG
4502Thu Feb 27 11:48:47 1992 John Gilmore (gnu at cygnus.com)
4503
b543979c
JG
4504 * remote.c: Make it work for embedded MIPS. Increase buffer
4505 size, and use throughout. Round buffer size up if too many regs.
4506 Support baud rate setting and try for an 8-bit path. If
4507 interrupted while waiting for target, send a ^C down the wire.
4508 Avoid single-byte reads.
4509 * tm-mips.h: Add more embedded-system registers to REGISTER_NAMES
4510 and NUM_REGS.
4511 * mips-xdep.h: Avoid the embedded regs when on Unix.
4512
d141f3e3
JG
4513 * mipsread.c: Byte-swap the symbol table structures, using
4514 routines from ecoff.c, to read a symbol table written in any
4515 of the four possible byte orders.
069bc454
JG
4516 * configure.in (mips-big-* target): Same as Sony News.
4517 * config/mt-bigmips, config/mt-littlemips: Add ecoff.o.
4518 * ecoff.c: New file for symbol swapping routines.
4519
80ba48f5
SG
4520Thu Feb 27 09:26:38 1992 Stu Grossman (grossman at cygnus.com)
4521
4522 * breakpoint.c (all_breakpoints_info, breakpoint_1): Add 'info
4523 all-breakpoints' command.
4524 * (get_number): Allow users to enter negative breakpoint numbers.
4525 * (breakpoint_1): Reformat display of 'info break' to show new
4526 fields.
4527 * (create_longjmp_breakpoint, breakpoint_re_set,
4528 breakpoint_re_set_one, enable/disable_longjmp_breakpoint),
4529 symfile.c (syms_from_objfile): Re-do
4530 insertion of longjmp breakpoints. Move all code into
4531 breakpoint_re_set, and call that instead of
4532 create_longjmp_breakpoint in symfile.c.
4533
cba0d141
JG
4534Thu Feb 27 06:11:05 1992 John Gilmore (gnu at cygnus.com)
4535
4536 * breakpoint.h (ALL_BREAKPOINTS_SAFE): Add.
4537 * breakpoint.c (breakpoint_re_set): Use ALL_BREAKPOINTS_SAFE.
4538 * symtab.c (find_pc_symtab): Handle having no objfiles.
4539 * infcmd.c: Fix comment.
4540 * objfiles.c (free_all_objfiles): Add.
4541 * symfile.h (ALL_OBJFILES, ALL_OBJFILES_SAFE): Add.
4542 * symfile.c (symbol_file_command): free all objfiles when
4543 specifying a new symbol file.
4544 (reread_symbols): Stat the file name, don't fstat the descriptor.
4545
a846ac55
FF
4546Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
4547
4548 * Makefile.in, configure.in: removed traces of namesubdir,
4549 -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
4550 copyrights to '92, changed some from Cygnus to FSF.
4551
cba0d141
JG
4552Tue Feb 25 19:31:19 1992 Stu Grossman (grossman at cygnus.com)
4553
4554 * dbxread.c (end_psymtab): Delete empty psymtabs.
4555 * symfile.c (allocate_psymtab): Recycle empty psymtabs.
4556 * symfile.h (struct objfile): Add free_psymtabs.
4557
35318110
JG
4558Sat Feb 22 02:00:32 1992 John Gilmore (gnu at cygnus.com)
4559
47890ed7
JG
4560 * Makefile.in (VERSION): Roll to gdb-4.4.4.
4561
35318110
JG
4562 * symfile.c (symbol_file_command): strcmp => !strcmp.
4563 * breakpoint.h: Move prototypes to follow enum definition they need.
4564 * breakpoint.c, infrun.c: Lint.
4565 * printcmd.c: Use `enum enable' rather than `enum
4566 display_status'.
4567 * mipsread.c: First pass at making it compile with the new
4568 objfile changes. Probably seriously broken still, but it
4569 compiles. FIXME.
4570
30875e1c
SG
4571Sat Feb 22 00:56:39 1992 Stu Grossman (grossman at cygnus.com)
4572
4573 * infrun.c, infcmd.c, breakpoint.c, main.c, symfile.c,
4574 breakpoint.h, tm-sun4os4.h, tm-sparc.h, sparc-tdep.c, tm-mips.h,
4575 mips-tdep.h, tm-sun3.h, tm-68k.h, m68k-tdep.h: Add support for
4576 stepping (and nexting) through longjmp(). Also, cleanup
4577 breakpoint handling quite a bit by creating explicit breakpoint
4578 types instead of using magic breakpoint numbers.
4579 Makefile.in: Update version to 4.4.3
4580
021959e2
JG
4581Sat Feb 22 00:08:50 1992 John Gilmore (gnu at cygnus.com)
4582
93fe4e33
JG
4583 * buildsym.c, dwarfread.c, gdbtypes.c, inflow.c, main.c,
4584 minsyms.c, printcmd.c, remote.c, saber.suppress: Saberlint.
4585 * symmisc.c, xcoffread.c: Move debug functions to symmisc.c.
4586
021959e2
JG
4587 * xm-sun3os4.h, xm-sun4os4.h: Enable HAVE_MMAP.
4588
4589 * minsyms.c (install_minimal_symbols): Add bunches to any
4590 existing minsyms in the objfile. Avoid extra mallocation
4591 by working directly in the obstack. Remove ignored `mainline' parm.
4592 * coffread.c, dbxread.c, elfread.c, mipsread.c, solib.c, symtab.h,
4593 xcoffread.c: Change all callers.
4594 * FIXME: We should be able to eliminate MAINLINE from all the
4595 symbol readers now, with a small bit of work.
4596
4597 * valops.c, value.h: Lint.
4598 * remote-vx.c: Add missing break; statement. Bugfix by
4599 Michael Sclafani, <sclafani@src.dec.com>.
4600
bff1c97a
FF
4601Fri Feb 21 17:29:54 1992 Fred Fish (fnf at cygnus.com)
4602
4603 * Makefile.in (VERSION): Update version to 4.4.2
4604 * Makefile.in (SFILES_MAINDIR): Add gdbtypes.c, state.c, objfiles.c,
4605 minsyms.c, mmap-alloc.c, mmap-sbrk.c
4606 * Makefile.in (HFILES): Add gdbtypes.h, state.h, solib.h
4607 * Makefile.in (OBS): Add gdbtypes.o, state.o, objfiles.o, minsyms.o,
4608 mmap-alloc.o, mmap-sbrk.o
4609
4610 * altos-xdep.c: Minor whitespace change.
4611 * am29k-tdep.c (examine_prologue): Convert from misc function vector
4612 use to new minimal symbol table use.
4613 * arm-xdep.c (fetch_inferior_registers): Document unused argument.
4614 * arm-xdep.c (store_inferior_registers): Returns void.
4615 * blockframe.c (get_pc_function_start, find_pc_partial_function):
4616 Convert from misc function vector use to new minimal symbol table use.
4617 Remove find_pc_misc_function(). Ifdef out block_innermost_frame().
4618 * breakpoint.c: Add prototypes for local functions.
4619 * breakpoint.c (catch_command_1): Change to static and remove unused
4620 local "pc".
4621 * breakpoint.c (map_breakpoint_numbers): Prototype arg "function".
4622 * breakpoint.h: Change function decls to prototype form.
4623 * buildsym.c: Add prototypes for local functions.
4624 * buildsym.c: Moved hashname() function here from dbxread.c.
4625 * buildsym.c (dbx_lookup_type): Cast args to xrealloc().
4626 * buildsym.c: Remove dbx_create_type(), uses changed to alloc_type().
4627 * buildsym.c (dbx_alloc_type): Change to static.
4628 * buildsym.c (finish_block): Add objfile parameter.
4629 * buildsym.c (misc): Change symbol_obstack to objfile version.
4630 * buildsym.c (make_blockvector): Change to static.
4631 * buildsym.c (start_subfile): Use strdup instead of obsavestring.
4632 * buildsym.c (compare_line_numbers): Change to static, args are const,
4633 cast args when used.
4634 * buildsym.c (start_symtab): Inline new_object_header_files() call.
4635 * buildsym.c (patch_block_stabs): Moved to this file from xcoffread
4636 and made static. Add objfile parameter.
4637 * buildsym.c (end_symtab): Simplify code using line table size.
4638 Realloc the linetable on the objfile symbol_obstack and copy there.
4639 * buildsym.c (scan_file_globals): Convert from misc function vector
4640 use to new minimal symbol use.
4641 * buildsym.c (define_symbol): Add objfile parameter. Make sure
4642 strings get allocated in objfile's symbol_obstack. Convert references
4643 to builtin types to lookup_fundamental_type().
4644 * buildsym.c (read_type): Make static, add objfile parameter, convert
4645 references to buildin types to lookup_fundamental_type().
4646 * buildsym.c (read_struct_type): Add objfile parameter.
4647 * buildsym.c (read_array_type): Make static, add objfile parameter.
4648 * buildsym.c (read_enum_type): Make static, add objfile parameter.
4649 * buildsym.c (read_huge_number): Make static.
4650 * buildsym.c (read_range_type): Make static, add objfile parameter,
4651 convert references to buildin types to lookup_fundamental_type ().
4652 * buildsym.c (read_args): Make static, add objfile parameter.
4653 * buildsym.h: Convert function decl's to prototype form.
4654 * c-exp.y: Add prototypes for local functions, convert uses of misc
4655 function vector to minimal symbol table. Reformat all builtin type
4656 initializations and pass a NULL objfile to init_type() for them.
4657 * coffread.c: Change context_stack ref's to coff_context_stack,
4658 add local function prototypes. Cast uses of xrealloc arg 1.
4659 * coffread.c (coff_alloc_type): Call alloc_type instead of hand-
4660 crafting a new type.
4661 * coffread.c (add_symbol_to_list): Change to coff_add_symbol_to_list.
4662 * coffread.c (finish_block): Change name to coff_finish_block.
4663 * coffread.c (make_blockvector): Add and use objfile parameter.
4664 * coffread.c (record_line): Change name to coff_record_line.
4665 * coffread.c (start_symtab): Change name to coff_start_symtab.
4666 * coffread.c (end_symtab): Change name to coff_end_symtab.
4667 * coffread.c (record_misc_function): Change name to record_minimal_
4668 symbol and change to minimal symbol table use from misc func tbl.
4669 * coffread.c (coff_symfile_read): Convert from misc function vector
4670 use to minimal symbol table use.
4671 * coffread.c (hashname): Remove; use common version in buildsym.c.
4672 * coffread.c (decode_base_type): Change references to builtin types
4673 to calls to lookup_fundamental_type().
4674 * coffread.c (read_struct_type): Change name to coff_read_struct_type.
4675 * coffread.c (read_enum_type): Change name to coff_read_enum_type.
4676 * command.c: Add prototypes for local functions.
4677 * command.c (add_cmd): Prototype the 'fun' parameter and use the
4678 appropriate member of the function union for that type.
4679 * command.c (add_abbrev_cmd): Prototype the 'fun' parameter and
4680 ifdef out the function since it isn't currently used.
4681 * command.c (add_alias_cmd): Pass correct function type to add_cmd.
4682 * command.c (add_prefix_cmd): Prototype the 'fun' parameter.
4683 * command.c (add_abbrev_prefix_cmd): Prototype the 'fun' parameter.
4684 * command.c (help_cmd): Compare function pointer to NULL.
4685 * command.c (help_cmd_list): Compare function pointer to NULL.
4686 * command.c (lookup_cmd_1): Use correct member of function union.
4687 * command.c (undef_cmd_error): Make static.
4688 * command.c (complete_on_cmdlist): Use correct member of func union.
4689 * command.c (do_setshow_command): Use correct member of func union.
4690 * command.c (shell_escape): Convert rindex use to strrchr.
4691 * command.h (COMMAND_H): Define if already included.
4692 * command.h (cmd_list_element struct): Change 'function' to a union
4693 and prototype args. Prototype completer function.
4694 * command.h: Convert decl's to prototype form.
4695 * convex-xdep.c (store_inferior_registers): Returns void.
4696 * copying.c: Prototype local functions.
4697 * coredep.c: Minor whitespace change.
4698 * cplus-dem.c: Remove hack to use BSD equivalents of mem* and str*.
4699 * cplus-dem.c: Prototype local functions.
4700 * dbxread.c (hashname): Remove; moved to buildsym.c.
4701 * dbxread.c (free_and_init_header_files): Make static.
4702 * dbxread.c: Add prototypes for local functions.
4703 * dbxread.c (new_object_header_files): Remove; inlined usages.
4704 * dbxread.c (xrealloc usages): Cast args.
4705 * dbxread.c (record_misc_function): Change to record_minimal_symbol
4706 and change usages accordingly.
4707 * dbxread.c (static_psymbols usages): Change to use per-objfile copy.
4708 * dbxread.c (xmalloc usages): Use per-objfile copy when appropriate.
4709 * dbxread.c (dbx_next_symbol_text): Make static.
4710 * dbxread.c (init_psymbol_list): Convert to use per-objfile data.
4711 * dbxread.c (init_bincl_list): Add and use objfile parameter.
4712 * dbxread.c (free_bincl_list): Add and use objfile parameter.
4713 * dbxread.c (compare_psymbols): Remove; use common symfile.c version.
4714 * dbxread.c (end_psymtab): Convert to use per-objfile data.
4715 * dwarfread.c (DEFUN/EXFUN): Remove all usages. Use PARAMS for
4716 prototypes.
4717 * dwarfread.c (record_misc_function): Change name to record_minimal_
4718 symbol and use minimal symbol table throughout.
4719 * dwarfread.c (compare_psymbols): Remove; use common symtab.c version.
4720 * dwarfread.c: Convert all references to builtin types to use the new
4721 lookup_fundamental_type function.
4722 * dwarfread.c (read_enumeration): Add and use objfile parameter.
4723 * elfread.c (DEFUN/EXFUN): Remove all usages. Use PARAMS for proto-
4724 types.
4725 * elfread.c (record_misc_function): Convert to use record_minimal_
4726 symbol.
4727 * elfread.c (elf_symtab_read): Add objfile parameter.
4728 * eval.c: Add prototypes for local functions and move some decls
4729 around to accomodate prototypes.
4730 * expprint.c: Add prototypes for local functions. Change references
4731 to misc function vector to minimal symbol table.
4732 * findvar.c (read_memory usages): Cast args.
4733 * gdbtypes.h: New file, type info from symfile.h and symtab.h.
4734 * gmalloc.c: Use NOARGS where prototypes used hardwired void.
4735 * gmalloc.c (BLOCKSIZE): Constant to be shifted is unsigned.
4736 * gmalloc.h: Use NOARGS where prototypes used hardwired void.
4737 * gould-xdep.c: Minor whitespace change.
4738 * hp300ux-xdep.c (fetch_inferior_registers): Remove unused regno var.
4739 * hp300ux-xdep.c (store_inferior_registers): Returns void.
4740 * hp300ux-xdep.c (fetch_core_registers): Takes unused arg reg_addr.
4741 * i386-stub.c: Add prototypes, change "volatile" to NORETURN.
4742 * i386-tdep.c: Add prototypes for local functions.
4743 * i386-tdep.c (codestream_fill, codestream_seek, codestream_read,
4744 i386_get_frame_setup, i386_skip_prologue): Explicitly declare params
4745 that defaulted to int.
4746 * i386-tdep.c (i386_follow_jump, i386_frame_find_saved_regs,
4747 i386_push_dummy_frame): Returns void.
4748 * i386-xdep.c (i386_register_u_addr): Declare params that default to
4749 int and explicitly declare return type as int.
4750 * i387-tdep.c: Minor formatting changes.
4751 * i960-tdep.c (leafproc_return): Convert from misc function vector
4752 use to minimal symbol table use.
4753 * infcmd.c: Add prototypes for local functions.
4754 * infcmd.c (continue_command, until_next_command, until_command,
4755 path_info, path_command): Make static.
4756 * infcmd.c (step_1, until_next_command): Convert from misc func
4757 vector to minimal symbol table use.
4758 * inflow.c: Add prototypes for local functions.
4759 * infptrace.c (store_inferior_registers): Returns void, not int.
4760 * language.c (_initialize_language): Use proper member of function
4761 union.
4762 * m2-exp.y: Add prototypes for local functions, convert misc function
4763 vector uses to minimal symbol table uses.
4764 * m2-exp.y (make_qualname, yyerror): Make static.
4765 * m2-exp.y (_initialize_m2_exp): Call init_types with NULL objfile.
4766 * m68k-pinsn.c: Add prototypes for local functions.
4767 * m68k-pinsn.c (print_insn): Cast args to read_memory.
4768 * m68k-pinsn.c (fetch_arg): Make parameter 'code' and int.
4769 * m68k-stub.c: Add prototypes.
4770 * m88k-pinsn.c (sprint_address): Convert from misc function vector
4771 use to minimal symbol table use.
4772 * m88k-xdep.c (fetch_inferior_registers): Takes an unused parameter.
4773 * m88k-xdep.c (store_inferior_registers): Returns void.
4774 * mach386-xdep.c (fetch_inferior_registers): Takes an unused param.
4775 * mach386-xdep.c (store_inferior_registers): Returns void.
4776 * mach386-xdep.c (fetch_core_registers): Takes an unused parameter.
4777 * main.c: Add prototypes for local functions.
4778 * main.c (return_to_top_level): Is type NORETURN (volatile). Cast
4779 longjmp() result to (NORETURN void).
4780 * main.c (catch_errors): Prototype the 'func' parameter.
4781 * main.c (disconnect, stop_sig, do_nothin, float_handler):
4782 Takes an unused arg.
4783 * main.c (execute_command): Call the right member of the func union.
4784 * main.c (command_loop_marker, symbol_completion_function,
4785 command_loop): Make static.
4786 * main.c (command_line_input): Make linelength unsigned, cast arg
4787 to command_line_input().
4788 * main.c (add_info, add_com): Prototype the 'fun' parameter.
4789 * main.c (initialize_main): Call right member of function union.
4790 * mcheck.c (NOARGS): Change hardwired void in prototypes to NOARGS.
4791 * mem-break.c: Include symtab.h
4792 * mips-xdep.c (fetch_inferior_registers): Takes unused param.
4793 * mips-xdep.c (store_inferior_registers): Returns void.
4794 * mipsread.c (mipscoff_symfile_read): Change from misc function vector
4795 use to minimal symbol table use.
4796 * mipsread.c (symbol_obstack usages): Convert all to use per-objfile
4797 version.
4798 * mipsread.c (make_type): Remove, convert usages to init_type.
4799 * mipsread.c (_initialize_mipsread): Call init_type with NULL objfile.
4800 * nindy-tdep.c (nindy_frame_chain_valid): Convert from misc function
4801 vector use to minimal symbol table use.
4802 * parse.c: Add prototypes for local functions.
4803 * parse.c (xrealloc usages): Cast args.
4804 * parse.c (prefixify_expression, length_of_subexp): Make static.
4805 * parser-defs.h (PARSER_DEFS_H): Define when first included.
4806 * parser-defs.h: Convert function decls to prototype form.
4807 * partial-stab.h: Convert from misc function vector use to new minimal
4808 symbol table use.
4809 * partial-stab.h (global_psymbols, static_psymbols usages): Reference
4810 the per-objfile copies.
4811 * printcmd.c: Add prototypes for local functions. Move some struct
4812 definitions around to accomodate prototypes.
4813 * printcmd.c (decode_format): Make static, change args oformat and
4814 osize to int from char.
4815 * printcmd.c (print_formatted): Change 'format' and 'size' to int.
4816 * printcmd.c (print_scalar_formatted): Change arg 'format' to int.
4817 * printcmd.c (print_address_symbolic): Convert from misc function
4818 vector use to minimal symbol table use.
4819 * printcmd.c (address_info): Convert from misc function vector use
4820 to minimal symbol table use.
4821 * printcmd.c (delete_display, enable_display, disable_display_command):
4822 Make static.
b52373a2 4823 * procfs.c (EXFUN/DEFUN): Remove all usages, convert to PARAMS.
bff1c97a
FF
4824 * procfs.c (fetch_core_registers): Add unused param reg_addr.
4825 * pyr-xdep.c (fetch_inferior_registers): Add unused param regno.
4826 * pyr-xdep.c (store_inferior_registers): Returns void.
4827 * remote-mm.c (mm_load): symbol_file_add return value unused.
4828 * remote-nindy.c: Minor format change.
4829 * remote-vx.c (vx_load_command): symbol_file_add result unused.
4830 * rs6000-xdep.c (fetch_inferior_registers): Add unused param regno.
4831 * rs6000-xdep.c (store_inferior_registers): Returns void.
4832 * rs6000-xdep.c (fetch_core_registers): add unused param reg_addr
4833 * rs6000-xdep.c (aixcoff_relocate_symtab): Convert from misc function
4834 vector use to minimal symbol table use.
4835 * solib.c: Add prototypes for local functions.
4836 * solib.c (solib_add_common_symbols, locate_base): Convert from misc
4837 function vector use to minimal symbol table use.
b52373a2 4838 * solib.c (EXFUN/DEFUN): Remove all usages, convert to PARAMS.
bff1c97a
FF
4839 * solib.c (find_solib, shared_library_command): Make static
4840 * solib.c (read_memory, write_memory usages): Cast args.
4841 * solib.c (special_symbol_handling): Add function
4842 * source.c: Add prototypes for local functions.
4843 * source.c (select_source_symtab): Convert to scan objfiles.
4844 * source.c (open_source_file): Make static.
4845 * source.c (xrealloc usages): Cast args.
4846 * source.c (source_line_charpos): ifdef out, unused.
4847 * source.c (get_filename_and_charpos): Make static.
4848 * stack.c: Add prototypes for local functions.
4849 * stack.c (print_frame_info, frame_info): Convert from misc function
4850 vector use to minimal symbol table use.
4851 * symfile.c: Add prototypes for local functions.
4852 * symfile.c (compare_symbols): Make args const PTR's.
4853 * symfile.c (compare_psymbols, sort_pst_symbols) add.
4854 * symfile.c (sort_all_symtab_syms): Scan objfile list.
4855 * symfile.c (obsavestring): Add objfile parameter.
4856 * symfile.c (init_misc_bunches, prim_record_misc_function,
4857 compare_misc_functions, discard_misc_bunches, condense_misc_bunches,
4858 sort_misc_function_vector, compact_misc_function_vector): Remove
4859 * symfile.c (symbol_file_add_digested): Add function.
4860 * symfile.c (symbol_file_add): Returns struct objfile *.
4861 * symfile.c (symbol_file_command): Modify for state file use.
4862 * symfile.c (symfile_open): Add parameter "dumpable".
4863 * symfile.c (allocate_objfile, free_objfile): Moved to objfiles.c
4864 * symfile.c (load_command, add_symbol_file_command): Make static.
4865 * symfile.c (fill_in_vptr_fieldno): Moved to gdbtypes.c
4866 * symfile.c (rindex usages): Converted to strrchr.
4867 * symfile.c (allocate_psymtab): New
4868 * symfile.c (free_named_symtabs): Ifdef out code that needs to be
4869 converted to minimal symbol table usage, but no obvious conversion.
4870 * symfile.c (free_all_symtabs): Remove.
4871 * symfile.c (_initialize_symfile): Use per-objfile info.
4872 * symfile.h: Rework the objfile structure to add per-objfile data
4873 objects (psymbol_obstack, symbol_obstack, type_obstack,
4874 global_psymbols, static_psymbols, msymbols, minimal_symbol_count,
4875 fundamental_types, malloc, realloc, free, xmalloc, xrealloc, etc).
4876 Add prototypes to function declarations.
4877 * symm-tdep.c (symmetry_extract_return_value): Convert from misc
4878 function vector usage to minimal symbol table usage.
4879 * symmisc.c (DEV_TTY): Define if not defined.
4880 * symmisc.c: Add local function prototypes.
4881 * symmisc.c (dump_objfile, dump_msymbols, dump-symtab, print_syms,
4882 printpsyms_command, print_objfiles, print_objfiles_command):
4883 Rework to use iterate_over_*
4884 * symtab.c: Add prototypes for local functions.
4885 * symtab.c (lookup_symtab_1): Convert to look through objfiles.
4886 * symtab.c (lookup_partial_symtab): Scan through objfiles.
4887 * symtab.c (lookup_primitive_typename, lookup_typename, lookup_
4888 unsigned_typename, lookup_struct, lookup_union, lookup_enum,
4889 lookup_template_type, lookup_struct_elt_type, lookup_pointer_type,
4890 lookup_reference_type, lookup_member_type, allocate_stub_method,
4891 check_stub_method, create_array_type, smash_to_member_type,):
4892 Moved to gdbtypes.c
4893 * symtab.c (lookup_symbol): Some args are const.
4894 * symtab.h: All type related defs and structs moved to gdbtypes.h
4895 * symtab.h: Convert decls to prototypes.
4896 * target.c (noprocess): Make static.
4897 * target.h: Change decl's to prototypes.
4898 * tm-sunos.h: (CLEAR_SOLIB, SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK,
4899 DISABLE_UNSETTABLE_BREAK) Moved to solib.h.
4900 * utils.c (_initialize_utils): Use correct member of function union.
4901 * valarith.c: include gdbtypes.h
4902 * valops.c: include gdbtypes.h, add prototypes for local functions.
4903 * valops.c (value_push, value_arg_push, find_function_addr):
4904 Make static.
4905 * valops.c (value_string): Convert from misc function vector use
4906 to minimal symbol table use.
4907 * valops.c (check_field_in): Make arg const.
4908 * valprint.c: Add prototypes for local functions.
4909 * valprint.c (print_string): Make static
4910 * valprint.c (value_print, val_print_fields, val_print): Make arg int.
4911 * values.c: Add prototypes for local functions.
4912 * values.c (value_headof): Convert from misc function vector to
4913 minimal symbol table.
4914 * xcoffexec.c: Add prototypes for local functions.
4915 * xcoffexec.c (exec_close, file_command, add_to_section_table):
4916 Make static.
4917 * xcoffexec.c (relocate_minimal_symbol): Add.
4918 * xcoffread.c (patch_block_stabs): Moved to buildsyms.c.
4919 * xcoffread.c: Add prototypes for local functions.
4920 * xcoffread.c (sort_syms): Convert to scan objfiles.
4921 * xcoffread.c (read_xcoff_symtab): Make static.
4922 * xcoffread.c (various): Replace references to builtin types with
4923 calls to lookup_fundamental_type. Replace references to symbol_obstack
4924 and psymbol_obstack with pointers to the per-objfile copies.
4925 * xcoffread.c (dump_linetable, dump_type, dump_symbol, dump_namespace,
4926 dump_block, dump_blockvector, dump_last_symtab, dump_symtabs):
4927 Make static.
4928 * xcoffread.c (init_stringtab): Add objfile parameter.
4929 * gdbtypes.c: New file
4930 * minsyms.c: New file
4931 * mmap-alloc.c: New file
4932 * mmap-sbrk.c: New file
4933 * objfiles.c: New file
4934 * state.c: New file
4935 * state.h: New file
4936
021959e2
JG
4937Fri Feb 21 17:29:54 1992 John Gilmore (gnu at cygnus.com)
4938
4939 * Check in Fred Fish's changes in these modules. Fred
93fe4e33
JG
4940 will make ChangeLog entries for all of them. Update VERSION
4941 to 4.4.2.
021959e2 4942
7919c3ed
JG
4943Thu Feb 20 18:10:17 1992 Fred Fish (fnf at cygnus.com)
4944
4945 * tm-sparc.h, tm-sysv4.h, solib.h: Move shared lib definitions
4946 into solib.h.
4947 * sparc-pinsn.c, sparc-tdep.c, standalonec, sun3-xdep.c,
4948 sun386-xdep.c, symm-xdep.c, target.c, ultra3-xdep.c, utils.c,
4949 value.h: Prototypes for static functions; lint.
4950 * gdbtypes.h: Empty file to ease transition.
4951
75af490b
JG
4952Thu Feb 20 16:43:13 1992 Fred Fish (fnf at cygnus.com)
4953
4954 * environ.h, expression.h, frame.h, gdbcmd.h, gdbcore.h,
4955 inferior.h, language.h, signame.h, target.h, terminal.h,
4956 tm-68k.h, tm-i386v.h, tm-sparc.h, tm-sun386.h, tm-symmetry.h,
4957 xm-i386v.h, xm-sparc.h: Prototypes for all external functions.
4958 Lint.
4959 * core.c, exec.c, infrun.c, inftarg.c, language.c, remote.c,
4960 signame.c, sparc-xdep.c: Prototypes for all static functions.
4961 Lint.
4962 * core.c, eval.c, exec.c, inftarg.c, remote-adapt.c, remote-eb.c,
4963 remote-hms.c, remote-mm.c, remote-nindy.c, remote-vx.c, remote.c,
4964 target.c, target.h, valarith.c, valops.c, value.h, xcoffexec.c:
4965 Remove to_call_function and target_call_function, since it
4966 always calls the same thing (call_function_by_hand).
4967 * core.c, exec.c, solib.c: Rename target_ops sections =>
4968 to_sections, etc.
4969 * infcmd.c, inflow.c, infptrace.c, infrun.c, main.c, target.c,
4970 target.h: target_kill takes no args.
4971 * language.c (language_info): Scaffolding to allow briefer
4972 messages when the current language changes. FIXME.
4973 * xm-amix.h, xm-i386v4.h, xm-stratus.h: Define NORETURN to avoid
4974 complaints about volatile functions.
4975 * xm-sysv4.h (HAVE_MMAP): Define.
4976
4977Thu Feb 20 09:04:18 1992 Fred Fish (fnf at cygnus.com)
088c3a0b
JG
4978
4979 * defs.h: Include ansidecl.h and PARAMS macro. Use PARAMS
4980 to make prototypes for all functions declared here.
4981 * cplus-dem.c: Avoid declaring xmalloc and xrealloc.
4982 * c-exp.y: Rename SIGNED, OR, and AND to avoid conflict.
4983 * environ.c: Include <stdio.h> before defs.h. Minor cleanup.
4984 * ieee-float.h: Use PARAMS for prototypes; make some params const.
4985 * ieee-float.c, valarith.c: Include <stdio.h>. Lint. b*=>mem*.
4986 * m2-exp.y: Remove unused CONST; Rename OR and AND.
4987 * utils.c: Avoid declaring malloc and realloc. Lint.
4988 (request_quit): Accept signal-number parameter.
4989
af213624
FF
4990Mon Feb 17 07:13:27 1992 Fred Fish (fnf at cygnus.com)
4991
9e4c1921
FF
4992 * dwarfread.c (process_dies): Add case to handle TAG_pointer_type
4993 DIE's. Add new function read_tag_pointer_type() to read them.
4994
af213624
FF
4995 * dwarfread.c (dwarf_read_array_type, read_subroutine_type):
4996 When creating a new user defined type, check to see if a partial
4997 type already exists, and if so, bash it to fit.
4998
be8303da
JG
4999Fri Feb 14 19:00:17 1992 John Gilmore (gnu at cygnus.com)
5000
5001 * coffread.c (decode_base_type): Pass long, not union.
5002 Fix by Eric Valette, ev@chorus.fr.
5003
d35bf52d
FF
5004Thu Feb 13 17:14:28 1992 Fred Fish (fnf at cygnus.com)
5005
5006 * elfread.c (elf_symtab_read): Fix code to correctly track
5007 changes in bfd for absolute symbols.
5008
5b620e75
SG
5009Thu Feb 13 12:43:29 1992 Stu Grossman (grossman at cygnus.com)
5010
5011 * xm-vaxbsd.h: Close off comment.
5012
0a663e9e
FF
5013Thu Feb 13 07:45:19 1992 Fred Fish (fnf at cygnus.com)
5014
5015 * xm-sysv4.h: Define NEED_POSIX_SETPGID.
5016
5017Fri Feb 7 11:51:12 1992 Per Bothner (bothner at cygnus.com)
5018
5019 * mips-tdep.c (mips_print_registers): Print correct register
5020 number for double pseudo-registers.
5021
ef9b1bc9
JG
5022Fri Feb 7 07:56:05 1992 John Gilmore (gnu at cygnus.com)
5023
256269fc
JG
5024 * buildsym.c (read_struct_type): Avoid double-bump of parse ptr
5025 in the op$::OPERATOR. case. From Steven McCanne,
5026 <mccanne@horse.ee.lbl.gov>.
5027
ef9b1bc9
JG
5028 * exec.c (set_section_name): Pass arg to exec_files_info;
5029 only call it if interactive. From Francis Kauth <fk@tv.tv.tek.com>.
5030
195853fc
JG
5031Thu Feb 6 17:41:32 1992 John Gilmore (gnu at cygnus.com)
5032
5033 * main.c (print_gdb_version): Copyright msg: only this year.
5034 (cd_command): Avoid changing current_directory on error.
5035
ee17fd34
PB
5036Thu Feb 6 15:14:01 1992 Per Bothner (bothner at cygnus.com)
5037
5038 * mipsread.c (parse_partial_symbols): Handle dependencies
5039 between partial symbol tables (when not doing stabs-in-ecoff).
5040 (This used to be handled by parse_fdr, but parse_fdr was
5041 incompatible with handling stabs-in-ecoff, so the code
5042 was re-written to not use parse_fdr. Unfortunately,
5043 the logic to handle dependencies was overlooked.)
5044
1f46923f
SC
5045Thu Feb 6 11:51:39 1992 Steve Chamberlain (sac at rtl.cygnus.com)
5046
5047 * coffread.c (read_enum_type): Use the size of a target int when
5048 describing enum.
5049 * defs.h: added new #define for TARGET_PTR_BIT, defaults to size
5050 of target int.
5051 * h8300-tdep.c, remote-hms.c, tm-h8300.h: too many changes to count
5052 * symtab.c (lookup_reference_type, lookup_ptr_type): use
5053 TARGET_PTR_BIT to determine size of a pointer
5054 * values.c (unpack_long): when unpacking a REF or a PTR don't
5055 assume the size of the type.
5056
778c358d
JG
5057Wed Feb 5 22:29:59 1992 John Gilmore (gnu at cygnus.com)
5058
5059 * mipsread.c (parse_symbol): Avoid clobbering enum pointer when
5060 looking at its members. Improve guess between struct and union,
5061 only assuming union if multiple members have offsets of zero.
5062
bd49ef36
PB
5063Tue Feb 4 18:05:44 1992 Per Bothner (bothner at cygnus.com)
5064
5065 * mipsread.c: Use (FP0_REGNUM-32) instead of magic number 6.
5066 (This is just for clarity - and one day permitting us to
5067 change FP0_REGNUM from 38 to 32, which would make more sense.)
5068 * tm-mips.h: Added STAB_REG_TO_REGNUM macro, so that
5069 register numbers in stabs-in-ecoff get handled correctly.
5070
5071Sat Feb 1 04:45:10 1992 Stu Grossman (grossman at cygnus.com)
5072
5073 * xm-vax.h, xm-vaxult.h, xm-vaxbsd.h, config/mh-vaxult,
5074 config/mh-vaxbsd, configure.in: Split up config stuff for Vaxen
5075 into BSD and Ultrix.
5076
96499e96
JG
5077Sat Feb 1 04:39:41 1992 John Gilmore (gnu at cygnus.com)
5078
5079 * dbxread.c (dbx_symfile_init): Call malloc, not xmalloc.
5080
98f03b91
SG
5081Sat Feb 1 04:15:41 1992 Stu Grossman (grossman at cygnus.com)
5082
dafe57bc 5083 * Makefile.in: Increment version to 4.4.1.
98f03b91
SG
5084 * main.c (print_gdb_version): Update copyright notice.
5085
5086Sat Feb 1 01:43:11 1992 Per Bothner (bothner at cygnus.com)
5087
5088 * mipsread.c: Prepend "struct " to the names of structure
5089 types, and similarly for enums and unions. (This used
5090 to be done, but got lost in the re-write to "guess" the
5091 difference between enum/struct/union.)
5092 Also, guess that a tag is an enum if the first member
5093 has type btNil.
5094
3671f1fd
SG
5095Fri Jan 31 21:45:51 1992 Stu Grossman (grossman at cygnus.com)
5096
5097 * xm-vax.h: #ifndef ultrix around #include of endian.h and
5098 limits.h (sigh).
5099
0c6efbcc
JG
5100Fri Jan 31 00:05:01 1992 John Gilmore (gnu at cygnus.com)
5101
ee7270cd
JG
5102 * Projects: Patching executables is done.
5103 * Makefile.in (VERSION): Roll to gdb-4.4.
75c86b57 5104 * README, WHATS.NEW: Update for gdb-4.4.
ee7270cd 5105
4a1dcb7f
JG
5106 * symfile.c (reread_symbols): Whenever we reread one object
5107 file's symbols, we must restart the scan, because the object_files
5108 chain has been permuted.
5109
0c6efbcc
JG
5110 * exec.c (exec_files_info): Split out into print_section_info.
5111 Print BFD filename of each section if it's not the default one.
5112 * core.c (core_files_info): Call print_section_info.
5113
5114 * xm-vax.h: Include a few system header files whose definitions
5115 must precede defs.h.
5116 * language.c, language.h: Make some things const.
5117 * expression.h, main.c: const spreads like ooze.
5118
5119 * mem-break.c (break_insn, break_insn_size): Use unsigned chars,
5120 since BREAKPOINT values can be >0x80.
5121
d58ea996
SG
5122Thu Jan 30 17:21:14 1992 Stu Grossman (grossman at cygnus.com)
5123
5124 * infrun.c, xm-i386sco.h: SCO needs to use setpgid().
5125
0c6efbcc
JG
5126Thu Jan 30 01:04:23 1992 John Gilmore (gnu at cygnus.com)
5127
5128 * sparc-pinsn.c: Remove kludge for preferring architectures.
5129 Remove #ifdef's for SORT_NEEDED. We need to sort the table, now
5130 and forever. Add `add' instruction to the set that get checked
5131 for a preceding `sethi' in order to print an absolute address.
5132 Corresponding changes in ../include/opcode/sparc.h needed
5133 to eliminate garbage instructions.
5134
d4ea2aba
PB
5135Wed Jan 29 19:24:34 1992 Per Bothner (bothner at cygnus.com)
5136
5137 * mipsread.c (parse_partial_symbols): Make sure partial
5138 symbols are created for external symbols (as used to be
5139 the case). This is a bit of a pain with the mips-coff.
5140 It uses a table which points to all of the external
5141 symbols belonging to a particular FDR or psymtab.
5142 Once we've generated this table, we might as well save
5143 it, and then use it in psymtab_to_symtab_1 to find
5144 the symbols to pass to parse_external().
5145 * symfile.c, symfile.c: New function start_psymtab_common
5146 to share the common parts of allocating a new psymtab
5147 for dbxread, mipsread (and later dwarfread). Its code
5148 was pulled out from start_psymtab in dbxread.c.
5149 * dbxread.c (start_psymtab): Use start_psymtab_common().
5150
5151 * valprint.c (val_print): If there is an error when trying
5152 to print a string, check to see if there really is a problem
5153 by reading just one character. If that works, assume
5154 things are ok.
5155
05151637
SG
5156Wed Jan 29 18:58:43 1992 Stu Grossman (grossman at cygnus.com)
5157
5158 * sparc-pinsn.c (compare_opcodes): Make it prefer v6, v7,
5159 cypress, v8 mnemonics in that order.
5160
4a074bea
PB
5161Tue Jan 28 17:32:13 1992 Per Bothner (bothner at cygnus.com)
5162
5163 * sparc-pinsn.c: Put the qsort() back in.
5164
c55e6167 5165Mon Jan 27 18:51:03 1992 John Gilmore (gnu at cygnus.com)
1aa560b2 5166
eae1a261
JG
5167 * findvar.c (read_register, write_register): Handle machines
5168 where REGISTER_TYPE is not the same size as "int".
5169
c55e6167 5170 Handle debug symbols in dynamically loaded (relocated) code:
3c03b5de 5171
c55e6167
JG
5172 * dbxread.c (read_ofile_symtab): Fix up N_CATCH better. Pass
5173 offset to process_one_symbol.
5174 (process_one_symbol): Take new offset parameter. Add it into
5175 appropriate symbol types to relocate symbols to loaded addresses.
5176 Handle all possible symbol types, and complain() about types that
5177 we don't expect to see.
5178 * mipsread.c (psymtab_to_symtab_1): Pass offset of zero to
5179 process_one_symbol (FIXME, should pass real offset).
1aa560b2 5180
c55e6167
JG
5181 Misc bugfixes:
5182
5183 * breakpoint.c (resolve_sal_pc): Split out code to resolve a
5184 sal's PC value.
5185 (set_breakpoint, break_command_1, until_break_command,
5186 catch_command_1, breakpoint_re_set_one): Use it.
c55e6167
JG
5187 * symtab.h (resolve_sal_pc): Declare.
5188 * infcmd.c (jump_command): Use resolve_sal_pc.
5189
4cc9f7e2 5190 * source.c (list_command): Shorten "FILE, line N" to "FILE:N".
c55e6167
JG
5191
5192 * putenv.c (putenv): Avoid unportably casting pointers to unsigneds.
3818ed33 5193
5a4e7215
JG
5194 * c-exp.y (yylex): `this' and `template' are only tokens in C++.
5195
3818ed33
JG
5196 * xm-convex.h, xm-hp300bsd.h, xm-isi.h, xm-merlin.h, xm-news.h,
5197 xm-np1.h, xm-pn.h, xm-pyr.h, xm-rtbsd.h, xm-symmetry.h, xm-umax.h:
5198 Remove MISSING_VPRINTF declaration, and superfluous "kgdb" defines.
5199
c55e6167
JG
5200Mon Jan 27 15:46:21 1992 Stu Grossman (grossman at cygnus.com)
5201
5202 * dbxread.c (process_one_symbol): Make a first cut at handling
5203 symbol tables generated by Sun's acc. (#ifdef'd out, FIXME.)
5204
5205 * symtab.c (find_pc_line): Fix stepping into and out of #included
5206 files.
5207
71f49876
SG
5208Mon Jan 27 13:00:55 1992 Stu Grossman (grossman at cygnus.com)
5209
5210 * Makefile.in (OPCODES): Remove OPCODES defs and refs. There is
5211 no longer any need to copy ../include/opcode/* into gdb.
5212
fd8db897
JG
5213Mon Jan 27 12:30:38 1992 John Gilmore (gnu at cygnus.com)
5214
5215 * ChangeLog, ChangeLog-9091: Split ChangeLog at 1992.
5216
24b2fbdc
PB
5217Sun Jan 26 19:05:40 1992 Per Bothner (bothner at cygnus.com)
5218
5219 * valprint.c (type_print_base, type_print_method_args):
5220 Print C++ constructor methods without bogus "return type."
5221
cdb90e99
FF
5222Sat Jan 25 15:57:59 1992 Fred Fish (fnf at cygnus.com)
5223
5224 * infptrace.c (child_xfer_memory): Parameter "target" should
5225 be a pointer to a structure, not the entire structure.
5226
1b07e406
FF
5227Fri Jan 24 01:30:27 1992 Fred Fish (fnf at cygnus.com)
5228
5229 * depend: Convert the couple of references to ansidecl.h that
5230 used the local gdb version to use the ../include version.
5231
9a1ae235
FF
5232Thu Jan 23 22:24:43 1992 Fred Fish (fnf at cygnus.com)
5233
f66f459f
FF
5234 * procfs.c
5235 (child_xfer_memory): Takes pointer to a struct, not entire struct.
5236 (inferior_proc_init): Fix non-ANSI version of args.
5237 (attach): Call print_sys_errmsg with correct number of args.
5238 (mappingflags): Make static, does not need to be global.
5239
fc1f8646
FF
5240 * i386-tdep.c (i386_frame_num_args): Takes a pointer to a struct
5241 not the entire struct itself.
5242
1b7a420e
FF
5243 * valops.c (value_assign): Cast some args to modify_field() and
5244 {read,write}_register_bytes() correctly.
5245
9a1ae235
FF
5246 * ansidecl.h: Removed, is duplicate of ../include/ansidecl.h
5247
99140c31
FF
5248 * Makefile.in (MALLOCSRC): Removed reference to removed local
5249 copy of ansidecl.h.
5250
5251 * dwarfread.c (list_in_scope): Needs an initial value, use file
5252 scope.
5253
9a1ae235
FF
5254Mon Jan 20 19:06:28 1992 Stu Grossman (grossman at cygnus.com)
5255
5256 * main.c (main): Make option_index local to keep new getopt happy.
5257 main.c, solib.c, Makefile.in: Update copyright notices.
5258
0eb0a820
MT
5259Mon Jan 20 08:54:00 1992 Michael Tiemann (tiemann at cygnus.com)
5260
5261 * cplus-dem.c (cplus_demangle): Correctly demangle destructors.
5262
313085cb
SG
5263Sat Jan 18 17:17:45 1992 Stu Grossman (grossman at cygnus.com)
5264
5265 * Makefile.in (HFILES): Add partial-stab.h.
5266
be9a2362
FF
5267Sat Jan 18 16:45:01 1992 Fred Fish (fnf at cygnus.com)
5268
24e7d5ba
JG
5269 * config/mh-stratus, config/mt-stratus, tm-stratus.h, xm-stratus.h:
5270 New files for stratus. Not complete enough to actually build
5271 on the Stratus machine; that awaits copyright assignment for
5272 i860 changes.
be9a2362
FF
5273
5274 * Makefile.in (USER_CFLAGS): Add macro specifically reserved
5275 for getting custom flags into CFLAGS when doing makes.
5276
5277 * configure.in: Add config information for stratus.
5278
cdce29ee
FF
5279Thu Jan 16 00:51:46 1992 Fred Fish (fnf at cygnus.com)
5280
5281 * dbxread.c (process_one_symbol): Pass address of structure
5282 to complain(), rather than the whole structure.
5283
7f435241
FF
5284Wed Jan 15 09:56:16 1992 Fred Fish (fnf at cygnus.com)
5285
5286 * solib.c (solib_add_common_symbols): Only compile in when not
5287 using SVR4 style shared libraries.
5288
a5bd5ba6
FF
5289Tue Jan 14 22:34:00 1992 Fred Fish (fnf at cygnus.com)
5290
5291 * dwarfread.c (locval): Add offreg flag to indicate location
5292 values that are computed off a base register.
5293
5294 * dwarfread.c (new_symbol): Rework TAG_global_variable and
5295 TAG_local_variable cases to account for static variables
5296 within function scopes.
5297
7e97eb28
SG
5298Tue Jan 14 12:28:52 1992 Stu Grossman (grossman at cygnus.com)
5299
8c3d2a53
SG
5300 * inflow.c: remove #include <sys/dir.h>. Not necessary, and
5301 doesn't exist on some systems.
5302
5e746644
SG
5303 * infrun.c (wait_for_inferior!!!!): Prevent gdb from hanging when
5304 nexting over recursive function calls.
5305
d261ece7
SG
5306 * target.c (target_read_string): Create this routine to read null
5307 terminated strings from the target. It deals with running off the
5308 end of memory elegantly as well. solib.c (find_solib): Use
5309 target_read_string() to avoid problems with running off the end of
5310 memory.
5311
7e97eb28
SG
5312 * inflow.c (child_terminal_info): #ifdef TIOCPGRP around lines
5313 that reference pgrp_inferior.
5314
0cf9329b
PB
5315Mon Jan 13 14:57:11 1992 Per Bothner (bothner at cygnus.com)
5316
5317 * tm-mips.h: Removed BLOCK_ADDRESS_ABSOLUTE, now that
5318 mips-tfile has been hacked to act more "traditionally."
5319 * dbxread.c: Fixed typo in comment.
5320
488d2691
PB
5321Sun Jan 12 13:08:36 1992 Per Bothner (bothner at cygnus.com)
5322
5323 * mips-tdep.c (mips_skip_prologue): Add some number of
5324 'sw' instructions before 'addiu' adjusts the stack.
5325
4d315a07
FF
5326Fri Jan 10 13:47:06 1992 Fred Fish (fnf at cygnus.com)
5327
5328 * dwarfread.c (start_symtab, end_symtab, scopecount, openscope,
5329 freescope, buildblock closescope, record_line, add_symbol_to_list,
5330 gatherblocks, make_blockvector): Extensive changes to switch
5331 to generic symbol table building code in buildsym.c. Remove
5332 scope tree structures and functions, symbol table building
5333 functions, and lots of other small changes.
5334
5335 * dwarfread.c: Add new macros GCC_PRODUCER and STREQN. Remove
5336 GCC_COMPILED_FLAG_SYMBOL and GCC2_COMPILED_FLAG_SYMBOL.
5337
5338Tue Jan 7 13:09:57 1992 Stu Grossman (grossman at cygnus.com)
5339
5340 * buildsym.c (cleanup_undefined_types): Add support for enums.
5341 This fixes the 'GDB internal error. cleanup_undefined_types with
5342 bad type' problem.
5343
5344Sun Jan 5 09:47:50 1992 Stu Grossman (grossman at cygnus.com)
5345
5346 * dbxread.c: detect gcc2 compilations.
5347
1a4d253c
JG
5348Thu Jan 2 15:07:41 1992 John Gilmore (gnu at cygnus.com)
5349
5350 * sparc-pinsn.c: Rename bitfields that overlap with macro names
5351 in ../include/opcode/sparc.h.
5352
1d4c28c5
FF
5353Wed Jan 1 04:29:00 1992 Fred Fish (fnf at cygnus.com)
5354
5355 * Makefile.in: Change tm-svr4.h to tm-sysv4.h. Change xm-svr4.h
5356 to xm-sysv4.h. Split OPCODE_DIR into OPCODE_DIR1 and OPCODE_DIR2
5357 to reflect actual locations of opcode files, so TAGS target will
5358 be buildable.
5359
5360 * i386-tdep.c: Change an erroneous 'm68k' reference to 'i386'.
5361
5362 * i386-tdep.c (supply_fpregset, fill_fpregset): Remove m68k
5363 code.
5364
5365 * m68k-tdep.c (supply_fpregset, fill_fpregset): Fix array
5366 dereferencing to access the correct elements.
5367
5368 * valops.c (value_addr): Declare return type of external func
5369 value_copy().
5370
5371 * xcoffread.c: Undefine next_symbol_text before redefining it.
5372
fd8db897 5373For older changes see ChangeLog-9091
bd5635a1
RP
5374\f
5375Local Variables:
5376mode: indented-text
5377left-margin: 8
5378fill-column: 74
5379version-control: never
5380End:
This page took 0.3555 seconds and 4 git commands to generate.