]>
Commit | Line | Data |
---|---|---|
c4de6b30 JK |
1 | Fri Mar 11 08:08:50 1994 Jim Kingdon ([email protected]) |
2 | ||
8e4c7b3e JK |
3 | * main.c (main): When printing warning about bad baud rate, don't |
4 | use warning(); it relies on current_target which isn't set up yet. | |
5 | ||
c4de6b30 | 6 | * breakpoint.c (_initialize_breakpoint): Update docstring for |
d1bdad57 JK |
7 | tbreak to match what the code actually does. Don't mention tbreak |
8 | in docstrings for "enable once" or "enable breakpoints once". | |
c4de6b30 | 9 | |
d78d4d16 JK |
10 | Thu Mar 10 08:52:38 1994 Jim Kingdon ([email protected]) |
11 | ||
12 | * symfile.h (ADD_PSYMBOL_VT_TO_LIST): Don't put a semicolon after | |
13 | while (0). That defeats the whole purpose of using do . . . while (0). | |
14 | * mdebugread.c (parse_partial_symbols): Don't use ?: expression as | |
15 | list for ADD_PSYMBOL_TO_LIST; the macro takes its address and | |
16 | using a ?: expression as an lvalue is not portable. | |
17 | ||
18 | * stabsread.c (define_symbol): If REG_STRUCT_HAS_ADDR, also | |
19 | convert a LOC_ARG to a LOC_REF_ARG. Update code which combines | |
20 | 'p' and 'r' symbol descriptors into a single symbol to look for a | |
21 | LOC_REF_ARG. | |
22 | * README, config/sparc/tm-sparc.h: Update comments. | |
23 | ||
10373914 PS |
24 | Wed Mar 9 21:43:24 1994 Peter Schauer ([email protected]) |
25 | ||
26 | * mdebugread.c (parse_type): Do not complain for types with | |
27 | an `indexNil' aux index, these are simply undefined types. | |
28 | Remove indexNil check from caller of parse_type. | |
29 | * mdebugread.c (parse_partial_symbols): Do not enter | |
30 | stGlobal, scCommon symbols into the minimal symbol table, their | |
31 | value is the size of the common, not its address. | |
32 | Handle scInit, scFini, scPData and scXData sections. | |
33 | Use minimal symbol type mst_file_* for stLabel symbols, instead of | |
34 | mst_*. | |
35 | Enter stProc symbols into the global_psymbols list once, not into | |
36 | the static_psymbols_list. | |
37 | Get rid of dummy psymtab if it is empty, to allow proper detection | |
38 | of stripped executables. | |
39 | * mdebugread.c (cross_ref): Allow cross references to Fortran | |
40 | common blocks. | |
41 | ||
fddb9bda JK |
42 | Wed Mar 9 15:23:19 1994 Jim Kingdon ([email protected]) |
43 | ||
44 | * stabsread.c (common_block_end, fix_common_block): Stash the | |
45 | struct pending * in the SYMBOL_TYPE, not the SYMBOL_NAMESPACE, so | |
46 | as to not assume that a pointer fits in an enum. | |
47 | ||
d9389f37 KH |
48 | Wed Mar 9 18:56:36 1994 Kung Hsu ([email protected]) |
49 | ||
50 | * os9kread.c (fill_sym): check compiler verion number for pre- | |
51 | UltraC compiler. | |
52 | * os9kread.c (os9k_process_one_symbol): address of symbol is | |
53 | relative to section not module. | |
54 | * stabsread.c (define_symbol): add symbol type 's' as local | |
55 | symbol for os9k. | |
56 | * remote-os9k.c: add command 'set monitor_log' to turn on or off | |
57 | monitor logging. | |
58 | * remote-os9k.c: fix bug in delete breakpoint, single step trace. | |
59 | * remote-os9k.c: fix bug in 'set remotebaud' function. | |
60 | * remote-os9k.c (rombug_link): minimize checking so to improve | |
61 | speed. | |
fddb9bda | 62 | * symfile.c (symbol_file_command): check if failed to link, also make |
d9389f37 KH |
63 | the command be able to accept more than one filenames. |
64 | * target.c (target_link): check if failed to link with rombug. | |
65 | * config/i386/tm-i386os9k.h : add #define DECR_PC_AFTER_BREAK 0. | |
66 | ||
cdc7029d JK |
67 | Wed Mar 9 15:23:19 1994 Jim Kingdon ([email protected]) |
68 | ||
69 | * remote-es.c (es1800_child_ops): Don't declare it static. | |
70 | ||
352c21dd JK |
71 | Tue Mar 8 11:42:39 1994 Jim Kingdon ([email protected]) |
72 | ||
73 | * config/i386/tm-i386v4.h: Give just macro name, not args, to #undef. | |
74 | ||
ce2f21b2 JK |
75 | Tue Mar 8 06:56:13 1994 Jim Kingdon ([email protected]) |
76 | ||
9d2b8d50 JK |
77 | * dbxread.c: New variable lowest_text_address. |
78 | (record_minimal_symbol, read_dbx_symtab): Set it. | |
79 | (read_dbx_symtab): Use lowest_text_address + text_size instead of | |
80 | end_of_text_address. | |
81 | * config/gould/tm-pn.h: Add comment regarding END_OF_TEXT_DEFAULT. | |
82 | ||
83 | * dbxread.c (end_psymtab): Remove old and commented out | |
84 | capping_global and capping_static. Fix comments regarding | |
85 | N_SO_ADDRESS_MAYBE_MISSING to match the real name of the macro. | |
86 | ||
79448221 JK |
87 | * parser-defs.h: Add "extern" to start of variable declarations so |
88 | we don't end up with commons. | |
89 | * parse.c: Define these variables. | |
90 | ||
ce2f21b2 JK |
91 | * irix5-nat.c (find_solib): Cast o_path to CORE_ADDR when using it |
92 | as one. | |
93 | ||
7810d333 JK |
94 | Mon Mar 7 13:00:50 1994 Jim Kingdon ([email protected]) |
95 | ||
96 | * alpha-tdep.c: Change value to value_ptr. | |
97 | ||
a6e21fba PS |
98 | Sun Mar 6 17:36:53 1994 Peter Schauer ([email protected]) |
99 | ||
100 | * solib.c (elf_locate_base): New function to locate the address | |
101 | of the dynamic linker's runtime structure in the dynamic info section. | |
102 | * solib.c (locate_base): Use it instead of iterating over the list | |
103 | of mapped address segments. | |
104 | * solib.c (look_for_base, bfd_lookup_symbol): Removed, no longer | |
105 | necessary. | |
106 | ||
70e43abe JL |
107 | Fri Mar 4 09:50:47 1994 Jeffrey A. Law ([email protected]) |
108 | ||
109 | * hppa-tdep.c (pc_in_linker_stub): Move decl to beginning of file. | |
110 | (pc_in_interrupt_handler): New function. Also add PARAM decl. | |
111 | (find_proc_framesize): Deal with HPUX setting SAVE_SP bit for | |
112 | signal trampoline and interrupt routines. | |
113 | (frame_saved_pc): Handle signal trampolines and interrupt routines. | |
114 | (frame_chain, frame_chain_valid): Likewise. | |
115 | (hppa_frame_find_saved_regs): Likewise. Also deal with special | |
116 | saved regs convention for SP. | |
117 | ||
118 | * tm-hppa[bho].h: FRAME_FIND_SAVED_PC_IN_SIGTRAMP): Define. | |
119 | (FRAME_BASE_BEFORE_SIGTRAMP): Define. | |
120 | (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP): Define. | |
121 | ||
122 | * tm-hppah.h (IN_SIGTRAMP): Define. | |
123 | ||
833a2895 JK |
124 | Thu Mar 3 12:41:16 1994 Jim Kingdon ([email protected]) |
125 | ||
93dc3414 JK |
126 | * ch-exp.y (match_simple_name_string): Accept '_' as well as an |
127 | alphabetic character as the start of a name. | |
128 | ||
b855dfe7 JK |
129 | * sparclite/Makefile.in (all install): Build and install aload. |
130 | ||
d9a5e91f JK |
131 | * configure.in: Accept i[34]86-*-*sysv32 because that is what |
132 | config.guess and config.sub produce. | |
133 | ||
833a2895 JK |
134 | * mips-tdep.c: Change value to value_ptr. |
135 | ||
82a2edfb JK |
136 | Wed Mar 2 09:17:55 1994 Jim Kingdon ([email protected]) |
137 | ||
138 | * breakpoint.c, breakpoint.h, c-valprint.c, ch-valprint.c, | |
139 | cp-valprint.c, eval.c, expprint.c, findvar.c, language.c, | |
140 | objfiles.h, infcmd.c, printcmd.c, stack.c, typeprint.c, | |
141 | valarith.c, valops.c, valprint.c, value.h, values.c: Replace | |
142 | value with value_ptr. This is for the ptx compiler. | |
143 | * objfiles.h, target.h: Don't declare a "sec_ptr" field using a | |
144 | "sec_ptr" typedef. | |
145 | * symm-nat.c: Add a bunch of stuff for symmetry's ptrace stuff. | |
146 | #if 0 i386_float_info. | |
147 | * symm-tdep.c (round): Remove. Also remove sgttyb. | |
148 | * symm-tdep.c: Remove lots of stuff which duplicates stuff from | |
149 | i386-tdep.c. Remove register_addr and ptx_coff_regno_to_gdb. | |
150 | * i386-tdep.c (i386_frame_find_saved_regs): Put in | |
151 | I386_REGNO_TO_SYMMETRY check in case it is needed for Dynix | |
152 | someday. | |
153 | * config/i386/nm-symmetry.h: Change KERNEL_U_ADDR. Move | |
154 | stuff from PTRACE_READ_REGS, PTRACE_WRITE_REGS macros to | |
155 | symm-nat.c. Define CHILD_WAIT and declare child_wait(). | |
156 | * config/i386/tm-symmetry.h: Remove call function stuff; stuff in | |
157 | tm-i386v.h is apparently OK. | |
158 | * config/i386/xm-symmetry.h [_SEQUENT_]: Define HAVE_TERMIOS not | |
159 | HAVE_TERMIO. Define MEM_FNS_DECLARED, NEED_POSIX_SETPGID, and | |
160 | USE_O_NOCTTY. | |
161 | ||
c485c7a9 PS |
162 | Wed Mar 2 11:31:08 1994 Peter Schauer ([email protected]) |
163 | ||
164 | * osfsolib.c (xfer_link_map_member): Update to use new | |
165 | target_read_string interface. | |
166 | ||
d1c0c6cf JK |
167 | Wed Mar 2 09:17:55 1994 Jim Kingdon ([email protected]) |
168 | ||
169 | * infrun.c (wait_for_inferior): In checking | |
170 | remove_breakpoints_on_following_step, check | |
171 | through_sigtramp_breakpoint as well as step_resume_breakpoint. | |
172 | ||
25200748 JK |
173 | Tue Mar 1 16:22:56 1994 Jim Kingdon ([email protected]) |
174 | ||
175 | * os9kread.c (os9k_process_one_symbol): Rename | |
176 | VARIABLES_INSIDE_BLOCK to OS9K_VARIABLES_INSIDE_BLOCK. | |
177 | * symfile.c (symbol_file_command): Check for (CORE_ADDR)-1, not | |
178 | (CORE_ADDR)0, from target_link, since that is what it uses. | |
179 | Process name at end, not during parsing (like we did before Kung's | |
180 | change), so that -readnow and -mapped can appear anywhere. | |
181 | Make text_relocation a local variable. | |
182 | * config/i386/i386os9k.mt: Fix comment. | |
183 | * Makefile.in (ALLDEPFILES): Add remote-os9k.c. | |
184 | * os9kread.c: Put "comments" after #endif inside /* */. | |
185 | * stabsread.h: Add os9k_stabs variable. | |
186 | * stabsread.c (start_stabs), os9kread.c (os9k_process_one_symbol): | |
187 | Set it. | |
188 | * stabsread.c (define_symbol): If os9k_stabs, put a 'V' symbol | |
189 | descriptor in global_symbols not local_symbols. | |
190 | (read_type): If os9k_stabs, accept 'c', 'i', and 'b' type | |
191 | descriptors. | |
192 | (read_type): If os9k_stabs, accept function parameters after 'f' | |
193 | type descriptor. | |
194 | (read_array_type): If os9k_stabs, don't expect index type and | |
195 | expect lower and upper to be separated by ',' not ';'. | |
196 | (read_enum_type): If os9k_stabs, read a number before the first | |
197 | enumeration constant. | |
198 | (os9k_init_type_vector): New function. | |
199 | (dbx_lookup_type): Call it when starting new type vector. | |
200 | * config/i386/tm-i386os9k.h: Define BELIEVE_PCC_PROMOTION. | |
201 | * (os9k_process_one_symbol): Call define_symbol not os9k_define_symbol. | |
202 | * os9kstab.c: Removed. | |
203 | * Makefile.in: Update accordingly. | |
204 | * objfiles.c (objfile_relocate_data): Removed. | |
205 | * remote-os9k.c (rombug_wait): Call objfile_relocate | |
206 | not objfile_relocate_data. | |
207 | * objfiles.h, objfiles.c: Remove find_pc_objfile. | |
208 | * remote-os9k.c (rombug_wait): Call find_pc_section not | |
209 | find_pc_objfile. | |
210 | * main.c (quit_command): Check inferior_pid; revert Kung change. | |
211 | * remote-os9k.c (rombug_create_inferior): Set inferior_pid. | |
212 | ||
1340861c KH |
213 | Tue Mar 1 14:56:14 1994 Kung Hsu ([email protected]) |
214 | ||
215 | * os9kread.c: New file to read os9000 style symbo table. | |
216 | * os9kstab.c: new file to read os9000 style stabs. | |
217 | * remote-os9k.c: remote protocol talking to os9000 rombug monitor. | |
218 | * objfiles.c (find_pc_objfile): new function to search objfile | |
219 | from pc. | |
220 | * objfiles.c (objfile_relocate_data): new function to relocate | |
221 | data symbols in symbol table. | |
222 | * objfiles.h: Add two aux fields in struct objfile to handle | |
223 | multiple symbol table files situation like in os9000. | |
224 | * symfile.c: Change so 'symbol-file' command can handle multiple | |
225 | files. Also call target_link() to get relocation infos. | |
226 | * target.c (target_link): new function to get relocation info when | |
227 | a symbol file is requested to load. | |
228 | * main.c (quit_command): take out 'inferior_pid != 0' condition, | |
229 | because in cross mode there's no inferior pid, bit they need to | |
230 | be detached. | |
231 | Makefile.in: add os9kread.c os9kstab.c and .o's. | |
232 | configure.in: add i386os9k target. | |
233 | config/i386/i386os9k.mt: new add. | |
234 | config/i386/tm-i386os9k.h: new add. | |
235 | ||
137b6849 PS |
236 | Tue Mar 1 13:16:10 1994 Peter Schauer ([email protected]) |
237 | ||
238 | * config/sparc/tm-sun4sol2.h (IN_SIGTRAMP): Handle ucbsigvechandler. | |
239 | * sparc-tdep.c (sparc_frame_saved_pc): Handle ucbsigvechandler. | |
240 | ||
4ad0021e JK |
241 | Tue Mar 1 11:54:11 1994 Jim Kingdon ([email protected]) |
242 | ||
243 | * target.c, target.h (target_read_string): Provide error detection to | |
244 | caller. Put string in malloc'd space, so caller need not impose | |
245 | arbitrary limits. | |
246 | * solib.c (find_solib): Update to use new interface. | |
247 | * irix5-nat.c (find_solib): Read o_path from inferior | |
248 | (clear_solib): Free storage for o_path. | |
249 | * valprint.c (val_print_string): Add comments. | |
250 | ||
e3d6ec4a PS |
251 | Mon Feb 28 23:54:39 1994 Peter Schauer ([email protected]) |
252 | ||
253 | * symtab.c (decode_line_1): Handle the case when skip_quoted does not | |
254 | advance `p'. | |
255 | ||
c8ff77be JK |
256 | Mon Feb 28 12:40:46 1994 Jim Kingdon ([email protected]) |
257 | ||
30974778 JK |
258 | * value.h (struct value): Add modifiable field. |
259 | * values.c (allocate_value, record_latest_value, value_copy): Set it. | |
260 | (record_latest_value): Don't mess with VALUE_LVAL of value. | |
261 | * valops.c (value_assign): Check it. Reword existing error | |
262 | message on not_lval. | |
263 | ||
b5aff268 JK |
264 | * mips-tdep.c (mips_step_skips_delay), config/mips/tm-mips.h |
265 | (STEP_SKIPS_DELAY): Added. | |
266 | * infrun.c (proceed) [STEP_SKIPS_DELAY]: Check for a breakpoint in | |
267 | the delay slot. | |
268 | ||
c8ff77be JK |
269 | * valprint.c (val_print_string): If errcode is set, always print |
270 | an error, regardless of force_ellipsis. In the non-EIO case, | |
271 | just print the error message rather than calling error(). Don't | |
272 | access *(bufptr-1) if bufptr points to the start of the buffer. | |
273 | When looking for '\0', don't increment bufptr and addr if bufptr | |
274 | started out already at limit. If an error happens on fetching the | |
275 | first character, don't print the string. | |
276 | ||
2882219f JK |
277 | Sun Feb 27 21:05:06 1994 Jim Kingdon ([email protected]) |
278 | ||
279 | * config/m68k/tm-apollo68b.h: Remove HAVE_68881 define; it is | |
280 | obsolete. | |
281 | ||
282 | * i387-tdep.c, i386-tdep.c i386v-nat.c, i386aix-nat.c, | |
283 | i386m3-nat.c, config/m68k/tm-m68k.h, i960-tdep.c | |
284 | config/i960/tm-i960.h, remote-nindy.c, config/m88k/tm-m88k.h, | |
285 | m88k-tdep.c: Use floatformat.h instead of ieee-float.h. | |
286 | * sparc-tdep.c: Remove now-obsolete ieee-float.h stuff | |
287 | * findvar.c: Update comment regarding ieee-float.h. | |
288 | ||
28ee4b42 PS |
289 | Sun Feb 27 21:39:48 1994 Peter Schauer ([email protected]) |
290 | ||
291 | * config/i386/tm-i386v4.h (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP, | |
292 | FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): | |
293 | Define to make backtracing through the various sigtramp handlers | |
294 | work. | |
295 | * i386-tdep.c (i386v4_sigtramp_saved_pc): New routine to fetch | |
296 | the saved pc from ucontext on the stack for SVR4 signal handling. | |
297 | ||
25354cef JK |
298 | Fri Feb 25 09:41:11 1994 Jim Kingdon ([email protected]) |
299 | ||
c20c1bdf JK |
300 | * remote.c, remote-mon.c, remote-utils.c, remote-utils.h, |
301 | target.h, remote-es.c, remote-nindy.c: Don't set baud rate if | |
302 | baud_rate is -1. Remove sr_get_baud_rate and sr_set_baud_rate; | |
303 | just use the global variable itself. When printing baud rate, | |
304 | don't print a baud rate if baud_rate is -1. | |
305 | ||
25354cef JK |
306 | * coffread.c (read_coff_symtab): Pass mst_file_* to |
307 | record_minimal_symbol for C_STAT symbols. Put C_EXT and C_STAT | |
308 | symbols in the minimal symbols regardless of SDB_TYPE. | |
309 | ||
7126c1d0 JK |
310 | Thu Feb 24 08:30:33 1994 Jim Kingdon ([email protected]) |
311 | ||
bcc37718 JK |
312 | * breakpoint.h (enum bptype): New type bp_through_sigtramp. |
313 | (bpstat_what_main_action): New code BPSTAT_WHAT_THROUGH_SIGTRAMP. | |
314 | * breakpoint.c (bpstat_what): Return BPSTAT_WHAT_THROUGH_SIGTRAMP | |
315 | if we hit a bp_through_sigtramp breakpoint. Remove kludge which | |
316 | ignored bs->stop for a bp_step_resume breakpoint. | |
317 | * infrun.c (wait_for_inferior): Make a through_sigtramp_breakpoint | |
318 | which performs one (the check_sigtramp2 one) of the functions | |
319 | which had been handled by the step_resume_breakpoint. For each | |
320 | use of the step_resume_breakpoint, make it still use the | |
321 | step_resume_breakpoint, use the through_sigtramp_breakpoint, or | |
322 | operate on both. | |
323 | Deal with BPSTAT_WHAT_THROUGH_SIGTRAMP return from bpstat_what. | |
324 | When setting the frame address of the step resume breakpoint, set | |
325 | it to the address for frame *before* the call instruction is | |
326 | executed, not after. | |
327 | ||
3fed1c4a JK |
328 | * mips-tdep.c (mips_print_register): Print integers using |
329 | print_scalar_formatted rather than duplicating all the | |
330 | CC_HAS_LONG_LONG and so on. | |
331 | (mips_push_dummy_frame): Use read_register_gen rather than using | |
332 | read_register and then putting it back in target format with | |
333 | store_unsigned_integer. If registers are more than 4 bytes, give | |
334 | an error rather than have some registers overwrite other | |
335 | registers. | |
336 | #if 0 unused include of opcode/mips.h. | |
337 | ||
338 | * symfile.h: Don't declare arguments for coff_getfilename. | |
339 | ||
7126c1d0 JK |
340 | * defs.h: Revert Kung change regarding FORCE_LONG_LONG. |
341 | ||
6bfd168c JL |
342 | Thu Feb 24 08:06:52 1994 Jeffrey A. Law ([email protected]) |
343 | ||
344 | * configure.in (hppa*-*-osf*): New configuration. | |
345 | * config/pa/hppaosf.mt: New target makefile fragment. | |
346 | * config/pa/tm-hppao.h: New target include file. | |
347 | ||
5c07a10b PS |
348 | Thu Feb 24 04:29:19 1994 Peter Schauer ([email protected]) |
349 | ||
350 | * exec.c (print_section_info): Print entry point for exec_bfd only. | |
351 | * ser-unix.c (wait_for): Fix typo in HAVE_TERMIO case. | |
8ce2cfc0 PS |
352 | * dwarfread.c: Remove second inclusion of <sys/types.h>, which |
353 | causes problems if <sys/types.h> has no multiple inclusion protection. | |
5c07a10b | 354 | |
fce7695f JL |
355 | Wed Feb 23 16:28:55 1994 Jeffrey A. Law ([email protected]) |
356 | ||
357 | * tm-hppa.h (CALL_DUMMY): Add two NOP instructions to the end of | |
358 | the call dummy to avoid kernel bugs in HPUX, BSD, and OSF1. | |
359 | (CALL_DUMMY_LENGTH): Changed accordingly. | |
360 | ||
318ee78a SG |
361 | Wed Feb 23 16:21:25 1994 Stu Grossman (grossman at cygnus.com) |
362 | ||
75a006d9 SG |
363 | * sparc-stub.c (trap_low): Make trap handler work for arbitrary |
364 | numbers of register windows. | |
365 | ||
318ee78a SG |
366 | * sparclite/hello.c: Add factorial function for testing. |
367 | * salib.c: Use macros instead of constants for I/O addresses to | |
368 | make 931 support easier. | |
369 | * sparclite.h: Change constraint for LOC to "rJ" to force use of | |
370 | register in sta/lda instructions. | |
371 | ||
56dd4126 JK |
372 | Wed Feb 23 10:39:18 1994 Jim Kingdon ([email protected]) |
373 | ||
374 | * dbxread.c (process_one_symbol): Set | |
375 | block_address_function_relative for COFF like we do for ELF and SOM. | |
376 | ||
847d9775 PS |
377 | Sat Feb 19 03:17:32 1994 Peter Schauer ([email protected]) |
378 | ||
379 | * mdebugread.c (new_psymtab): Pass in section_offsets and set | |
380 | them in the pst. | |
381 | * mdebugread.c (handle_psymbol_enumerators): New function to enter | |
382 | the enumerators of an ecoff enum into the partial symbol table. | |
383 | * mdebugread.c (parse_partial_symbols): Call it. | |
384 | * symfile.c (reread_symbols): Initialize objfile->*_psymbols.next. | |
385 | * symmisc.c (dump_psymtab): Fix typo, clean up output of section | |
386 | offsets. Cast psymtab->read_symtab to PTR before passing it to | |
387 | gdb_print_address. | |
388 | * i386-tdep.c (i386_skip_prologue): Skip over instructions that | |
389 | set up the global offset table pointer in pic compiled code. | |
390 | * config/mips/tm-mips.h (FIX_CALL_DUMMY): For big endian targets, | |
391 | error() on TYPE_CODE_FLT arguments whose size is greater than 8, | |
392 | swap all other TYPE_CODE_FLT arguments as mips_push_arguments | |
393 | ensures that floats are promoted to doubles before they are pushed | |
394 | on the stack. | |
395 | ||
9f35e15a SG |
396 | Fri Feb 18 23:12:59 1994 Stu Grossman (grossman at cygnus.com) |
397 | ||
398 | * sparclite/Makefile.in, sparclite/salib.c, sparclite/sparclite.h: | |
399 | Fixup cache_on and flush_i_cache so that they work for both the | |
400 | 930 and 932 processors. Rewrite most low level funcs (uart | |
401 | access & cache stuff) to use new ASI access macros in sparclite.h. | |
402 | Also make it easy to access second serial port. | |
403 | ||
56173dc5 ILT |
404 | Fri Feb 18 22:17:33 1994 Ian Lance Taylor ([email protected]) |
405 | ||
406 | * hp300ux-nat.c: Don't incloude <sys/dir.h>, <sys/ioctl.h>, or | |
407 | <sys/stat.h>; not needed. | |
408 | ||
c84bab2d JK |
409 | Fri Feb 18 08:26:29 1994 Jim Kingdon ([email protected]) |
410 | ||
411 | * stack.c (print_frame_info): In "pathological" case, don't | |
412 | distrust the line number information. | |
413 | ||
748d77d7 KH |
414 | Fri Feb 18 16:51:14 1994 Kung Hsu ([email protected]) |
415 | ||
416 | * mips-tdep.c (mips_print_register): handle 64 bits register. | |
417 | * valprint.c (print_longest): fix a bug in printing 64 bits value. | |
418 | ||
889f1f03 JK |
419 | Fri Feb 18 08:26:29 1994 Jim Kingdon ([email protected]) |
420 | ||
1eb89b9e JK |
421 | * Version 4.12.2. |
422 | ||
ef1a0540 JK |
423 | * Makefile.in (install): Do the sed for program_transform_name |
424 | ourselves instead of worrying about INSTALL_XFORM. This enables | |
425 | users to override INSTALL_PROGRAM in the standard way. | |
426 | ||
427 | * Makefile.in (c-exp.tab.o, ch-exp.tab.o, m2-exp.tab.o): Don't | |
428 | depend on Makefile.in. | |
429 | ||
fb0f4231 JK |
430 | * defs.h, valprint.c: Make longest_to_int a function not a macro. |
431 | Only test against INT_MIN if a LONGEST is bigger than an int. | |
432 | ||
889f1f03 JK |
433 | * README: Change GhostScript to Ghostscript. |
434 | ||
662f3b3f JK |
435 | Fri Feb 18 07:30:55 1994 Jim Kingdon ([email protected]) |
436 | ||
d5cb2f7d JK |
437 | * config/rs6000/{tm-rs6000lynx.h,nm-rs6000lynx.h,xm-rs6000lynx.h}: |
438 | Rename to tm-rs6000ly.h, nm-rs6000ly.h, xm-rs6000ly.h for 14 | |
439 | character file names. | |
440 | * Makefile.in (ALLPARAM): Add these files. | |
441 | ||
662f3b3f JK |
442 | * config/mips/littlemips64.mt: Rename to mipsel64.mt for 14 |
443 | character file names. | |
d5cb2f7d | 444 | * Makefile.in: Add Kung's new mips64 files. |
662f3b3f | 445 | |
70126bf9 KH |
446 | Thu Feb 17 17:25:47 1994 Kung Hsu ([email protected]) |
447 | ||
448 | * configure.in: add mips64-*-elf, mips64-*-ecoff, mips64el-*-elf, | |
449 | mips64el-*-ecoff and mips64-big-*. | |
450 | * defs.h: get rid of FORCE_LONG_LONG. | |
451 | * mips-tdep.c (mips_find_saved_regs): add sd and sdc1 instruction | |
452 | parsing. Change register size to be MIPS_REGSIZE. | |
453 | ||
c4a081e1 DM |
454 | Thu Feb 17 09:30:22 1994 David J. Mackenzie ([email protected]) |
455 | ||
456 | * corelow.c, exec.c, irix5-nat.c, mipsread.c, objfiles.c, | |
457 | osfsolib.c, rs6000-nat.c, solib.c, symfile.c, utils.c, | |
458 | xcoffexec.c: Use bfd_get_error and bfd_set_error and new error names. | |
459 | ||
3b5442f9 SC |
460 | Fri Feb 11 21:47:24 1994 Steve Chamberlain ([email protected]) |
461 | ||
462 | * remote-hms.c (readchar, hms_open, hms_fetch_register): Made more robust. | |
463 | (remove_commands, add_commands): Add/remove hms-drain when target | |
464 | is connected. | |
465 | ||
d87d7b10 SG |
466 | Fri Feb 11 16:11:38 1994 Stu Grossman (grossman at cygnus.com) |
467 | ||
468 | * configure.in: Add Lynx/rs6000 support. | |
469 | * lynx-nat.c: Clean up some Sparc stuff. Clean up ptrace error | |
470 | messages. Add rs6000 support. Don't try to modify unwritable | |
471 | registers. | |
472 | * rs6000-nat.c: Move lots of native dependent stuff (like core | |
473 | file support) from rs6000-tdep.c & xcoffexec.c to here. | |
474 | * rs6000-tdep.c: Move native dependent stuff to nat.c. | |
475 | * xcoffexec.c: Move native dependent stuff to nat.c. | |
476 | * config/rs6000/nm-rs6000.h: Move defs of SOLIB_* macros to here | |
477 | from tm file. | |
478 | * config/rs6000/tm-rs6000.h: Remove defs of SOLIB_* funcs, cuz they're | |
479 | really native. | |
480 | * config/rs6000/tm-rs6000lynx.h, config/rs6000/xm-rs6000lynx.h: | |
481 | New files to support Lynx/rs6000. | |
482 | ||
ba47c66a PS |
483 | Tue Feb 8 00:32:28 1994 Peter Schauer ([email protected]) |
484 | ||
485 | * README: Remove note about gcc warnings on alpha, these should be | |
486 | gone now. | |
487 | * c-exp.y, ch-exp.y, core.c, corelow.c, eval.c, fork-child.c, | |
488 | m2-exp.y, minsyms.c, nlmread.c, parse.c, putenv.c, regex.c | |
489 | remote-utils.c, stabsread.c: Include <string.h>. | |
490 | * regex.c: Include "defs.h", change re_comp argument to const char *. | |
491 | * infptrace.c (fetch_register, store_inferior_registers): Change | |
492 | regaddr to type CORE_ADDR. | |
493 | * config/alpha/alpha-nw.mt, config/alpha/alpha-osf1.mt (MT_CFLAGS): | |
494 | Remove, no longer necessary now that we use bfd_vma for a CORE_ADDR. | |
495 | ||
496 | Mon Feb 7 09:21:17 1994 Jim Kingdon ([email protected]) | |
497 | ||
498 | * symtab.h: Always define BYTE_BITFIELD to nothing. | |
499 | ||
ea5dad7f JK |
500 | Mon Feb 7 08:44:17 1994 Jim Kingdon ([email protected]) |
501 | ||
502 | * config/m68k/{m68k-em.mt,tm-m68k-em.h}: Remove; no longer used. | |
503 | * configure.in: Remove comment about m68k-em.mt. | |
504 | * Makefile.in: Remove references. | |
505 | ||
6ddba992 JK |
506 | Mon Feb 7 08:22:42 1994 Jim Kingdon ([email protected]) |
507 | ||
508 | * defs.h [BFD64]: Use BFD_HOST_64_BIT, not nonexistent | |
509 | BFD_HOST_64_TYPE. | |
510 | ||
01cd70b9 JK |
511 | Sun Feb 6 06:55:15 1994 Jim Kingdon ([email protected]) |
512 | ||
1dd29bef JK |
513 | * target.c (target_preopen): If target_kill doesn't remove the |
514 | target from the stack, use pop_target to do it. | |
515 | ||
704aea43 JK |
516 | * coffread.c (process_coff_symbol, case C_TPDEF): Don't set name |
517 | of TYPE_CODE_PTR or TYPE_CODE_FUNC types. This parallels similar | |
518 | changes to stabsread.c from summer 1993. | |
519 | ||
4a00e1de JK |
520 | * remote-udi.c (udi_files_info): If prog_name is NULL, just skip |
521 | printing the program, rather than passing NULL to printf. | |
522 | (udi_detach): Set udi_session_id to -1 so that udi_close doesn't | |
523 | try to call UDIDisconnect again. Print better message. | |
524 | (udi_kill): Just call UDIDisconnect ourselves, rather than doing | |
525 | it via udi_close. | |
4a00e1de JK |
526 | (udi_create_inferior): If udi_session_id is negative, open a new |
527 | TIP rather than giving an error. | |
528 | ||
01cd70b9 JK |
529 | * config/mips/mipsm3.mh, config/i386/i386m3.mh, |
530 | config/ns32k/ns32km3.mh: Define NAT_FILE. | |
531 | * config/nm-m3.h: Change guard from _OS_MACH3_H_ and _OS_MACH3_H | |
532 | (it was inconsistent and namespace-wrong) to NM_M3_H. | |
533 | * m3-nat.c (mach_really_wait): Change parameter name to ourstatus. | |
534 | (m3_open): New function. | |
535 | (m3_ops): Use it. | |
536 | * TODO: Update Mach section. | |
537 | ||
538 | * Makefile.in: Remove "rapp" stuff; it is superseded by gdbserver. | |
539 | ||
d41b3eed PB |
540 | Sun Feb 6 13:26:21 1994 Per Bothner ([email protected]) |
541 | ||
542 | * printcmd.c (printf_command): Add missing single-letter | |
543 | backslash-escape sequences, and improve error message. | |
544 | ||
7343d716 JK |
545 | Sun Feb 6 06:55:15 1994 Jim Kingdon ([email protected]) |
546 | ||
842cf831 JK |
547 | * corelow.c (solib_add_stub, core_open): Pass address of from_tty |
548 | rather than trying to shove an int into a pointer and back out | |
549 | again. This avoids compiler warnings. | |
550 | ||
7343d716 JK |
551 | * defs.h (alloca): Declare as void *, not char *, on hpux. |
552 | Don't prototype it, just declare the return type. | |
553 | ||
57a9fee3 PS |
554 | Sun Feb 6 03:25:41 1994 Peter Schauer ([email protected]) |
555 | ||
556 | * config/i386/tm-sun386.h, config/i386/tm-symmetry.h | |
557 | (REGISTER_CONVERT_TO_RAW): Add missing backslash. | |
558 | ||
a1bd6534 JK |
559 | Sat Feb 5 08:03:41 1994 Jim Kingdon ([email protected]) |
560 | ||
021b10e3 JK |
561 | * remote-mips.c (mips_fetch_registers): If regno is FP_REGNUM or |
562 | ZERO_REGNUM, just read it as zero without talking to the board. | |
563 | ||
8b0a85ba JK |
564 | * config/i386/tm-i386aix.h (REGISTER_CONVERT_TO_RAW): Add missing |
565 | backslash. | |
566 | * i386-tdep.c (i386_extract_return_value): Pass TYPE_LENGTH (type) | |
567 | to store_floating, not nonexistent variable len. | |
568 | ||
aa56c716 JK |
569 | * remote-mips.c (mips_insert_breakpoint, mips_remove_breakpoint): |
570 | New functions. | |
571 | (mips_store_word): Change calling convention to return errors, and | |
572 | to provide old contents if the caller wants it. | |
573 | (mips_xfer_memory): Deal with errors from mips_store_word. | |
574 | * config/mips/tm-idt.h, config/mips/tm-idtl.h: Remove BREAKPOINT | |
575 | define now that remote-mips.c doesn't use BREAKPOINT. | |
576 | ||
577 | * remote-mips.c (mips_create_inferior): Call warning if arguments | |
578 | specified, and then execute "set args" command. Call error, not | |
579 | mips_error, if executable file not specified. | |
580 | ||
29fc92e8 JK |
581 | * remote-e7000.c: Replace "snoop" command (e7000_noecho) with |
582 | remote_debug. | |
583 | ||
a1bd6534 JK |
584 | * config/rs6000/tm-rs6000.h (STORE_STRUCT_RETURN): Don't cast |
585 | to unsigned int. | |
586 | ||
65e98f5b PS |
587 | Sat Feb 5 05:27:05 1994 Peter Schauer ([email protected]) |
588 | ||
589 | * value.h (print_longest): Rename "value" to "val" in prototype | |
590 | declaration because some compilers don't like arguments whose | |
591 | names are the same as types. | |
592 | * remote.c (remote_xfer_memory): Cast "myaddr" to unsigned char * | |
593 | before passing it to remote_*_bytes. | |
594 | ||
edd01519 SC |
595 | Fri Feb 4 15:53:18 1994 Steve Chamberlain ([email protected]) |
596 | ||
597 | * h8500-tdep.c (saved_pc_after_call): The size of the | |
598 | pc is memory model dependent. (segmented_command, | |
599 | unsegmented_command, _initialize_h8500_tdep): New commands to | |
600 | change memory model. | |
29fc92e8 | 601 | * remote-e7000.c (_initialize_remote_e7000): Change name of snoop |
edd01519 | 602 | command. |
678ee700 SC |
603 | * remote-hms.c (hms_load): Remove breakpoints when loaded. |
604 | (hms_wait): Use new status structure | |
605 | (hms_open): Push the target here. (hms_before_main_loop): Not | |
606 | here. (supply_val, hms_fetch_register, hms_store_register): Cope | |
607 | with H8/500 names too. (hms_fetch_register): Take out REGISTER_TYPE. | |
608 | * sh-tdep.c (show_regs, initialize_sh_tdep): New command to print | |
609 | all registers in a compact way. | |
edd01519 | 610 | |
9c01440d JK |
611 | Fri Feb 4 07:41:13 1994 Jim Kingdon ([email protected]) |
612 | ||
613 | * config/rs6000/tm-rs6000.h: Declare rs6000_struct_return_address | |
614 | as CORE_ADDR to match definition in rs6000-tdep.c. | |
615 | ||
4386eff2 PS |
616 | Fri Feb 4 01:14:20 1994 Peter Schauer ([email protected]) |
617 | ||
618 | * dwarfread.c (process_dies): Skip nested TAG_compile_unit DIEs. | |
619 | * dwarfread.c (add_partial_symbol): Do not enter opaque aggregate | |
620 | definitions into the psymtab. | |
621 | ||
d351c7a6 JK |
622 | Thu Feb 3 12:38:58 1994 Jim Kingdon ([email protected]) |
623 | ||
624 | * m68k-stub.c: Treat mc68332 like mc68020 most places. Provide | |
625 | a special exceptionSize for the 68332. | |
626 | ||
627 | * remote-udi.c (udi_attach): If no arguments, print error. | |
628 | ||
4901e77d FF |
629 | Thu Feb 3 17:34:05 1994 Fred Fish ([email protected]) |
630 | ||
631 | * Makefile.in (VERSION): Bump to 4.12.1 | |
632 | * NEWS, README: Update to match 4.12 release. | |
633 | ||
159ada02 JK |
634 | Thu Feb 3 12:38:58 1994 Jim Kingdon ([email protected]) |
635 | ||
4901e77d FF |
636 | * command.c (empty_sfunc): New function. |
637 | (add_set_cmd): Use it instead of not_just_help_class_command. | |
638 | (not_just_help_class_command): Change calling convention back to | |
639 | what it was before yesterday's change. | |
640 | ||
159ada02 JK |
641 | * stabsread.c (read_sun_builtin_type): Skip the semicolon at the end |
642 | of the type if present. | |
643 | ||
5b3591ab JK |
644 | Wed Feb 2 11:16:45 1994 Jim Kingdon ([email protected]) |
645 | ||
eade0c6c JK |
646 | * printcmd.c (decode_format): Don't blithely set the size for |
647 | an address to 'w'. Make it 'g' or 'h', depending on TARGET_PTR_BIT. | |
648 | ||
649 | * defs.h: Just typedef CORE_ADDR to bfd_vma. Include bfd.h. | |
650 | If BFD64, make a LONGEST a BFD_HOST_64_BIT. | |
651 | * defs.h (longest_to_int): Don't depend on CC_HAS_LONG_LONG; instead | |
652 | always just check against INT_MIN and INT_MAX (this also fixes things | |
653 | if sizeof (long) > sizeof (int), e.g. Alpha). | |
654 | * config/pa/tm-hppa.h, config/i386/sun386.h, config/rs6000/tm-rs6000.h: | |
655 | Don't define LONGEST or BUILTIN_TYPE_LONGEST. | |
656 | * gdbtypes.h: Remove BUILTIN_TYPE_LONGEST and | |
657 | BUILTIN_TYPE_UNSIGNED_LONGEST. | |
ce855594 JK |
658 | * language.h, c-lang.c, ch-lang.c, m2-lang.c, language.c: Remove |
659 | longest_int and longest_unsigned_int. | |
eade0c6c JK |
660 | * value.h (struct value): Just align to LONGEST, rather than worrying |
661 | about CC_HAS_LONG_LONG. | |
b1de1647 JK |
662 | * valarith.c (value_binop): Figure out type ourself based on |
663 | sizeof (LONGEST) rather than relying on BUILTIN_TYPE_LONGEST. The | |
664 | point is that we don't depend on CC_HAS_LONG_LONG anymore. | |
eade0c6c JK |
665 | * valprint.c (val_print_type_code_int): Just call |
666 | extract_unsigned_integer directly, rather than going through | |
667 | unpack_long. | |
668 | * printcmd.c (decode_format): Remove code which would sometimes | |
669 | change 'g' size to 'w' for integers. print_scalar_formatted handles | |
670 | printing huge integers well enough, thank you. | |
671 | ||
4901e77d | 672 | * command.c (add_set_cmd, not_just_help_class_command): Change |
719d9abb JK |
673 | to make this the sfunc, not cfunc, since that is how we call it. |
674 | * command.h: Comment difference between sfunc and cfunc. | |
675 | * demangle.c (set_demangling_command): Add third arg since that | |
676 | is how it is called. | |
677 | (_initialize_demangler): Use sfunc, not cfunc, for | |
678 | set_demangling_command, since that is how it is called. | |
679 | Remove show_demangling_command; it has no effect. | |
680 | ||
5b3591ab JK |
681 | * command.c (shell_escape): Report errors correctly (with error |
682 | message from strerror). | |
683 | ||
37f24dc9 ILT |
684 | Wed Feb 2 14:35:41 1994 Ian Lance Taylor ([email protected]) |
685 | ||
686 | * xcoffread.c (read_xcoff_symtab): Change CSECT_LEN to use | |
687 | x_scnlen.l rather than x_scnlen to match corresponding change in | |
688 | coff/internal.h. | |
689 | ||
61932a8e JK |
690 | Wed Feb 2 11:16:45 1994 Jim Kingdon ([email protected]) |
691 | ||
692 | * gdbtypes.h, ch-typeprint.c, ch-valprint.c: | |
693 | Change comments regarding TYPE_CODE_BOOL. | |
694 | * language.c (boolean_type): Always return 1 for TYPE_CODE_BOOL, | |
695 | regardless of the language. | |
696 | (value_true): Just call value_logical_not regardless of language. | |
697 | * coffread.c (coff_read_enum_type), stabsread.c (read_enum_type): | |
698 | Remove #if 0'd code which makes some enums TYPE_CODE_BOOL. | |
699 | * language.h: Improve comment for la_builtin_type_vector. | |
700 | * m2-lang.c (_initialize_m2_language): Don't add any fields to | |
701 | builtin_type_m2_bool. | |
702 | ||
7bec77b4 JK |
703 | Tue Feb 1 17:13:32 1994 Kevin Buettner ([email protected]) |
704 | ||
705 | * config/m88k/{tm-delta88.h,tm-delta88v4.h}, m88k-tdep.c: | |
706 | Define IN_SIGTRAMP and backtrace correctly through signal handlers. | |
707 | ||
8afd05c0 JK |
708 | Tue Feb 1 22:13:25 1994 Peter Schauer ([email protected]) |
709 | ||
710 | * procfs.c (wait_fd): Handle EINTR error return from PIOCWSTOP ioctl | |
711 | by restarting the ioctl. | |
712 | ||
10b9bb56 JK |
713 | Tue Feb 1 16:16:25 1994 Jim Kingdon ([email protected]) |
714 | ||
715 | * target.h (target_wait): Add comment about calling | |
716 | return_to_top_level. | |
717 | ||
bf8d9d28 ILT |
718 | Tue Feb 1 12:21:00 1994 Ian Lance Taylor ([email protected]) |
719 | ||
720 | * coffread.c (read_one_sym): bfd_coff_swap_aux_in now takes | |
721 | additional arguments. | |
722 | * xcoffread.c (read_xcoff_symtab, read_symbol_lineno): Likewise. | |
723 | ||
efe3ff3e SG |
724 | Mon Jan 31 16:10:41 1994 Stu Grossman (grossman at cygnus.com) |
725 | ||
726 | * sparc-stub.c: Remove unnecessary #include of memory.h. | |
727 | ||
37dea45f JK |
728 | Mon Jan 31 12:12:34 1994 Jim Kingdon ([email protected]) |
729 | ||
14d79562 JK |
730 | * mips-tdep.c: Remove code which sets saved_regs from |
731 | init_extra_frame_info and put it in new function mips_find_saved_regs. | |
732 | (READ_FRAME_REG): Remove macro and replace uses with the expansion. | |
733 | * mips-tdep.c, config/mips/tm-mips.h: When examining ->saved_regs, | |
734 | check if it is NULL and call mips_find_saved_regs if so. | |
735 | ||
47d52968 JK |
736 | * remote-mips.c: Use unfiltered, not filtered, output most places. |
737 | ||
37dea45f JK |
738 | * blockframe.c (get_prev_frame_info): Detect and stop an infinite |
739 | backtrace. Revise comments. | |
740 | ||
0434c1a0 PS |
741 | Mon Jan 31 09:40:33 1994 Peter Schauer ([email protected]) |
742 | ||
743 | * mdebugread.c (parse_procedure): Remove _sigtramp kludges for | |
744 | alpha and irix. The _sigtramp case has to be handled properly | |
745 | in the tdep files if we have no ecoff debugging info. | |
746 | * alpha-tdep.c (alpha_frame_saved_pc, alpha_frame_chain), | |
747 | mips-tdep.c (mips_frame_saved_pc): Handle signal handler frames | |
748 | without PC_REGNUM kludge. | |
749 | * mdebugread.c (fixup_sigtramp), mips-tdep.c (read_next_frame_reg): | |
750 | Clean up handling of mips sigtramp frames, improve comments. | |
751 | ||
d64956fa JL |
752 | Sat Jan 29 23:25:57 1994 Jeffrey A. Law ([email protected]) |
753 | ||
754 | * paread.c (read_unwind_info): Fix typo. | |
755 | ||
756 | * paread.c (pa_symtab_read): Update the "check_strange_names" | |
757 | filter to match GCC's current output. Filter out section symbols | |
758 | (which the HP linker sometimes puts in the wrong place). | |
759 | ||
9db58d3a JK |
760 | Sat Jan 29 07:44:59 1994 Jim Kingdon ([email protected]) |
761 | ||
3a479851 JK |
762 | * serial.h (SERIAL_SET_TTY_STATE): Comment return value. |
763 | ||
a0b352c0 JK |
764 | * Makefile.in (TAGS): Just echo one line, rather than the whole thing. |
765 | ||
766 | * Makefile.in: Remove all references to sparcly-nat.c. | |
767 | ||
768 | * Makefile.in (HFILES_NO_SRCDIR): Include dcache.h remote-utils.h | |
769 | remote-sim.h directly, rather than via $(remote_utils_h). This avoids | |
770 | duplicating serial.h and target.h. | |
771 | ||
7a78db15 JK |
772 | * Makefile.in: Don't set M_INSTALL and M_UNINSTALL. These variables |
773 | are not used anywhere (a 5 Oct 1993 change removed the uses). | |
774 | ||
895efe6b JK |
775 | * config/m68k/monitor.mt (TDEPFILE): Add remote-es.o. |
776 | * config/m68k/es1800.mt: Add comment. | |
3a479851 | 777 | * remote-es.c: Extensive changes to update to current conventions. |
895efe6b | 778 | |
9db58d3a JK |
779 | * ser-unix.c (wait_for, hardwire_readchar) [HAVE_TERMIO, HAVE_TERMIOS]: |
780 | If the timeout is too big to fit in c_cc[VTIME], then do multiple reads | |
781 | to achieve the desired timeout. | |
782 | * serial.h (serial_t): Add field timeout_remaining. | |
783 | ||
f28c6e38 JK |
784 | Fri Jan 28 08:45:02 1994 Jim Kingdon ([email protected]) |
785 | ||
786 | * c-exp.y (yylex): Reenable nested type code. | |
787 | ||
b09f44d2 JK |
788 | Fri Jan 28 15:40:33 1994 Jim Kingdon ([email protected]) |
789 | ||
7f2ffa58 JK |
790 | * a29k-tdep.c (examine_tag): Add comment regarding argcount. |
791 | ||
796d1fd3 JK |
792 | * remote-mips.c (mips_ops): Fix docstring. |
793 | ||
97cc0428 JK |
794 | * remote-bug.c (bug_ops): Remove spurious newline from docstring. |
795 | ||
ddd0223e JK |
796 | * config/m68k/tm-monitor.h: Changes to bring this into accordance |
797 | with the old tm-m68k-em.h: | |
798 | (GDBINIT_FILENAME, DEFAULT_PROMPT): Remove. | |
97cc0428 | 799 | (HAVE_68881): Don't undefine; HAVE_68881 is obsolete. |
ddd0223e JK |
800 | (REGISTER_NAMES): Don't muck with it; what tm-m68k.h has is fine. |
801 | Add FIXME regarding GET_LONGJMP_TARGET. | |
802 | ||
b09f44d2 | 803 | * remote-udi.c (udi_close, udi_detach, udi_kill): Add comments. |
97cc0428 JK |
804 | * infptrace.c (kill_inferior): Add comments. |
805 | * main.c (quit_command): Call target_close after we kill or | |
806 | detach. | |
807 | * remote-udi.c (udi_close): Don't error() if QUITTING. | |
b09f44d2 | 808 | |
0ffba029 RS |
809 | Fri Jan 28 11:55:52 1994 Rob Savoye ([email protected]) |
810 | ||
811 | * configure.in: Make m68k-coff and aout add monitor support in | |
812 | addition to the standard serial support. | |
813 | ||
bb7cb982 JK |
814 | Fri Jan 28 08:45:02 1994 Jim Kingdon ([email protected]) |
815 | ||
816 | * mdebugread.c (psymtab_to_symtab_1): Don't complain on stLabel with | |
817 | index indexNil. | |
818 | ||
9fdb3f7a JK |
819 | Fri Jan 28 10:40:34 1994 Jim Kingdon ([email protected]) |
820 | ||
821 | * config/pa/tm-hppa.h: Define macro SMASH_TEXT_ADDRESS. | |
822 | * elfread.c (record_minimal_symbol_and_info), | |
823 | dwarfread.c (process_dies), paread.c (pa_symtab_read): Use it. | |
824 | ||
a28d16d3 JK |
825 | Thu Jan 27 15:12:23 1994 Jim Kingdon ([email protected]) |
826 | ||
6202263d JK |
827 | * i386-stub.c: Add ".text" right before "mem_fault:". |
828 | ||
9c41f6a6 JK |
829 | * main.c (baud_rate): Add FIXME comment about printing -1 value. |
830 | ||
831 | * remote-utils.c (usage): Fix message to be accurate and conform | |
832 | more closely to normal conventions. | |
833 | ||
834 | * remote-utils.c (gr_files_info): Have the exec_bfd test control | |
835 | whether to show information about exec_bfd, and not control whether | |
836 | to show information about device and speed. | |
837 | ||
838 | * remote-utils.c (gr_open): If sr_get_device returns NULL, give | |
839 | usage message, don't dump core. | |
840 | ||
841 | * remote-bug.c (bug_write_memory): Use alloca, not GCC extension | |
842 | for variable size array. | |
843 | (bug_fetch_register, bug_store_register): Rename "value" to | |
844 | "fpreg_buf" because some compilers don't like variables whose | |
845 | names are the same as types. | |
846 | (bug_store_register): Use a cast when converting char * to | |
847 | unsigned char *. | |
848 | ||
d5c551c9 JK |
849 | * symmisc.c (maintenance_print_symbols): Don't refer to the name |
850 | of the command in error message (the text was referring to the old | |
851 | name of the command). | |
852 | ||
853 | * symmisc.c (dump_symtab): Fix args to fprintf_filtered. | |
854 | ||
0e4ad984 JK |
855 | * c-typeprint.c (c_type_print_base): Have SHOW == 0 mean to print |
856 | full details on structure elements without names. This partially | |
857 | reverts the changes of 1 Jul 1993 and 31 Aug 1993; I think this aspect | |
858 | of those changes was accidental. | |
859 | ||
577da8cb JK |
860 | * stack.c (parse_frame_specification): If SETUP_ARBITRARY_FRAME is |
861 | defined, make it an error to specify a single argument which is not | |
862 | a frame number. | |
863 | ||
a28d16d3 JK |
864 | * Makefile.in (version.c), main.c (print_gdb_version): Use |
865 | host_alias and target_alias, not host_canonical and | |
866 | target_canonical, to print configuration. | |
867 | ||
833e0d94 JK |
868 | Wed Jan 26 10:57:21 1994 Jim Kingdon ([email protected]) |
869 | ||
d92f3f08 JK |
870 | * parse.c (write_exp_msymbol): Use new type msymbol_addr_type instead |
871 | of builtin_type_long. It is necessary to get a type which is | |
872 | TARGET_PTR_BIT bits in size; builtin_type_long might not be big enough. | |
873 | ||
833e0d94 JK |
874 | Fix many sins which will come up in 32 bit x 64 bit GDB, and |
875 | various miscellaneous things discovered in the process: | |
876 | * printcmd.c, defs.h (print_address_numeric): New function. | |
877 | * c-valprint.c (c_val_print), ch-valprint.c (chill_val_print) | |
878 | breakpoint.c (describe_other_breakpoints, breakpoint_1, mention), | |
879 | cp-valprint.c (cplus_print_value), infcmd.c (jump_command), | |
880 | printcmd.c, stack.c, symfile.c, symmisc.c, valprint.c: | |
881 | Use it. | |
882 | * utils.c, defs.h (gdb_print_address): New function. | |
883 | * expprint (dump_expression), gdbtypes.h: Use it. | |
884 | * breakpoint.c (describe_other_breakpoints), | |
885 | symmisc.c (dump_symtab, print_symbol): | |
886 | Use filtered not unfiltered I/O. | |
887 | (remove_breakpoints): Remove BREAKPOINT_DEBUG code. Might as well | |
888 | just run gdb under a debugger for this (and it had problems with | |
889 | printing addresses, how to print b->shadow, etc.). | |
890 | * buildsym.c (make_blockvector), core.c (memory_error), | |
891 | exec.c (print_section_info), maint.c (print_section_table), | |
892 | mdebugread.c (parse_procedure), solib.c, source.c, symfile.c, | |
893 | symmisc.c, symtab.c, valops.c, valprint.c, xcoffexec.c: | |
894 | Add comments saying code is broken. Marked with "FIXME-32x64". | |
895 | * dbxread.c (process_one_symbol), partial-stab.h (default), | |
896 | remote-vx.c (vx_run_files_info): | |
897 | Don't cast int being passed to local_hex_string. | |
898 | * symmisc.c (print_symbol): Don't cast long being passed to %lx. | |
899 | * symtab.h (general_symbol_info): Add comment about SYMBOL_VALUE | |
900 | only being a long. | |
901 | * symmisc.c (print_symbol): Print "offset" in message for LOC_ARG | |
902 | and LOC_LOCAL. | |
903 | * printcmd.c (print_address): Remove #if 0 code with ADDR_BITS_REMOVE. | |
904 | * source.c: Include <sys/types.h> regardless of USG. | |
905 | ||
67e9b3b3 PS |
906 | Tue Jan 25 12:58:26 1994 Peter Schauer ([email protected]) |
907 | ||
908 | * valops.c (value_assign): Set `type' after coercing toval. | |
909 | * c-valprint.c (c_val_print), ch-valprint.c (chill_val_print): | |
910 | Use extract_unsigned_integer to get the address of a reference. | |
911 | ||
36464897 JK |
912 | Tue Jan 25 11:31:53 1994 Jim Kingdon ([email protected]) |
913 | ||
91a0575c JK |
914 | * stabsread.c (STABS_CONTINUE, error_type), partial-stab.h: |
915 | AIX can use ? instead of \ for continuation. Deal with it. | |
916 | ||
36464897 JK |
917 | * paread.c (read_unwind_info): Just assign to objfile->obj_private, |
918 | not OBJ_UNWIND_INFO. Assigning to a cast is a GCC-ism which | |
919 | the HP compiler in ANSI mode doesn't like. | |
920 | ||
921 | * main.c: When defaulting HAVE_SIGSETMASK based on USG, just do it | |
3bc45b7a JK |
922 | based on USG, rather than defining HAVE_SIGSETMASK to an |
923 | expression containing defined. Having a macro used in #if expand | |
924 | to an expression containing "defined" is undefined according to | |
925 | ANSI, and the HP compiler in ANSI mode doesn't do what we wanted | |
926 | it to. | |
36464897 | 927 | |
2ba6182b JG |
928 | Mon Jan 24 20:51:29 1994 John Gilmore ([email protected]) |
929 | ||
930 | * sparc-nat.c (fetch_inferior_registers, store_inferior_registers): | |
931 | Clean up the changes of 11 Jan, as recommended by Peter Schauer. | |
932 | ||
96b6b765 PB |
933 | Fri Jan 21 19:10:44 1994 Per Bothner ([email protected]) |
934 | ||
935 | * ch-exp.y (match_string_literal): Allow a zero-length string. | |
936 | * ch-lang.c (chill_printstr): Don't print zero-length string funny. | |
937 | ||
dfd4c728 JK |
938 | Sat Jan 22 17:08:48 1994 Jim Kingdon ([email protected]) |
939 | ||
940 | * i386aix-nat.c (i386_float_info): Reverse order of registers before | |
941 | passing them to print_387_status. | |
942 | (print_387_status): Don't subtract top from 7 before using it. | |
943 | * i387-tdep.c: Remove comment about AIX wanting "top" subtracted | |
944 | from 7; the above explains it. | |
945 | ||
5efd597b PS |
946 | Sat Jan 22 20:25:11 1994 Peter Schauer ([email protected]) |
947 | ||
948 | * mips-tdep.c (init_extra_frame_info): Use frame relative stack | |
67e9b3b3 | 949 | pointer value when fixing up the frame at the start of a function. |
5efd597b | 950 | |
e90445c9 SG |
951 | Sat Jan 22 12:29:13 1994 Stu Grossman (grossman at cygnus.com) |
952 | ||
953 | * lynx-nat.c (fetch_core_registers): Load the I & L regs for the | |
954 | Sparc from the stack. | |
955 | ||
08f74b92 JK |
956 | Sat Jan 22 08:30:42 1994 Jim Kingdon ([email protected]) |
957 | ||
864df7e6 JK |
958 | * remote-mips.c (mips_initialize): Clear mips_initializing via |
959 | cleanup chain, not directly. | |
960 | ||
961 | * ser-unix.c (wait_for) [HAVE_TERMIO, HAVE_TERMIOS]: Make a timeout | |
962 | of -1 mean forever, like in the HAVE_SGTTY case. Warn if we are | |
963 | munging the timeout due to the limited range of c_cc[VTIME]. | |
964 | ||
08f74b92 JK |
965 | * fork-child.c, inferior.h (fork_inferior): New argument shell_file. |
966 | * procfs.c (procfs_create_inferior), inftarg.c (child_create_inferior), | |
967 | m3-nat.c (m3_create_inferior): Pass it. | |
968 | * procfs.c: Remove ptrace function. It was declared in a way which | |
969 | conflicted with the prototype in unistd.h on Solaris. | |
970 | ||
cdcf48be PS |
971 | Sat Jan 22 01:37:40 1994 Peter Schauer ([email protected]) |
972 | ||
973 | * sparc-tdep.c (frame_saved_pc): Get the pc from the saved pc | |
974 | in the sigcontext if it is a signal trampoline frame. | |
975 | * config/sparc/tm-sun4sol2.h (IN_SIGTRAMP, SIGCONTEXT_PC_OFFSET): | |
976 | Define for Solaris2. | |
977 | ||
8bf94f44 SG |
978 | Sat Jan 22 00:34:47 1994 Stu Grossman (grossman at cygnus.com) |
979 | ||
980 | * sparc-tdep.c, lynx-nat.c, config/sparc/tm-sparc.h, | |
981 | config/sparc/tm-sparclynx.h: Move defs of FRAME_SAVED_I0/L0 to | |
982 | tm-sparc.h so they can be overridden if necessary. | |
983 | ||
d575ddc0 SG |
984 | Fri Jan 21 17:49:28 1994 Stu Grossman (grossman at cygnus.com) |
985 | ||
986 | * lynx-nat.c: Add Sparc support. | |
987 | * sparcly-nat.c: Remove. It's useless. | |
988 | * config/sparc/nm-sparclynx.h: Rewrite. | |
989 | * config/sparc/sparclynx.mh (NATDEPFILES): Replace sparcly-nat.o | |
990 | with lynx-nat.o | |
991 | * config/sparc/tm-sparclynx.h: Rewrite. | |
992 | ||
00240279 ILT |
993 | Fri Jan 21 19:08:48 1994 Ian Lance Taylor ([email protected]) |
994 | ||
995 | * rs6000-pinsn.c: Use the new disassembler in the opcodes | |
996 | directory. Old code was discarded, since the new opcode table has | |
997 | a different format. | |
998 | ||
a2608ea1 FF |
999 | Fri Jan 21 14:28:30 1994 Fred Fish ([email protected]) |
1000 | ||
1001 | * Makefile.in (realclean): Remove info files per make-stds.texi. | |
1002 | ||
6545c6a0 JK |
1003 | Fri Jan 21 12:47:53 1994 Jim Kingdon ([email protected]) |
1004 | ||
1005 | * dbxread.c (end_psymtab): Only patch psymtab textlow and texthigh | |
1006 | if N_SO_ADDRESS_MAYBE_MISSING is defined. | |
1007 | * config/sparc/tm-sun4sol2.h: Define it. | |
1008 | ||
cd5ee294 JK |
1009 | Thu Jan 20 15:04:24 1994 Peter Schauer ([email protected]) |
1010 | ||
1011 | * printcmd.c (print_address_symbolic): Unconditionally use msymbol | |
1012 | if we did not find a symbol. | |
1013 | ||
918fea3e JL |
1014 | Fri Jan 21 08:20:18 1994 Jeffrey A. Law ([email protected]) |
1015 | ||
1016 | * infptrace.c (child_xfer_memory): Only use if CHILD_XFER_MEMORY | |
1017 | is not defined. | |
1018 | ||
1019 | * hppab-nat.c (call_ptrace): Delete redundant function. | |
1020 | (kill_inferior, attach, detach, child_resume): Likewise. | |
1021 | (child_xfer_memory): Likewise. | |
1022 | ||
1023 | * hppah-nat.c (call_ptrace): Delete redundant function. | |
1024 | (kill_inferior, attach, detach, child_resume): Likewise. | |
1025 | ||
1026 | * config/pa/hppabsd.mh (NATDEPFILES): Add infptrace.o. | |
1027 | ||
1028 | * config/pa/hppahpux.mh (NATDEPFILES): Add infptrace.o. | |
1029 | ||
1030 | * config/pa/nm-hppab.h (FETCH_INFERIOR_REGISTERS): Define. | |
1031 | ||
1032 | * config/pa/nm-hppah.h (FETCH_INFERIOR_REGISTERS): define. | |
1033 | (CHILD_XFER_MEMORY): Define. | |
1034 | (PT_*): Define so that generic infptrace.c code can be used. | |
1035 | ||
27ad511f JK |
1036 | Fri Jan 21 09:23:33 1994 Jim Kingdon ([email protected]) |
1037 | ||
1b880e74 JK |
1038 | * xcoffread.c (xcoff_symfile_read): Make second parameter a |
1039 | struct section_offsets *, not a (nonexistent) struct section_offset *. | |
1040 | ||
6657a0c7 JK |
1041 | * xcoffread.c (read_xcoff_symtab): Make main_aux just a union |
1042 | internal_xcoff_symtab, not an array of one of them. Change lots of | |
1043 | "main_aux" to "&main_aux" and so on. | |
1044 | ||
27ad511f JK |
1045 | * coffread.c, xcoffread.c: Include <coff/internal.h> |
1046 | before "symfile.h". | |
1047 | ||
d4a0983a JK |
1048 | Thu Jan 20 17:30:55 1994 Jim Kingdon ([email protected]) |
1049 | ||
dbb0fae2 JK |
1050 | * coffread.c (coff_getfilename): Make it not static. |
1051 | ||
d4a0983a JK |
1052 | * xcoffread.c (read_xcoff_symtab): complain() not abort(). |
1053 | ||
1054 | * xcoffread.c (struct coff_symbol): Rename c_nsyms to c_naux (removes | |
1055 | a completely gratuitous difference between xcoffread.c and coffread.c). | |
1056 | ||
d7e7e851 JK |
1057 | Wed Jan 19 15:09:44 1994 Jim Kingdon ([email protected]) |
1058 | ||
1059 | * infrun.c (wait_for_inferior): Don't set frame for | |
1060 | step_resume_breakpoint for IN_SIGTRAMP cases. | |
1061 | ||
1062 | * infrun.c (wait_for_inferior), breakpoint.h (struct bpstat_what), | |
1063 | breakpoint.c (bpstat_what): Move step_resume from its own field of | |
1064 | the struct bpstat_what into the main_action. Make it override | |
1065 | other breakpoints. This is a conservative change in the sense | |
1066 | that before the step resume breakpoint was a breakpoint.c | |
1067 | breakpoint, hitting the step resume breakpoint overrode even | |
1068 | calling bpstat_stop_status. | |
1069 | ||
f1de67d3 PS |
1070 | Wed Jan 19 12:40:25 1994 Peter Schauer ([email protected]) |
1071 | ||
1072 | * infrun.c (normal_stop): Set stop_pc after popping the dummy frame | |
1073 | in case execution was stopped in the called function. | |
1074 | * stack.c (print_frame_info, frame_info): If backtracing through | |
1075 | a call dummy, handle the starting source line number on a line | |
1076 | boundary like backtracing through sigtramp. | |
1077 | * sparc-tdep.c (sparc_frame_find_saved_regs): Get frame address | |
1078 | for call dummy frame right. Remove old test for dummy frame, | |
1079 | it has been unused at least since gdb-3.5. | |
1080 | * sparc-tdep.c (sparc_push_dummy_frame): Set return address register | |
1081 | of the dummy frame. | |
1082 | ||
c6e0f918 JK |
1083 | Tue Jan 18 16:16:35 1994 Jim Kingdon ([email protected]) |
1084 | ||
1085 | * infcmd.c (signal_command): Accept 0 as legitimate signal number. | |
1086 | ||
db4340a6 JK |
1087 | Tue Jan 18 14:09:25 1994 Peter Schauer ([email protected]) |
1088 | ||
1089 | * infrun.c (signals_info), target.c (target_signal_from_name): | |
1090 | Use ugly casts to avoid enumvar < enumvar or enumvar++. | |
1091 | ||
4d4f2d50 JK |
1092 | Mon Jan 17 22:00:15 1994 Jim Kingdon ([email protected]) |
1093 | ||
d881dd86 JK |
1094 | * ser-unix.c (hardwire_noflush_set_tty_state): Don't muck with ICANON. |
1095 | * inflow.c (terminal_ours_1): When discussing how to deal with the | |
1096 | tty state, make note of query() as well as readline. | |
1097 | ||
4d4f2d50 JK |
1098 | * infrun.c (_initialize_infrun): Add TARGET_SIGNAL_POLL to list of |
1099 | signals for which stop and print are cleared by default. | |
1100 | ||
5c38fcee JL |
1101 | Mon Jan 17 20:00:51 1994 Jeffrey A. Law ([email protected]) |
1102 | ||
c7f3b703 JL |
1103 | * config/pa/tm-hppa.h (unwind_table_entry): Use one of the |
1104 | reserved fields to hold a stub unwind entry type. Fix typo. | |
1105 | (stub_unwind_entry): New structure for raw stub unwind entries. | |
1106 | (stub_unwind_types): The types of stubs we may encounter. | |
1107 | (UNWIND_ENTRY_SIZE, STUB_UNWIND_ENTRY_SIZE): New defines. | |
1108 | * hppa-tdep.c (rp_saved): Use additional information provided | |
1109 | by linker stub unwind descriptors. | |
1110 | (frameless_function_invocation): Likewise. | |
1111 | (frame_chain_valid): Likewise. | |
1112 | * paread.c (compare_unwind_entries): New function for sorting | |
1113 | unwind table entries. | |
1114 | (read_unwind_info): Rewrite to remove dependency on host endianness. | |
1115 | Read in data from the $UNWIND_END$ subspace which contains linker | |
1116 | stub unwind descriptors. Merge that data into the basic unwind | |
1117 | table. | |
1118 | ||
5c38fcee JL |
1119 | * hppab-nat.c (_initialize_kernel_u_addr): Delete unwanted functions. |
1120 | ||
af8b7906 JK |
1121 | Mon Jan 17 22:00:15 1994 Jim Kingdon ([email protected]) |
1122 | ||
1123 | * xcoffread.c (read_xcoff_symtab, case C_FILE): Accept the name | |
1124 | from either the symbol name or the auxent. | |
1125 | * coffread.c, symfile.h (coff_getfilename): Renamed from getfilename, | |
1126 | no longer static. | |
1127 | ||
0e7da49c FF |
1128 | Mon Jan 17 13:35:01 1994 Fred Fish ([email protected]) |
1129 | ||
1130 | * Makefile.in (ALLPARAM): Change irix5.h to nm-irix5.h. | |
1131 | ||
b90811f9 PS |
1132 | Mon Jan 17 12:35:42 1994 Peter Schauer ([email protected]) |
1133 | ||
1134 | * README: Update notes for alpha port. | |
1135 | ||
24a11a79 JK |
1136 | Mon Jan 17 11:15:57 1994 Jim Kingdon ([email protected]) |
1137 | ||
1138 | * i960-tdep.c (i960_fault_to_signal): Return TARGET_SIGNAL_ILL | |
1139 | for operation fault, constraint fault, and type fault. | |
1140 | ||
b76dcd4b JK |
1141 | Sun Jan 16 12:46:01 1994 Jim Kingdon ([email protected]) |
1142 | ||
623d7380 JK |
1143 | * Makefile.in (init.c): Add comment explaining formatting conventions. |
1144 | ||
a39f7739 JK |
1145 | * c-exp.y (parse_number): Assign to temporary between the right |
1146 | shifts, to work around a bug in the SCO compiler. | |
1147 | ||
07919221 JK |
1148 | * Makefile.in (ALLCONFIG, ALLPARAM, ALLDEPFILES, HFILES_NO_SRCDIR): |
1149 | Add various files which were added to GDB recently. | |
1150 | ||
91cc45da JK |
1151 | * xcoffread.c (process_xcoff_symbol): Only change 'V' to 'S' if not |
1152 | within_function. | |
1153 | ||
b76dcd4b JK |
1154 | * Makefile.in: Add mostlyclean target. |
1155 | ||
d7a5ff3c JK |
1156 | Sat Jan 15 10:20:13 1994 Jim Kingdon ([email protected]) |
1157 | ||
1158 | * Version 4.11.4. | |
1159 | ||
8b564df8 PB |
1160 | Sat Jan 15 18:27:34 1994 Per Bothner ([email protected]) |
1161 | ||
1162 | * main.c (show_commands): Make return type of extern | |
1163 | history_get be HIST_ENTRY, rather than struct _hist_entry. | |
1164 | (The latter loses with the upcoming merged readline.) | |
1165 | ||
dac317dc JK |
1166 | Sat Jan 15 10:20:13 1994 Jim Kingdon ([email protected]) |
1167 | ||
ab5f7971 JK |
1168 | * minsyms.c (prim_record_minimal_symbol_and_info): Make tempstring |
1169 | const char *, not char *. | |
1170 | ||
fb155ce3 JK |
1171 | * symtab.h (struct symbol): Make section short, not unsigned short. |
1172 | ||
87041845 JK |
1173 | * symtab.c (lookup_symbol): Add comment about QUIT here. |
1174 | ||
f29351d9 JK |
1175 | * utils.c (fputs_unfiltered): Call fputs, not fputs_maybe_filtered. |
1176 | ||
a9b32d61 JK |
1177 | * c-exp.y (parse_number): Check for overflow regardless of range |
1178 | checking. Fix overflow check to use unsigned LONGEST, not | |
1179 | unsigned int. | |
1180 | ||
1181 | * c-exp.y (parse_number): Make it so that integer constants are | |
1182 | builtin_type_long_long if builtin_type_long isn't big enough or if | |
1183 | an "LL" suffix is used. Properly handle "UL" or "LU" suffixes. | |
1184 | ||
dac317dc JK |
1185 | * c-typeprint.c (c_type_print_varspec_suffix, case TYPE_CODE_FUNC): |
1186 | Print our "()" first, then recurse for the target type. | |
1187 | ||
4c0b3e57 JK |
1188 | Fri Jan 14 21:55:39 1994 Jim Kingdon ([email protected]) |
1189 | ||
831a39d7 JK |
1190 | * remote-udi.c (udi_create_inferior): Quote empty execfile argument. |
1191 | ||
4c0b3e57 JK |
1192 | * gdbserver/low-lynx.c: Include <sys/wait.h> not "/usr/include/wait.h". |
1193 | ||
44a09a68 JK |
1194 | Fri Jan 14 14:17:06 1994 Jim Kingdon ([email protected]) |
1195 | ||
1196 | * utils.c (request_quit): Re-establish signal handler regardless | |
1197 | of USG. | |
1198 | ||
1199 | * config/mips/xm-irix4.h: Define HAVE_TERMIOS. | |
1200 | ||
98506620 JK |
1201 | Fri Jan 14 21:55:39 1994 Jim Kingdon ([email protected]) |
1202 | ||
1203 | * i960-tdep.c: Include target.h. | |
1204 | ||
658821b9 SS |
1205 | Fri Jan 14 17:12:28 1994 Stan Shebs ([email protected]) |
1206 | ||
1207 | * lynx-nat.c (sys/wait.h): Don't use absolute pathname. | |
1208 | ||
1209 | Fri Jan 14 11:06:10 1994 Jim Kingdon ([email protected]) | |
1210 | ||
1211 | * lynx-nat.c (child_wait): Fix thinkos in struct target_waitstatus | |
1212 | changes (status -> ourstatus; declare status, etc.). | |
1213 | * config/nm-lynx.h: Fix child_wait prototype and include target.h. | |
1214 | ||
4e8bc56f JK |
1215 | Fri Jan 14 14:17:06 1994 Jim Kingdon ([email protected]) |
1216 | ||
1217 | * Makefile.in (ALLPARAM): Add config/nm-lynx.h. | |
1218 | ||
aeb145f8 ILT |
1219 | Fri Jan 14 11:49:44 1994 Ian Lance Taylor ([email protected]) |
1220 | ||
1221 | * remote-mips.c (mips_request, mips_wait): Correct prototypes. | |
1222 | ||
d253eb7a JK |
1223 | Fri Jan 14 11:37:17 1994 Jim Kingdon ([email protected]) |
1224 | ||
1225 | * config/i386/xm-linux.h: Define HAVE_TERMIOS. | |
1226 | ||
52b3045e PS |
1227 | Fri Jan 14 01:04:36 1994 Peter Schauer ([email protected]) |
1228 | ||
1229 | * config/alpha/tm-alpha.h (CALL_DUMMY): Improve comment. | |
1230 | ||
ae682b80 JK |
1231 | Thu Jan 13 10:32:38 1994 Jim Kingdon ([email protected]) |
1232 | ||
d0acb092 JK |
1233 | * remote-vx.c (vx_wait): Only call i960_fault_to_signal if I80960 |
1234 | is defined. Otherwise just report TARGET_SIGNAL_UNKNOWN. | |
1235 | ||
1236 | * mips-tdep.c (mips_push_arguments): Byteswap struct_addr before | |
1237 | writing it. | |
1238 | ||
63dcc380 JK |
1239 | Add search to target vector (#if 0'd until after 4.12): |
1240 | * target.h (to_search, target_search): Add. | |
1241 | * gdbcore.h, core.c (generic_search): Add. | |
1242 | * remote.c (remote_search): Add. | |
1243 | * a29k-tdep.c (init_frame_info): Use target_search to find traceback | |
1244 | tag. | |
1245 | ||
d6596eee JK |
1246 | * printcmd.c (print_address_symbolic): If set print fast-symbolic-addr |
1247 | is on, call find_pc_function rather than relying just on the minimal | |
1248 | symbols (probably only matters for symbol readers which don't put | |
1249 | statics in the minimal symbols, but changing this strikes me as | |
1250 | not conservative enough). | |
1251 | Initialize name_location in all cases. | |
1252 | If no symbol and no msymbol, don't print anything symbolic. | |
1253 | ||
ae682b80 JK |
1254 | * a29k-tdep.c (push_dummy_frame): Add comment about saving lr0. |
1255 | ||
314e6bf3 JG |
1256 | Wed Jan 12 20:53:16 1994 John Gilmore ([email protected]) |
1257 | ||
1258 | * printcmd.c (print_address_symbolic): Make it search the | |
1259 | symtabs for variables as well as functions. Add `set print | |
1260 | fast-symbolic-addr' and default it to fast (the old way). | |
1261 | Print line numbers for data items as well as functions. | |
1262 | ||
1263 | * symtab.c (find_addr_symbol): Return the symtab and the symbol | |
1264 | address, if a symbol is found (take two more args pointing to | |
1265 | where to store these results). | |
1266 | ||
1267 | * symtab.h (find_addr_symbol): Add prototype. | |
1268 | ||
470dfa0c JK |
1269 | Wed Jan 12 19:32:11 1994 Jim Kingdon ([email protected]) |
1270 | ||
1271 | * objfiles.h: Fix comments to reflect the fact that the phrase | |
1272 | "top of stack" always refers to where the pushing and popping takes | |
1273 | place, regardless of whether it is at the highest or lowest address. | |
1274 | ||
a8c49897 PS |
1275 | Wed Jan 12 13:23:37 1994 Peter Schauer ([email protected]) |
1276 | ||
1277 | * mdebugread.c (parse_symbol): Do not set TYPE_TAG_NAME for | |
1278 | compiler generated tag names. | |
1279 | * mdebugread.c (parse_type): Handle cross references to qualified | |
1280 | aggregate types. | |
1281 | * valops.c (value_struct_elt): Improve error message if the | |
1282 | address of a method is requested from an object instance. | |
1283 | * valops.c (search_struct_method): Make name_matched non-static | |
1284 | to get it initialized correctly. | |
1285 | * config/i386/nm-i386sco.h (CANNOT_STORE_REGISTER): Define to | |
1286 | exclude segment register which are not writable on newer SCO versions. | |
1287 | ||
4ad942bf JK |
1288 | Wed Jan 12 14:44:45 1994 Jim Kingdon ([email protected]) |
1289 | ||
1290 | * go32-xdep.c: Remove unused function uerror. | |
1291 | (sigsetmask): Declare return type. Declare argument (to match the | |
1292 | way it is called). Explicitly return 0. | |
1293 | ||
21578747 JG |
1294 | Wed Jan 12 01:44:25 1994 John Gilmore ([email protected]) |
1295 | ||
1296 | * symtab.h (struct symbol, general_symbol_info, minimal_symbol, | |
1297 | partial_symbol): Shrink the storage sizes of symbols, by making | |
1298 | enums into 1-byte bitfields when compiled __GNUC__, moving all the | |
1299 | enums and small ints to the end of each struct to improve | |
1300 | alignment, and switching the section number from int to unsigned | |
1301 | short. | |
1302 | ||
e0ea0fbd JG |
1303 | Wed Jan 12 00:16:26 1994 John Gilmore ([email protected]) |
1304 | ||
1305 | * symtab.c (find_addr_symbol): New routine that will find the nearest | |
1306 | symbol associated with an address. It does so by exhaustive | |
1307 | search of the symtabs, so it's slow but complete. | |
1308 | ||
011d4ed9 JG |
1309 | Tue Jan 11 23:57:30 1994 John Gilmore ([email protected]) |
1310 | ||
1311 | * coffread.c (read_coff_symtab): Set PC bounds of _globals_ symtab | |
1312 | to [0,0] rather than [0, end of first source file]. This avoids | |
1313 | problems with other parts of GDB looking for linetables in the | |
1314 | _globals_ symtab. Eliminate variables num_object_files and | |
1315 | first_object_file_end. | |
1316 | ||
eb5b74ca JG |
1317 | Tue Jan 11 00:53:46 1994 John Gilmore ([email protected]) |
1318 | ||
1319 | * a29k-tdep.c (init_frame_info): Cast null arg to examine_tag. | |
1320 | (pop_frame): Restore PC2 and LR0 from dummy frames. | |
1321 | (push_dummy_frame): Save PC2 and LR0 into dummy frames. | |
1322 | (setup_arbitrary_frame): Handle 3 args and set up real frames. | |
1323 | * config/a29k/tm-a29k.h (FRAME_NUM_ARGS): Update comments. | |
1324 | (DUMMY_FRAME_RSIZE): Add 2 longwords for PC2 and LR0. | |
1325 | (SETUP_ARBITRARY_FRAME): Define. | |
1326 | ||
4d69cf57 JK |
1327 | Tue Jan 11 06:59:10 1994 Jim Kingdon ([email protected]) |
1328 | ||
1329 | * infrun.c, config/mips/tm-irix5.h: Remove #if 0'd AT_FUNCTION_START. | |
1330 | ||
6a69975f ILT |
1331 | Tue Jan 11 14:27:03 1994 Ian Lance Taylor ([email protected]) |
1332 | ||
1333 | * remote-udi.c (udi_resume): Correct prototype. | |
1334 | ||
c598654a JL |
1335 | Tue Jan 11 11:10:30 1994 Jeffrey A. Law ([email protected]) |
1336 | ||
1337 | * config/pa/tm-hppa.h (FRAME_FIND_SAVED_REGS): Call | |
1338 | hppa_frame_find_saved_regs. | |
1339 | * hppa-tdep.c (dig_fp_from_stack): Delete function. | |
1340 | (prologue_inst_adjust_sp): New function. | |
1341 | (is_branch, inst_saves_gr, inst_saves_fr): New functions. | |
1342 | (skip_prologue): Completely rewrite to use unwind information. | |
1343 | (hppa_frame_find_saved_regs): Likewise. | |
1344 | ||
6397809b JK |
1345 | Tue Jan 11 06:59:10 1994 Jim Kingdon ([email protected]) |
1346 | ||
f3fe8934 JK |
1347 | * remote-mips.c (mips_wait): Use new function mips_signal_from_protocol |
1348 | to convert a signal number with appropriate bounds checking. | |
1349 | ||
6397809b JK |
1350 | * remote-mips.c (mips_wait): Fix typos (0x177 -> 0177, 0x377 -> 0377). |
1351 | ||
c369b6a3 JG |
1352 | Tue Jan 11 00:53:46 1994 John Gilmore ([email protected]) |
1353 | ||
a31f4b90 JG |
1354 | * stack.c (frame_info): If FRAME_FIND_SAVED_REGS isn't defined, |
1355 | print a newline to end the display anyway. | |
1356 | ||
c6d8db40 JG |
1357 | * sparc-tdep.c (sparc_pop_frame): Pop the fsr and csr (float and |
1358 | coprocessor status regs) when popping a frame. This fixes | |
1359 | float exceptions that occur after calling inferior functions. | |
1360 | ||
c369b6a3 JG |
1361 | * sparc-nat.c (fetch_inferior_registers, store_inferior_registers): |
1362 | Read and write the fsr (float status register) to/from the child | |
c6d8db40 JG |
1363 | process along with the float regs. Remove Peter Schauer's change |
1364 | of May 24 '93, which has higher overhead and doesn't solve the | |
1365 | real problem (which was that FSR wasn't being set). | |
c369b6a3 | 1366 | |
7b2bcbf5 JG |
1367 | Mon Jan 10 23:16:42 1994 John Gilmore ([email protected]) |
1368 | ||
1369 | * a29k-tdep.c (examine_prologue): Don't worry if the ASGEQ | |
1370 | stack overflow check isn't right after the register stack | |
1371 | adjustment instruction. Metaware R2.3u compiler moves other | |
1372 | things in front of it. This fix isn't perfect but is what's | |
1373 | running. | |
1374 | ||
6aaa61de JK |
1375 | Mon Jan 10 20:08:23 1994 Jim Kingdon ([email protected]) |
1376 | ||
85b8aa88 JK |
1377 | * c-valprint.c (c_val_print): Treat TYPE_CODE_RANGE like TYPE_CODE_INT. |
1378 | ||
6aaa61de JK |
1379 | * config/alpha/alpha-netware.mt: Rename to alpha-nw.mt for 14 |
1380 | character filenames. | |
1381 | * configure.in: Change accordingly. | |
1382 | ||
ef118278 TL |
1383 | Mon Jan 10 15:48:36 1994 Tom Lord ([email protected]) |
1384 | ||
1385 | * m68k-stub.c, sparc-stub.c: removed spurious introduction of | |
1386 | _filtered io routines from these two files. | |
1387 | ||
9d51b3c5 PS |
1388 | Fri Jan 7 12:42:45 1994 Peter Schauer ([email protected]) |
1389 | ||
1390 | * config/i386/tm-i386v.h, config/m68k/tm-m68k.h, config/mips/tm-mips.h, | |
1391 | config/vax/tm-vax.h (CALL_DUMMY_BREAKPOINT_OFFSET): Define. | |
1392 | * mdebugread.c (parse_symbol): Handle enum sh.type produced by | |
1393 | DEC c89. | |
1394 | * mdebugread.c (add_line): Handle zero linenos produced by DEC c89. | |
1395 | ||
11ebf939 JK |
1396 | Fri Jan 7 12:55:25 1994 Jim Kingdon ([email protected]) |
1397 | ||
17d059d4 JK |
1398 | * utils.c (print_sys_errmsg): Call gdb_flush (gdb_stdout) before |
1399 | printing to gdb_stderr. | |
1400 | ||
1401 | * remote-udi.c (udi_kill): Don't close the connection, just set | |
1402 | inferior_pid to zero. | |
1403 | (udi_mourn): Call remove_breakpoints. | |
1404 | ||
1405 | * remote-udi.c: Remove obsolete need_artificial_traps comment. | |
1406 | ||
11ebf939 JK |
1407 | * i386b-nat.c (sregmap): If sEAX, etc., not defined, use tEAX, etc. |
1408 | ||
fcbc95a7 JK |
1409 | Thu Jan 6 07:17:53 1994 Jim Kingdon ([email protected]) |
1410 | ||
d8a66e60 JK |
1411 | * symtab.c (lookup_symbol): Don't try adding .c to the name. |
1412 | ||
e3a7e9d5 JK |
1413 | * remote-bug.c: At the start of each section, reset srec_frame |
1414 | back to 160. | |
1415 | ||
fcbc95a7 JK |
1416 | * target.h: Add TARGET_WAITKIND_LOADED and TARGET_WAITKIND_SPURIOUS. |
1417 | * target.c (store_waitstatus): Add CHILD_SPECIAL_WAITSTATUS hook. | |
1418 | * infrun.c (wait_for_inferior): Replace SIGTRAP_STOP_AFTER_LOAD with | |
1419 | code which looks for those two waitkinds. Use switch statement. | |
1420 | * config/rs6000/tm-rs6000.h: Replace SIGTRAP_STOP_AFTER_LOAD with | |
1421 | CHILD_SPECIAL_WAITSTATUS. | |
1422 | ||
1423 | * procfs.c (procfs_wait): Fix argument name to match 4 Jan changes. | |
1424 | * Move target_signal_from_host, target_signal_to_host, and | |
1425 | store_waitstatus from inftarg.c to target.c. procfs needs them. | |
1426 | * target.c: Include "wait.h" and <signal.h>. | |
1427 | * target.h, infrun.c (proceed), proceed callers: Pass new code | |
1428 | TARGET_SIGNAL_DEFAULT instead of -1. This avoids problems with | |
1429 | enums being treated as unsigned and is cleaner. | |
1430 | * infrun.c (signals_info): Don't print TARGET_SIGNAL_DEFAULT or | |
1431 | TARGET_SIGNAL_0. | |
1432 | * infcmd.c (signal_command), infrun.c (signals_info): | |
1433 | Don't allow user to specify numeric equivalent of | |
1434 | TARGET_SIGNAL_DEFAULT. | |
1435 | ||
7f85a716 SG |
1436 | Tue Jan 4 15:34:36 1994 Stu Grossman ([email protected]) |
1437 | ||
1438 | * config/alpha/alpha-netware.mt: New target support for Alpha | |
1439 | running Netware. | |
1440 | * configure.in: Add alpha-*-netware* target. | |
1441 | ||
5efb3899 SS |
1442 | Tue Jan 4 14:51:35 1994 Stan Shebs ([email protected]) |
1443 | ||
1444 | * remote-mips.c (mips_wait): Fix ref to TARGET_WAITKIND_STOPPED. | |
1445 | ||
67ac9759 JK |
1446 | Tue Jan 4 09:47:14 1994 Jim Kingdon ([email protected]) |
1447 | ||
1448 | * target.h: Add enum target_waitkind, enum target_signal, and | |
1449 | struct target_waitstatus. Change status argument to target_wait to | |
1450 | be struct target_waitstatus * instead of int *. | |
1451 | * target.h, infrun.c, all targets: Change type of signal arguments | |
1452 | to resume(), proceed(), and target_resume() from int to enum | |
1453 | target_signal. | |
1454 | * All targets (*_wait, *_resume): Change accordingly. | |
1455 | * infcmd.c (program_info, signal_command), throughout infrun.c, | |
1456 | * fork-child.c, solib.c, hppa-tdep.c, osfsolib.c: Use this stuff. | |
1457 | * convex-xdep.c, convex-tdep.c: Add FIXME's (getting the Convex | |
1458 | signal code stuff right with the new signals would be non-trivial). | |
1459 | * inferior.h (stop_signal): Make it enum target_signal not int. | |
1460 | * target.c, target.h (target_signal_to_string, target_signal_to_name, | |
1461 | target_signal_from_name): New functions. | |
1462 | * inftarg.c, target.h (target_signal_to_host, target_signal_from_host, | |
1463 | store_waitstatus): New functions. | |
1464 | * procfs.c (procfs_notice_signals): Use them. | |
1465 | * i960-tdep.c (i960_fault_to_signal): New function, to replace | |
1466 | print_fault. | |
1467 | * config/i960/tm-i960.h: Don't define PRINT_RANDOM_SIGNAL. | |
1468 | ||
1469 | * objfiles.c (build_objfile_section_table): Don't abort() if | |
1470 | objfile->sections is already set. | |
1471 | ||
1472 | * objfiles.c (add_to_objfile_sections): Check SEC_ALLOC not SEC_LOAD | |
1473 | to match recent change to exec.c. | |
1474 | ||
1475 | * Version 4.11.3. | |
1476 | ||
1477 | * main.c (print_gdb_version): Change year to 1994. | |
1478 | ||
1479 | * ChangeLog, ChangeLog-93: Split ChangeLog at 1994. | |
1480 | * Makefile.in (NONSRC): Add ChangeLog-93. | |
1481 | ||
b35885f2 JK |
1482 | Mon Jan 3 11:57:29 1994 Jim Kingdon ([email protected]) |
1483 | ||
4b404661 JK |
1484 | * stabsread.c (read_type): Allow defining several type numbers |
1485 | at once (e.g. "(1,2)=(3,4)="...). | |
1486 | ||
eaba7fae JK |
1487 | * stabsread.c (read_enum_type): Use TARGET_INT_BIT not sizeof (int). |
1488 | ||
b35885f2 JK |
1489 | * breakpoint.c (frame_in_dummy): Check PC as well as frame. |
1490 | ||
ae5c71d6 PS |
1491 | Mon Jan 3 02:47:03 1994 Peter Schauer ([email protected]) |
1492 | ||
1493 | * mdebugread.c (psymtab_to_symtab_1): Only pass N_STAB symbols | |
1494 | to process_one_symbol. | |
1495 | * symtab.c (find_pc_psymbol): Search global_psymbols as well to | |
1496 | avoid caching a bad endaddr in find_pc_partial_function. | |
1497 | ||
d568b76a JK |
1498 | Sun Jan 2 21:41:17 1994 Jim Kingdon ([email protected]) |
1499 | ||
1500 | * config/m68k/tm-sun3.h: Don't define BELIEVE_PCC_PROMOTION. | |
1501 | ||
9ddb33a8 PS |
1502 | Sat Jan 1 04:35:23 1994 Peter Schauer ([email protected]) |
1503 | ||
1504 | * infrun.c (wait_for_inferior): Do not step or step resume past | |
1505 | the end of a one-line function we just stepped into. | |
1506 | ||
67ac9759 | 1507 | For older changes see ChangeLog-93 |
bd5635a1 RP |
1508 | \f |
1509 | Local Variables: | |
1510 | mode: indented-text | |
1511 | left-margin: 8 | |
1512 | fill-column: 74 | |
1513 | version-control: never | |
1514 | End: |