RS/6000 support, by Metin G. Ozisik, Mimi Phûông-Thåo Võ, and
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
313fdead
JG
1Thu Oct 24 09:33:44 1991 John Gilmore (gnu at cygnus.com)
2
b0077123
JG
3 * stack.c (frame_command): Always print. Use new
4 frame_select_command to select a frame without printing.
5
313fdead
JG
6 * dwarfread.c: Use <varargs.h>, since <stdarg.h> is not portable.
7
4a35d6e9
FF
8Thu Oct 24 01:32:51 1991 Fred Fish (fnf at cygnus.com)
9
35f5886e
FF
10 * dwarfread.c: New file for DWARF debugging format support.
11
12 * elfread.c: New file for ELF object file format support.
13
14 * procfs.c: New file for SVR4 /proc (process file system) support.
15
16 * tm-amix.h, xm-amix.h, tconfig/amix, xconfig/amix: New files for
17 Amiga UNIX support.
18
19 * xm-svr4.h, tm-svr4.h: New files for SVR4 support.
20
21 * xm-m68k.h: New file for host machines with m68k cpu.
22
bb4ff694
FF
23 * Makefile.in: Add elfread.c and dwarfread.c to SFILES_MAINDIR.
24 Add elfread.o and dwarfread.o to OBS.
25
26 * symfile.h: Add "elf" to list of supported formats in comment.
27
e2aab031
FF
28 * c-exp.y, defs.h, symtab.h, valprint.c: Add three new builtin
29 types to gdb, builtin_type_long_double, builtin_type_complex, and
30 builtin_type_double_complex. Add and use new TARGET_SHORT_BIT,
31 TARGET_INT_BIT, TARGET_LONG_BIT, TARGET_FLOAT_BIT,
32 TARGET_DOUBLE_BIT, TARGET_LONG_DOUBLE_BIT, TARGET_COMPLEX_BIT, and
33 TARGET_DOUBLE_COMPLEX_BIT, as the sizes in bits of the indicated
34 types on the target machine (ala the existing TARGET_LONG_LONG_BIT).
35
02070680
FF
36 * infrun.c: When using SVR4 /proc interface instead of ptrace(),
37 call proc_set_exec_trap() to setup child to stop at first instruction.
38
39 * inftarg.c: When using SVR4 /proc interface, call proc_wait()
40 rather than wait().
41
42 * m68k-tdep.c: Add new routines supply_gregset(), fill_gregset(),
43 supply_fpregset(), and fill_fpregset(), which are machine
44 dependent support routines for SVR4 /proc interface.
45
2bc2e684
FF
46 * utils.c: Add warning_setup() and warning(). Warning() behaves
47 the same as error() except that it returns normally rather than
48 jumping back to command level. Modules that don't want to call
49 warning() for some reason, but want to produce their own warnings,
50 can call warning_setup() to ensure compatibility with the way
51 warning() and error() deal with the terminal.
52
eaa1ef1d
FF
53 * symtab.c: Make internal errors produce more useful messages.
54
dcd15e5e
FF
55 * tm-68k.h: Move code that is duplicated in almost every single
56 m68k based machine's configuration files to this common file.
57 Duplications in the configuration files still need to be removed
58 (FIXME).
59
150f5436
FF
60 * infrun.c (child_create_inferior): System V versions must call
61 setpgrp() with no arguments, to comply with prototyping typically
62 in <unistd.h>.
63
cb17dfb1
FF
64 * munch: Add support for SVR4 style nm output.
65
4a35d6e9
FF
66 * dbxread.c, mipsread.c symmisc.c, symtab.c: Remove the object
67 file specific fields from the partial symbol table structure and
68 replace them with a pointer to private data for each different
69 flavor of object file reader to initialize appropriately.
70
b0077123
JG
71Wed Oct 23 09:38:20 1991 John Gilmore (gnu at cygnus.com)
72
73 * xconfig/sun[34]os4: Add note about strstr botch on sunos4.0.3c
74 and previous.
75
76 * mipsread.c (fixup_undef_type): New function. If a struct /
77 union / enum is defined in a header file but nowhere else used,
78 (by typedefing, pointer referencing or declaration) the mipsread code
79 builds the complete tree for the structure but leaves its code as
80 TYPE_CODE_UNDEF as it doesn't know what kind of aggregate it is.
81 Guess its type based on the details of the members.
82
0d3e7f60
SG
83Tue Oct 22 18:04:32 1991 Stu Grossman (grossman at cygnus.com)
84
85 * infrun.c (wait_for_inferior): Check return value from
86 find_pc_line.
87
bc6c937d
SG
88Mon Oct 21 17:47:03 1991 Stu Grossman (grossman at cygnus.com)
89
90 * infrun.c (wait_for_inferior): fix stepi/nexti that was broken
91 by my last edit to this routine.
92
b0077123
JG
93Mon Oct 21 14:27:43 1991 John Gilmore (gnu at cygnus.com)
94
95 * tm-sun3.h (FIX_CALL_DUMMY): problem with cross debugging.
96 FIX_CALL_DUMMY does unaligned accesses and/or forgets to byte swap
97 the values before putting them into the dummy code. (From Peter
98 Schauer)
99
44e4e473
SC
100Mon Oct 21 10:04:39 1991 Steve Chamberlain (steve at rtl.cygnus.com)
101
102 * configure.in: added ebmon target.
103
785ce19c 104Wed Oct 16 22:49:58 1991 John Gilmore (gnu at cygnus.com)
a1b8c5d6
JG
105
106 GDB-4.2 release!
107
108 * Makefile.in: Roll VERSION to 4.2.
44e4e473 109 * README, TODO, WHATS.NEW: Update.
a1b8c5d6
JG
110
111 * core.c (core_open): Improve error message for bad file.
112 Pass .reg virtual memory address to fetch_core_registers to help
113 it find the registers in the core-file header.
114 * coredep.c (fetch_core_registers): Take new argument, use it,
115 and pass it to register_addr to locate the block of registers.
785ce19c 116 * xm-mips.h: Update KERNEL_U_ADDR for new scheme. Cleanup a bit.
a1b8c5d6
JG
117
118 * dbxread.c (read_dbx_symtab, process_one_symbol): Handle
119 Sequent N_FN_SEQ like everybody else's N_FN.
120
121 * main.c: Circumvent SCO cc bug with #if !!defined(USG).
122 * tm-i386v.h: #endif guck.
123 * xconfig/i386*: Remove -Dgetpagesize()=4096 kludge.
785ce19c
JG
124 * xconfig/i386sco: Add HAVE_STRSTR to avoid ANSI bdeath.
125 * xconfig/tahoe: Add REGEX, which seems to be missing.
126
127 * coredep.c: Add <sys/types.h> for SCOnix.
128 * dbxread.c (read_dbx_symntab): Avoid coredump on malformed file.
129 * printcmd.c (print_formatted): Flush output before disassembly.
a1b8c5d6 130
93ae2e88
RP
131Tue Oct 15 20:12:32 1991 Roland H. Pesch (pesch at fowanton.cygnus.com)
132
9e0906a6
RP
133 * doc/refcard.tex (sec "Working Files"): consistent metavars and