Commit | Line | Data |
---|---|---|
d9f12910 PB |
1 | Wed Nov 29 13:35:18 1995 Per Bothner <bothner@kalessin.cygnus.com> |
2 | ||
dcdba37e PB |
3 | * scm-valprint.c (scm_isymnames): Remove "#@" prefix. |
4 | (scm_scmval_print): Do not print "#@" prefix. | |
5 | ||
d1f4065e PB |
6 | * gdbtypes.h (enum type_code): Added TYPE_CODE_TYPEDEF. |
7 | (check_typedef): New prototype. | |
8 | (CHECK_TYPEDEF): New macro. | |
9 | (TYPE_DUMMY_RANGE): Removed. | |
10 | * gdbtypes.c (get_discrete_bounds): Fix paren error; make more robust. | |
11 | (create_array_type): Don't force_to_range_type; users of the | |
12 | array are responsible for handling non-range index types. | |
13 | (create_set_type): Likewise. | |
14 | (force_to_range_type): Removed. | |
15 | (check_typedef): New function handles stub types and typedefs. | |
16 | (check_stub_type): Just call check_typedef. (To be removed.) | |
17 | (recursive_dump_type): Handle TYPE_CODE_TYPEDEF. | |
18 | * ch-lang.c (type_lower_upper): Use get_discrete_bounds. | |
19 | (evaluate_subexp_chill): Handle string repetition. | |
20 | Re-arrange to handle EVAL_AVOID_SIDE_EFFECTS better. | |
21 | * ch-typeprint.c (chill_type_print_base): Handle TYPE_CODE_TYPEDEF. | |
22 | Pass show=0 in recursive calls various places. | |
23 | (case TYPE_CODE_ARRAY): Don't require index type to have | |
24 | TYPE_CODE_RANGE. | |
25 | (case TYPE_CODE_RANGE): Don't need to support TYPE_DUMMY_RANGE. | |
26 | * gdbtypes.c, ch-lang.c, ch-typeprint.c (numerous places): | |
27 | Add check_typedef/CHECK_TYPEDEF as needed. | |
28 | ||
5e548861 PB |
29 | * ch-exp.y: Replaced by ... |
30 | * ch-exp.c: New file. Use recursive-descent. | |
31 | Recognize labelled array tuples and powerset ranges. | |
32 | * Makefile.in: Update for no longer using yacc for ch-exp. | |
33 | ||
34 | * c-lang.c: Make various functions non-static. | |
35 | * c-lang.h: Add bunches of prototypes. | |
36 | * cp-valprint.c (cp_print_value_fields): Also take address. | |
37 | (cp_print_value): Likewise. Use baselcass_offset. | |
38 | * stabsread.c (current_symbol): New static variable. | |
39 | (type_synonym_name): Remove. | |
40 | (read_type): If copying, make copy be a TYPE_CODE_TYPEDEF. | |
41 | (read_array_type): Don't need to handle undefined element type here. | |
42 | (cleanup_undefined_types): Ditto. | |
43 | (read_range_type): Look for Chill ranges. | |
44 | * valops.c (value_assign): Fix case lval_internalvar - don't try | |
45 | to assign into old value (which might be too small!). | |
46 | (value_coerce_array): No longer need special VALUE_REPEATED handling. | |
47 | (value_arg_coerce): Cleaner array->pointer decay mechanism. | |
48 | (search_struct_field): Use baseclass_offset rather than | |
49 | baseclass_addr. | |
50 | (value_slice): Use get_discrete_bounds. | |
51 | * value.h (COERCE_VARYING_ARRAY): Take type argumnt as well. | |
52 | * values.c (baseclass_offset): Change parameter interface. | |
53 | (baseclass_addr): Removed. | |
54 | * c-typeprint.c, c-valprint.c, ch-valprint.c, values.c, valops.c: | |
55 | Add check_typedef/CHECK_TYPEDEF as needed. | |
56 | ||
940d5967 PB |
57 | * alpha-tdep.c, c-exp.y, h8500-tdep.c, f-exp.y, f-valprint.c, |
58 | findvar.c, hppa-tdep.c, infcmd.c, language.c, printcmd.c, | |
dcdba37e | 59 | rs6000-tdep.c, symmisc.c, symtab.c, mdebugread.c: |
940d5967 | 60 | Add check_typedef/CHECK_TYPEDEF as needed. |
bcbf388e PB |
61 | |
62 | * f-typeprint.c, valarith.c, valprint.c, typeprint.c, eval.c: | |
63 | Add check_typedef/CHECK_TYPEDEF as needed. | |
64 | * f-typeprint.c: Various cleaning up. | |
65 | * valarith.c (value_subscript): Also subscript bitstrings (for Chill). | |
66 | * typeprint.c (print_type_scalar): Also support TYPE_CODE_RANGE. | |
67 | * eval.c (evaluate_subexp_standard case OP_ARRAY): Implement | |
68 | support for labelled array tuples and ranges in powerset tuples. | |
69 | (init_array_element): New function. | |
940d5967 | 70 | |
f2ed3a80 PB |
71 | * top.c (command_line_input): Only strip out an initial #-comment. |
72 | Looking for internal comments is language-specific (breaks Scheme). | |
73 | ||
badefd28 PB |
74 | * expression.h (enum exp_opcode): Add BINOP_RANGE. |
75 | * expprint.c (dump_expression): Support BINOP_RANGE. | |
76 | * eval.c (evaluate_subexp_standard): Handle BINOP_RANGE (as error). | |
77 | (case MULTI_SUBSCRIPT): Fix broken f77 value->int ad hoc conversion. | |
78 | * ch-lang.c (chill_op_print_tab): Support BINOP_RANGE. | |
79 | (evaluate_subexp_chill): Error on BINOP_COMMA. | |
80 | ||
d9f12910 PB |
81 | * Makefile.in: Clean up so doc stuff stays in doc sub-dir. |
82 | ||
b9ab37f0 MM |
83 | Wed Nov 29 16:39:50 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
84 | ||
85 | * monitor.c (monitor_debug): New function to print monitor debug | |
86 | output in printable fashion. | |
87 | (monitor_printf{,_noecho}): Call monitor_debug instead of | |
88 | fputs_unfiltered. | |
89 | ||
90 | * srec.c (load_srec): When printing srec debug information, do not | |
91 | print the carriage return directly, instead print \\r followed by | |
92 | a newline. | |
93 | ||
45886199 DE |
94 | Tue Nov 28 15:25:28 1995 Doug Evans <dje@canuck.cygnus.com> |
95 | ||
9c0bc1da DE |
96 | * Makefile.in (target_subdir): Define. |
97 | (CC_FOR_TARGET, CXX_FOR_TARGET): Use it to find target libraries. | |
98 | * configure.in (X_CFLAGS): Fix typo. | |
99 | (target_subdir): Set to "${target_alias}/" if cross. | |
bbc6c9c1 | 100 | * configure: Regenerated. |
9c0bc1da | 101 | |
45886199 DE |
102 | * dbxread.c (dbx_symfile_read): Set block_address_function_relative |
103 | for `pe' format files. | |
104 | ||
bfe8f516 FF |
105 | Tue Nov 28 11:17:47 1995 Fred Fish <fnf@cygnus.com> |
106 | ||
107 | * magic.h: Renamed to gmagic.h to avoid <magic.h> conflict. | |
108 | * magic.c: Renamed to gmagic.c in sympathy. | |
109 | * eval.c, gmagic.c, config/tm-magic.h: | |
110 | Include "gmagic.h" rather than "magic.h". | |
111 | ||
9b041f69 PS |
112 | Sat Nov 25 02:56:38 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
113 | ||
114 | * mdebugread.c (handle_psymbol_enumerators, parse_symbol): | |
115 | Recognize enums from alpha cc -migrate. | |
116 | (upgrade_type): Pass correct fd to parse_symbol when parsing | |
117 | the index type of an array. | |
118 | (parse_procedure, parse_lines, psymtab_to_symtab_1): Handle | |
119 | unsorted procedure descriptors from Irix 5.x and Alpha OSF/1-3.x | |
120 | shared libraries. Use CORE_ADDR instead of `unsigned long' in | |
121 | procedure descriptor address computations. | |
122 | ||
123 | * symtab.c (decode_line_1): Prevent accidental strchr match | |
124 | of a null character with the terminating null character of | |
125 | gdb_completer_quote_characters. | |
126 | (cplusplus_hint): Make sure that only a single quote is printed | |
127 | in the hint message. | |
128 | ||
05ee0201 JL |
129 | Fri Nov 24 16:17:01 1995 Jeffrey A Law (law@cygnus.com) |
130 | ||
131 | * top.c (recurse_read_control_structure): Don't make cleanups | |
132 | here. Callers handle that correctly. | |
133 | ||
255764a9 FF |
134 | Tue Nov 21 15:16:34 1995 Fred Fish <fnf@rtl.cygnus.com> |
135 | ||
136 | * config/m68k/xm-hp300hpux.h: Define MMAP_BASE_ADDRESS and MMAP_INCREMENT. | |
137 | Also force HAVE_MMAP to be defined since autoconf is currently broken | |
138 | for detecting a working mmap under hpux. | |
139 | * config/pa/xm-hppah.h (MMAP_BASE_ADDRESS): Tweak MMAP_BASE_ADDRESS | |
140 | to a better value suggested by Jeffrey A Law (law@cygnus.com). | |
141 | ||
9c386481 FF |
142 | Tue Nov 21 08:48:58 1995 Fred Fish <fnf@cygnus.com> |
143 | ||
144 | * config/pa/xm-hppah.h: Define MMAP_BASE_ADDRESS and MMAP_INCREMENT. | |
145 | Also force HAVE_MMAP to be defined since autoconf is currently broken | |
146 | for detecting a working mmap under hpux. | |
147 | * objfiles.c (map_to_address): Have gdb print a warning when it | |
148 | is compiled with HAVE_MMAP but without both MMAP_BASE_ADDRESS and | |
149 | MMAP_INCREMENT defined (thus making it appear mmap doesn't work). | |
150 | ||
78570d35 SG |
151 | Mon Nov 20 14:13:53 1995 Stu Grossman (grossman@cygnus.com) |
152 | ||
153 | * infrun.c (wait_for_inferior): Add support for dynamic function | |
154 | trampolines. These are pieces of code between the caller and the | |
155 | callee that figure out the address of the callee's code at run | |
156 | time. Upon entry, we can't figure out the callee's address, so we | |
157 | set a breakpoint within the trampoline where the address will be | |
158 | known, and continue the target. Once we hit the breakpoint, we | |
159 | break at the callee's address and proceed as usual. | |
160 | start-sanitize-gm | |
161 | * config/tm-magic.h: Define DYNAMIC_TRAMPOLINE_NEXTPC. Turn off | |
162 | IN_SOLIB_CALL_TRAMPOLINE and IN_SOLIB_RETURN_TRAMPOLINE. | |
163 | end-sanitize-gm | |
164 | ||
e7b6403a FF |
165 | Mon Nov 20 11:12:34 1995 Fred Fish <fnf@cygnus.com> |
166 | ||
167 | * objfiles.c (allocate_objfile): Change warning message about mapped | |
168 | symbol tables so that it is obvious that they are not supported on | |
169 | this particular machine rather than implying they are not supported | |
170 | at all in this version of gdb. | |
171 | ||
f2ebb24d PS |
172 | Sun Nov 19 05:20:53 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
173 | ||
174 | * irix5-nat.c, osfsolib.c (solib_address): Return the name of the | |
175 | containing solib. | |
e701f521 PS |
176 | * stack.c (print_frame_info): Use minimal symbol only if |
177 | fi->pc is in a known section. | |
f2ebb24d | 178 | |
d0e0eca2 FF |
179 | Sat Nov 18 11:19:35 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> |
180 | ||
181 | * solib.c (solib_address): Return the name of the containing solib. | |
182 | * solib.h (PC_SOLIB): New macro; define using solib_address. | |
183 | * stack.c (print_frame_info) [PC_SOLIB]: If no function name, try | |
184 | PC_SOLIB on the PC value. | |
185 | ||
186 | Sat Nov 18 04:09:31 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) | |
187 | ||
188 | * annotate.c (annotate_source, annotate_frame_begin): Issue | |
189 | `0x' prefix for the pc value, to remain consistent with previous | |
190 | GDB versions. | |
191 | ||
192 | * blockframe.c (find_pc_partial_function), config/pa/tm-hppa.h: | |
193 | Remove Sun shared library transfer hack and | |
194 | INHIBIT_SUNSOLIB_TRANSFER_TABLE_HACK, it is obsoleted by the | |
195 | mst_solib_trampoline minimal symbols. | |
196 | ||
197 | * blockframe.c (inside_main_func): Check main_func_*pc against | |
198 | INVALID_ENTRY_*PC, not zero. | |
199 | * symfile.c (init_entry_point_info): Initialize ei.*pc with | |
200 | INVALID_ENTRY_*PC. | |
201 | * mipsread.c (mipscoff_symfile_read): If the entry_file bounds | |
202 | are still unknown after processing the partial symbols, then try | |
203 | to set them from the minimal symbols. | |
204 | ||
205 | * infcmd.c (registers_info): Error out if selected_frame is NULL. | |
206 | * stack.c (return_command): Select new current frame silently if | |
207 | not interactive. | |
208 | ||
209 | * mipsread.c (read_alphacoff_dynamic_symtab): Ignore additional | |
210 | DT_MIPS_LOCAL_GOTNO and DT_MIPS_GOTSYM entries. | |
211 | ||
212 | * irix5-nat.c (solib_create_inferior_hook): Call solib_add only | |
213 | if auto_solib_add_at_startup is nonzero. | |
214 | (_initialize_solib): Add "set auto-solib-add" command. | |
215 | * osfsolib.c (solib_create_inferior_hook): Call solib_add only | |
216 | if auto_solib_add_at_startup is nonzero. | |
217 | (_initialize_solib): Add "set auto-solib-add" command. | |
218 | ||
21ef3a29 SS |
219 | Wed Nov 15 17:12:04 1995 Stan Shebs <shebs@andros.cygnus.com> |
220 | ||
221 | * utils.c: Don't include sys/ioctl.h etc if MPW is host. | |
222 | ||
d7cde714 DE |
223 | Tue Nov 14 17:16:46 1995 Doug Evans <dje@canuck.cygnus.com> |
224 | ||
225 | * config/arm/tm-arm.h (ADDITIONAL_REGISTER_NAMES): Fix r5. | |
226 | (FRAME_SAVED_PC): Minor clean up. | |
227 | ||
5c8ba017 SG |
228 | Tue Nov 14 14:51:05 1995 Stu Grossman (grossman@cygnus.com) |
229 | ||
230 | * monitor.c (monitor_load_srec monitor_make_srec): Move all | |
231 | S-record download code into srec.c. | |
232 | * srec.c srec.h: New files. Contain S-record loading routines | |
233 | formerly in monitor.c. | |
234 | * serial.c serial.h: New routine just like fprintf, but uses | |
235 | serial_t instead of FILE *. | |
236 | * sh-tdep.c (frame_find_saved_regs init_extra_frame_info): | |
237 | Don't add four to saved pc (makes things match manual). Also, fix | |
238 | bug where we didn't get pc from stack frame correctly. | |
239 | * config/sh/tm-sh.h (SAVED_PC_AFTER_CALL): Don't add four to | |
240 | saved pc. Real hardware does this for you. | |
241 | * sh3-rom.c (sh3_load): New routine. Sets up for download then | |
242 | calls generic S-record loader. | |
243 | * config/h8300/h8300.mt, config/h8500/h8500.mt, | |
244 | config/m68k/monitor.mt, config/pa/hppapro.mt, config/sh/sh.mt: | |
245 | Add srec.o to TDEPFILES. | |
246 | ||
855bfb53 MM |
247 | Tue Nov 14 15:57:36 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
248 | ||
d7cde714 | 249 | * ppcbug-rom.c: New file to support the Motorola PPCBUG monitor |
855bfb53 MM |
250 | for PowerPC's. |
251 | ||
252 | * config/powerpc/ppc{,le}-{eabi,sim}.mt (TDEPFILES): Include | |
d7cde714 | 253 | ppcbug-rom.o, monitor.o, and srec.o |
855bfb53 MM |
254 | |
255 | * config/i386/linux.mt (XDEPFILES): Include ser-tcp.o. | |
256 | ||
3306c363 JL |
257 | Mon Nov 13 13:12:46 1995 Jeffrey A Law (law@cygnus.com) |
258 | ||
259 | * partial-stab.h: Remove GDB_TARGET_IS_HPPA kludge. | |
260 | ||
261 | Fri Nov 10 13:08:54 1995 Jeff Law (law@kahlua.cs.utah.edu) | |
262 | ||
263 | * terminal.h (HAVE_SGTTY): Fix typo. | |
264 | ||
3c0bf315 MM |
265 | Thu Nov 9 17:34:01 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
266 | ||
267 | * configure.in (gdb_target): Build in the simulator for all | |
268 | PowerPC eabi targets, not just eabisim, providing | |
269 | --enable-sim-powerpc is used, or the host compiler is GCC. | |
270 | ||
96336a43 RJ |
271 | Thu Nov 9 14:04:05 1995 Raymond Jou (rjou@mexican.cygnus.com) |
272 | ||
273 | * mpw-config.in: Add variable with names of SIOW libraries. | |
274 | * mpw-make.sed: Add an action to build SIOWgdb. | |
275 | ||
653b07da SS |
276 | Wed Nov 8 19:25:22 1995 Stan Shebs <shebs@andros.cygnus.com> |
277 | ||
278 | * mpw-make.sed: Edit @ENABLE_CFLAGS@ out, mpw-configure can | |
279 | add back in if necessary. | |
280 | ||
549cd3ba JSC |
281 | Wed Nov 8 15:59:52 1995 James G. Smith <jsmith@pasanda.cygnus.co.uk> |
282 | ||
283 | * config/mips/vr4300.mt: Added simulator to default VR4300 build. | |
284 | ||
afb69487 SG |
285 | Tue Nov 7 16:02:25 1995 Stu Grossman (grossman@cygnus.com) |
286 | ||
287 | * remote-mips.c (mips_initialize): Fix brain damage found by | |
288 | Jamie. Basically had case statement in the wrong place... | |
9cacb47b SG |
289 | * (mips_load): Remove unnecessary `db tty0' command. It's all |
290 | handled by mips_initialize now. | |
afb69487 | 291 | |
ccb98a5a RJ |
292 | Tue Nov 7 12:59:14 1995 Raymond Jou <rjou@mexican.cygnus.com> |
293 | ||
294 | * mac-gdb.r: Added #ifdef Macgdb. | |
295 | ||
8b07d12c JSC |
296 | Tue Nov 7 14:59:51 1995 James G. Smith <jsmith@pasanda.cygnus.co.uk> |
297 | ||
298 | * remote-mips.c (mips_initialize): Updated to talk to VR4300 RISQ | |
299 | monitor board. | |
300 | ||
25ba9e8f JSC |
301 | Mon Nov 6 11:44:11 1995 James G. Smith <jsmith@pasanda.cygnus.co.uk> |
302 | ||
3ce59aa6 JSC |
303 | * config/mips/{tm-vr4300.h tm-vr4300el.h} (TARGET_MONITOR_PROMPT): |
304 | Change into real strings. | |
305 | ||
25ba9e8f JSC |
306 | * remote-sim.c (gdbsim_open): Moved sim_open() call to after |
307 | callback initialisation. | |
308 | ||
da3d57e3 JM |
309 | Sun Nov 5 00:07:52 1995 Jason Molenda (crash@phydeaux.cygnus.com) |
310 | ||
311 | * configure.in (AC_CHECK_HEADERS): add stddef.h. | |
312 | ||
1738bcd3 FF |
313 | Fri Nov 3 12:30:43 1995 Fred Fish <fnf@cygnus.com> |
314 | ||
315 | * Makefile.in (COMMON_OBS): Use corefile.o rather than core.o | |
316 | * core.c: Rename to corefile.c. | |
317 | * config/pyr/tm-pyr.h, umax-xdep.c, sun386-nat.c, pyr-xdep.c, | |
2bf4561a | 318 | Makefile.in (SFILES), gould-xdep.c, coredep.c, armtdep.c, |
1738bcd3 FF |
319 | arm-xdep.c, altos-xdep.c: Change core.c references to corefile.c. |
320 | ||
321 | From Graham Stoney <greyham@research.canon.oz.au>. | |
322 | * Makefile.in (remote-array.o): Add rule to build. | |
323 | (ALLDEPFILES): Add remote-array.c | |
324 | * remote-array.c (baud_rate): Remove unnecessary declaration. | |
325 | (baudrate): Remove. | |
326 | (array_files_info): Print global baud_rate not baudrate. | |
327 | ||
188c635f SG |
328 | Sat Nov 4 10:21:58 1995 Stu Grossman (grossman@cygnus.com) |
329 | ||
330 | * Makefile.in (INTERNAL_CFLAGS): Add ENABLE_CFLAGS. | |
331 | * fork-child.c (fork_inferior): Add call to | |
332 | TARGET_CREATE_INFERIOR_HOOK to allow target specific code to get | |
333 | control just before the new process executes it's first instruction. | |
334 | * remote-mips.c (mips_initialize): Cleanup a bit. Don't try to | |
335 | receive a packet at first. This speeds up initialization a lot. | |
336 | Use TARGET_MONITOR_PROMPT instead of "<IDT>". | |
337 | (common_breakpoint): Use rresponse instead of rerrflg to inspect | |
338 | error code. | |
339 | * symfile.c (syms_from_objfile reread_symbols): Call | |
340 | TARGET_SYMFILE_POSTREAD to allow target specific code to get | |
341 | control after reading new symbols. | |
342 | * target.h: New macros TARGET_SYMFILE_POSTREAD, and | |
343 | TARGET_CREATE_INFERIOR_HOOK. See above for descriptions. | |
344 | * config/mips/{irix5.mh nm-irix5.h}: Delete nm-irix5.h. Make | |
345 | NAT_FILE point directly at ../nm-sysv4.h. | |
346 | * config/mips/{mipsm3.mh nm-m3.h}: Delete nm-m3.h. Make | |
347 | NAT_FILE point directly at ../nm-m3.h. | |
348 | * config/mips/{mipsv4.mh nm-sysv4.h}: Delete nm-sysv4.h. Make | |
349 | NAT_FILE point directly at ../nm-sysv4.h. | |
350 | * config/mips/nm-mips.h: Improve comment at top of file. | |
351 | * config/mips/tm-mips.h (TARGET_MONITOR_PROMPT): Change | |
352 | definition into a proper string. | |
353 | start-sanitize-gm | |
354 | * configure configure.in: Add support for --enable-gm. | |
355 | (mips*-*-magic*): Change target from magic to idt. | |
356 | * eval.c expprint.c expression.h parse.c remote-mips.c utils.c: | |
357 | Change GENERAL_MAGIC_HACKS to GENERAL_MAGIC. | |
358 | * magic.c magic.h: Update files from GM. | |
359 | * config/mips/magic.mt: Delete. No longer necessary now that we | |
360 | use --enable mechanism. | |
361 | * config/mips/tm-idt.h: Add GM stuff needed for remote GM box. | |
362 | * config/mips/tm-irix5.h: Add GM stuff needed for native Irix box. | |
363 | * config/mips/tm-magic.h: Move up to config/tm-magic.h. Move all | |
364 | platform specific stuff into tm-irix.h and tm-idt.h. Add defs for | |
365 | TARGET_SYMFILE_POSTREAD and TARGET_CREATE_INFERIOR_HOOK. | |
366 | end-sanitize-gm | |
367 | ||
183e1f0d FF |
368 | Wed Nov 1 20:18:08 1995 Fred Fish <fnf@cygnus.com> |
369 | ||
370 | * config/i386/tm-i386.h: New file containing generic i*86 target | |
371 | definitions. | |
372 | (TARGET_BYTE_ORDER): Moved here from tm-i386v.h. | |
373 | (IEEE_FLOAT): Moved here from tm-i386v.h. | |
374 | (START_INFERIOR_TRAPS_EXPECTED): Define default as 2. | |
375 | (FUNCTION_START_OFFSET): Moved here from tm-i386v.h. | |
376 | (SKIP_PROLOGUE): Moved here from tm-i386v.h. | |
377 | (SAVED_PC_AFTER_CALL): Moved here from tm-i386v.h. | |
378 | (INNER_THAN): Moved here from tm-i386v.h. | |
379 | (BREAKPOINT): Moved here from tm-i386v.h. | |
380 | (DECR_PC_AFTER_BREAK): Moved here from tm-i386v.h. | |
381 | (ABOUT_TO_RETURN): Moved here from tm-i386v.h. | |
382 | (REGISTER_SIZE): Moved here from tm-i386v.h. | |
383 | (NUM_REGS): Moved here from tm-i386v.h. | |
384 | (REGISTER_NAMES): Moved here from tm-i386v.h. | |
385 | (EXTRACT_STRUCT_VALUE_ADDRESS): Moved here from tm-i386v.h. | |
386 | (FP_REGNUM): Moved here from tm-i386v.h. | |
387 | (SP_REGNUM): Moved here from tm-i386v.h. | |
388 | (PC_REGNUM): Moved here from tm-i386v.h. | |
389 | (PS_REGNUM): Moved here from tm-i386v.h. | |
390 | (FP0_REGNUM): Moved here from tm-i386aix.h. | |
391 | (FPC_REGNUM): Moved here from tm-sun386.h. | |
392 | (REGISTER_BYTES): Moved here from tm-i386aix.h. | |
393 | (REGISTER_BYTE): Moved here from tm-i386aix.h. | |
394 | (REGISTER_RAW_SIZE): Moved here from tm-i386aix.h. | |
395 | (MAX_REGISTER_RAW_SIZE): Moved here from tm-i386aix.h. | |
396 | (REGISTER_VIRTUAL_SIZE): Moved here from tm-i386aix.h. | |
397 | (MAX_REGISTER_VIRTUAL_SIZE): Moved here from tm-i386aix.h. | |
398 | (EXTRACT_RETURN_VALUE): Moved here from tm-i386aix.h. | |
399 | (STORE_RETURN_VALUE): Moved here from tm-i386aix.h. | |
400 | (REGISTER_VIRTUAL_TYPE): Moved here from tm-i386v.h. | |
401 | (STORE_STRUCT_RETURN): Moved here from tm-i386v.h. | |
402 | (FRAME_CHAIN): Moved here from tm-i386v4.h. | |
403 | (FRAMELESS_FUNCTION_INVOCATION): Moved here from tm-i386v4.h. | |
404 | (FRAME_SAVED_PC): Moved here from tm-i386os9k.h | |
405 | (FRAME_ARGS_ADDRESS): Moved here from tm-i386v.h. | |
406 | (FRAME_LOCALS_ADDRESS): Moved here from tm-i386v.h. | |
407 | (FRAME_NUM_ARGS): Moved here from tm-i386sun.h. | |
408 | (FRAME_ARGS_SKIP): Moved here from tm-i386v.h. | |
409 | (FRAME_FIND_SAVED_REGS): Moved here from tm-i386v.h. | |
410 | (PUSH_DUMMY_FRAME): Moved here from tm-i386v.h. | |
411 | (POP_FRAME): Moved here from tm-i386v.h. | |
412 | (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET, | |
413 | CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Moved here from | |
414 | tm-i386v.h | |
415 | (print_387_control_word, print_387_status_word): Declare prototypes. | |
416 | (struct frame_info, struct frame_saved_regs): Forward decls for | |
417 | prototypes. | |
418 | (SP_ARG0): Moved here from tm-i386v.h. | |
419 | ||
420 | * config/i386/tm-i386v.h: | |
421 | (i386/tm-i386.h): Include. | |
422 | (TARGET_BYTE_ORDER): Remove. | |
423 | (IEEE_FLOAT): Remove. | |
424 | (START_INFERIOR_TRAPS_EXPECTED): Undef before redefine to 4. | |
425 | (FUNCTION_START_OFFSET): Remove. | |
426 | (SKIP_PROLOGUE): Remove. | |
427 | (i386_skip_prologue): Remove prototype. | |
428 | (SAVED_PC_AFTER_CALL): Remove. | |
429 | (INNER_THAN): Remove. | |
430 | (BREAKPOINT): Remove. | |
431 | (DECR_PC_AFTER_BREAK): Remove. | |
432 | (ABOUT_TO_RETURN): Remove. | |
433 | (REGISTER_SIZE): Remove. | |
434 | (NUM_REGS): Undef before redefine to 16 (no FP support). | |
435 | (REGISTER_NAMES): Undef before redefine. | |
436 | (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove. | |
437 | (REGISTER_BYTES): Undef before redefine. | |
438 | (REGISTER_BYTE): Undef before redefine. | |
439 | (REGISTER_RAW_SIZE): Undef before redefine. | |
440 | (REGISTER_VIRTUAL_SIZE): Undef before redefine. | |
441 | (MAX_REGISTER_RAW_SIZE): Undef before redefine. | |
442 | (MAX_REGISTER_VIRTUAL_SIZE): Undef before redefine. | |
443 | (REGISTER_VIRTUAL_TYPE): Undef before redefine. | |
444 | (STORE_STRUCT_RETURN): Undef before redefine. | |
445 | (EXTRACT_RETURN_VALUE): Undef before redefine. | |
446 | (STORE_RETURN_VALUE): Undef before redefine. | |
447 | (EXTRACT_STRUCT_VALUE_ADDRESS): Remove. | |
448 | (FRAME_CHAIN): Undef before redefine. | |
449 | (FRAMELESS_FUNCTION_INVOCATION): Undef before redefine. | |
450 | (FRAME_SAVED_PC): Undef before redefine. | |
451 | (FRAME_ARGS_ADDRESS): Remove. | |
452 | (FRAME_LOCALS_ADDRESS): Remove. | |
453 | (FRAME_NUM_ARGS): Undef before redefine. | |
454 | (FRAME_ARGS_SKIP): Remove. | |
455 | (FRAME_FIND_SAVED_REGS): Remove. | |
456 | (PUSH_DUMMY_FRAME): Remove. | |
457 | (POP_FRAME): Remove. | |
458 | (CALL_DUMMY): Remove. | |
459 | (CALL_DUMMY_LENGTH): Remove. | |
460 | (CALL_DUMMY_START_OFFSET): Remove. | |
461 | (CALL_DUMMY_BREAKPOINT_OFFSET): Remove | |
462 | (FIX_CALL_DUMMY): Remove. | |
463 | (print_387_control_word): Remove. | |
464 | (print_387_status_word): Remove. | |
465 | (SP_ARG0): Remove. | |
466 | ||
467 | * config/i386/tm-symmetry.h: | |
468 | (TM_SYMMETRY_H): Enclose file in test for define & define if needed. | |
469 | (START_INFERIOR_TRAPS_EXPECTED): Move to after inclusion of | |
470 | tm-i386v4.h or tm-i386v.h, #undef, and #define back to 2. | |
471 | (DECR_PC_AFTER_BREAK): Move to after inclusion of tm-i386v4.h | |
472 | or tm-i386v.h, #undef, and #define to 0. | |
473 | (MAX_REGISTER_RAW_SIZE): Remove. | |
474 | (FRAME_CHAIN): Remove. | |
475 | (FRAMELESS_FUNCTION_INVOCATION): Remove. | |
476 | (FRAME_SAVED_PC): Remove. | |
477 | (print_387_control_word, print_387_status_word): Remove prototypes. | |
478 | ||
479 | * config/i386/tm-ptx.h: | |
480 | (TM_PTX_H): Enclose file in test for define & define if needed. | |
481 | (START_INFERIOR_TRAPS_EXPECTED): Move to after inclusion of | |
482 | tm-i386v4.h or tm-i386v.h, #undef, and #define back to 2. | |
483 | (DECR_PC_AFTER_BREAK): Move to after inclusion of tm-i386v4.h | |
484 | or tm-i386v.h, #undef, and #define to 0. | |
485 | (SDB_REG_TO_REGNUM): Remove obsolete commented out define. | |
486 | (print_387_control_word, print_387_status_word): Remove prototypes. | |
487 | ||
488 | * config/i386/tm-linux.h: | |
489 | (TM_LINUX_H): Enclose file in test for define & define if needed. | |
490 | (i386/tm-i386.h): Include instead of tm-i386v.h. | |
491 | (START_INFERIOR_TRAPS_EXPECTED): Remove. | |
492 | ||
493 | * config/i386/tm-i386v4.h: | |
494 | (TM_I386V4_H): Enclose file in test for define & define if needed. | |
495 | (i386/tm-i386.h): Include instead of tm-i386v.h. | |
496 | (START_INFERIOR_TRAPS_EXPECTED): Remove. | |
497 | (FRAME_CHAIN): Moved to tm-i386.h. | |
498 | (FRAMELESS_FUNCTION_INVOCATION): Moved to tm-i386.h. | |
499 | (FRAME_SAVED_PC): Remove. | |
500 | (sigtramp_saved_pc): Define as i386v4_sigtramp_saved_pc. | |
501 | (FRAME_NUM_ARGS): Remove. | |
502 | ||
503 | * config/i386/tm-i386os9k.h: | |
504 | (TM_I386OS9K_H): Enclose file in test for define & define if needed. | |
505 | (i386/tm-i386.h): Include instead of tm-i386v.h. | |
506 | (START_INFERIOR_TRAPS_EXPECTED): Remove. | |
507 | (NUM_REGS): Undefine before redefining. | |
508 | (FRAME_CHAIN): Remove. | |
509 | (FRAMELESS_FUNCTION_INVOCATION): Remove. | |
510 | (FRAME_SAVED_PC): Move to tm-i386.h. | |
511 | ||
512 | * config/i386/tm-i386nw.h: | |
513 | (TM_I386NW_H): Enclose file in test for define & define if needed. | |
514 | (i386/tm-i386.h): Include instead of tm-i386v.h. | |
515 | (START_INFERIOR_TRAPS_EXPECTED): Remove. | |
516 | ||
517 | * config/i386/tm-i386bsd.h: | |
518 | (TM_I386BSD_H): Enclose file in test for define & define if needed. | |
519 | (i386/tm-i386.h): Include instead of tm-i386v.h. | |
520 | (START_INFERIOR_TRAPS_EXPECTED): Remove. | |
521 | (FRAMELESS_FUNCTION_INVOCATION): Remove. | |
522 | (FRAME_SAVED_PC): Remove. | |
523 | ||
524 | * config/i386/tm-i386aix.h: | |
525 | (i386/tm-i386.h): Include instead of tm-i386v.h. | |
526 | (START_INFERIOR_TRAPS_EXPECTED): Remove. | |
527 | (FP_REGNUM): Remove. | |
528 | (SP_REGNUM): Remove. | |
529 | (PC_REGNUM): Remove. | |
530 | (PS_REGNUM): Remove. | |
531 | (FP0_REGNUM): Moved to tm-i386.h. | |
532 | (NUM_REGS): Remove. | |
533 | (REGISTER_NAMES): Remove. | |
534 | (REGISTER_BYTES): Moved to tm-i386.h. | |
535 | (REGISTER_BYTE): Moved to tm-i386.h. | |
536 | (REGISTER_RAW_SIZE): Moved to tm-i386.h. | |
537 | (MAX_REGISTER_RAW_SIZE): Moved to tm-i386.h. | |
538 | (REGISTER_VIRTUAL_SIZE): Moved to tm-i386.h. | |
539 | (REGISTER_VIRTUAL_TYPE): Removed. | |
540 | (EXTRACT_RETURN_VALUE): Moved to tm-i386.h. | |
541 | (STORE_RETURN_VALUE): Moved to tm-i386.h. | |
542 | ||
543 | * config/i386/tm-sun386.h: | |
544 | (TM_SUN386_H): Enclose file in test for define & define if needed. | |
545 | (i386/tm-i386.h): Include. | |
546 | (TARGET_BYTE_ORDER): Remove. | |
547 | (FUNCTION_START_OFFSET): Remove. | |
548 | (SKIP_PROLOGUE): Remove. | |
549 | (SAVED_PC_AFTER_CALL): Remove. | |
550 | (INNER_THAN): Remove. | |
551 | (BREAKPOINT): Remove. | |
552 | (DECR_PC_AFTER_BREAK): Remove. | |
553 | (ABOUT_TO_RETURN): Remove. | |
554 | (REGISTER_SIZE): Remove. | |
555 | (NUM_REGS): Undefine before defining. | |
556 | (REGISTER_NAMES): Undefine before redefining. | |
557 | (REGISTER_BYTES): Undefine before redefining. | |
558 | (REGISTER_BYTE): Undefine before defining. | |
559 | (FP_REGNUM): Undefine before defining. | |
560 | (PC_REGNUM): Undefine before defining. | |
561 | (FPC_REGNUM): Undefine before defining. | |
562 | (REGISTER_RAW_SIZE): Undefine before defining. | |
563 | (FRAME_CHAIN): Undefine before defining. | |
564 | (FRAMELESS_FUNCTION_INVOCATION): Undefine before defining. | |
565 | (FRAME_SAVED_PC): Undefine before defining. | |
566 | (FRAME_NUM_ARGS): Moved to tm-i386.h. | |
567 | (MAX_REGISTER_RAW_SIZE): Remove. | |
568 | (MAX_REGISTER_VIRTUAL_SIZE): Remove. | |
569 | (STORE_STRUCT_RETURN): Remove. | |
570 | (EXTRACT_STRUCT_VALUE_ADDRESS): Remove. | |
571 | (FRAME_ARGS_ADDRESS): Remove. | |
572 | (FRAME_LOCALS_ADDRESS): Remove. | |
573 | (FRAME_NUM_ARGS): Undefine before defining. | |
574 | (FRAME_ARGS_SKIP): Remove. | |
575 | (FRAME_FIND_SAVED_REGS): Remove. | |
576 | (PUSH_DUMMY_FRAME): Remove. | |
577 | (POP_FRAME): Remove. | |
578 | (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET): Remove. | |
579 | (struct frame_info, struct frame_saved_regs): Remove forward decls | |
580 | for prototypes. | |
581 | ||
582 | * config/i386/tm-i386lynx.h (i386/tm-i386.h): Include instead of | |
583 | tm-i386v.h. | |
584 | * config/i386/tm-i386m3.h (i386/tm-i386.h): Include instead of | |
585 | tm-i386v.h. | |
586 | ||
587 | * i386-tdep.c (i386_extract_return_value): Make function visible | |
588 | for all i386 targets, but only assume floating point values returned | |
589 | in floating point registers for I386_AIX_TARGET. | |
590 | ||
591 | * i386v-nat.c (i386_register_u_addr): Enable code to locate | |
592 | floating point regs in user struct. | |
593 | ||
8b14bbe5 | 594 | Wed Nov 1 15:32:57 1995 Fred Fish <fnf@cygnus.com> |
e6729433 | 595 | |
8b14bbe5 | 596 | * breakpoint.c (breakpoint_re_set): Fix typo in comment. |
e6729433 FF |
597 | * symtab.c (in_prologue): Document func_start and when it is zero |
598 | don't call SKIP_PROLOGUE (which typically leads unconditionally to | |
599 | an error when we try to access a prologue at address 0). | |
600 | ||
a99d0ef1 FF |
601 | Tue Oct 31 13:01:15 1995 Fred Fish <fnf@cygnus.com> |
602 | ||
603 | * elfread.c: Include elf-bfd.h rather than libelf.h. | |
604 | ||
9cbf6c0e SC |
605 | Tue Oct 31 10:42:42 1995 steve chamberlain <sac@slash.cygnus.com> |
606 | ||
607 | * win32-nat.c (xlate_exception): Treat a stack overflow like a SEGV. | |
608 | ||
0ff516fd FF |
609 | Sun Oct 29 11:22:05 1995 Fred Fish <fnf@cygnus.com> |
610 | ||
611 | * monitor.c: Include gnu-regex.h rather than system regex.h. | |
612 | ||
686941a9 SC |
613 | Sat Oct 28 23:51:48 1995 steve chamberlain <sac@slash.cygnus.com> |
614 | ||
615 | * defs.h: Test on name __WIN32__ rather than WIN32. | |
616 | * inflow.c (new_tty): Likewise | |
617 | * terminal.h: Likewise. | |
618 | * utils.c (initialize_utils): Likewise. | |
619 | * win32-nat.c (child_create_inferiror): Print error code when failing. | |
620 | * config/i386/win32.mh (XM_CLIBS): Need -lkernel32. | |
621 | ||
b1027aa4 PS |
622 | Sat Oct 28 04:52:36 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
623 | ||
624 | * symtab.h (enum address_class): Add LOC_UNRESOLVED for | |
625 | a location whose address has to be resolved via the minimal | |
626 | symbol table. | |
627 | * buildsym.c (finish_block), findvar.c (symbol_read_needs_frame, | |
628 | read_var_value), printcmd.c (address_info), | |
629 | symmisc.c (print_symbol, print_partial_symbol): Handle | |
630 | LOC_UNRESOLVED. | |
631 | * stabsread.c (scan_file_globals): Change unresolved LOC_STATIC | |
632 | symbols to LOC_UNRESOLVED. Remove rt_common_objfile lookup | |
633 | kludge, global common symbols are now handled by LOC_UNRESOLVED. | |
634 | (scan_file_globals_1): Move code back to scan_file_globals, | |
635 | delete. | |
636 | ||
cd10c7e3 SG |
637 | Fri Oct 27 09:54:07 1995 Stu Grossman (grossman@cygnus.com) |
638 | ||
639 | * breakpoint.c (breakpoint_re_set): #ifdef GET_LONGJMP_TARGET | |
640 | around calls to create_longjmp_breakpoint. Why install the | |
641 | breakpoints if we can't find the longjmp target? | |
642 | * infrun.c (wait_for_inferior): Cleanup comments near call test. | |
643 | * remote-mips.c: Fixed a bunch of prototypes to avoid char/int | |
644 | complaint from picky compilers. Add comment to mips_expect. | |
645 | Replace all instances of sr_get_debug with remote_debug. | |
646 | * (mips_readchar): Don't jam init string to monitor. | |
647 | mips_initialize() handles that. | |
648 | * (mips_receive_header): Print better message when we get too | |
649 | much garbage. | |
650 | * (mips_request): Allow caller to pass in buff to allow them to | |
651 | analyze the returned message. | |
652 | * (mips_initialize): Re-do initialization to try sending a BREAK, | |
653 | a ^C, and then a download escape sequence. Cleanup protocol | |
654 | startup. Eliminate sleeps. Clear breakpoints (if using monitor | |
655 | breakpoints). Re-init frame. | |
656 | * (mips_detach): Close down target. | |
657 | start-sanitize-gm | |
658 | * (mips_resume): Pass signal down to target. | |
659 | * (mips_create_inferior): Start target with TARGET_SIGNAL_PWR. | |
660 | end-sanitize-gm | |
661 | * (mips_wait): Handle return status with registers, or breakpoint stuff. | |
662 | * (mips_kill): Add ^C handling. | |
663 | * (mips_insert_breakpoint mips_remove_breakpoint): Call new | |
664 | breakpoint stuff if enabled. | |
665 | * (calculate_mask remote_mips_set_watchpoint | |
666 | remote_mips_remove_watchpoint remote_mips_stopped_by_watchpoint): | |
667 | Hardware watchpoint/breakpoint stuff. | |
668 | * (common_breakpoint): Common code for new monitor breakpoint commands. | |
669 | * (mips_load): Don't use `prompt'. It's a global variable. | |
670 | * top.c (dont_repeat_command): New command for use in | |
671 | user-defined commands to suppress auto-repeat (by hittin return key). | |
672 | start-sanitize-gm | |
673 | * utils.c (request_quit): Call target_kill here. Good idea. | |
674 | Needs a better implementation. | |
675 | end-sanitize-gm | |
676 | * valops.c: Add start of auto function-call abandonment capability. | |
677 | ||
678 | start-sanitize-gm | |
679 | * c-exp.y: Add code (currently disabled) to handle GM dynamic | |
680 | structures (it conflicts with @!). | |
681 | * eval.c (evaluate_subexp_standard): ditto. | |
682 | * expprint.c (print_subexp dump_expression): ditto. | |
683 | * expression.h (enum exp_opcode): ditto. | |
684 | * parse.c (length_of_subexp): ditto. | |
685 | * configure, configure.in: Add mip*-*-magic* target. | |
686 | * magic.c magic.h: Special routines to handle GM stuff (like | |
687 | stepping through dispatcher). | |
0fb3e100 SG |
688 | * config/mips/tm-magic.h config/mips/magic.mt: New files for |
689 | magic target support. | |
cd10c7e3 SG |
690 | end-sanitize-gm |
691 | ||
7bd447ba SS |
692 | Thu Oct 26 22:02:27 1995 Stan Shebs <shebs@andros.cygnus.com> |
693 | ||
694 | * mpw-config.in: Add support for PowerMac host, add beginnings | |
695 | of native support. | |
696 | * mpw-make.sed: Disable subdir recursion, edit out useless rule. | |
697 | * mac-xdep.c (Values.h): Don't include. | |
698 | (GestaltEqu.h): Include Gestalt.h instead. | |
699 | (do_mouse_down): Comment out control tracking, needs to be | |
700 | updated to use UPP before will work on PowerMac. | |
e33bf0ab SS |
701 | * config/xm-mpw.h: New file, all-Mac host support. |
702 | * config/m68k/xm-mpw.h: Move most definitions into generic Mac | |
703 | support. | |
704 | * config/powerpc/xm-mpw.h: New file, PowerMac host support. | |
705 | ||
811f1bdc BK |
706 | Thu Oct 26 15:21:32 1995 Brendan Kehoe <brendan@lisa.cygnus.com> |
707 | ||
708 | * regex.h: Renamed to gnu-regex.h. | |
709 | * regex.c: Renamed to gnu-regex.c. | |
710 | * Makefile.in (POSSLIBS): Refer to gnu-regex.h and gnu-regex.c. | |
711 | (REGEX, REGEX1): Change to gnu-regex.o instead of regex.o. | |
712 | (regex.o): Renamed to gnu-regex.o; refer to gnu-regex.c. | |
713 | (irix5-nat.o, osfsolib.o, gnu-regex.o, solib.o, source.o, symtab.o): | |
714 | Likewise. | |
715 | * irix5-nat.c, osfsolib.c, gnu-regex.c, solib.c, source.c, symtab.c): | |
716 | Include "gnu-regex.h" instead of "regex.h". | |
717 | * alpha-tdep.c (in_prologue): Rename to alpha_in_prologue, to | |
718 | avoid conflicts with symtab.h. | |
719 | ||
9b820af8 JM |
720 | Tue Oct 24 18:30:18 1995 Jason Molenda (crash@phydeaux.cygnus.com) |
721 | ||
722 | * config/pa/hppahpux.mh: Remove hardcoding of X locations. | |
723 | * Makefile.in: Use X11_CFLAGS, X11_LDFLAGS and X11_LIBS. | |
724 | * configure.in: Link X statically on Solaris, SunOS and HPUX. | |
725 | ||
3f687c78 SG |
726 | Tue Oct 24 12:26:14 1995 Stu Grossman (grossman@cygnus.com) |
727 | ||
7bd447ba SS |
728 | * monitor.c (monitor_expect_regexp): Same as monitor_expect, but |
729 | with the obvious extension. | |
730 | (monitor_read_memory_single): Use regexp for getmem.resp_delim | |
731 | because of parsing ambiguities caused by certain monitors. | |
732 | (monitor_read_memory): Use new regexp stuff to parse | |
733 | getmem.resp_delim. | |
734 | * monitor.h (struct memrw_cmd->resp_delim): Document this as a | |
735 | regexp. | |
283dc598 SG |
736 | * sh3-rom.c: Finish off table. Use new regexp capability for |
737 | getmem commands. | |
738 | ||
3f687c78 SG |
739 | * infrun.c (wait_for_inferior): Disable questionable code near |
740 | the step range test. Replace call detection test with much | |
741 | simpler (and more efficient) test that doesn't require prologue | |
742 | examination (as often). | |
743 | * symtab.c symtab.h (in_prologue): New function that indicates | |
744 | whether or not we are in a function prologue. This uses the | |
745 | symbol table, and then falls back to prologue examination if that | |
746 | fails. It's much more efficient for remote debugging because it | |
747 | avoids examining memory, which is very slow. This is used in | |
748 | wait_for_inferior to determine if we've made a function call that | |
749 | needs to be skipped over (for next/nexti). | |
750 | * mips-tdep.c (after_prologue): New function, returns the PC | |
751 | after the prologue. Uses PDRs and the symbol table. | |
752 | (mips_find_saved_regs): Use in_prologue() to avoid costly | |
753 | prologue examination if possible. | |
754 | (mips_skip_prologue): Use after_prologue() if possible to avoid | |
755 | costly prologue examination. | |
756 | ||
0e3a4b1e JSC |
757 | Mon Oct 23 16:03:33 1995 James G. Smith <jsmith@pasanda.cygnus.co.uk> |
758 | ||
759 | * configure.in (configdirs): Added support for the VR4300 default | |
760 | builds (mips64*vr4300*el-*-elf*, mips64*vr4300*-*-elf*). | |
761 | ||
762 | * configure: Regenerated. | |
763 | ||
764 | * remote-mips.c (mips_load): Updated the prompt spotting code to | |
765 | make use of the TARGET_MONITOR_PROMPT manifest. | |
766 | ||
09af5868 PS |
767 | Sat Oct 21 06:11:49 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
768 | ||
769 | * alpha-tdep.c, mips-tdep.c (init_extra_frame_info): | |
770 | Do not set saved registers from heuristics for a sigtramp frame. | |
771 | ||
772 | * dwarfread.c (enum_type): Determine signedness of enum type | |
773 | from enumerators. | |
774 | ||
775 | * mips-tdep.c: Include gdb_string.h, gcc -Wall lint. | |
776 | ||
777 | * rs6000-nat.c (xcoff_relocate_core): Fix typo. | |
778 | ||
779 | * valops.c (value_repeat): Fix length of memory transfer to | |
780 | match recent allocate_repeat_value change. | |
781 | ||
782 | Thu Oct 19 19:04:35 1995 Per Bothner <bothner@kalessin.cygnus.com> | |
783 | ||
784 | * gdbtypes.c (get_discrete_bounds): Fix typo. | |
785 | ||
a6922ef0 SS |
786 | Thu Oct 19 12:15:37 1995 Stan Shebs <shebs@andros.cygnus.com> |
787 | ||
9e4c9316 SS |
788 | * defs.h (SEEK_SET, SEEK_CUR): Add default definitions. |
789 | * dbxread.c, mdebugread.c, os9kread.c (SEEK_SET, SEEK_CUR): | |
790 | Remove default definitions. | |
791 | ||
987622b5 SS |
792 | * Makefile.in (CC-LD): Rename to CC_LD, so MPW xform works. |
793 | (MMALLOC_SRC): Define. | |
794 | (MMALLOC_CFLAGS): Use. | |
795 | (ser-mac.o): Add rule. | |
796 | * dwarfread.c, somread.c, ultra3-nat.c, xcoffread.c: Replace L_SET | |
797 | with SEEK_SET in all calls to bfd_seek. | |
798 | * scm-tags.h (scm_tags): Remove excess comma. | |
799 | ||
a6922ef0 SS |
800 | * mpw-config.in: Adapt to work with autoconf'ed configury; |
801 | build config.h, add empty definitions to mk.tmp. | |
802 | (powerpc-apple-macos): Make it work. | |
803 | * mpw-make.sed: New file, sed commands to translate Unix makefile | |
804 | into MPW syntax. | |
805 | * mpw-make.in: Remove. | |
806 | * mac-gdb.r: New file, was macgdb.r, renamed for consistency | |
807 | with other tools, now includes cfrg resource. | |
808 | * macgdb.r: Remove. | |
809 | * config/m68k/xm-mpw.h: Remove most of contents, replace with | |
810 | include of include/mpw/mpw.h. | |
811 | ||
ecf9ecee JL |
812 | Tue Oct 17 10:38:53 1995 Jeffrey A Law (law@cygnus.com) |
813 | ||
5812b9a1 JL |
814 | * hppa-tdep.c (frame_chain): Fix more obscure problems caused |
815 | by system calls that core dump processes without saving all | |
816 | the register state. | |
817 | ||
ecf9ecee JL |
818 | * config/pa/hppahpux.mt (XDEPFILES): Remove bogus definition. |
819 | * config/pa/hppapro.mt (XDEPFILES): Likewise. | |
820 | ||
cd857a2d FF |
821 | Tue Oct 17 08:04:26 1995 Fred Fish <fnf@rtl.cygnus.com> |
822 | ||
823 | * NEWS: Fix typo. | |
824 | ||
9e4c9316 SS |
825 | start-sanitize-sh3e |
826 | Mon Oct 16 18:24:03 1995 Jim Wilson <wilson@chestnut.cygnus.com> | |
827 | ||
828 | * config/sh/tm-sh.h (REGISTER_VIRTUAL_TYPE): Return builtin_type_float | |
829 | for FP registers. | |
830 | (REGISTER_NAMES): Add FP register names. Remove ticks, stalls, cycles, | |
831 | insts, plr, and tlr. | |
832 | (NUM_REGS, NUM_REALREGS): Increase from 23 to 41. | |
833 | (FPUL_REGNUM, FP0_REGNUM): New macros. | |
834 | ||
835 | end-sanitize-sh3e | |
934ec87c SG |
836 | Mon Oct 16 11:27:06 1995 Stu Grossman (grossman@cygnus.com) |
837 | ||
4704fd9c SG |
838 | * remote-mips.c: Add support for speedy (about 10x faster) |
839 | downloads. | |
840 | ||
59227c07 SG |
841 | * remote-array.c: Move baud_rate initialization from |
842 | _initialize_array to array_open. It was forcing the baud rate of | |
843 | all targets to be 4800 baud! Seems like I've fixed this before... | |
844 | * config/mips/idt.mt (TDEPFILES): Remove remote-array.o. This | |
845 | has *nothing* to do with IDT!!! | |
846 | ||
d807bd87 SG |
847 | * gdbtk.c (gdb_disassemble): Use fprintf_unfiltered instead of |
848 | fprintf_filtered. | |
849 | ||
1480482a SG |
850 | * Makefile.in sh3-rom.c config/sh/sh.mt config/sh/tm-sh.h: Add |
851 | sh3 monitor support. | |
852 | * monitor.c: Cleanup regexp compilation stuff to make it easier | |
853 | to use several regexps. | |
854 | * monitor.h: Get rid of struct rom_cmd_data. It's no longer used. | |
855 | * config/m68k/tm-monitor.h: Don't redefine NUM_REGS here. It just | |
856 | causes GDB to crash. | |
857 | ||
934ec87c SG |
858 | * sparcl-tdep.c: Cleanup serial error handling. |
859 | ||
cd8a3d84 SS |
860 | Sun Oct 15 16:19:27 1995 Stan Shebs <shebs@andros.cygnus.com> |
861 | ||
862 | * rs6000-tdep.c: Don't include a.out.h, improve some formatting. | |
863 | ||
4930f0a7 SG |
864 | Fri Oct 13 15:27:49 1995 Stu Grossman (grossman@cygnus.com) |
865 | ||
866 | * dcache.c: Change default value of remotecache to off. It just | |
867 | screws up too many targets. | |
868 | * sparcl-stub.c: Add prototypes to many forward decls. | |
869 | * Create private copies of strlen, strcpy, and memcpy to prevent | |
870 | chaos when user steps into them. | |
871 | * (trap_low handle_exception): Clean up DSU support code | |
872 | (hardware breakpoints). Move lots of stuff from asm-land to | |
873 | C-land (make it much easier to #ifdef if necessary). Also, use | |
874 | trap 255 to get into break mode instead of doing a DSU register | |
875 | write, which may trash the register. | |
876 | * (putpacket): Don't check return value of putDebugChar. It | |
877 | returns void... | |
878 | ||
cd8a3d84 SS |
879 | Fri Oct 13 14:16:17 1995 steve chamberlain <sac@slash.cygnus.com> |
880 | ||
881 | * remote-sim.h: Always include callback.h. | |
882 | (sim_set_callbacks): New declaration. | |
883 | ||
95037710 JL |
884 | Fri Oct 13 10:57:40 1995 Jeffrey A Law (law@cygnus.com) |
885 | ||
886 | * somsolib.c (som_solib_add): Just give a warning if a file | |
887 | mentioned in the dld_list can't be found. | |
888 | * config/pa/tm-hppah.h (FRAME_SAVED_PC_IN_SIGTRAMP): Dig out | |
889 | the PC from the PC queues rather than %r31. | |
890 | ||
148070cc JL |
891 | Thu Oct 12 13:36:15 1995 Jeffrey A Law (law@cygnus.com) |
892 | ||
893 | * corelow.c (core_open): Don't update the to_sections and | |
894 | to_sections_end fields in core_ops here. It's too late. | |
895 | * irix5-nat.c (solib_add): Update the to_sections and | |
896 | to_sections_end fields in core_ops here if needed. | |
897 | * osfsolib.c (solib_add): Likewise. | |
09af5868 | 898 | * rs6000-nat.c (xcoff_relocate_core): Likewise. |
148070cc JL |
899 | * solib.c (solib_add): Likewise. |
900 | * somsolib.c (solib_add): Likewise. | |
901 | ||
1c17c090 FF |
902 | Wed Oct 11 17:25:59 1995 Fred Fish <fnf@rtl.cygnus.com> |
903 | ||
904 | * Makefile.in (VERSION): Bump version to 4.15.1 | |
905 | ||
906 | Tue Oct 10 15:26:39 1995 Fred Fish <fnf@cygnus.com> | |
907 | ||
908 | * Makefile.in (VERSION): Version 4.15 released. | |
909 | * README: Updated for version 4.15. | |
910 | * README.GDBTK: Updated for version 4.15 | |
911 | * NEWS: Updated for 4.15 release. | |
912 | ||
3f38d5c9 FF |
913 | Tue Oct 10 13:18:50 1995 Fred Fish <fnf@cygnus.com> |
914 | ||
915 | * configure.in: Add AC_PROG_YACC | |
916 | * configure: Regenerate | |
917 | * Makefile.in (BISON): Remove macro definition. | |
918 | (YACC): Set from autoconfig. | |
919 | (FLAGS_TO_PASS): Remove BISON. | |
920 | (TARGET_FLAGS_TO_PASS): Remove BISON. | |
921 | ||
eb708f2e SC |
922 | Tue Oct 10 12:25:11 1995 steve chamberlain <sac@slash.cygnus.com> |
923 | ||
924 | * win32-nat.c (child_create_inferior): Pass argv correctly. | |
925 | * Makefile.in (win32-nat.o): Add dependencies. | |
926 | ||
24e60978 SC |
927 | Mon Oct 9 14:36:29 1995 steve chamberlain <sac@slash.cygnus.com> |
928 | ||
929 | * NEWS: Add information about win32 and arm code. | |
cd8a3d84 | 930 | * win32-nat.c: Renamed from win32.c. |
24e60978 SC |
931 | * config/i386/win32.mh: Renamed from config/i386/i386win32.mh. |
932 | * config/i386/win32.mt: Renamed from config/i386/i386win32.mt. | |
933 | * config/i386/tm-win32.h: Renamed from config/i386/tm-i386win32.h. | |
934 | * config/i386/xm-win32.h: Renamed from config/i386/xm-i386win32.h. | |
cd8a3d84 SS |
935 | * configure.in (i[345]86-*-win32): Updated to cope with filename |
936 | changes. | |
24e60978 SC |
937 | * configure: Regenerated. |
938 | ||
93f972b7 PB |
939 | Sun Oct 8 18:01:04 1995 Per Bothner <bothner@kalessin.cygnus.com> |
940 | ||
941 | * ch-exp.y (yylex): Also look for '$' following '$'. | |
942 | ||
d88c6a8a MM |
943 | Sat Oct 7 22:52:42 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
944 | ||
945 | * ch-exp.y (yylex): Fix typo. | |
946 | ||
7a29d686 JW |
947 | Fri Oct 6 11:56:49 1995 Jim Wilson <wilson@chestnut.cygnus.com> |
948 | ||
949 | * remote-sim.c (gdbsim_open): Put callback initializations here. | |
950 | (_initalize_remote_sim): Not here. | |
951 | ||
b5776522 SS |
952 | Fri Oct 6 17:08:49 1995 Stan Shebs <shebs@andros.cygnus.com> |
953 | ||
954 | * top.c (execute_control_command): Use 0/1 instead of BFD's | |
955 | true/false. | |
956 | ||
625559e7 SG |
957 | Fri Oct 6 14:43:19 1995 Stu Grossman (grossman@cygnus.com) |
958 | ||
b5776522 | 959 | * sparcl-stub.c: Include sparclite.h to get access to register |
625559e7 SG |
960 | fondling macros. |
961 | * (trap_low): Save and restore FP regs if necessary. Also, clean | |
962 | up save and restore of debug unit regs. | |
963 | * (hard_trap_info): Add more architecturally defined traps. | |
964 | * (set_debug_traps): Only set FP disabled trap if FP is disabled. | |
965 | * (get_in_break_mode): Clean up. Get rid of calls to | |
b5776522 | 966 | set_hw_breakpoint_trap(). Also, use write_asi macro. |
625559e7 SG |
967 | * (handle_exception): Clean up `g' and `G' commands. Add `P' |
968 | command. | |
969 | * (hw_breakpoint): Why was this here!? It's gone now... | |
970 | ||
abf6a9dc JW |
971 | Fri Oct 6 11:56:49 1995 Jim Wilson <wilson@chestnut.cygnus.com> |
972 | ||
973 | * callback.c (fdbad): Fix typo in comment. | |
b5776522 SS |
974 | (os_close, os_isatty, os_lseek, os_read, os_write): Use if |
975 | statements rather than || to get correct return value. | |
abf6a9dc JW |
976 | (os_write_stdout): Pass missing first argument to os_write. |
977 | * remote-sim.c: Include callback.h. | |
b5776522 SS |
978 | (_initialize_remote_sim): Call sim_set_callbacks and then |
979 | initialize the callbacks. | |
abf6a9dc | 980 | |
398f584f PB |
981 | Thu Oct 5 17:28:09 1995 Per Bothner <bothner@kalessin.cygnus.com> |
982 | ||
09af5868 | 983 | * values.c (allocate_repeat_value): Allocate an array type, and |
398f584f PB |
984 | a value of that type; use that instead of setting VALUE_REPEATED. |
985 | * value.h (struct value): Remove fields repetitions and repeated. | |
986 | (VALUE_REPEATED, VALUE_REPETITIONS): Removed, no longer used. | |
987 | * c-valprint.c, ch-valprint.c, eval.c, printcmd.c, valops.c, | |
b5776522 SS |
988 | value.h, values.c: Simplify, since now VALUE_REPEATED is never |
989 | used. | |
990 | * valprint.c (value_print_array_elemen): Removed never-used | |
991 | function. | |
398f584f | 992 | |
c700638c PB |
993 | Thu Oct 5 15:14:36 1995 Per Bothner <bothner@kalessin.cygnus.com> |
994 | ||
995 | * parse.c (write_dollar_variable): New function. | |
b5776522 SS |
996 | |
997 | * c-exp.y (yylex): Replace code for recognizing '$' | |
998 | pseudo-variables with a call to write_dollar_variable. | |
c700638c PB |
999 | Simplify grammar correspondingly. |
1000 | * f-exp.y: Likewise. | |
1001 | * m2-exp.y: Likewise. | |
1002 | * ch-exp.y: Likewise. (Remove function match_dollar_tokens.) | |
b5776522 | 1003 | * scm-exp.c (scm_lreadr): Call write_dollar_variable to handle '$'. |
c700638c | 1004 | |
0694bce6 SC |
1005 | Thu Oct 5 13:27:30 1995 steve chamberlain <sac@slash.cygnus.com> |
1006 | ||
1007 | * win32.c: New file; support for debugging on windows NT. | |
1008 | * configure.in: (i[345]86-*-win32): New target. | |
1009 | * configure: Regnerated. | |
1010 | * eval.c (evaluate_subexp_standard): Remove unused name. | |
1011 | * serial.c (gdb_string.h): Include. | |
1012 | * source.c (value.h): Include. | |
1013 | * config/i386/i386win32.mh (XDEPFILES): Add win32.o | |
1014 | * config/i386/i386win32.mt: New. | |
1015 | * config/i386/tm-i386win32.h: New. | |
1016 | ||
3c02944a PB |
1017 | Wed Oct 4 18:41:34 1995 Per Bothner <bothner@kalessin.cygnus.com> |
1018 | ||
1019 | * expression.h (enum exp_code): Added OP_NAME. | |
1020 | * expprint.c (print_subexp): Add OP_NAME support. | |
1021 | * parse.c (length_of_subexp, prefixify_subexp): Likewise. | |
1022 | * scm-lang.c (scm_unpack, in_eval_c, scm_lookup_name): new function. | |
1023 | * scm-lang.h: Declare builtin_type_scm; other minor tweaks. | |
1024 | * values.c (unpack_long): If type is SCM, call scm_unpack. | |
1025 | * scm-valprint.c (scm_val_print): Use extract_signed_integer, | |
1026 | instead unpack_long | |
1027 | * scm-lang.c: More Scheme expression parsing from here ... | |
1028 | * scm-exp.c: ... to here. New file. | |
1029 | Also, provide for gdb to evaluate simple constants and names.. | |
1030 | * Makefile.in: Note new scm-exp.{c,o}. | |
1031 | ||
706bfe5a PB |
1032 | Wed Oct 4 17:23:03 1995 Per Bothner <bothner@kalessin.cygnus.com> |
1033 | ||
1034 | * gdbtypes.c (get_discrete_bounds): New function. | |
1035 | (force_to_range_type): Use get_discrete_bounds. | |
1036 | * gdbtypes.h (get_discrete_bounds): Add declaration. | |
1037 | * valarith.c (value_bit_index): Generalize to use get_discrete_bounds. | |
1038 | * ch-valprint.c (chill_val_print): Make (power)sets and bitstring | |
1039 | support use get_discrete_bounds and generally be more robust. | |
1040 | ||
82569cc1 SS |
1041 | Tue Oct 3 16:54:56 1995 Stan Shebs <shebs@andros.cygnus.com> |
1042 | ||
1043 | * remote-nrom.c (nrom_ops): Add value for to_thread_alive, | |
b5776522 | 1044 | add comments naming slots. |
82569cc1 | 1045 | |
a25ffb08 JL |
1046 | Mon Oct 2 21:45:44 1995 Jeff Law (law@hurl) |
1047 | ||
1048 | * top.c (build_command_line): Demand arguments for if/while | |
1049 | commands. | |
1050 | ||
bac75810 JM |
1051 | Mon Oct 2 13:08:01 1995 Jason Molenda (crash@phydeaux.cygnus.com) |
1052 | ||
1053 | * Makefile.in (X11_CFLAGS): Set only to @X_INCDIR@. | |
1054 | ||
5b4d668a PB |
1055 | Sat Sep 30 16:13:36 1995 Per Bothner <bothner@kalessin.cygnus.com> |
1056 | ||
1057 | * scm-lang.c: Moved Scheme value printing code to ... | |
1058 | * scm-valprint.c: ... this new file. | |
1059 | Also major improvements in support for printing SCM values. | |
1060 | * scm-lang.h: New file. | |
1061 | * scm-tags.h: New file. | |
1062 | * Makefile.in: Note new scm-valprint.{c,o}. | |
1063 | ||
66efdff9 JM |
1064 | Sat Sep 30 09:35:02 1995 Jason Molenda (crash@phydeaux.cygnus.com) |
1065 | ||
1066 | * configure.in: X_INCDIR and X_LIBDIR added. | |
1067 | * Makefile.in: @X_INCDIR@ and @X_LIBDIR@ added. | |
1068 | * configure: Regnerated. | |
1069 | ||
b890317e SC |
1070 | Fri Sep 29 02:10:05 1995 steve chamberlain <sac@slash.cygnus.com> |
1071 | ||
99f2ccd1 SC |
1072 | * config/arm/tm-arm.h (FRAME_CHAIN, FRAME_CHAIN_VALID): |
1073 | Any pc > LOWESTPC is ok. | |
1074 | ||
b890317e SC |
1075 | * remote-rdp.c (rdp_init): Take out variable baud rate stuff. |
1076 | (remote_rdp_detatch): Delete. | |
1077 | * breakpoint.c (ctype.h): Don't include twice. | |
1078 | ||
1079 | * Makefile.in (remote-rdp.o): Doesn't need remote-rdp.h | |
1080 | * callback.c (os_printf_filtered): fix protos. | |
1081 | * defs.h (puts_filtered, puts_unfiltered | |
1082 | [v|f|]printf_[un]filtered): Make format arg const. | |
1083 | * remote-rdp.c (rdp_init): Attept to sync at different | |
1084 | baudrates. | |
1085 | * utils.c (puts_filtered, puts_unfiltered | |
1086 | [v|f|]printf_[un]filtered): Define prototypes with | |
1087 | const in the right place. | |
1088 | ||
0e4ca328 PB |
1089 | Thu Sep 28 17:43:39 1995 Per Bothner <bothner@kalessin.cygnus.com> |
1090 | ||
1091 | * defs.h (enum language): Add language_scm. | |
1092 | * expression.h (enum exp_code): Added OP_EXPRSTRING. | |
1093 | * scm-lang.c: Preliminary support for Guile /SCM dialect of Scheme. | |
1094 | * expprint.c (print_subexp): Add OP_EXPRSTRING support. | |
1095 | * parse.c (length_of_subexp, prefixify_subexp): Likewise. | |
1096 | * valops.c (find_function_in_inferior): New function. | |
1097 | (value_allocate_space_in_inferior): New function. | |
1098 | (allocate_space_in_inferior): Redefine using previous function. | |
1099 | * Makefile.in (SFILES): Add scm-lang.c. | |
1100 | (COMMON_OBS): Add scm-lang.o | |
1101 | ||
dedcc91d SC |
1102 | Thu Sep 28 14:32:11 1995 steve chamberlain <sac@slash.cygnus.com> |
1103 | ||
1104 | * callback.[ch]: New files. | |
1105 | * remote-rdp.c: Support for the ARM RDP monitor. | |
1106 | * Makefile: Update. | |
1107 | * arm-tdep.c (arm_othernames): New. | |
1108 | (_initialize_arm_tdep): install 'othernames' command. | |
1109 | (arm_nullified_insn, shifted_reg_val, arm_get_next_pc): New. | |
1110 | * configure.in: Check for termios.h, termio.h and sgtty.h. | |
1111 | (i[345]86-*-win32*): New host. | |
1112 | * configure: Regenerated. | |
1113 | * inflow.c: Clean up inclusions. | |
1114 | * main.c (main): Check for WINGDB, not WIN32. | |
1115 | * printcmd.c (do_examine): Put QUIT test in loop. | |
1116 | * remote-hms.c (e7000_load): Delete. | |
1117 | (hms_ops): Point to generic_load instead. | |
1118 | * remote-hms.c (hms_ops): Point to generic_load. | |
1119 | * remote-sim.c (sim_callback_write_stdout): Becomes | |
1120 | gdbsim_write_stdout. | |
1121 | (gdbsim_load): Call generic_load. | |
1122 | * remote-utils.c (gr_load_image): Delete. | |
1123 | * ser-unix.c (terminal.h): Include instead of havig | |
1124 | own #if tree. | |
1125 | (hardwire_flush_input): Reset input buffer too. | |
1126 | * source.c (openp): If WIN32 then open file in binary mode. | |
82569cc1 SS |
1127 | * terminal.h: Configure IO mechanism using autoconf defines if |
1128 | available and not overriden. | |
1129 | * utils.c (quit, pollquit, notice_quit): WIN32 check becomes | |
1130 | WINGDB check. | |
1131 | ||
1132 | * config/arm/arm.mt (TDEPFILES): Add remote-rdp.o. | |
1133 | * config/arm/tm-arm.h (TARGET_BYTE_ORDER): becomes | |
1134 | TARGET_BYTE_ORDER_SELECTABLE. | |
dedcc91d SC |
1135 | (ADDR_BITS_REMOVE): New. |
1136 | (ORIGINAL_REGISTER_NAMES, ADDITIONAL_REGISTER_NAMES): New. | |
82569cc1 | 1137 | (INST_xx): New. |
dedcc91d SC |
1138 | (FRAME_FIND_SAVED_REGS): Pass the right argument. |
1139 | (arm_get_next_pc): Declare. | |
b890317e | 1140 | |
37d190e0 PB |
1141 | Wed Sep 27 10:14:36 1995 Per Bothner <bothner@kalessin.cygnus.com> |
1142 | ||
82569cc1 SS |
1143 | * valops.c (search_struct_field): Also allow "else" as a variant |
1144 | name. | |
37d190e0 PB |
1145 | * eval.c (evaluate_struct_tuple): New function. Used to evaluate |
1146 | structure tuples. Now also handles Chill variant records. | |
1147 | (get_label): New function, used by evaluate_struct_tuple. | |
1148 | (evaluate_subexp_standard case OP_ARRAY): Use evaluate_struct_tuple. | |
1149 | (evaluate_labeled_field_init): Removed. | |
1150 | ||
1151 | * valops.c (search_struct_field): Generalize to work with Chill | |
1152 | variant records. | |
1153 | ||
df1e1074 PS |
1154 | Sat Sep 23 01:22:23 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1155 | ||
1156 | * mdebugread.c (parse_partial_symbols): Reset includes_used | |
1157 | and dependencies_used after finishing the partial symbol table. | |
1158 | ||
4f8710e6 PS |
1159 | * rs6000-tdep.c (push_dummy_frame): Handle lr_offset of zero |
1160 | correctly. | |
1161 | ||
df1e1074 PS |
1162 | * rs6000-nat.c (xcoff_relocate_core): Don't relocate data |
1163 | addresses for the main objfile if DONT_RELOCATE_SYMFILE_OBJFILE | |
1164 | is defined. | |
1165 | * xcoffread.c: gcc -Wall lint. Remove traceback table reading | |
1166 | code. The existing code tried to add parameter information for | |
1167 | functions compiled without -g, which cannot be done properly | |
1168 | for optimized code and produced misleading parameter displays. | |
1169 | (ef_complaint, eb_complaint): Make a local static copy to avoid | |
1170 | dependency on coffread.c. | |
1171 | (read_xcoff_symtab, process_xcoff_symbol, scan_xcoff_symtab): | |
1172 | Enter C_EXT/C_HIDEXT symbols into the minimal symbol table only. | |
1173 | (read_xcoff_symtab): Ignore C_STAT section auxiliary entry | |
1174 | symbols. Complain about unmatched .ef and .eb symbols instead of | |
1175 | segfaulting. | |
1176 | (process_xcoff_symbol): Determine value of C_GSYM symbols via | |
1177 | the global_sym_chain mechanism in stabsread.c. | |
1178 | (xcoff_new_init): Call stabsread_new_init and buildsym_new_init. | |
1179 | (init_string_tab): Initialize length field bytes in the strtbl. | |
1180 | (scan_xcoff_symtab): Skip symbols that start with `$' or `.$'. | |
1181 | Set first_fun_line_offset for symbols with two auxents only. | |
1182 | ||
78441c6f JL |
1183 | Wed Sep 20 21:06:35 1995 Jeff Law (law@snake.cs.utah.edu) |
1184 | ||
1185 | * op50-rom.c (op50n_cmds): Send ".\r" after the interrupt | |
1186 | character. | |
1187 | ||
582433a8 ILT |
1188 | Wed Sep 20 13:12:56 1995 Ian Lance Taylor <ian@cygnus.com> |
1189 | ||
1190 | * Makefile.in (maintainer-clean): New target, synonym for | |
1191 | realclean. Add GNU standard maintainer-clean echos. | |
1192 | * gdbserver/Makefile.in (maintainer-clean): New target, synonym | |
1193 | for realclean. | |
1194 | * nlm/Makefile.in (maintainer-clean): Likewise. | |
1195 | ||
5e67328f SC |
1196 | Wed Sep 20 08:16:03 1995 steve chamberlain <sac@slash.cygnus.com> |
1197 | ||
1198 | * defs.h (xmalloc, xrealloc): Delete, they're declared in libiberty.h. | |
1199 | (GETENV_PROVIDED, FCLOSE_PROVIDED): New. | |
1200 | * doc/gdbint.texinfo (GETENV_PROVIDED, FCLOSE_PROVIDED): Document. | |
1201 | * remote-sim.[ch] (sim_callback_write_stdout): New. | |
1202 | ||
b4680522 PB |
1203 | Tue Sep 19 15:28:58 1995 Per Bothner <bothner@kalessin.cygnus.com> |
1204 | ||
1205 | * gdbtypes.c (create_set_type): Set TYPE_LENGTH in bytes, not bits. | |
1206 | * valops.c (value_bitstring): TYPE_LENGTH is bytes, not bits. | |
1207 | ||
1208 | * gdbtypes.c (force_to_range_type): Calculate upper limit of | |
1209 | TYPE_CODE_CHAR depending on TYPE_LENGTH (instead of just using 255). | |
1210 | ||
667315a3 JL |
1211 | Mon Sep 18 01:43:42 1995 Jeff Law (law@snake.cs.utah.edu) |
1212 | ||
1213 | * somsolib.c (auto_solib_add_at_startup): Delete definition. No | |
1214 | longer needed. | |
1215 | ||
cc917275 PS |
1216 | Sat Sep 16 13:23:36 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1217 | ||
1218 | * config/mips/tm-mips.h (UNUSED_REGNUM): Define. | |
1219 | * mipsv4-nat.c (supply_gregset): Fill UNUSED_REGNUM register | |
1220 | with zero. | |
1221 | ||
0672384c SG |
1222 | Thu Sep 14 17:35:24 1995 Stu Grossman (grossman@cygnus.com) |
1223 | ||
1224 | * remote-sim.c (gdbsim_create_inferior): Back out change that | |
1225 | broke all simulator configurations except the rs6000. | |
1226 | ||
ee90dcc2 JL |
1227 | Thu Sep 14 14:44:59 1995 Jeffrey A. Law <law@rtl.cygnus.com> |
1228 | ||
1229 | * monitor.c (monitor_expect): Discard NULL characters. | |
1230 | ||
515f09ea KH |
1231 | Thu Sep 14 14:12:30 1995 Kung Hsu <kung@mexican.cygnus.com> |
1232 | ||
1233 | * infcmd.c: Add extern declaration for auto_solib_add_at_startup. | |
1234 | ||
0bd537a4 KH |
1235 | Wed Sep 13 13:33:58 1995 Kung Hsu <kung@mexican.cygnus.com> |
1236 | ||
1237 | * symfile.c: Move global variable auto_solib_add_at_startup from | |
1238 | solib.c to symfile.c. | |
1239 | * solib.c: ditto. | |
1240 | * symfile.h: Add extern declaration of the above mentioned variable. | |
1241 | * infcmd.c: Take out extern declaration, since it's in symfile.h. | |
1242 | ||
4444f56b SG |
1243 | Thu Sep 14 12:39:35 1995 Stu Grossman (grossman@cygnus.com) |
1244 | ||
1245 | * coffread.c (coff_symtab_read): Complain about unmatched .ef and | |
1246 | .eb symbols instead of segfaulting. | |
1247 | ||
771e0a5c KH |
1248 | Wed Sep 13 13:33:58 1995 Kung Hsu <kung@mexican.cygnus.com> |
1249 | ||
4444f56b | 1250 | * stabsread.c (read_one_struct_field): Use subfile language instead of |
771e0a5c KH |
1251 | global language. Improve efficiency. |
1252 | ||
2e977a3a JL |
1253 | Wed Sep 13 08:45:02 1995 Jeff Law (law@fast.cs.utah.edu) |
1254 | ||
1255 | * somsolib.c (auto_solib_add_at_startup): Define new global variable. | |
1256 | (som_solib_create_inferior_hook): Don't add libraries if | |
1257 | auto_solib_add_at_startup is zero. | |
1258 | (_initialize_som_solib): Add command to toggle | |
1259 | auto_solib_add_at_startup. | |
1260 | ||
5be86c56 JL |
1261 | Tue Sep 12 19:37:24 1995 Jeff Law (law@snake.cs.utah.edu) |
1262 | ||
1263 | * monitor.c (monitor_make_srec): Fix thinkos in computation | |
1264 | of addr_size. | |
1265 | ||
f434284a KH |
1266 | Tue Sep 12 15:46:18 1995 Kung Hsu <kung@mexican.cygnus.com> |
1267 | ||
aeca85c1 KH |
1268 | * stabsread.c (read_one_struct_field): Add a patch to handle cfront |
1269 | generated stabs that each field is in full mangled name. | |
1270 | ||
fe82872c KH |
1271 | * stabsread.c: To include language.h and expression.h for the reason |
1272 | above. | |
1273 | ||
f434284a KH |
1274 | * infcmd.c (attach_command): Add solibs only when |
1275 | auto_solib_add_at_startup is set. | |
1276 | ||
0764fb04 FF |
1277 | Mon Sep 11 17:22:35 1995 Fred Fish <fnf@cygnus.com> |
1278 | ||
1279 | * NEWS: Add information about remote target caching. | |
1280 | ||
031c4a7e FF |
1281 | Sun Sep 10 15:36:21 1995 Fred Fish <fnf@cygnus.com> |
1282 | ||
1283 | * defs.h: Only include mmalloc.h if NO_MMALLOC is not | |
1284 | defined. | |
1285 | ||
3a4f9786 MT |
1286 | Sun Sep 10 10:24:48 1995 Michael Tiemann <tiemann@axon.cygnus.com> |
1287 | ||
1288 | * tm-ppc-eabi.h (PC_IN_CALL_DUMMY): Redefine this to work with the | |
1289 | simulator. FIXME. | |
1290 | ||
1291 | * rs6000-tdep.c (push_dummy_frame): Calculate the correct link | |
1292 | register offset from the current frame (don't assume it is always 8). | |
1293 | (push_dummy_frame): Add comment about having only 4096 bytes of | |
1294 | stack space in the simulator (by default). | |
1295 | ||
1296 | * remote-sim.c (gdbsim_create_inferior): Call | |
1297 | `add_text_to_loadinfo' so that gdb can find TOC entries when | |
1298 | calling functions in the inferior. | |
1299 | ||
85226acd PS |
1300 | Sun Sep 10 09:00:28 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1301 | ||
1302 | * sparc-tdep.c (fill_fpregset): Fix incorrect FP_MAX_REGNUM | |
1303 | substitution. | |
1304 | (supply_fpregset): Use FP_MAX_REGNUM. | |
1305 | ||
b6a40d0c PS |
1306 | Sat Sep 9 08:21:52 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1307 | ||
1308 | * stabsread.c (read_enum_type): Exit loop for putting pending | |
1309 | enum symbols into the enum type correctly if we had no pending | |
1310 | symbols on entry to read_enum_type. | |
1311 | ||
2858b1f2 KH |
1312 | Fri Sep 8 12:57:41 1995 Kung Hsu <kung@mexican.cygnus.com> |
1313 | ||
6047ab6a KH |
1314 | * inferior.h: Add extern declaration of inferior_environ. |
1315 | * solib.c (solib_map_sections): To get inferior's env instead of | |
1316 | gdb's for LD_LIBRARY_PATH, same for PATH. | |
1317 | ||
2858b1f2 KH |
1318 | * solib.c (solib_map_sections): Copy full path name into so_list |
1319 | structure so that symbol_file_add can find it. | |
1320 | ||
1321 | Tue Sep 5 17:47:53 1995 Doug Evans <dje@canuck.cygnus.com> | |
1322 | ||
1323 | * config/sparc/tm-sp64.h (REGISTER_RAW_SIZE): Lower 32 fp regs | |
1324 | have size 4. | |
1325 | (REGISTER_VIRTUAL_SIZE): Likewise. | |
1326 | (REGISTER_VIRTUAL_TYPE): Lower 32 fp regs have type float. | |
1327 | Upper 32 fp regs have type double. | |
1328 | * sparc-tdep.c (NUM_SPARC_FPREGS): Replace with | |
1329 | (FP_REGISTER_BYTES): this, and update all uses. | |
1330 | (FP_MAX_REGNUM): Define if not already. | |
1331 | (get_saved_register): Handle new sparc64 fp regs. | |
1332 | (sparc_frame_find_saved_regs): Likewise. | |
1333 | (sparc_print_register_hook): Only print fp regs < 32 as doubles. | |
1334 | Add code to handle long doubles when gdb does. | |
1335 | (_initialize_sparc_tdep): Use print_insn_sparc64 if sparc64. | |
1336 | ||
5e711e7f PS |
1337 | Sat Sep 2 06:41:26 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1338 | ||
1339 | * configure.in: Explicitly `exit 0' for broken shells. | |
1340 | * configure: Rebuilt. | |
1341 | ||
1342 | * symtab.c (list_symbols): Add missing blank after | |
1343 | `<function, no debug info>' output. | |
1344 | ||
1345 | * valops.c (value_assign): Handle truncation when assigning | |
1346 | to bitfields. Use value_copy to construct the return value | |
1347 | from toval. | |
1348 | * values.c (value_copy): Copy VALUE_FRAME and VALUE_OPTIMIZED_OUT. | |
1349 | ||
180fd370 JSC |
1350 | Fri Sep 1 08:25:50 1995 James G. Smith <jsmith@beauty.cygnus.com> |
1351 | ||
1352 | * configure (mips64*vr4300*-*-elf): Support added. | |
1353 | * remote-mips.c (mips_readchar): Change to allow build-time prompt | |
1354 | string. | |
1355 | * config/mips/tm-mips.h: Added TARGET_MONITOR_PROMPT. | |
1356 | * config/mips/{vr4300.mt, vr4300el.mt, tm-vr4300.h, | |
1357 | tm-vr4300el.h}: Added. | |
1358 | ||
07846c7a JW |
1359 | Thu Aug 31 12:48:04 1995 Jim Wilson <wilson@chestnut.cygnus.com> |
1360 | ||
1361 | * config/sh/sh.mt (SIM): Add -lm. | |
1362 | ||
9b73a467 KH |
1363 | Wed Aug 30 18:10:57 1995 Kung Hsu <kung@mexican.cygnus.com> |
1364 | ||
1365 | * rmote-nindy.c (non_dle, nidy_resume, nindy_wait): Changes to | |
1366 | conform to GNU coding standards. | |
1367 | ||
1368 | * solib.c (match_main): Modify to follow GNU coding conventions. | |
1369 | ||
0858c908 KH |
1370 | Mon Aug 28 17:07:26 1995 Kung Hsu <kung@lisa.cygnus.com> |
1371 | ||
1372 | * remote.c (remote_wait): Revert 19 July my change which should be | |
1373 | customer specific. | |
1374 | ||
080868b4 PS |
1375 | Sat Aug 26 00:26:11 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1376 | ||
1377 | * mdebugread.c (parse_symbol): Handle sh.value of zero for enums. | |
1378 | Determine signedness of enum type from enumerators. | |
1379 | (parse_type): Handle btIndirect types, handle fBitfield for | |
1380 | some non-member types. | |
1381 | (upgrade_type): Use TYPE_FLAG_TARGET_STUB for arrays with | |
1382 | unknown length. | |
1383 | (cross_ref): Handle stIndirect forward reference to btTypedef. | |
1384 | ||
1385 | * stabsread.c (read_enum_type): Determine signedness of enum | |
1386 | type from enumerators. | |
1387 | ||
1388 | * top.c (execute_command): Remove trailing whitespace from | |
1389 | command arguments, except for `set' and `complete' commands. | |
1390 | (validate_comname): Allow underscores in user defined command | |
1391 | names. | |
1392 | ||
1393 | * values.c (modify_field): Change `Value does not fit in %d bits' | |
1394 | error to a warning. Exclude sign extension bits of negative field | |
1395 | values from fit check. | |
1396 | ||
13ba8b69 MM |
1397 | Fri Aug 25 11:31:29 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
1398 | ||
1399 | * configure.in (powerpc*-*-eabisim*): Only link in the simulator | |
1400 | if the target is powerpc{,le}-*-eabisim*, since the simulator | |
1401 | needs GCC to build. | |
1402 | * config/powerpc/ppc{,le}-sim.mt: Cloned from ppc{,le}-eabi.mt. | |
1403 | * config/powerpc/ppc{,le}-eabi.mt: Remove simulator support. | |
1404 | * config/powerpc/tm-ppc{,le}-sim.mt: Include tm-ppc{,le}-sim.h. | |
1405 | ||
19c3fec4 MM |
1406 | Wed Aug 23 16:55:35 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
1407 | ||
1408 | * config/powerpc/ppc{,le}-eabi.mt (SIM_OBJS, SIM): Link in the | |
1409 | PowerPC simulator. | |
1410 | ||
7e72b115 JL |
1411 | Tue Aug 22 02:00:47 1995 Jeff Law (law@snake.cs.utah.edu) |
1412 | ||
740e8028 JL |
1413 | * tm-hppa.h (EXTRACT_RETURN_VALUE): Fix for FP values. |
1414 | ||
90df364f JL |
1415 | * tm-hppa.h (STORE_RETURN_VALUE): Fix to work with -msoft-float |
1416 | calling conventions too. Use the TYPE of the return value, not | |
1417 | its length to determine if it should also be copied into the | |
1418 | floating point registers. | |
1419 | ||
7e72b115 JL |
1420 | * tm-hppa.h (PROLOGUE_FIRSTLINE_OVERLAP): Delete. Causes more |
1421 | problems than it fixes. | |
1422 | * hppa-tdep.c (skip_prologue): If we exit the main loop without | |
1423 | finding all the register saves, retry again without looking for | |
1424 | the registers we could not find the first time. | |
1425 | ||
c85ff3a3 JL |
1426 | Mon Aug 21 23:39:56 1995 Jeff Law (law@snake.cs.utah.edu) |
1427 | ||
1428 | * hppa-tdep.c (frame_chain_valid): Handle systems where "$START$" | |
1429 | calls "main" directly. | |
1430 | (skip_prologue): Always assume arguments were saved into the stack | |
1431 | since GCC will do so without setting the magic Args_Saved bit in | |
1432 | the unwind descriptor. | |
1433 | ||
bb8e4e4d KH |
1434 | Mon Aug 21 11:49:17 1995 Kung Hsu <kung@mexican.cygnus.com> |
1435 | ||
1436 | * remote-udi.c (udi_wait): Mask off high bits of stop reason. | |
1437 | * remote-udi.c (fetch_register): For unfetchable regs, pretend it's | |
1438 | done. Fix a bug. | |
1439 | ||
fa296a0c JL |
1440 | Mon Aug 21 00:45:17 1995 Jeff Law (law@snake.cs.utah.edu) |
1441 | ||
1442 | * Makefile.in (install): Remove "brokensed" hack, unnecessary now | |
1443 | that we're using autoconf. | |
1444 | (uninstall): Likewise. | |
1445 | ||
f61f41d9 MT |
1446 | Sat Aug 19 17:20:22 1995 Michael Tiemann <tiemann@axon.cygnus.com> |
1447 | ||
1448 | * gdbtk.tcl: ENABLE comes back as "1" or "0", not "enable" or | |
1449 | "disable". | |
1450 | Also, wire up the breakpoint window so that it can be demo'd. | |
1451 | ||
2447e9af PS |
1452 | Sat Aug 19 01:19:34 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1453 | ||
1454 | * gdbtypes.c (recursive_dump_type): Add dont_print_type_obstack | |
1455 | to inhibit infinite recursion when printing aggregate types. | |
1456 | ||
69c626a9 SC |
1457 | Fri Aug 18 17:48:55 1995 steve chamberlain <sac@slash.cygnus.com> |
1458 | ||
1459 | * dcache.c (dcache_write_line): Write dirty lines right. | |
1460 | ||
673e1bab PS |
1461 | Fri Aug 18 06:26:56 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1462 | ||
1463 | * sparc-tdep.c (isbranch): Fix typo which caused wrong | |
1464 | target addresses for annulled branches. | |
1465 | ||
1ce8a30f JL |
1466 | Wed Aug 16 21:54:39 1995 Jeff Law (law@snake.cs.utah.edu) |
1467 | ||
1468 | * config/pa/tm-hppa.h (PROLOGUE_FIRSTLINE_OVERLAP): Define. | |
1469 | ||
ec10503a SC |
1470 | Tue Aug 15 07:51:21 1995 steve chamberlain <sac@slash.cygnus.com> |
1471 | ||
1472 | * remote.c (remote_write_bytes): Chop up large transfers. | |
1473 | ||
dd17dde6 | 1474 | Mon Aug 14 17:56:36 1995 Stan Shebs <shebs@andros.cygnus.com> |
0e2c2c1e | 1475 | |
dd17dde6 | 1476 | * gcc.patch: Remove, relevant only to long-ago versions of GCC. |
ae71adb8 | 1477 | |
dd17dde6 | 1478 | Mon Aug 14 13:43:01 1995 Kung Hsu <kung@mexican.cygnus.com> |
56c423fe | 1479 | |
0e2c2c1e KH |
1480 | * config/sparc/tm-sparclite.h: Define FRAME_CHAIN_VALID_ALTERNATE. |
1481 | * blockframe.c (inside_main_func): If main func addr range not set, | |
1482 | try to set it now. | |
1483 | ||
65eaea27 JL |
1484 | Sat Aug 12 15:34:54 1995 Jeffrey A. Law <law@rtl.cygnus.com> |
1485 | ||
407f52c1 JL |
1486 | * config/powerpc/xm-aix.h (FIVE_ARG_PTRACE): Define. |
1487 | * config/rs6000/xm-rs6000.h (FIVE_ARG_PTRACE): Likewise. | |
1488 | ||
65eaea27 JL |
1489 | * configure.in: Recognize aix4 specially as some aspects |
1490 | of aix4 need different handling than aix3. | |
1491 | * configure: Updated. | |
1492 | * config/powerpc/{aix4.mh,aix4.mt,tm-ppc-aix4.h}: New files | |
1493 | specific to aix4 support on the power pc. | |
1494 | * config/powerpc/tm-ppc-aix.h (DONT_RELOCATE_SYMFILE_OBJFILE): Do | |
1495 | not defined. The aix4 specific target files will do that. | |
1496 | * config/rs6000/{aix4,mh,aix4,mt,tm-rs6000-aix4.h}: New files | |
1497 | specific to aix4 support on the rs6000. | |
1498 | ||
1499 | * config/rs6000/tm-rs6000.h (CONVERT_FROM_FUNC_PTR_ADDR): Don't | |
1500 | do the conversion if the pointer is not a magic aix function | |
1501 | pointer. | |
1502 | * rs6000-tdep.c: Include objfiles.h and symtab.h. | |
1503 | (is_magic_function_pointer): New function. | |
1504 | ||
1505 | * rs6000-tdep.c (skip_prologue): Refine check for frameless | |
1506 | functions. Handle b .+4 emitted by aix4 compilers. Only | |
1507 | allow one load of a minimal toc pointer. Handle aix4 compiler's | |
1508 | code for alloca. | |
1509 | ||
1510 | * rs6000-tdep.c (find_toc_address): Report an error if no toc was | |
1511 | found rather than possibly core dumping. | |
1512 | ||
dd17dde6 | 1513 | * partial-stab.h: Handle extra field generated by the aix4 compiler |
65eaea27 JL |
1514 | for enumerations. |
1515 | * stabsread.c (read_enum_type): Likewise. | |
1516 | ||
07781ac0 PS |
1517 | Sat Aug 12 03:18:04 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1518 | ||
1519 | * rs6000-tdep.c (extract_return_value): Fix returning of values | |
1520 | whose length is less than the register size for big endian targets. | |
1521 | ||
f21c9aec KH |
1522 | Fri Aug 11 13:04:32 1995 Kung Hsu <kung@mexican.cygnus.com> |
1523 | ||
dd17dde6 SS |
1524 | * symtab.c (list_symbols): if break command set breakpoint on |
1525 | matched symbol. | |
f21c9aec | 1526 | |
eae45ea9 FF |
1527 | Wed Aug 9 18:59:05 1995 Fred Fish <fnf@cygnus.com> |
1528 | ||
1529 | * defs.h (strchr, strrchr, strstr, strtok, strerror): Enclose in | |
1530 | #ifndefs to protect against previous definitions as macros. | |
1531 | ||
38fb211b KH |
1532 | Wed Aug 9 14:51:36 1995 Kung Hsu <kung@mexican.cygnus.com> |
1533 | ||
dd17dde6 SS |
1534 | * xcoffread.c (xcoff_symfile_offset): Revert an unwanted change |
1535 | that got in accidentally with Aug 1 change. | |
38fb211b | 1536 | |
998cfe7d SC |
1537 | Sat Aug 5 09:07:28 1995 steve chamberlain <sac@slash.cygnus.com> |
1538 | ||
1539 | * remote-hms.c (hms_cmds): Get reg term right. | |
1540 | * monitor.c (monitor_fetch_register): If we see | |
1541 | a non-hex digit, just stop reading. | |
1542 | * remote.c (remote_wait): Change way $O is handled. | |
1543 | ||
fbc3f191 JL |
1544 | Wed Aug 9 11:42:36 1995 Jeffrey A. Law <law@rtl.cygnus.com> |
1545 | ||
1546 | * configure.in (powerpc-*-aix*): Recognize as a new gdb host | |
1547 | and target. | |
1548 | (powerpc-*-eabi*): Don't set configdirs. | |
25d0e5a0 | 1549 | (powerpcle-*-eabi*): Likewise. |
fbc3f191 JL |
1550 | * configure: Updated. |
1551 | * rs6000-nat.c (vmap_ldinfo): Don't relocate data addresses | |
1552 | for the main objfile if DONT_RELOCATE_SYMFILE_OBJFILE is | |
1553 | defined. | |
1554 | * config/powerpc/{aix.mh,aix.mh}: Host and target makefile fragments | |
1555 | for powerpc running aix4. | |
1556 | * config/powerpc/{nm-aix.h, tm-ppc-aix.h, xm-aix.h}: Native, target | |
1557 | and host include files for powerpc running aix4. | |
1558 | ||
327332d8 SS |
1559 | Wed Aug 9 08:11:45 1995 Stan Shebs <shebs@cygnus.com> |
1560 | ||
1561 | * top.c (target_output_hook): Really make it match defs.h (char * | |
1562 | is not the same as unsigned char *). | |
1563 | ||
c61c48c0 C |
1564 | Tue Aug 8 15:13:05 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
1565 | ||
1566 | * Makefile.in (CXX_FOR_TARGET): Don't use ${rootme}/../gcc/xgcc | |
1567 | unless it is present. | |
1568 | ||
842bdf8c JL |
1569 | Tue Aug 8 10:50:15 1995 Jeffrey A. Law <law@rtl.cygnus.com> |
1570 | ||
7aaec27b JL |
1571 | * top.c (target_output_hook): Make declaration match the one |
1572 | in defs.h. | |
1573 | ||
842bdf8c JL |
1574 | * symfile.c (add_psymbol_to_list): Initialize SYMBOL_SECTION. |
1575 | (add_psymbol_addr_to_list): Likewise. | |
1576 | * symfile.h (ADD_PSYMBOL_VT_TO_LIST): Likewise. | |
1577 | ||
b6d70e15 SC |
1578 | Mon Aug 7 15:34:29 1995 steve chamberlain <sac@slash.cygnus.com> |
1579 | ||
764efb58 | 1580 | * top.c (target_output_hook): New definition. |
b6d70e15 SC |
1581 | * stack.c (gdb_string.h): Include after defs.h |
1582 | * defs.h (target_output_hook): New declaration. | |
1583 | * source.c (mod_path): Fix Win32 \ handling. | |
1584 | ||
f4eec25c JL |
1585 | Sun Aug 6 22:14:25 1995 Jeff Law (law@snake.cs.utah.edu) |
1586 | ||
1587 | * hppa-tdep.c (frame_saved_pc): Don't try to dig a return pointer | |
1588 | out of a long branch stub. | |
1589 | ||
1590 | Fri Aug 4 13:37:31 1995 Jeffrey A. Law <law@rtl.cygnus.com> | |
1591 | ||
1592 | * xcoffread.c (process_linenos): Fix typo in last change. | |
1593 | ||
1594 | Thu Aug 3 22:01:26 1995 Fred Fish <fnf@rtl.cygnus.com> | |
1595 | ||
1596 | * ch-exp.y (write_lower_upper_value): Add prototype so bison | |
1597 | generated parser will insert prototype before first func usage. | |
1598 | Bison and byacc order the output sections differently. Also | |
1599 | make function static. | |
1600 | ||
605b7789 FF |
1601 | Thu Aug 3 10:45:37 1995 Fred Fish <fnf@cygnus.com> |
1602 | ||
1603 | * Update all FSF addresses except those in COPYING* files. | |
1604 | ||
adbe434b PS |
1605 | Thu Aug 3 01:38:45 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1606 | ||
1607 | * config/alpha/tm-alpha.h (EXTRA_FRAME_INFO): Add pc_reg field. | |
1608 | (SKIP_TRAMPOLINE_CODE): Define. | |
1609 | * alpha-tdep.c (alpha_frame_saved_pc): Use pc_reg field from | |
1610 | frame to find the saved pc register. | |
1611 | (alpha_saved_pc_after_call): Skip over shared library trampoline | |
1612 | before trying to find the saved pc register. | |
1613 | (find_proc_desc): Copy PROC_PC_REG from found proc_desc | |
1614 | to heuristic proc_desc. | |
1615 | (init_extra_frame_info): Initialize pc_reg field in frame. | |
1616 | ||
949e2bbf SS |
1617 | Wed Aug 2 18:00:36 1995 Stan Shebs <shebs@andros.cygnus.com> |
1618 | ||
1619 | * configure.in (m68*-est-*): Use monitor target config. | |
1620 | * configure: Update. | |
1621 | * config/m68k/est.mt, config/m68k/tm-est.h: Delete. | |
1622 | * config/m68k/monitor.mt, config/m68k/tm-monitor.h: Fix comments. | |
1623 | ||
7613212c FF |
1624 | Tue Aug 1 22:52:53 1995 Fred Fish <fnf@cygnus.com> |
1625 | ||
1626 | * Makefile.in (VERSION): Bump to 4.14.2 | |
1627 | ||
1628 | Tue Aug 1 16:04:36 1995 Kung Hsu <kung@mexican.cygnus.com> | |
1629 | ||
1630 | * xcoffread.c (process_linenos): The value in include file symbol | |
1631 | should point to line number table. Currently this value is not | |
1632 | set correctly by AIX ld. A fix to get around this bug. | |
1633 | ||
2b576293 C |
1634 | Tue Aug 1 11:44:53 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
1635 | ||
1636 | * configure.in: Check for working mmap, ansi headers, string.h, | |
1637 | strings.h, and memory.h. | |
1638 | * configure: Regenerated. | |
1639 | ||
1640 | * gdb_stat.h: New file, "portable" <sys/stat.h>. | |
1641 | * gdb_string.h: New file, "portable" <string.h>. | |
1642 | ||
1643 | * altos-xdep.c, arm-tdep.c, arm-xdep.c, convex-tdep.c, | |
1644 | convex-xdep.c, coredep.c, cxux-nat.c, dbxread.c, exec.c, | |
1645 | gould-xdep.c, hppa-tdep.c, i386aix-nat.c, i386b-nat.c, | |
1646 | i386mach-nat.c, i386v-nat.c, infptrace.c, m88k-nat.c, main.c, | |
1647 | mdebugread.c, objfiles.c, os9kread.c, procfs.c, pyr-xdep.c, | |
1648 | rs6000-nat.c, source.c, standalone.c, stuff.c, sun386-nat.c, | |
1649 | symfile.c, symm-nat.c, symm-tdep.c, symtab.c, top.c, ultra3-nat.c, | |
1650 | ultra3-xdep.c, umax-xdep.c, xcoffread.c: Include "gdb_stat.h" | |
1651 | instead of <sys/stat.h>. | |
1652 | ||
1653 | * alpha-tdep.c, breakpoint.c, buildsym.c, c-typeprint.c, | |
1654 | ch-typeprint.c, coffread.c, command.c, core-sol2.c, core-svr4.c, | |
1655 | core.c, corelow.c, cp-valprint.c, dbxread.c, dcache.c, demangle.c, | |
1656 | dpx2-nat.c, dstread.c, dwarfread.c, elfread.c, environ.c, eval.c, | |
1657 | exec.c, f-lang.c, f-typeprint.c, f-valprint.c, findvar.c, | |
1658 | fork-child.c, gdbtypes.c, hpread.c, i386-tdep.c, infcmd.c, | |
1659 | inflow.c, infptrace.c, infrun.c, irix5-nat.c, language.c, | |
1660 | m2-typeprint.c, main.c, mdebugread.c, minsyms.c, mipsread.c, | |
1661 | monitor.c, nlmread.c, objfiles.c, os9kread.c, osfsolib.c, parse.c, | |
1662 | printcmd.c, procfs.c, regex.c, remote-adapt.c, remote-arc.c, | |
1663 | remote-array.c, remote-bug.c, remote-e7000.c, remote-eb.c, | |
1664 | remote-es.c, remote-hms.c, remote-mm.c, remote-os9k.c, | |
1665 | remote-pa.c, remote-sim.c, remote-st.c, remote-udi.c, | |
1666 | remote-utils.c, remote-vx.c, remote-vx29k.c, remote-vx68.c, | |
1667 | remote-vx960.c, remote-vxmips.c, remote-vxsparc.c, remote.c, | |
1668 | solib.c, somread.c, source.c, stabsread.c, stack.c, symfile.c, | |
1669 | symmisc.c, symtab.c, target.c, top.c, typeprint.c, utils.c, | |
1670 | valarith.c, valops.c, valprint.c, values.c, xcoffread.c: Include | |
1671 | "gdb_string.h" instead of <string.h>. | |
1672 | start-sanitize-gdbtk | |
1673 | * gdbtk.c: Likewise. | |
1674 | end-sanitize-gdbtk | |
1675 | ||
1676 | * config/xm-sysv4.h, i386/xm-ptx.h, m68k/xm-sun3os4.h, | |
1677 | sparc/xm-sun4os4.h (HAVE_MMAP): Removed. | |
1678 | ||
1679 | * config/xm-lynx.h, config/i386/xm-ptx.h, | |
1680 | config/m68k/nm-apollo68b.h, config/m68k/xm-hp300hpux.h, | |
1681 | config/mips/xm-irix3.h, config/mips/xm-mips.h, | |
1682 | config/mips/xm-news-mips.h, config/mips/xm-riscos.h, | |
1683 | config/pa/hppah.h, config/rs6000/xm-rs6000.h, | |
1684 | config/sparc/xm-sun4os4.h, config/sparc/xm-sun4sol2.h, | |
1685 | config/vax/xm-vaxbsd.h, config/vax/xm-vaxult.h, | |
1686 | config/vax/xm-vaxult2.h (MEM_FNS_DECLARED): Removed. | |
1687 | * config/mips/xm-irix3.h, config/mips/xm-mips.h, | |
1688 | config/pa/xm-hppah.h (memcpy, memset): Removed declarations. | |
1689 | ||
92a6d600 PS |
1690 | Tue Aug 1 02:08:30 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1691 | ||
1692 | * mips-tdep.c (mips_extract_return_value): Fix returning of | |
1693 | values whose length is less than the register size for big endian | |
1694 | targets. | |
1695 | * alpha-tdep.c (alpha_extract_return_value, | |
1696 | alpha_store_return_value): Use alpha_convert_register_to_* | |
1697 | to handle functions returning "float" correctly. | |
1698 | ||
ec7b6fcf SS |
1699 | Mon Jul 31 19:12:48 1995 Stan Shebs <shebs@andros.cygnus.com> |
1700 | ||
1701 | * h8500-tdep.c: General linting and cleanup. | |
1702 | (opcodes/h8500-opc.h): Don't include. | |
1703 | (code_size, data_size): Make static. | |
1704 | (frame_locals_address, frame_args_address): Remove. | |
1705 | (h8300_pop_frame): Rename to h8500_pop_frame. | |
1706 | (big_command, medium_command, compact_command, small_command): | |
1707 | Define as regular functions rather than with macro trickery. | |
1708 | (tm_print_insn): Set to correct disassembler function. | |
1709 | * config/h8500/tm-h8500.h: Minor cleanup, add prototypes. | |
1710 | (ABOUT_TO_RETURN): #if 0 out. | |
1711 | (FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS): Use usual define. | |
1712 | (GDB_TARGET_IS_H8500): Remove duplicate definition. | |
1713 | (regoff): Remove, never used. | |
1714 | * config/h8500/h8500.mt (TDEPFILES): Add monitor.o. | |
1715 | ||
1a494973 C |
1716 | Mon Jul 31 14:32:30 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
1717 | ||
1718 | * configure.in: Check for unistd.h. | |
1719 | * configure: Regenerated. | |
1720 | ||
1721 | * command.c, cp-valprint.c, fork-child.c, i386-tdep.c, | |
1722 | i386b-nat.c, inflow.c, main.c, maint.c, objfiles.c, solib.c, | |
1723 | source.c, stack.c, symfile.c, top.c, utils.c: Include strings.h | |
1724 | and/or unistd.h to bring prototypes into scope. | |
1725 | ||
1726 | Sun Jul 30 01:40:11 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) | |
1727 | ||
1728 | * rs6000-tdep.c (frame_saved_pc): Check for signal handler caller | |
1729 | before trying to determine the start of the function. | |
1730 | (skip_prologue): Skip subroutine call which might save the | |
1731 | floating point registers only if it is within the first three | |
1732 | instructions. | |
1733 | Reinstate setting of alloca_reg if setup of a gcc frame pointer | |
1734 | is found. | |
1735 | (frame_get_cache_fsr): Use new fields in rs6000_framedata. | |
1736 | ||
86b40da4 SS |
1737 | Sat Jul 29 14:43:35 1995 Stan Shebs <shebs@andros.cygnus.com> |
1738 | ||
1739 | * sparclite: Removed subdirectory. aload and eload are now in | |
1740 | utils/sparclite, low-level library is in libgloss. | |
1741 | * configure.in (sparclite*): Don't configure sparclite subdir. | |
1742 | * configure: Update. | |
1743 | * Makefile.in (TARDIRS): Remove, no longer used. | |
1744 | ||
e4dbd248 PS |
1745 | Sat Jul 29 01:45:56 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1746 | ||
b6753b3f PS |
1747 | * procfs.c (unconditionally_kill_inferior): Clear current signal |
1748 | if PROCFS_NEED_CLEAR_CURSIG_FOR_KILL is defined. | |
1749 | * config/alpha/nm-osf3.h (PROCFS_NEED_CLEAR_CURSIG_FOR_KILL): Define. | |
1750 | ||
e4dbd248 PS |
1751 | * alpha-tdep.c: Move sigtramp handling of saved registers from |
1752 | read_next_frame_reg to alpha_find_saved_regs, handle saved | |
1753 | floating point registers. | |
1754 | * mips-tdep.c: Move sigtramp handling of saved registers from | |
1755 | read_next_frame_reg to mips_find_saved_regs, handle saved | |
1756 | floating point registers. | |
1757 | * config/mips/tm-irix3.h, config/mips/tm-irix5.h, | |
1758 | config/mips/tm-mipsv4.h (SIGFRAME_FPREGSAVE_OFF): Define. | |
1759 | ||
1760 | * sparc-tdep.c (sparc_pc_adjust): Fix check for `unimp' | |
1761 | instruction to handle functions returning structures with | |
1762 | large sizes properly. | |
1763 | ||
1764 | Fri Jul 28 11:50:17 1995 steve chamberlain <sac@slash.cygnus.com> | |
1765 | ||
1766 | * configure, configure.in (z8k-*-sim): deleted. | |
1767 | ||
1768 | Thu Jul 27 12:49:28 1995 Jeffrey A. Law <law@rtl.cygnus.com> | |
1769 | ||
1770 | * lynx-nat.c (child_wait): Handle threads exiting. | |
1771 | ||
1772 | Thu Jul 27 07:47:50 1995 Michael Meissner <meissner@cygnus.com> | |
1773 | ||
1774 | * rs6000-tdep.c (skip_prologue): Don't assume the update stack | |
1775 | instruction is the last in the prologue, since xlc stores the lr | |
1776 | after the stack update. Make sure offset is correct sign for | |
1777 | large frames. | |
1778 | (frame_saved_pc): Move test for signal before frameless. | |
1779 | ||
1780 | * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Define. | |
1781 | * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Redefine. | |
1782 | ||
46f569b4 JL |
1783 | Thu Jul 27 01:22:08 1995 Jeffrey A. Law <law@rtl.cygnus.com> |
1784 | ||
1785 | * hppa-tdep.c (hppa_fix_call_dummy): Rewrite code for calling | |
1786 | into shared libraries. | |
1787 | ||
068c9fd6 MM |
1788 | Wed Jul 26 23:33:34 1995 Michael Meissner <meissner@cygnus.com> |
1789 | ||
1790 | * config/rs6000/tm-rs6000.h (rs6000_framedata): Add offsets the | |
1791 | gprs, fprs, lr, and cr is stored at. | |
1792 | (FRAME_FIND_SAVED_REGS): Use new fields in rs6000_framedata. | |
1793 | (function_frame_info): Delete declaration. | |
1794 | (SKIP_PROLOGUE): Skip_prologue is now passed a rs6000_framedata | |
1795 | structure to fill in. | |
1796 | (FRAMELESS_FUNCTION_INVOCATION): Function now longer takes a | |
1797 | second argument. | |
1798 | (FRAME_SAVED_PC): Call frame_saved_pc. | |
1799 | ||
1800 | * rs6000-tdep.c (skip_prologue): Recognize V.4 prologues as well | |
1801 | as AIX style. Fill in rs6000_framedata structure. Remember where | |
1802 | the gprs, fprs, cr, and lr are saved. | |
1803 | (pop_frame): Use skip_prologue, not function_frame_info, and use | |
1804 | new rs6000_framedata fields. | |
1805 | (function_frame_info): Function deleted. | |
1806 | (frameless_function_invocation): Separate frame_saved_pc support | |
1807 | to new function. Recognize V.4 frames. | |
1808 | (frame_saved_pc): New function. | |
1809 | (frame_get_cache_fsr): Use skip_prologue, not function_frame_info. | |
1810 | (frame_initial_stack_address): Ditto. | |
1811 | ||
ddb97850 JL |
1812 | Wed Jul 26 01:00:37 1995 Jeff Law (law@snake.cs.utah.edu) |
1813 | ||
1814 | * remote.c: Add documentation for extended protocol operations | |
1815 | and for thread_alive change from a couple weeks ago. | |
1816 | (extended_remote_ops): Declare and define a new target vector | |
1817 | for the extended remote protocol. | |
1818 | (extended_remote_restart): New function to restart the remote | |
1819 | server & process. | |
1820 | (remote_open): Just a stub routine. | |
1821 | (extended_remote_open): New function to start a remote session | |
1822 | using the extended gdb remote protocol. | |
1823 | (remote_open_1): New function containing code common to both | |
1824 | remote_open and extended_remote_open. | |
1825 | (remote_mourn, extended_remote_mourn, remote_mourn_1): Similarly. | |
1826 | (extended_remote_create_inferior): New function for the extended | |
1827 | remote target. | |
1828 | (initialize_remote): Add the extended_remote_ops target vector. | |
1829 | * gdbserver/server.c (main, case '!'): Set extended_protocol. | |
1830 | (main, case 'k'): If the extended protocol is in use, kill the | |
1831 | inferior then start a new one. | |
1832 | (main, case 'R'): New command to restart the remote server and | |
1833 | inferior process. Only supported when using the extended | |
1834 | protocol. | |
1835 | (main, server loop): If the inferior terminates while using the | |
1836 | extended protocol then start a new one. If getpkt fails when | |
1837 | using the extended protocol then exit. | |
1838 | ||
1789d5d5 SS |
1839 | Tue Jul 25 11:43:44 1995 Stan Shebs <shebs@andros.cygnus.com> |
1840 | ||
1841 | * mdebugread.c (psymtab_to_symtab_1): Relocate encoded stab | |
1842 | line numbers using the psymtab's section offsets. | |
1843 | ||
63641491 MM |
1844 | Tue Jul 25 10:43:27 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
1845 | ||
1846 | * config/rs6000/tm-rs6000.h (rs6000_framedata): Rename from | |
1847 | aix_framedata. Change all uses. | |
1848 | * rs6000-tdep.c: Change all aix_framedata -> rs6000_framedata. | |
1849 | ||
0f7f5292 JL |
1850 | Sat Jul 22 23:44:18 1995 Jeff Law (law@snake.cs.utah.edu) |
1851 | ||
1852 | * defs.h (ATTR_FORMAT): Disable if ANSI_PROTOTYPES is not defined. | |
1853 | ||
1854 | Fri Jul 21 16:50:28 1995 Jeffrey A. Law <law@rtl.cygnus.com> | |
1855 | ||
1856 | * lynx-nat.c (child_thread_alive): New function. Somehow I | |
1857 | forgot to check this in with all the other thread_alive changes. | |
1858 | ||
5dc74605 JL |
1859 | Thu Jul 20 22:22:34 1995 Jeff Law (law@snake.cs.utah.edu) |
1860 | ||
1861 | * somread.c (som_symtab_read): Add unsatisfied common symbols to | |
1862 | the minimal symbol table. All common symbols are "unsatisfied" | |
1863 | when -E is passed to the linker. | |
1864 | ||
032f80d8 FF |
1865 | Thu Jul 20 15:04:57 1995 Fred Fish <fnf@cygnus.com> |
1866 | ||
1867 | * top.c (show_endian): Cast first arg of printf_unfiltered to | |
1868 | correct type of "char *". | |
1869 | ||
5c54124b JL |
1870 | Thu Jul 20 14:18:51 1995 Jeffrey A. Law <law@rtl.cygnus.com> |
1871 | ||
1872 | * lynx-nat.c (child_wait): A thread_id of zero from wait apparently | |
1873 | means the process is single threaded, so there's no need to add | |
1874 | it to the thread list. Handle case where multi-threaded process | |
1875 | reverts back to a single-threaded process. | |
76087c53 JL |
1876 | |
1877 | * gdbserver/low-hppabsd.c: Remove error declaration. | |
1878 | * gdbserver/low-sparc.c: Likewise. | |
1879 | * gdbserver/low-sun3.c: Likewise. | |
1880 | * gdbserver/server.h: Remove error and fatal declaration. | |
1881 | * gdbserver/utils.c (error): Update to be compatable with recent | |
1882 | changes in defs.h. | |
1883 | (fatal): Likewise. | |
1884 | ||
bbcc95bd PS |
1885 | Wed Jul 19 22:42:43 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
1886 | ||
1887 | * config/m68k/tm-m68kv4.h (DWARF_REG_TO_REGNUM): Define to | |
1888 | correctly map floating point registers numbers. | |
1889 | ||
1890 | * dwarfread.c (locval, new_symbol): Handle variables that are | |
1891 | optimized out. | |
1892 | ||
1893 | * mdebugread.c: Replace all uses of builtin_type_* with | |
1894 | mdebug_type_*. Define and initialize mdebug_type_*. | |
1895 | ||
1896 | * serial.h (serial_close): Add additional argument `really_close'. | |
1897 | (SERIAL_CLOSE): Update serial_close call accordingly. | |
1898 | (SERIAL_UN_FDOPEN): Use serial_close to handle refcnt properly. | |
1899 | * serial.c (serial_close): Handle `really_close'. | |
1900 | * serial.h (scb_base): Moved to serial.c, made static. | |
1901 | ||
1902 | * valops.c (value_addr): Don't coerce arrays. | |
1903 | (typecmp): Coerce arrays instead of calling value_addr if necessary. | |
1904 | ||
641c7fdf SS |
1905 | Wed Jul 19 18:19:28 1995 Stan Shebs <shebs@andros.cygnus.com> |
1906 | ||
1907 | From Richard Earnshaw (rearnsha@armltd.co.uk): | |
1908 | * infrun.c (wait_for_inferior): Set the convenience variable | |
1909 | $_exitcode to the termination code of the inferior. | |
1910 | * top.c (quit_command): Accept optional expression to use | |
1911 | as parameter to exit(). | |
1912 | ||
1dde9159 KH |
1913 | Wed Jul 19 13:15:32 1995 Kung Hsu <kung@mexican.cygnus.com> |
1914 | ||
1915 | * remote.c (remote_wait): When getting registers, check endianess and | |
1916 | do conversion if necessary. | |
1917 | ||
c2aa5a89 JL |
1918 | Tue Jul 18 00:41:31 1995 Jeff Law (law@snake.cs.utah.edu) |
1919 | ||
1920 | * gdbserver/low-hppabsd.c: New file. | |
1921 | * gdbserver/Makefile.in (SFILES): Add low-hppabsd.c. | |
641c7fdf SS |
1922 | * config/pa/hppabsd.mh (XDEPFILES): Add ser-tcp.o. |
1923 | (GDBSERVER_DEPFILES): Add low-hppabsd.o. | |
1924 | * config/pa/hppaosf.mh: Likewise. | |
c2aa5a89 | 1925 | |
6b14af2b FF |
1926 | Mon Jul 17 21:35:18 1995 Fred Fish <fnf@cygnus.com> |
1927 | ||
641c7fdf SS |
1928 | * dache.c (struct dcache_block): Change data member from unsigned |
1929 | char to char, since everything passed in and out of dcache is char | |
1930 | or casted to appropriate type anyway. | |
1931 | (dcache_alloc): Move assignment of db out of test and combine | |
1932 | separate tests into if-else. | |
6b14af2b FF |
1933 | (dcache_peek_byte): Change ptr from unsigned char* to char*. |
1934 | (dcache_peek_byte): Remove now unnecessary cast in read_memory call. | |
1935 | (dcache_peek): Change cast of incoming data arg. | |
1936 | (dcache_poke): Change cast of addr of incoming data arg. | |
1937 | (dcache_info): Mask data passed to printf_filtered to lsbyte only. | |
1938 | (dcache_info): Change printf_filtered arg from "% 2x" to " %2x". | |
1939 | * target.c (debug_to_thread_alive): Change return type to int and | |
641c7fdf SS |
1940 | return zero, for type compatibility with other *_thread_alive |
1941 | funcs. | |
6b14af2b FF |
1942 | (cleanup_target): Change cast of ignore function to match type of the |
1943 | to_thread_alive member. | |
1944 | * defs.h (error_hook): Add ATTR_NORETURN. | |
641c7fdf | 1945 | * defs.h (NORETURN, ATTR_NORETURN): Switch from volatile to |
6b14af2b | 1946 | __attribute__ method with gcc 2.7, to avoid gcc 2.6.3 bug. |
641c7fdf SS |
1947 | * remote.c (remote_wait): Cast first arg to strtol, strchr, and |
1948 | strncmp to "const char *" from "unsigned char *". | |
1949 | (remote_wait): Cast arg to putpkt and strcpy from "unsigned char *" | |
1950 | to "char *". | |
6b14af2b FF |
1951 | (remote_wait): Change printf format for long arg from "%d" to "%ld". |
1952 | (getpkt): Remove unused variable "bp". | |
1953 | (remote_fetch_word, remote_store_word): Ifdef out apparently unused | |
1954 | functions. | |
1955 | * breakpoint.c (watchpoint_check): Removed unused variables | |
1956 | "saved_level" and "saved_frame". | |
1957 | * valops.c (value_arg_coerce): Add other enum TYPE_CODE_* and | |
1958 | default cases to switch for completeness. | |
1959 | * infrun.c (wait_for_inferior): Enclose "have_waited" label | |
1960 | in #ifdef that matches the one in which it is referenced. | |
1961 | * ser-unix.c (hardwire_noflush_set_tty_state): Enclose otherwise | |
1962 | unused variable "state" in #ifdef that matches one in which it is | |
1963 | referenced. | |
1964 | * eval.c (evaluate_subexp_standard): Remove unused variable "var". | |
641c7fdf SS |
1965 | * eval.c (evaluate_subexp_standard): Remove unused variable |
1966 | "tmp_symbol". | |
1967 | * valarith.c (value_subscript): Remove unused variable | |
1968 | "lowerbound", which is redeclared in a nested scope prior to use. | |
6b14af2b FF |
1969 | * printcmd.c (print_frame_nameless_args): Use "%ld" to print long |
1970 | arg, not "%d". | |
1971 | * {mem-break.c, remote-pa.c, remote.c, saber.suppress}: | |
1972 | Remove unused static var "check_break_insn_size". | |
1973 | * buildsym.c (finish_block): Add other enum LOC_* and default | |
1974 | cases to switch for completeness. | |
1975 | ch-lang.c (type_lower_upper): Removed unused label "retry". | |
1976 | Add other enum TYPE_* and default cases to switch for completeness. | |
1977 | * f-typeprint.c (f_type_print_args): Ifdef out unused function | |
1978 | that may be used someday when Fortran support is complete. | |
1979 | * ch-valprint.c (chill_print_type_scalar): Add other enum | |
1980 | TYPE_* and default cases to switch for completeness. | |
1981 | (chill_val_print): Remove unused local var "high_bound" that | |
1982 | is redeclared in a nested scope prior to use. | |
1983 | (chill_var_print): Use "%ld" to print long arg, not "%d". | |
641c7fdf SS |
1984 | * regex.c (re_compile_fastmap, re_match_2): Add remaining enum |
1985 | types and default to switches for completeness. | |
6b14af2b FF |
1986 | * minsyms.c (lookup_minimal_symbol_text): Delete unused variable |
1987 | "trampoline_symbol". | |
641c7fdf SS |
1988 | (prim_record_minimal_symbol_and_info): Return NULL rather than |
1989 | trash. | |
6b14af2b FF |
1990 | * elfread.c (elf_symtab_read): Don't dereference NULL returns from |
1991 | record_minimal_symbol_and_info. | |
1992 | * f-lang.c (saved_function_list_end): Ifdef out unused variable | |
1993 | that may be used someday. | |
641c7fdf | 1994 | * f-valprint.c (f_val_print): Remove unused local "straddr". |
6b14af2b | 1995 | |
5d672f28 ILT |
1996 | Mon Jul 17 13:08:00 1995 Ian Lance Taylor <ian@cygnus.com> |
1997 | ||
f779e99f ILT |
1998 | * stabsread.h (struct stab_section_list): Define. |
1999 | (coffstab_build_psymtabs): Remove staboff and stabsize parameters. | |
2000 | Add textaddr, textsize, and stabs parameters. | |
2001 | * gdb-stabs.h (struct dbx_symfile_info): Remove text_sect field. | |
2002 | Add text_addr and text_size fields. | |
2003 | (DBX_TEXT_SECT): Don't define. | |
2004 | (DBX_TEXT_ADDR, DBX_TEXT_SIZE): Define. | |
2005 | * coffread.c: Include <ctype.h>. | |
2006 | (struct coff_symfile_info): Remove stabsect and stabindexsect | |
2007 | fields. Add textaddr, textsize, and stabsects fields. | |
2008 | (coff_locate_sections): Record the address of the .text section, | |
2009 | and total the sizes of all sections with names beginning with | |
2010 | ".text". Don't bother to record a .stab.index section (COFF | |
2011 | doesn't use them). Make a linked list of all sections with names | |
2012 | beginning with ".stab". | |
2013 | (coff_symfile_read): Adjust call to coffstab_build_psymtabs for | |
2014 | new parameters. | |
2015 | * dbxread.c (dbx_symfile_read): Use DBX_TEXT_ADDR and | |
2016 | DBX_TEXT_SIZE, rather than getting both from DBX_TEXT_SECT. | |
2017 | (dbx_symfile_init): Set DBX_TEXT_ADDR and DBX_TEXT_SIZE, not | |
2018 | DBX_TEXT_SECT. | |
2019 | (elfstab_build_psymtabs): Likewise. | |
2020 | (stabsect_build_psymtabs): Likewise. | |
2021 | (symbuf_sections, symbuf_left, symbuf_read): New static variables. | |
2022 | (fill_symbuf): If symbuf_sections is not NULL, read symbols from | |
2023 | multiple sections. | |
2024 | (coffstab_build_psymtabs): Remove staboffset and stabsize | |
2025 | parameters. Add textaddr, textsize, and stabsects parameters. | |
2026 | Set DBX_TEXT_ADDR and DBX_TEXT_SIZE, not DBX_TEXT_SECT. Handle | |
2027 | multiple stabs sections. | |
2028 | * os9kread.c (os9k_symfile_read): Use DBX_TEXT_ADDR and | |
2029 | DBX_TEXT_SIZE, rather than getting both from DBX_TEXT_SECT. | |
2030 | (os9k_symfile_init): Set DBX_TEXT_ADDR and DBX_TEXT_SIZE, not | |
2031 | DBX_TEXT_SECT. | |
2032 | ||
5d672f28 ILT |
2033 | * remote-vx.c (vx_ops, vx_run_ops): Initialize new to_thread_alive |
2034 | field. | |
2035 | ||
b8ea4fec PS |
2036 | Sat Jul 15 01:02:53 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
2037 | ||
2038 | * config/alpha/alpha-osf3.mh, config/alpha/nm-osf3.h: New files | |
2039 | for OSF/1-3.x procfs support. | |
2040 | * configure.in (alpha-dec-osf): Use them when configuring | |
2041 | for OSF/1-3.x. | |
2042 | * configure: Updated. | |
2043 | * target.c: Include <string.h>. | |
2044 | ||
5f107900 C |
2045 | Fri Jul 14 16:16:56 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
2046 | ||
2047 | * Makefile.in, configure.in: Use one variable, frags, to hold | |
2048 | pathnames of makefile fragments. | |
2049 | * configure: regenerated. | |
2050 | ||
10f644eb JL |
2051 | Fri Jul 14 09:49:47 1995 Jeff Law (law@snake.cs.utah.edu) |
2052 | ||
2053 | * procfs.c (procfs_ops): Fix typo in last change. | |
2054 | ||
43fc25c8 JL |
2055 | Thu Jul 13 13:42:38 1995 Jeffrey A. Law <law@rtl.cygnus.com> |
2056 | ||
2057 | * inftarg.c (child_thread_alive): New function to see if a | |
2058 | particular thread is still running. | |
2059 | (child_ops): Add child_thread_alive entry. | |
2060 | * remote.c (remote_thread_alive): New function to see if a | |
2061 | particular thread is still alive. | |
2062 | (remote_ops): Add remote_thread_alive. | |
2063 | * target.c (dummy_target): Add dummy entry for thread_alive. | |
2064 | (cleanup_target): de_fault thread_alive too. | |
2065 | (update_current_target): INHERIT thread_alive too. | |
2066 | (debug_to_thread_alive): New function. | |
2067 | (setup_target_debug): Add debug_to_thread_alive. | |
2068 | * target.h (struct target_ops): Add to_thread_alive. | |
2069 | (target_thread_alive): Define. | |
2070 | * thread.c (info_threads_command): Don't call kill; use | |
2071 | target_thread_alive instead. | |
2072 | * config/nm-lynx.h (CHILD_THREAD_ALIVE): Define. | |
2073 | * gdbserver/low-lynx.c (mythread_alive): New function. | |
2074 | (mywait): Don't restart any threads after a new thread notification, | |
2075 | let the generic code handle it. | |
2076 | * gdbserver/low-sparc.c (mythread_alive): Dummy version. | |
2077 | * gdbserver/low-sun3.c (mythread_alive): Likewise. | |
2078 | * gdbserver/server.c (main): Handle thread_alive requests. | |
2079 | * gdbserver/server.h (mythread_alive): Declare. | |
2080 | * corelow.c (core_ops): Add dummy entry for thread_alive. | |
2081 | * exec.c (exec_ops): Likewise. | |
2082 | * m3-nat.c (m3_ops): Likewise. | |
2083 | * monitor.c (monitor_ops): Likewise. | |
2084 | * procfs.c (procfs_ops): Likewise. | |
2085 | * remote-arc.c (arc_ops): Likewise. | |
2086 | * remote-array.c (array_ops): Likewise. | |
2087 | * remote-e7000.c (e7000_ops): Likewise. | |
2088 | * remote-es.c (es1800_ops, es1800_child_ops): Likewise. | |
2089 | * remote-mips.c (mips_ops): Likewise. | |
2090 | * remote-pa.c (remote_hppro_ops): Likewise. | |
2091 | * remote-sim.c (gdbsim_ops): Likewise. | |
2092 | * sparcl-tdep.c (sparclite_ops): Likewise. | |
2093 | ||
43fc25c8 JL |
2094 | Tue Jul 11 11:15:55 1995 Kung Hsu <kung@rtl.cygnus.com> |
2095 | ||
2096 | * solib.c: Add _DYNAMIC__MGC base symbol for Mentor Graphics Inc. | |
2097 | * solib.c (match_main): New function for checking name of main. | |
2098 | * solib.c (solib_add): Not to add if solib match main. | |
2099 | ||
2100 | Fri Jul 7 14:41:56 1995 Kung Hsu <kung@rtl.cygnus.com> | |
2101 | ||
2102 | * elfread.c (elf_symtab_read): Fix a bug ignoring compiler | |
2103 | generated internal labels ($LM...). | |
2104 | ||
c6236d12 KH |
2105 | Wed Jul 5 11:38:36 1995 Kung Hsu <kung@rtl.cygnus.com> |
2106 | ||
fec60da3 KH |
2107 | * defs.h: if __GO32__ or WIN32 the directory separating symbol should |
2108 | be '\' not '/'. | |
2109 | ||
c6236d12 KH |
2110 | * remote-nindy (nindy_wait): Use infinite timeout reading after |
2111 | esacpe character. | |
2112 | ||
48f4903f JL |
2113 | Tue Jul 4 10:30:22 1995 Jeffrey A. Law <law@rtl.cygnus.com> |
2114 | ||
88a294b1 JL |
2115 | * infrun.c (wait_for_inferior): When switching from one thread to |
2116 | another, save infrun's state for the old thread and load infrun's | |
2117 | previous state for the new thread. | |
2118 | * thread.c (struct thread_info): Add new fields for thread specific | |
2119 | state saved/restored in infrun.c. | |
2120 | (add_thread): Initialize new fields. | |
2121 | (load_infrun_state): New function. | |
2122 | (save_infrun_state): New function. | |
2123 | * thread.h (load_infrun_state): Provide external decl. | |
2124 | (save_infrun_state): Likewise. | |
2125 | ||
48f4903f JL |
2126 | * infrun.c (wait_for_inferior): When we hit a breakpoint for the |
2127 | wrong thread, make sure to write the fixed PC value into the thread | |
2128 | that stopped. Restart all threads after single stepping over a | |
2129 | breakpoint for a different thread. | |
2130 | * breakpoint.c (set_momentary_breakpoint): Make momentary | |
2131 | breakpoints thread specific in a multi-threaded program. | |
2132 | * lynx-nat.c (child_resume): Add some comments. Correctly | |
2133 | choose between the single and multi-threaded step and continue | |
2134 | ptrace calls. | |
2135 | ||
fb506180 SS |
2136 | Fri Jun 30 16:15:36 1995 Stan Shebs <shebs@andros.cygnus.com> |
2137 | ||
2138 | * config/h8300/h8300.mt: Renamed from h8300hms.mt. | |
2139 | * config/h8500/h8500.mt: Renamed from h8500hms.mt. | |
2140 | * config/z8k/z8k.mt: Renamed from z8ksim.mt. | |
2141 | * configure, configure.in: Update to reflect renamings. | |
2142 | ||
2143 | * remote-sim.c (sim): New command, passes commands to simulator. | |
2144 | (simulator_command): New function. | |
2145 | (gdbsim_ops): Clean up. | |
2146 | * remote-sim.h (sim_do_command): Declare. | |
2147 | * sh-tdep.c (memory_size): Remove command. | |
2148 | ||
2149 | * Makefile.in (SIM, SIM_OBS): New variables. | |
2150 | (CLIBS, CDEPS): Add value of SIM. | |
2151 | (DEPFILES): Add value of SIM_OBS | |
2152 | ||
2153 | * config/arm/arm.mt, config/h8300/h8300.mt, config/h8500/h8500.mt, | |
2154 | config/sh/sh.mt, config/sparc/sp64sim.mt, config/w65/w65.mt, | |
2155 | config/z8k/z8k.mt: Remove simulator files from TDEPFILES, | |
2156 | define in SIM_OBS and SIM. | |
2157 | config/sparc/sp64sim.mt (SIMFILES): Remove. | |
2158 | ||
2159 | * remote-z8k.c: Remove, was superseded by remote-sim.c | |
2160 | * Makefile.in, mpw-make.in: Remove references to remote-z8k.c. | |
2161 | ||
fe442b43 SS |
2162 | Sun Jun 25 15:30:43 1995 Stan Shebs <shebs@cygnus.com> |
2163 | ||
2164 | * remote.c (remote_read_bytes, remote_write_bytes): Second arg | |
2165 | should be char *, not unsigned char *. | |
2166 | * dcache.h (memxferfunc): Ditto. | |
2167 | * monitor.c (monitor_write_memory, monitor_read_memory_single): | |
2168 | Ditto. | |
2169 | (monitor_make_srec): Let compiler figure size of hextab. | |
2170 | ||
1657d50b JL |
2171 | Sat Jun 24 19:27:37 1995 Jeffrey A. Law <law@rtl.cygnus.com> |
2172 | ||
2173 | * lynx-nat.c (child_wait): Don't restart new threads and loop | |
2174 | to the top of child_wait; let the machine independent code in | |
2175 | wait_for_inferior deal with new thread notifications. | |
2176 | ||
8a7143f4 KH |
2177 | Fri Jun 23 11:51:58 1995 Kung Hsu <kung@mexican.cygnus.com> |
2178 | ||
2179 | * remote-nindy (nindy_load): Put in target specific load, it's | |
2180 | 20 times faster. | |
2181 | ||
26a53fe8 SS |
2182 | Thu Jun 22 20:21:59 1995 Stan Shebs <shebs@andros.cygnus.com> |
2183 | ||
31bda44a SS |
2184 | * utils.c (error): Move local `args' outside conditional, |
2185 | move local `string1' inside, declare function as void if | |
2186 | non-ANSI compiler, dereference error_hook when calling. | |
2187 | ||
26a53fe8 SS |
2188 | * mac-xdep.c (stdarg.h): Don't include. |
2189 | ||
89fd75ae KH |
2190 | Thu Jun 22 13:12:33 1995 Kung Hsu <kung@mexican.cygnus.com> |
2191 | ||
2192 | * remote-nindy.c (nindy_wait): Change timeout in SERIAL_READCHAR. | |
2193 | ||
b3a34d4f JL |
2194 | Wed Jun 21 13:24:41 1995 Jeff Law (law@snake.cs.utah.edu) |
2195 | ||
2196 | * hppam3-nat.c: Change HP800_THREAD_STATE to TRACE_FLAVOR and | |
2197 | HP800_THREAD_STATE_COUNT to TRACE_FLAVOR_SIZE. | |
2198 | ||
c3a9b88e SC |
2199 | Wed Jun 21 05:57:56 1995 Steve Chamberlain <sac@slash.cygnus.com> |
2200 | ||
2201 | * monitor.c: Turn on caching. | |
2202 | (monitor_printf): If a ^C was sent, don't expect to see its | |
2203 | echo. | |
2204 | (monitor_open): Enable caching. | |
2205 | (monitor_resume, monitor_load): Flush cache. | |
2206 | (monitor_xfer_memory): Call cache routine. | |
2207 | (monitor_dump_regs): New. | |
2208 | (monitor_fetch_registers): If monitor_dump_regs available | |
2209 | then use it. | |
2210 | (monitor_load): Don't ref exec_bfd if it's NULL. | |
2211 | (monitor_load_srec): Use new monitor_make_srec calling convention. | |
2212 | (monitor_make_srec): Rewrite to cope with two, three and four byte | |
2213 | addresses. | |
2214 | * remote-hms.c (hms_cmds): Initialze end-of-command delim. | |
2215 | * dcache.h, dcache.h: Rewritten. | |
2216 | * remote.c: Reenable caching. | |
2217 | (getpkt): Reduce MAX_TRIES to 3. | |
2218 | (remote_xfer_memory): Use dcache_xfer_memory. | |
2219 | * defs.h (error_hook): New. | |
2220 | * top.c (error_hook): New definition. | |
2221 | * utils.c (error): Use error_hook if initialized. | |
2222 | * sparcl-tdep.c (HAVE_SOCKETS): Don't define if GO32 or WIN32. Use | |
2223 | HAVE_SOCKETS in place of #ifndef GO32. | |
2224 | ||
5e2f4e2d JL |
2225 | Tue Jun 20 22:17:44 1995 Jeff Law (law@snake.cs.utah.edu) |
2226 | ||
2227 | * config/pa/tm-hppa.h (PSW_*): Define processor status word masks. | |
2228 | (INSTRUCTION_NULLIFIED): Allow specific targets to override. | |
2229 | * config/pa/tm-hppao.h (INSTRUCTION_NULLIFIED): Define to work | |
2230 | around losing mach kernel behavior. | |
2231 | ||
4a430794 SS |
2232 | Tue Jun 20 12:03:36 1995 Stan Shebs <shebs@andros.cygnus.com> |
2233 | ||
2234 | * monitor.c (monitor_wait): Don't use the watchdog timeout | |
2235 | if its value is 0. | |
2236 | * w89k-rom.c (w89k_open): Define to be static. | |
2237 | ||
2238 | start-sanitize-gdbtk | |
f1b64caa SG |
2239 | Tue Jun 20 10:19:40 1995 Stu Grossman (grossman@cygnus.com) |
2240 | ||
8c19daa1 SG |
2241 | * gdbtk.c: Add functions Tcl_Malloc, Tcl_Realloc, and Tcl_Free. |
2242 | ||
f1b64caa SG |
2243 | * gdbtk.tcl (add_breakpoint_frame): Add more fields. |
2244 | * (create_file_win create_asm_win build_framework): Create null | |
2245 | bindings for meta keys to keep window from dropping down to | |
2246 | insertion point when meta is pressed by itself. New bindings: | |
2247 | Up/Down - Scroll up/down one line at a time | |
2248 | Next/Prior - Scroll up/down one page at a time | |
2249 | Home/End - Warp to current pc/end of file | |
2250 | * (build_framework): Turn on breakpoint menu. | |
2251 | * (create_command_window): Implement tab completion. Add binding | |
2252 | for ^C to stop target. | |
4a430794 | 2253 | end-sanitize-gdbtk |
f1b64caa | 2254 | |
156285aa JL |
2255 | Sat Jun 17 10:17:16 1995 Jeff Law (law@snake.cs.utah.edu) |
2256 | ||
2257 | * somsolib.c (som_solib_add): Validate regexp argument. | |
2258 | Don't assume the first entry on dld's library list is the main | |
2259 | program. Don't load the same library more than once and don't | |
2260 | consider the main program a shared library. | |
2261 | (som_solib_sharedlibrary_command): New function | |
2262 | (_initialize_som_solib): Add "sharedlibrary" command. | |
2263 | ||
e33c359d SS |
2264 | Thu Jun 15 14:54:58 1995 Stan Shebs <shebs@andros.cygnus.com> |
2265 | ||
2266 | * array-rom.c: Remove, no longer used. | |
2267 | ||
2268 | * remote-hms.c (hms_open): Make static. | |
2269 | ||
2270 | * mpw-config.in (MacSerial.h): Copy from version in {CIncludes}, | |
2271 | not {MPW}Interfaces:CIncludes. | |
2272 | * ser-mac.c (mac_baud_rate_table): Fix value for 38400 baud. | |
2273 | ||
2274 | Wed Jun 14 14:27:07 1995 Per Bothner <bothner@kalessin.cygnus.com> | |
2275 | ||
2276 | * ch-exp.y: Remove lots of unsupported productions and names. | |
2277 | Add support for IF-expressions, ORIF, ANDIF, NUM, and ADDR. | |
2278 | ||
61379835 PB |
2279 | Tue Jun 13 21:40:11 1995 Per Bothner <bothner@kalessin.cygnus.com> |
2280 | ||
2281 | * parser-defs.h (enum precedence): Added PREC_BUILTIN_FUNCTION. | |
2282 | * expression.h (enum exp_opcode): Added UNOP_LOWER, UNOP_UPPER, | |
2283 | UNUP_LENGTH. | |
2284 | * expprint.c (dump_expression): Handle the new exp_opcodes. | |
2285 | (print_subexp): Handle PREC_BUILTIN_FUNCTION. | |
2286 | (print_simple_m2_func): Removed. | |
2287 | (print_subexp): Remove support for Modula2 builtin functions. | |
2288 | * m2-lang.c (m2_op_print_tab): Add support for builtin functions. | |
2289 | * ch-exp.y: Parse LOWER, UPPER, and LENGTH builtins. | |
2290 | (write_lower_upper_value): Convenience function for LOWER and UPPER. | |
2291 | (upper_lower_argument, length_argument): Removed non-terminals. | |
2292 | * ch-lang.c (chill_op_print_tab): Entries for UPPER, LOWER, LENGTH. | |
2293 | (type_lower_upper): New function. Calculate LOWER/UPPER of type. | |
2294 | (value_chill_length): New function. Calcalate LENGTH of ARRAY/STRING. | |
2295 | (evaluate_subexp_chill): Handle UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH. | |
2296 | ||
2e1cc801 SS |
2297 | Mon Jun 12 12:48:13 1995 Stan Shebs <shebs@andros.cygnus.com> |
2298 | ||
2299 | Windows support bits from Steve Chamberlain <sac@slash.cygnus.com>. | |
2300 | * defs.h: Don't declare strchr and friends if WIN32. | |
2301 | (DIRNAME_SEPARATOR): Move here from source.c. | |
2302 | (SLASH_P, SLASH_CHAR, SLASH_STRING, ROOTED_P): New macros, | |
2303 | symbolic definitions for filename bits. | |
2304 | * top.c (cd_command): Use these. | |
2305 | * source.c (mod_path, openp): Ditto. | |
2306 | * terminal.h: Disable termio/sgtty definitions if WIN32. | |
2307 | * findvar.c (registers_changed): Call registers_changed_hook | |
2308 | if it is defined. | |
2309 | ||
43b442f1 C |
2310 | Mon Jun 12 12:22:05 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
2311 | ||
2312 | * Makefile.in (distclean, realclean): Remove config.cache and | |
2313 | config.log. | |
2314 | ||
99e0981c JL |
2315 | Mon Jun 12 00:21:59 1995 Jeff Law (law@snake.cs.utah.edu) |
2316 | ||
2317 | * somsolib.c: Include gdb-stabs.h. | |
2318 | (som_solib_section_offsets): Use SECT_OFF_XXX rather than 0, 1, | |
2319 | etc. Initialize offsets for RODATA & BSS too. | |
2320 | ||
b7202faa JL |
2321 | Sat Jun 10 17:59:11 1995 Jeff Law (law@snake.cs.utah.edu) |
2322 | ||
2323 | * hppa-tdep.c (frame_chain): Try to compensate for incomplete | |
2324 | register information in core files when backtracing. | |
2325 | ||
2326 | Fri Jun 9 14:51:38 1995 Stu Grossman (grossman@cygnus.com) | |
2327 | ||
2328 | * remote-nrom.c: Remove everything but download code. More | |
2329 | cleanups. | |
2330 | ||
4887063b SG |
2331 | Thu Jun 8 15:06:00 1995 Stu Grossman (grossman@cygnus.com) |
2332 | ||
2333 | * defs.h maint.c monitor.c remote-mips.c remote.c: Add support | |
2334 | for `watchdog' variable. This allows the user to put an upper | |
2335 | limit on the amount of time that GDB will wait for the target to | |
2336 | return from a step or continue operation. This will primarily be | |
2337 | used for the testsuite, where it is difficult to come up with a | |
2338 | reasonable timeout for things like function calls, which can take | |
2339 | as long as three minutes under some circumstances. If the | |
2340 | watchdog timer expires, GDB will generate an error that looks like | |
2341 | `Watchdog has expired.', and will detach from the target. | |
2342 | ||
2343 | * remote-mips.c (mips_open): Setup initial frame from target. | |
2344 | Print it out so that user is told where the program is stopped | |
2345 | when they attach. | |
2346 | ||
2347 | * remote-nrom.c: Loads of cleanups. Use serial code to open | |
2348 | network connections. Use expect() to wait for response to | |
2349 | download command. | |
2350 | ||
2351 | * ser-tcp.c (tcp_open): Retry connection if we get ECONNREFUSED. | |
2352 | ||
2353 | * serial.c serial.h (serial_open serial_fdopen serial_close): | |
2354 | Allow users to open the same device multiple times. They all get | |
2355 | to share the same serial_t. This is about the only way to have | |
2356 | multiple active targets use the same device (for download and | |
2357 | debug). | |
2358 | ||
2359 | * sparcl-tdep.c: Keep #include <unistd.h> away from GO32. | |
2360 | ||
2361 | * target.c: Add `targetdebug' variable. If this is non-zero, | |
2362 | then a special target is put at the top of the target stack which | |
2363 | will cause all calls through the target vector to have their args | |
2364 | and results printed out. | |
2365 | ||
2366 | Wed Jun 7 17:40:37 1995 Per Bothner <bothner@kalessin.cygnus.com> | |
2367 | ||
2368 | * ch-exp.y: Handle <primitive_value> "->" <modename>. | |
2369 | ||
a4c7302a MM |
2370 | Wed Jun 7 17:46:33 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
2371 | ||
b726a3d8 MM |
2372 | * mem-break.c (LITTLE_BREAKPOINT): If BREAKPOINT and |
2373 | {LITTLE,BIG}_BREAKPOINT are all defined, don't redefine. | |
2374 | (BIG_BREAKPOINT): Ditto. | |
2375 | ||
a4c7302a MM |
2376 | * config/rs6000/tm-rs6000.h (BREAKPOINT): Define as either |
2377 | BIG_BREAKPOINT or LITTLE_BREAKPOINT depending on the target byte | |
2378 | order. | |
2379 | ||
c38e0b58 JL |
2380 | Wed Jun 7 12:41:42 1995 Jeff Law (law@snake.cs.utah.edu) |
2381 | ||
fbf8d7e1 JL |
2382 | * somsolib.c (som_solib_section_offsets): Handle relative pathnames. |
2383 | ||
c38e0b58 JL |
2384 | * hppa-tdep.c (frame_saved_pc): Handle backtracing through signal |
2385 | handler in dynamically linked executables. | |
2386 | ||
5c172b4b MM |
2387 | Tue Jun 6 10:44:25 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
2388 | ||
2389 | From Andrew Cagney <cagney@highland.com.au> | |
2390 | * rs6000-tdep.c (single_step): Handle both little and big endian | |
2391 | breakpoints. | |
2392 | (gdb_print_insn_powerpc): Deal with disassembling both little and | |
2393 | big endian PowerPC systems. | |
2394 | (_initialize_rs6000_tdep): Use gdb_print_insn_powerpc to handle | |
2395 | disassembly, rather that assuming big endian order. | |
2396 | ||
2397 | * config/rs6000/tm-rs6000.h (BREAKPOINT): Delete. | |
2398 | (BIG_BREAKPOINT): Define, big endian breakpoint instruction. | |
2399 | (LITTLE_BREAKPOINT): Define, little endian breakpoint instruction. | |
2400 | ||
2401 | Sat Jun 3 01:54:56 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) | |
2402 | ||
2403 | * README: Add note about Unixware 2.x. | |
2404 | ||
2405 | * dbxread.c (process_one_symbol): Check for exact symbol name | |
2406 | match when fixing up N_GSYM and N_STSYM symbols from Sun acc. | |
2407 | ||
2408 | * valprint.c (value_print_array_elements): Use | |
2409 | fprintf_filtered to put out `<repeats %u times>', | |
2410 | from schwab@issan.informatik.uni-dortmund.de (Andreas Schwab). | |
2411 | ||
2412 | * value.h (struct value): Change `repetitions' field from | |
2413 | `short' to `int' type. | |
2414 | ||
4f36d4ab DE |
2415 | start-sanitize-arc |
2416 | Fri Jun 2 11:17:23 1995 Doug Evans <dje@canuck.cygnus.com> | |
2417 | ||
2418 | * arc-tdep.c (arc_bfd_mach_type): New static global. | |
2419 | (codestream_fill): Handle byte order differences. | |
2420 | (setup_prologue_scan): Don't read stdarg function's "sub sp,sp,N". | |
2421 | (arc_get_frame_setup): Read it here. | |
2422 | (arc_frame_saved_pc): And here. | |
2423 | (arc_print_insn): New function. | |
2424 | (arc_set_cpu_type): Set arc_bfd_mach_type. Don't set tm_print_insn. | |
2425 | (_initialize_arc_tdep): Set tm_print_insn to arc_print_insn. | |
2426 | end-sanitize-arc | |
2427 | ||
2de498d8 C |
2428 | Wed May 31 12:04:01 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
2429 | ||
119a5f4e C |
2430 | * nlm/{configure.in, Makefile.in}: Converted to use autoconf. |
2431 | * nlm/configure: New file, generated with autoconf 2.3. | |
2432 | ||
3be5f039 C |
2433 | * nlm/configure.in: Use sed instead of awk to get the value of |
2434 | cpufile. Awk is not a utility required by the GNU coding | |
2435 | standards. This change also fixes the rigid whitespace | |
2436 | requirements that were required for awk. | |
2437 | ||
2de498d8 C |
2438 | * sparclite/aload.c: Use a file descriptor instead of a stdio |
2439 | stream for i/o with target board. | |
2440 | Use #error if HAVE_TERMIOS is not defined. | |
2441 | ||
2442 | * sparclite/{Makefile.in, configure.in}: Converted to use | |
2443 | autoconf. | |
2444 | * sparclite/configure: New file, generated with autoconf 2.3. | |
2445 | ||
413cba82 JL |
2446 | Sun May 28 23:10:07 1995 Jeff Law (law@snake.cs.utah.edu) |
2447 | ||
089c9303 JL |
2448 | * defs.h: Include either varargs.h or stdarg.h (for va_list). |
2449 | Fix stupid thinko in last change ("..." -> "va_list"). | |
2450 | ||
413cba82 JL |
2451 | * defs.h (vprintf_filtered declaration): Add PARAMS prototype; |
2452 | gcc-2.5 chokes on format attributes for unprototyped functions. | |
2453 | (vfprintf_filtered declaration): Likewise. | |
2454 | (vprintf_unfiltered declaration): Likewise. | |
2455 | (vfprintf_unfiltered). Likewise. | |
2456 | ||
094fd4ae C |
2457 | Sat May 27 23:54:17 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
2458 | ||
2459 | * configure.in: Use sed instead of awk to get the values of | |
2460 | hostfile, targetfile and nativefile. Awk is not a utility | |
2461 | required by the GNU coding standards. This change also | |
2462 | fixes the rigid whitespace requirements that were required | |
2463 | for awk. | |
2464 | * configure: regenerated. | |
2465 | ||
0cc3f4fc AMT |
2466 | Sat May 27 16:24:04 1995 Angela Marie Thomas <angela@cirdan.cygnus.com> |
2467 | ||
2468 | * sparclite/{Makefile,configure}.in: Add hooks for building with | |
2469 | -lsocket & -lnsl for solaris2. Don't build aload/eload for DOS. | |
2470 | ||
2471 | Thu May 25 12:46:37 1995 Jim Kingdon (kingdon@lioth.cygnus.com) | |
2472 | ||
2473 | * gdbserver/remote-utils.c (prepare_resume_reply): Add FIXME | |
2474 | comment regarding signal numbering. | |
2475 | ||
54af8e6e SC |
2476 | Wed May 24 15:49:47 1995 Steve Chamberlain <sac@slash.cygnus.com> |
2477 | ||
4936656a SC |
2478 | * arm-tdep.c (_initialize_arm_tdep): Use print_insn_little_arm |
2479 | now. | |
2480 | ||
54af8e6e SC |
2481 | * arm-tdep.c (convert_from_extended, convert_to_extended): |
2482 | New. | |
2483 | * coffread.c (enter_linenos): Return if linetab 0. | |
2484 | * config/arm/arm.mt (TDEPFILES): Add simulator support. | |
2485 | * config/arm/tm-arm.h (FRAME_FIND_SAVED_REGS): Fix prototypes. | |
2486 | ||
2487 | Mon May 22 19:37:21 1995 Rob Savoye <rob@darkstar.cygnus.com> | |
2488 | ||
2489 | * config/idt.mt: replace monitor and array-rom with the new | |
2490 | remote-array. | |
2491 | ||
f5a8f1a6 SG |
2492 | Mon May 22 15:38:25 1995 Stu Grossman (grossman@cygnus.com) |
2493 | ||
cac390d4 SG |
2494 | * remote-nindy.c: Install Kung patch for PR 6820. I have no idea |
2495 | what this does... | |
2496 | ||
f5a8f1a6 SG |
2497 | * breakpoint.c: Move defaults of watchpoint related macros into |
2498 | target.h. | |
2499 | * target.h: Macros from breakpoint.c. Conditionalize based on | |
2500 | TARGET_HAS_HARDWARE_WATCHPOINTS. | |
2501 | * i386v-nat.c procfs.c: Use TARGET_HAS_HARDWARE_WATCHPOINTS | |
2502 | instead of TARGET_CAN_USE_HARDWARE_WATCHPOINT to enable watchpoint | |
2503 | code. | |
2504 | * config/i386/nm-linux.h, config/mips/nm-irix4.h, | |
2505 | config/pa/nm-hppab.h, config/sparc/tm-sparclite.h: #define | |
2506 | TARGET_HAS_HARDWARE_WATCHPOINTS to enable watchpoint code. | |
2507 | ||
e8bf33c4 JK |
2508 | Mon May 22 06:47:30 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
2509 | ||
2510 | * breakpoint.c, target.h: Move defaults of watchpoint related | |
2511 | macros back to breakpoint.c. Required to get GDB compiling | |
2512 | on Solaris again. | |
2513 | ||
2514 | Fri May 19 14:49:37 1995 J.T. Conklin <jtc@rtl.cygnus.com> | |
2515 | ||
2516 | * defs.h (ATTR_FORMAT): New macro, expands to gcc's format | |
2517 | attribute when compiled by gcc. | |
2518 | * defs.h, language.h, monitor.h: Changed many function | |
2519 | declarations to use ATTR_FORMAT. | |
2520 | ||
2521 | * breakpoint.c (delete_command); source.c (directory_command); | |
2522 | top.c (define_command): Changed call to query() that had too | |
2523 | many arguments. | |
2524 | * printcmd.c (address_info): Changed call to printf_filtered() | |
2525 | that had too many arguments. | |
2526 | ||
a5298c2a JK |
2527 | Fri May 19 09:52:07 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
2528 | ||
2529 | * infrun.c (wait_for_inferior): Move assignments to stop_signal | |
2530 | and stop_pc, and STOPPED_BY_WATCHPOINT code, back where they | |
2531 | were--after the switch statement on w.kind. You can't read the | |
2532 | registers of an inferior which has exited. Use a goto in the | |
2533 | STOPPED_BY_WATCHPOINT code. | |
2534 | * infrun.c (wait_for_inferior): Reinstate | |
2535 | HAVE_STEPPABLE_WATCHPOINT and HAVE_CONTINUABLE_WATCHPOINT code. | |
2536 | ||
73d3dbd4 JK |
2537 | Fri May 19 06:15:40 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
2538 | ||
2539 | * utils.c, complaints.c, language.c, monitor.c, remote-array.c, | |
2540 | remote-mips.c, remote-os9k.c, remote-st.c: Conditionalize use of | |
2541 | stdarg rather than varargs on ANSI_PROTOTYPES not __STDC__; it | |
2542 | must match the definition of PARAMS. | |
2543 | start-sanitize-gdbtk | |
2544 | * gdbtk.c: Likewise. | |
2545 | end-sanitize-gdbtk | |
2546 | ||
85c613aa C |
2547 | Thu May 18 15:58:46 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
2548 | ||
2549 | * utils.c (fprintf_filtered, fprintf_unfiltered, fprintfi_filtered, | |
2550 | printf_filtered, printf_unfiltered, printfi_filtered, query, warning, | |
2551 | error, fatal, fatal_dump_core): Use stdarg.h macros when compiling | |
2552 | with an ANSI compiler. | |
e8bf33c4 | 2553 | * complaints.c (complain): Likewise. |
85c613aa C |
2554 | * language.c (type_error, range_error): Likewise. |
2555 | * monitor.c (monitor_printf, monitor_printf_noecho): Likewise. | |
2556 | * remote-array.c (printf_monitor, debuglogs): Likewise. | |
2557 | * remote-mips.c (mips_error): Likewise. | |
2558 | * remote-os9k.c (printf_monitor): Likewise. | |
2559 | * remote-st.c (printf_stdebug): Likewise. | |
2560 | start-sanitize-gdbtk | |
2561 | * gdbtk.c (gdbtk_query): Likewise. | |
2562 | end-sanitize-gdbtk | |
2563 | ||
e8bf33c4 | 2564 | * defs.h, complaints.h, language.h, monitor.h: Add prototypes to |
85c613aa C |
2565 | match above changes. |
2566 | ||
2567 | * printcmd.c: Remove uneeded #include <varargs.h>. | |
2568 | * remote-e7000.c: Likewise. | |
2569 | ||
2570 | * f-typeprint.c (f_type_print_base): Fix typo found by above | |
2571 | changes. | |
2572 | ||
fb494327 JK |
2573 | Wed May 17 11:21:32 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
2574 | ||
2575 | * Makefile.in (xcoffread.o): Depend on partial-stab.h. | |
2576 | ||
2577 | * xcoffsolib.c (sharedlibrary_command): New command. | |
2578 | * xcoffsolib.c (solib_info): Call xcoff_relocate_symtab. | |
2579 | * xcoffsolib.c: Miscellaneous cleanups. | |
2580 | ||
2581 | * partial-stab.h: Ignore symbol descriptor '-' (for local | |
2582 | variables with negative type numbers) without complaint. | |
2583 | ||
2584 | * rs6000-nat.c (vmap_ldinfo): Use bfd_stat rather than our own | |
2585 | local emulation thereof. Remove unused variable ostart. | |
2586 | ||
eba08643 C |
2587 | Wed May 17 15:55:53 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
2588 | ||
e61853dd C |
2589 | * Makefile.in (config.status): changed target so that |
2590 | config.status --recheck is executed if configure script changes. | |
2591 | ||
eba08643 C |
2592 | * monitor.c (monitor_printf): Changed format specification in |
2593 | error message to work with pre-ansi compilers. | |
2594 | (monitor_load_srec): reduced length of s-records from 128 to 32 | |
2595 | bytes so download is more reliable with the rom68k monitor. | |
2596 | ||
2597 | * rom68k-rom.c: Added trailing space to prompt string. | |
2598 | ||
2599 | * config/i386/xm-i386sco.h (HAVE_STRSTR): Removed. | |
2600 | * config/i386/xm-go32.h, mswin/xm.h (SYS_SIGLIST_MISSING): | |
2601 | Removed. | |
2602 | * defs.h, config/{xm-lynx.h, xm-nbsd.h}, | |
2603 | config/i386/{xm-i386bsd.h, xm-linux.h}, | |
2604 | config/m68k/xm-hp300bsd.h, config/mips/xm-irix4.h, | |
2605 | config/ns32k/xm-ns32km3.h, doc/gdbint.texinfo | |
2606 | (PSIGNAL_IN_SIGNAL_H): Removed. | |
2607 | ||
0a5a1821 C |
2608 | Tue May 16 13:16:06 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
2609 | ||
eba08643 C |
2610 | * Makefile.in (Makefile): Added config.status to dependency list. |
2611 | ||
0a5a1821 C |
2612 | * configure.in: Added INIT-CMDS argument to AC_OUTPUT which sets |
2613 | gdb_host_cpu, gdb_target_cpu and nativefile. | |
2614 | * configure: regenerated. | |
2615 | ||
943b7032 PS |
2616 | Mon May 15 23:50:51 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
2617 | ||
2618 | * mdebugread.c (parse_symbol): Do not relocate stBlock/scText | |
2619 | symbols, their value is the displacement from the procedure address. | |
2620 | * top.c (init_main): Add missing newlines to help strings for | |
2621 | `if' and `while' commands, fix help string for `show commands'. | |
2622 | ||
75cbae71 SG |
2623 | Mon May 15 18:37:56 1995 Stu Grossman (grossman@cygnus.com) |
2624 | ||
2625 | * breakpoint.c: Move defaults of watchpoint related macros into | |
2626 | target.h. Use BP_TEMPFLAG and BP_HARDWAREFLAG instead of | |
2627 | constants. | |
2628 | * infrun.c (wait_for_inferior): Enhance comment near | |
2629 | STOPPED_BY_WATCHPOINT. | |
2630 | * target.h: Macros from breakpoint.c. | |
2631 | ||
5436fc65 C |
2632 | Mon May 15 17:11:38 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
2633 | ||
2634 | * config/i386/{i386sol2.mh, i386v4.mh, ncr3000.mh}, | |
2635 | config/m68k/m68kv4.mh, config/mips/{irix4.mh, irix5.mh, | |
2636 | mipsv4.mh}, config/sparc/sun4so2.mh (INSTALL): Removed, figured | |
2637 | out by autoconf. | |
2638 | * config/apollo68v.mh (RANLIB): Removed, figured out by autoconf. | |
2639 | ||
2640 | * Makefile.in, configure.in: Converted to use autoconf | |
2641 | * aclocal.m4: New file, local autoconf macro definitions. | |
2642 | * configure: New file, generated with autoconf 2.3. | |
2643 | ||
dfd7f395 SS |
2644 | Mon May 15 14:46:41 1995 Stan Shebs <shebs@andros.cygnus.com> |
2645 | ||
2646 | * remote.c (remote_kill): Add prototype. | |
2647 | * cpu32bug-rom.c (cpu32bug_open): Properly define as static. | |
2648 | * config/h8300/h8300hms.mt (TDEPFILES): Add monitor.o. | |
2649 | ||
c66ed884 SG |
2650 | Mon May 15 12:12:34 1995 Stu Grossman (grossman@cygnus.com) |
2651 | ||
24e1a4e0 SG |
2652 | * sparclite/salib.c (win_ovf win_unf): Make window size constant |
2653 | into a variable (__WINSIZE) so that it can be controlled via the | |
2654 | .h file. | |
2655 | * sparclite/sparclite.h: Add SL933 #ifdef to set __WINSIZE to 6 | |
2656 | for the 933 board. | |
2657 | ||
c66ed884 SG |
2658 | * infrun.c: Add #ifdef HP_OS_BUG to all references to |
2659 | trap_expected_after_continue. | |
2660 | * (wait_for_inferior): Fix for remote watchpoints. Don't try to | |
2661 | insert breakpoints while target is running (this only works on | |
2662 | *some* native targets). This may also speed up native watchpoints | |
2663 | considerably. | |
2664 | ||
f133a597 JK |
2665 | Sat May 13 13:55:04 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
2666 | ||
2667 | * dwarfread.c (struct dwfinfo), dbxread.c (struct symloc), | |
bbb053fd JK |
2668 | mdebugread.c (struct symloc), hpread.c (struct symloc), |
2669 | xcoffread.c (struct symloc): Fix inaccurate comment introduced | |
2670 | 20 Apr 1995. | |
f133a597 | 2671 | |
a367db89 JK |
2672 | Sat May 13 13:34:18 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
2673 | ||
2674 | * rs6000-tdep.c (find_toc_address): Revise comment. | |
2675 | * symfile.c, symfile.h (init_psymbol_list): New function; | |
2676 | consolidate duplicated copies from os9kread.c, dbxread.c | |
2677 | and dwarfread.c. | |
2678 | * defs.h: Declare info_verbose. | |
2679 | * xcoffread.c: Extensive changes to support psymtabs. | |
2680 | ||
511ffbf2 SG |
2681 | Fri May 12 13:48:41 1995 Stu Grossman (grossman@andros.cygnus.com) |
2682 | ||
2683 | * cpu32bug-rom.c remote-est.c rom68k-rom.c: Update line_term element. | |
2684 | ||
48b2d07e JK |
2685 | Fri May 12 06:39:30 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
2686 | ||
2687 | * partial-stab.h: Expand comments. | |
2688 | ||
2d2959e8 JL |
2689 | Thu May 11 19:01:37 1995 Jeff Law (law@snake.cs.utah.edu) |
2690 | ||
2691 | * Support debugging using native MACH primitives on hppa*-*-osf*. | |
2692 | * configure.in: hppa*-*-osf* != hppa*-*-bsd* anymore. | |
2693 | * config/pa/hppaosf.mh: New file. | |
2694 | * config/pa/nm-hppao.h: Likewise. | |
2695 | * hppam3-nat.c: Likewise. | |
2696 | * config/pa/tm-hppao.h (PSW_SS): Define for single-stepping. | |
2697 | (MACHINE_CPROC_*_OFFSET): Define. | |
2698 | (TRACE_*): Define. | |
2699 | (START_INFERIOR_TRAPS_EXPECTED): Delete definition. | |
2700 | ||
d8afcce9 SG |
2701 | Wed May 10 18:59:26 1995 Stu Grossman (grossman@andros.cygnus.com) |
2702 | ||
2703 | * hppa-tdep.c (read_unwind_info): Cosmetic cleanup. | |
2704 | * (unwind_command): Clean it up and make it print things out | |
2705 | nicer. | |
2706 | * monitor.c: Add ^C handling capability (mostly ripped off from | |
2707 | remote.c). | |
2708 | * (monitor_printf): Make it check the command echo. | |
2709 | * (monitor_printf_noecho): Similar to above, but doesn't check | |
2710 | for echo. | |
2711 | * (monitor_stop): No longer waits for prompt. That is the job of | |
2712 | the caller. This makes things work much better for monitor_wait, | |
2713 | which waits for the prompt itself. | |
2714 | * (monitor_open): Deal with new monitor_stop semantics. Also, | |
2715 | flush input after sending init strings to get rid of junk that may | |
2716 | be output. Also, don't always send \r to remote. Use | |
2717 | monitor_ops->line_term cuz proper character isn't always \r. | |
2718 | * (monitor_fetch_register): Switch to completely different | |
2719 | algorithm to deal with lame-ass monitors which put spaces in the | |
2720 | middle of numbers, and prompt with a space!!!!! | |
2721 | * (monitor_read_memory_single): New routine to be used with | |
2722 | monitors that can only return one byte/short/long at a time. This | |
2723 | is selected via MO_GETMEM_READ_SINGLE. | |
2724 | * (monitor_load_srec): Use monitor_printf_noecho for sending S | |
2725 | records. Most targets don't echo them. | |
2726 | * (monitor.h): Get rid of cmd_delim. Add line_delim. | |
2727 | * op50n-rom.c (op50n_cmds): Fill it up. Make it work. | |
2728 | * w89k-rom.c: Change all eols from \r to \n. Change load_resp to | |
2729 | ^Q to prevent error message. | |
2730 | * config/pa/tm-hppa.h (CALL_DUMMY (for hppro)): Add special | |
2731 | instruction sequence at end to make restore_pc_queue happy. | |
2732 | ||
bec6c6db TG |
2733 | Wed May 10 15:59:00 1995 Torbjorn Granlund <tege@adder.cygnus.com> |
2734 | ||
2735 | * remote-est.c (est_open): Make static to match prototype. | |
2736 | ||
c7b44b04 MM |
2737 | Tue May 9 16:58:50 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
2738 | ||
2739 | * configure.in: Add little endian PowerPC support. | |
2740 | * config/powerpc/ppcle-eabi.mt: New file for little endian PowerPC | |
2741 | support. | |
2742 | * config/powerpc/tm-ppcle-eabi.h: ditto. | |
2743 | ||
5e3f4eac C |
2744 | Mon May 8 12:11:38 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
2745 | ||
7e1bfb70 C |
2746 | * nlm/configure.in (gdb_host, gdb_host_cpu, gdb_target): Removed. |
2747 | These variables not used. | |
2748 | ||
5e3f4eac C |
2749 | * config/m68k/monitor.mt (TDEPFILES): Added cpu32bug-rom.o. |
2750 | ||
774e5d7f SS |
2751 | Wed May 3 17:54:47 1995 Stan Shebs <shebs@andros.cygnus.com> |
2752 | ||
2753 | * monitor.c (monitor_command): Don't use PROMPT until monitor | |
2754 | target is known to be open. | |
2755 | (monitor_make_srec): Don't define size of hextab. | |
2756 | ||
2757 | Tue May 2 18:32:24 1995 Stan Shebs <shebs@andros.cygnus.com> | |
2758 | ||
2759 | * configure.in (--enable-netrom): New configuration option. | |
2760 | * Makefile.in (REMOTE_OBS): Rename from REMOTE_O, append | |
2761 | value of NETROM_OBS. | |
2762 | (NETROM_OBS): New variable. | |
2763 | * remote-nrom.c: New file, NetROM target support. | |
2764 | * config/a29k/a29k-udi.mt, config/i960/vxworks960.mt: Use | |
2765 | REMOTE_OBS instead of REMOTE_O. | |
2766 | start-sanitize-arc | |
2767 | * config/arc/arc.mt: Ditto. | |
2768 | end-sanitize-arc | |
2769 | ||
e2bc2606 SG |
2770 | Fri Apr 28 23:30:00 1995 Stu Grossman (grossman@cygnus.com) |
2771 | ||
2772 | * array-rom.c (_initialize_array array_open): Move baud_rate | |
2773 | initialization from _initxxx to array_open to fix bug with | |
2774 | overriding -b command line option. | |
2775 | ||
ad0c0b7f DE |
2776 | Thu Apr 27 20:29:34 1995 Doug Evans <dje@canuck.cygnus.com> |
2777 | ||
2778 | * Makefile.in (RUNTEST): Fix reference of `srcdir'. | |
2779 | ||
5d747d61 SC |
2780 | Wed Apr 26 19:01:08 1995 Steve Chamberlain <sac@slash.cygnus.com> |
2781 | ||
2782 | * remote-hms.c: Rewrite to use new monitor conventions. | |
2783 | ||
ab52cc44 JK |
2784 | Tue Apr 25 11:27:14 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
2785 | ||
2786 | * dbxread.c: Add comment explaining lowest_text_address. | |
0f60fbb8 | 2787 | Add comment regarding stringtab_global and psymtabs. |
ab52cc44 | 2788 | |
4a8b575e JL |
2789 | Sat Apr 22 01:26:29 1995 Jeff Law (law@snake.cs.utah.edu) |
2790 | ||
87e33b84 JL |
2791 | * config/pa/tm-hppa.h (EXTRACT_STRUCT_VALUE_ADDRESS): Fix. |
2792 | ||
4a8b575e JL |
2793 | * config/pa/tm-hppa.h (EXTRACT_RETURN_VALUE): Rewrite to correctly |
2794 | handle "short", "int" and small structures returned in registers. | |
2795 | ||
cdd2212f KH |
2796 | Fri Apr 21 12:57:53 1995 Kung Hsu <kung@mexican.cygnus.com> |
2797 | ||
2798 | * minsyms.c: add new function lookup_minimal_symbol_text, to look | |
2799 | for text symbol only. | |
2800 | * breakpoint.c (create_longjmp_breakpoint): call | |
2801 | lookup_minimal_symbol_text instead of lookup_minimal_symbol. | |
2802 | * symtab.h: add lookup_minimal_symbol_text prototype. | |
2803 | ||
66d05e03 SS |
2804 | Fri Apr 21 12:03:44 1995 Stan Shebs <shebs@andros.cygnus.com> |
2805 | ||
2806 | * sh-tdep.c (sh-opc.h): Don't include. | |
2807 | (gdbcore.h): Include. | |
2808 | (frame_find_saved_regs): Remove unused local. | |
2809 | ||
989d9cba JK |
2810 | Thu Apr 20 10:12:21 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
2811 | ||
2812 | * dwarfread.c (struct dwfinfo), dbxread.c (struct symloc), | |
2813 | mdebugread.c (struct symloc), hpread.c (struct symloc): Clean | |
2814 | up comments. | |
2815 | ||
7486c68d SG |
2816 | Wed Apr 19 16:58:11 1995 Stu Grossman (grossman@andros.cygnus.com) |
2817 | ||
2818 | * hppa-tdep.c (deposit_17): New routine to deposit 17 bit | |
2819 | constants into PA instructions. | |
2820 | * Put #ifdefs around all signal handling code. Not generally | |
2821 | needed for embedded boards. | |
2822 | * (hppa_fix_call_dummy): Parameterize offsets into call dummy to | |
2823 | allow different dummys to be used by this code. Use | |
2824 | INSTRUCTION_SIZE instead of REGISTER_SIZE for things. | |
2825 | Conditionalize setup of _sr4export fixup. Improve comments. | |
2826 | * config/pa/tm-hppa.h: Define INSTRUCTION_SIZE. Use a different | |
2827 | call dummy if PA_LEVEL_0 is defined. Better comments for call | |
2828 | dummys. Define offsets for LDIL/LDO instructions which load | |
2829 | function addresses. | |
2830 | * config/pa/tm-pro.h: Get rid of signal handling stuff. Define | |
2831 | PA_LEVEL_0 to disable mucking with space regs and such. | |
2832 | ||
2833 | Mon Apr 17 15:37:08 1995 Stu Grossman (grossman@andros.cygnus.com) | |
2834 | ||
2835 | * cpu32bug-rom.c monitor.h op50-rom.c remote-est.c rom68k-rom.c | |
2836 | w89k-rom.c: Remove loadtypes, loadprotos and baudrates. | |
2837 | * op50-rom.c: Fix copyrights and add load routine to op50n_cmds. | |
2838 | * rom68k-rom.c (_initialize_rom68k): Don't set baud rate. | |
2839 | * w89k-rom.c: Fix copyrights. | |
2840 | ||
fe4bce98 SG |
2841 | Sun Apr 16 14:00:55 1995 Stu Grossman (grossman@andros.cygnus.com) |
2842 | ||
2843 | * monitor.c: Move all xmodem stuff into xmodem.[ch]. Remove | |
2844 | unnecessary remoteloadprotocol and remoteloadtype support. | |
2845 | * (expect expect_prompt): Change names to monitor_expect and | |
2846 | monitor_expect_prompt. Make them global. | |
2847 | * (printf_monitor): Change name to monitor_printf. Make global. | |
2848 | * (monitor_read_memory): Flush command echo to avoid parsing | |
2849 | ambiguity with CPU32Bug monitor. | |
2850 | * (monitor_load): Remove remoteloadprotocol and remoteloadtype | |
2851 | support. Call target_ops->load_routine, default to | |
2852 | monitor_load_srec. | |
2853 | * (monitor_load_srec): Remove everything but S-record support. | |
2854 | * monitor.h (monitor_ops): Add load_routine to provide monitor | |
2855 | specific download capability. | |
2856 | * remote-est.c: Clean up copyrights and comments. | |
2857 | * w89k-rom.c: Use new xmodem support. | |
2858 | * xmodem.c xmodem.h: New files to support xmodem downloads. | |
2859 | * rom68k-rom.c remote-est.c: Fix copyrights, add load_routine | |
2860 | entry to monitor_ops. | |
2861 | * cpu32bug-rom.c: New file to support Moto BCC debuggers. | |
2862 | * config/m68k/est.mt (TDEPFILES): Add cpu32bug.o. | |
2863 | * config/pa/hppapro.mt (TDEPFILES): Add xmodem.o. | |
2864 | ||
51558740 JK |
2865 | Sat Apr 15 18:00:15 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
2866 | ||
2867 | * rem-multi.shar: Removed; superceded by gdbserver. | |
2868 | ||
e2adc41a JK |
2869 | Fri Apr 14 12:10:24 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
2870 | ||
2871 | * xcoffread.c (xcoff_sym_fns): Revise comment about merging this | |
2872 | with coffread.c. | |
2873 | ||
2874 | * breakpoint.c (fixup_breakpoints): Removed. | |
2875 | * rs6000-nat.c (vmap_symtab): Don't call fixup_breakpoints. | |
2876 | (vmap_ldinfo, xcoff_relocate_core): Call breakpoint_re_set. | |
2877 | ||
2878 | * coffread.c (coff_symfile_offsets): Allocate SECT_OFF_MAX | |
2879 | sections, not just SECT_OFF_MAX-1. | |
2880 | ||
2881 | * rs6000-nat.c (vmap_symtab), xcoffread.c: Re-do section offsets | |
2882 | to be indexed by SECT_OFF_* instead of xcoff section numbers. | |
2883 | * objfiles.c, remote.c: Remove comments regarding SECT_OFF_*. | |
2884 | * symtab.h: Revise comment about block_line_section. | |
2885 | * rs6000-nat.c (vmap_symtab): Don't relocate objfile->sections. | |
2886 | ||
8befb594 SS |
2887 | Sat Apr 15 14:15:14 1995 Stan Shebs <shebs@andros.cygnus.com> |
2888 | ||
2889 | * mpw-make.in (init.c): Don't try to do symbolic {o} in sed | |
2890 | command, not allowed by some version of MPW Make. | |
2891 | * ser-mac.c (mac-setbaudrate): Make it actually set baud rates. | |
2892 | ||
b3636ee5 JK |
2893 | Sat Apr 15 14:05:09 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
2894 | ||
2895 | * alpha-tdep.c (alpha_push_arguments): Fix typo (TYPE_VALUE -> | |
2896 | VALUE_TYPE). Do the cast for TYPE_CODE_BOOL, TYPE_CODE_CHAR, | |
2897 | TYPE_CODE_ENUM, and TYPE_CODE_RANGE as well as TYPE_CODE_INT. | |
2898 | ||
2899 | Sat Apr 15 14:04:32 1995 Per Bothner <bothner@cygnus.com> | |
2900 | ||
2901 | * alpha-tdep.c (alpha_push_arguments): Only cast to long for | |
2902 | TYPE_CODE_INT. | |
2903 | ||
6fd934a6 | 2904 | start-sanitize-gdbtk |
d7c4766c SS |
2905 | Sat Apr 15 13:52:24 1995 Stan Shebs <shebs@andros.cygnus.com> |
2906 | ||
2907 | * gdbtk.c (gdb_disassemble): Read from inferior if connected | |
2908 | to a VxWorks target. | |
2909 | ||
6fd934a6 SG |
2910 | Fri Apr 14 10:18:20 1995 Stu Grossman (grossman@cygnus.com) |
2911 | ||
2912 | * README.GDBTK: New file. Contains the obvious. | |
6fd934a6 | 2913 | end-sanitize-gdbtk |
d7c4766c | 2914 | |
3e437fe6 RS |
2915 | Thu Apr 13 16:17:04 1995 Rob Savoye <rob@darkstar.cygnus.com> |
2916 | ||
2917 | * remote-array.c: New file for Array Tech LSI33k based controller | |
2918 | board. | |
2919 | ||
546e6a39 KH |
2920 | Thu Apr 13 12:23:31 1995 Kung Hsu <kung@rtl.cygnus.com> |
2921 | ||
2922 | * a29k-tdep.c (get_longjmp_target): Replace SWAP_TARGET_AND_HOST with | |
2923 | extract_address. | |
2924 | * remote-vxsparc.c: New file, preliminary check in, this configuration | |
2925 | not supported yet. | |
2926 | * remote-vxmips.c: ditto. | |
2927 | ||
2928 | Thu Apr 13 12:10:14 1995 Michael Meissner <meissner@tiktok.cygnus.com> | |
2929 | ||
2930 | * rs6000-tdep.c (xcoff_add_toc_to_loadinfo): Don't use a prototype | |
2931 | to declare the function. | |
2932 | ||
d108166f SS |
2933 | Wed Apr 12 16:40:20 1995 Stan Shebs <shebs@andros.cygnus.com> |
2934 | ||
2935 | * monitor.h (init_monitor_ops): Declare. | |
2936 | * rom68k-rom.c: Clarify some comments. | |
2937 | (rom68k_open): Define as static, to match decl. | |
2938 | ||
ade01652 JK |
2939 | Wed Apr 12 16:36:44 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
2940 | ||
56b73ad2 JK |
2941 | * gdb.gdb: New file. |
2942 | * .gdbinit: Move list-objfiles to gdb.gdb. | |
2943 | ||
ade01652 JK |
2944 | * values.c (set_internalvar): Set modifiable flag of newval. |
2945 | ||
f8203ed0 JK |
2946 | Wed Apr 12 14:34:31 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
2947 | ||
2948 | * xcoffread.c: Call complain() rather than error() or printing a | |
2949 | warning. | |
2950 | ||
32513ed1 DE |
2951 | start-sanitize-arc |
2952 | Wed Apr 12 08:15:27 1995 Doug Evans <dje@canuck.cygnus.com> | |
2953 | ||
2954 | * arc-tdep.c: #include "gdbcmd.h". | |
2955 | (codestream_seek): Pass CORE_ADDR. | |
2956 | (arc_cpu_type, tmp_arc_cpu_type, arc_cpu_type_table): New globals. | |
2957 | (debug_pipeline_p): Likewise. | |
2958 | (X_...): Instruction field access macros. | |
2959 | (BUILD_INSN): Define. | |
2960 | (codestream_tell): Allow for stream elements > 1 byte. | |
2961 | (codestream_fill): Likewise. | |
2962 | (setup_prologue_scan): New function. | |
2963 | (arc_get_frame_setup): Call it. Update to current spec | |
2964 | regarding prologues. Use BUILD_INSN. | |
2965 | (skip_prologue): New argument `frameless_p'. Use BUILD_INSN. | |
2966 | (arc_frame_saved_pc): New function. | |
2967 | (frame_find_saved_regs): Use BUILD_INSN. | |
2968 | (get_insn_type, single_step): New functions. | |
2969 | (one_stepped): New global. | |
2970 | (arc_set_cpu_type_command, arc_show_cpu_type_command): New functions. | |
2971 | (arc_set_cpu_type): New function. | |
2972 | (_initialize_arc_tdep): Define new `set' commands `cpu', | |
2973 | `displaypipeline', and `debugpipeline'. | |
2974 | * remote-arc.c (break_insn): Add bi-endian support. | |
2975 | (arc_insert_breakpoint): Likewise. | |
2976 | (arc_remove_breakpoint): Likewise. | |
2977 | (switch_command): Delete. | |
2978 | * arc/tm-arc.h (TARGET_BYTE_ORDER): Delete. | |
2979 | (TARGET_BYTE_ORDER_SELECTABLE): Define. | |
2980 | (DEFAULT_ARC_CPU_TYPE): Define. | |
2981 | (SKIP_PROLOGUE_FRAMELESS_P): Define. | |
2982 | (BREAKPOINT): Delete. | |
2983 | (BIG_BREAKPOINT, LITTLE_BREAKPOINT): Define. | |
2984 | (DECR_PC_AFTER_BREAK): Change to 8. | |
2985 | (NO_SINGLE_STEP): Define. | |
2986 | (ARC_PC_TO_REAL_ADDRESS): Define. | |
2987 | (SAVED_PC_AFTER_CALL): Use it. | |
2988 | (NUM_REGS, REGISTER_BYTES): Fix. | |
2989 | (FRAME_SAVED_PC): Call arc_frame_saved_pc. | |
2990 | (FRAME_LOCALS_ADDRESS): Fix. | |
2991 | end-sanitize-arc | |
2992 | ||
0c0c911b JK |
2993 | Tue Apr 11 16:42:37 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
2994 | ||
2995 | * top.c, utils.c, defs.h: Remove error_hook. It is currently | |
2996 | unused and would need to hook into error_begin()/return_to_top_level(), | |
2997 | instead of error(), if it were to be used. | |
2998 | ||
8989d4fc JK |
2999 | Tue Apr 11 13:46:25 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
3000 | ||
3001 | * utils.c, defs.h (warning_begin): Renamed from warning_setup, for | |
3002 | consistency with error_begin. Also print warning_pre_print. | |
3003 | Document it better. | |
3004 | * utils.c (warning): Use it. | |
3005 | * utils.c (error_begin): Doc fix. | |
88a5c3fc JK |
3006 | * rs6000-nat.c (vmap_ldinfo): If we don't find ldinfo for the |
3007 | symfile_objfile, nuke it. | |
8989d4fc | 3008 | |
0b078540 JK |
3009 | Tue Apr 11 09:35:20 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3010 | ||
f1cd942d JK |
3011 | * printcmd.c (print_address_numeric): Pass use_local to |
3012 | print_longest, rather than always passing 1. | |
3013 | ||
0b078540 JK |
3014 | * nlm/Makefile.in: Remove comments discussing munch. |
3015 | ||
d7c4766c | 3016 | start-sanitize-gdbtk |
45f90c50 MM |
3017 | Tue Apr 11 11:07:12 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
3018 | ||
3019 | * gdbtk.c (gdbtk_init): If SIOCSPGRP is not available, but | |
3020 | F_SETOWN is, use that. | |
d7c4766c | 3021 | end-sanitize-gdbtk |
45f90c50 | 3022 | |
cb5aa38b SS |
3023 | Mon Apr 10 18:31:57 1995 Stan Shebs <shebs@andros.cygnus.com> |
3024 | ||
3025 | Merge in support for Mac MPW as a host. | |
3026 | (Old change descriptions retained for informational value.) | |
3027 | ||
3028 | * mpw-config.in (i386-unknown-go32): Change from aout. | |
3029 | (sh-hitachi-hms): New target. | |
3030 | * mpw-make.in (BISON): Use byacc instead of bison. | |
3031 | (VERSION): Bump to 4.14.1. | |
3032 | (*-pinsn.*): Remove mentions everywhere. | |
3033 | (all): Don't build MacGDB. | |
3034 | (gdb, SiowGDB): Depend on Version.r. | |
3035 | (Version.r): Generate from version info. | |
3036 | * main.c (main): Pass program name to START_PROGRESS, END_PROGRESS. | |
3037 | (main) [MPW]: Remove debugging hook. | |
3038 | * mac-xdep.c (debug_openp): New flag. | |
3039 | (mac_init): Set flag if env variable defined. | |
3040 | * ser-mac.c (mac_open): Clarify error message. | |
3041 | (mac_readchar): Call PROGRESS while looping. | |
3042 | (mac_write): Call sleep instead of sec_sleep. | |
3043 | (sec_sleep): Remove. | |
3044 | * source.c (openp) [MPW]: Only print debugging info if debugging. | |
3045 | * utils.c (query) [MPW]: Clarify that behavior is a bug. | |
3046 | ||
3047 | * mpw-make.in (init.c): Use open-brace instead of mpw-open-brace. | |
3048 | ||
3049 | * main.c, source.c: Remove hacks that replace long strings | |
3050 | with shorter ones, now solved portably. | |
3051 | ||
3052 | * config/m68k/xm-mpw.h (spin.h): Include. | |
3053 | (ALMOST_STDC): Only define if MPW_C. | |
3054 | * config/m68k/tm-mac.h: New file, Mac target definitions. | |
3055 | ||
3056 | * mpw-config.in (m68k-apple-macos, ppc-apple-macos, | |
3057 | i386-unknown-aout): New targets. | |
3058 | (mk.tmp): Add *DEPFILES definitions. | |
3059 | * mpw-make.in: Remove gC rules, clean up definitions for other | |
3060 | include files, bump version, fix bogus \ that should be \Option-d. | |
3061 | (init.c): Build correctly. | |
3062 | ||
3063 | * mpw-make.in (HFILES_NO_SRCDIR): Add somsolib.h | |
3064 | (ALLDEPFILES): Add somsolib.c. | |
3065 | (somsolib.o): Add some dependencies. | |
3066 | ||
3067 | * mpw-config.in: Use nm-empty.h if host is not target. | |
3068 | (xdepfiles): Add mac-xdep.c.o. | |
3069 | (xm_file): Remove. | |
3070 | * mpw-make.in: Add Fortran files. | |
3071 | (XDEPFILES): Remove. | |
3072 | ||
3073 | * mpw-config.in (MacSerial.h): Duplicate from standard Serial.h. | |
3074 | * ser-mac.c (MacSerial.h): Include instead of Serial.h. | |
3075 | ||
3076 | * mpw-make.in: Use {s} instead of {srcdir} everywhere. | |
3077 | (bindir, libdir): Remove extra colon. | |
3078 | (source.c): Compile with C instead of gC. | |
3079 | (c-exp.tab.c, ch-exp.tab.c, m2-exp.tab.c): Add {o}. | |
3080 | (install-only): Don't install MacGDB. | |
3081 | * source.c (openp) [MPW]: Add a debugging display. | |
3082 | (open_source_file) [MPW]: Use MPW basename finders. | |
3083 | [MPW_C]: Briefer versions of help for line and list commands. | |
3084 | ||
3085 | * mpw-make.in: Change references from paread.c to somread.c | |
3086 | ||
3087 | * mpw-make.in (VERSION): Update to 4.12.3. | |
3088 | (SiowGDB): New target, GDB using SIOW library. | |
3089 | (init-new.c): New target, attempt to generate init.c from sources. | |
3090 | (main.c.o, top.c.o): Put each in its own segment. | |
3091 | * main.c (main) [MPW]: Always call mac_init. | |
3092 | * utils.c (query) [MPW]: Always return "yes" if in MacGDB, output | |
3093 | an extra newline otherwise. | |
3094 | * mac-xdep.c: More comments in various places, remove junk. | |
3095 | (mac_init): Add tests for MPW and SIOW. | |
3096 | (use_wne, has_color_qd): Renamed. | |
3097 | (use_color_qd): New variable. | |
3098 | (grow_window): Only do console resizing to console window, | |
3099 | call resize_console_window. | |
3100 | (zoom_window): Call resize_console_window. | |
3101 | (resize_console_window, scroll_text): New functions. | |
3102 | (adjust_console_sizes): Always align viewrect to even multiples of | |
3103 | text lines. | |
3104 | (adjust_console_text): Always scroll by whole lines. | |
3105 | (hacked_vfprintf, hacked_puts, hacked_fputc, hacked_putc): Force a | |
3106 | recalculation of scroll positions if a newline was output. | |
3107 | (hacked_fflush): Similarly, for flushing. | |
3108 | (hacked_fgetc): New function, aborts if called in MacGDB. | |
3109 | * ser-mac.c (mac_readchar): Rename starttime to start_time, | |
3110 | remove debugging printf. | |
3111 | (mac_write): Sleep on first 4 writes. | |
3112 | (sec_sleep): New function, works like standard sleep. | |
3113 | * macgdb.r: Adjust positioning and contents of About box. | |
3114 | Set minimum size to 2000K, preferred size to 5000K. | |
3115 | * config/m68k/xm-mpw.h (fgetc): Define as a macro. | |
3116 | ||
3117 | * mpw-make.in (.c.o, .gc.o): Prefix segment names with gdb_. | |
3118 | (top.c.o, annotate.c.o): Add build rules. | |
3119 | * macgdb.r (SysTypes.r): Include. | |
3120 | ('vers'): New resource, version info. | |
3121 | (mFile, mEdit, mDebug): Enable all menu items. | |
3122 | (mDebug): Add key equivalents for continue, step, next. | |
3123 | (wConsole): Add zoom and close boxes to window. | |
3124 | * mac-xdep.c (new_console_window): New function, code taken from | |
3125 | mac_init. | |
3126 | (mac_command_loop): Use GetCaretTime for wait interval, call | |
3127 | do_idle on null events. | |
3128 | (do_idle): New function. | |
3129 | (zoom_window): Implement zooming. | |
3130 | (v_scroll_proc): New function, handles vertical scrolling. | |
3131 | (activate_window): Do activation of console window. | |
3132 | (do_menu_command): Implement items of file, edit, and debug menus. | |
3133 | (do_keyboard_command): Fix command extraction. | |
3134 | (adjust_console_sizes, adjust_console_text): New functions. | |
3135 | (hacked_fprintf, hacked_vfprintf, hacked_fputs, hacked_fputc, | |
3136 | hacked_putc): Don't call draw_console. | |
3137 | * ser-mac.c (mac_open): Add an error message for invalid ports. | |
3138 | (first_mac_write): New global. | |
3139 | (mac_write): Use first_mac_write to sleep on first several writes. | |
3140 | ||
3141 | * mpw-make.in (INCLUDE_CFLAGS): Add readline source dir. | |
3142 | (READLINE_CFLAGS, READLINE_SRC, READLINE_DIR): Uncomment. | |
3143 | (TSOBS): Don't compile inflow.c. | |
3144 | (all, install): Add MacGDB. | |
3145 | * main.c (main): Do Mac-specific init and command loop if a | |
3146 | standalone app, skip full option help message if compiling | |
3147 | with MPW C. | |
3148 | (gdb_readline): If MPW, add a newline after the (gdb) prompt. | |
3149 | * utils.c (_initialize_utils): If MPW, don't try to use termcap to | |
3150 | compute the window size. | |
3151 | * config/m68k/xm-mpw.h (printf, fprintf, fputs, fputc, putc, | |
3152 | fflush): Define as macros that expand into hacked_... versions. | |
3153 | (StandAlone, mac_app): Declare. | |
3154 | * macgdb.r (SIZE): Set the default partition to 4000K. | |
3155 | * mac-xdep.c (readline.h, history.h): Include. | |
3156 | (terminal.h): Don't include. | |
3157 | (mac_app): Define. | |
3158 | (gdb_has_a_terminal): Define Mac-specific version. | |
3159 | (do_keyboard_command): Simplify search for command string. | |
3160 | (readline): Define as gdb_readline. | |
3161 | Add other history/readline stubs to make main gdb link. | |
3162 | (hacked_fprintf, hacked_printf, hacked_vfprintf, hacked_fputs, | |
3163 | hacked_fputc, hacked_fflush): New functions, intercept output to | |
3164 | stdout and stderr, send to console window. | |
3165 | ||
3166 | * mpw-make.in (MacGDB): New target, standalone Mac-hosted gdb. | |
3167 | (XDEPFILES): Define. | |
3168 | (main.c.o): Compile with gC instead of C. | |
3169 | * mac-defs.h: New file, menu etc definitions shared between | |
3170 | C and Rez files. | |
3171 | * macgdb.r: New file, Rez (resource compiler) resource | |
3172 | definitions. | |
3173 | * mac-xdep.c: New file, Mac host interface code. | |
3174 | * config/m68k/xm-mpw.h (PATHNAME_SEPARATOR): Rename to | |
3175 | DIRNAME_SEPARATOR. | |
3176 | (PATHNAME_SEPARATOR_STRING): Remove. | |
3177 | (SIGQUIT, SIGHUP): Define. | |
3178 | (fileno, R_OK): Define. | |
3179 | ||
3180 | * mpw-config.in: New file, MPW configuration fragment. | |
3181 | * mpw-make.in: New file, MPW makefile fragment. | |
3182 | * config/m68k/xm-mpw.h: New file, MPW host definitions. | |
3183 | * ser-mac.c: New file, Mac serial interface. | |
3184 | ||
c08c3640 KH |
3185 | Mon Apr 10 16:47:57 1995 Kung Hsu <kung@mexican.cygnus.com> |
3186 | ||
73dab896 KH |
3187 | * valprint.c (print_longest): Fix a syntax error in #ifdef |
3188 | PRINTF_HAS_LONG_LONG. | |
3189 | ||
3190 | * config/mips/xm-irix5.h: turn on CC_HAS_LONG_LONG and | |
c08c3640 KH |
3191 | PRINTF_HAS_LONG_LONG. |
3192 | * config/mips/tm-irix5.h: turn on FORCE_LONG_LONG. | |
3193 | ||
41270571 PS |
3194 | Sat Apr 8 02:47:45 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
3195 | ||
3196 | * mdebugread.c (parse_symbol): Use new variable | |
3197 | nodebug_var_symbol_type as type of variables which don't have any | |
3198 | ecoff debug info associated with them. | |
3199 | (parse_symbol, parse_procedure): Use heuristics to determine if | |
3200 | functions were compiled without debugging info and change their | |
3201 | type to nodebug_function_symbol_type. | |
3202 | (_initialize_mdebugread): Initialize nodebug_*_symbol_type. | |
3203 | ||
3204 | * source.c (line_info): Clear sal.pc for `info line' without | |
3205 | arguments. | |
3206 | ||
7952bce6 SG |
3207 | Fri Apr 7 17:43:01 1995 Stu Grossman (grossman@andros.cygnus.com) |
3208 | ||
3209 | * monitor.c: make_xmodem_packet and print_xmodem_packet go away. | |
3210 | send_xmodem_packet shows up to do the obvious. Lots of fixes to | |
3211 | xmodem downloads including resetting of block number at start of | |
3212 | new transfers, fix for buffer overrun problem, addition of CRC | |
3213 | generation code. | |
3214 | * (monitor_open): loadtype_str and loadproto_str now default to | |
3215 | first entry in monitor_ops->loadtypes. | |
3216 | * (monitor_wait): Lengthen register dump buf, because of verbose | |
3217 | Winbond monitor. | |
3218 | * (monitor_fetch_register): Report unimplemented registers as 0. | |
3219 | * (monitor_read_memory): Only do 16 byte aligned transfers | |
3220 | because of formatting weirdness with the Winbond monitor. Also, | |
3221 | ignore non-hex, non-whitespace formatting between bytes (same | |
3222 | monitor). | |
3223 | * (monitor_load): Clean up logic. | |
3224 | * (monitor_load_srec): Re-do xmodem support. Move lots of it | |
3225 | into send_xmodem_packet. | |
3226 | * (getacknak): Get rid of polls and timeouts. Handle CRC | |
3227 | requests from receiver. | |
3228 | * (monitor_make_srec): Efficiency improvements. Don't call | |
3229 | sprintf to output two digit hex numbers. | |
3230 | * (crcinit, docrc): New, CRC-16 support routines. | |
3231 | * (send_xmodem_packet): New routine to generate either CRC-16 or | |
3232 | checksummed xmodem packets. | |
3233 | ||
3234 | * remote-est.c (est_loadtypes), rom68k-rom.c (rom68k_loadtypes): | |
3235 | Reduce tables down to only the load types supported by each | |
3236 | monitor. | |
3237 | ||
3238 | * w89k-rom.c (w89k_supply_register): Parses output of Winbond | |
3239 | register dumps. | |
3240 | * (w89k_loadtypes, w89k_loadprotos): Reduce to just srec/xmodem. | |
3241 | * (w89k_cmds): Add clear all breakpoints, memory fill, and dump | |
3242 | registers commands. | |
3243 | ||
0ac704d2 SG |
3244 | * config/pa/tm-hppa.h: Define lots register offsets needed by |
3245 | w89k-rom.c. | |
3246 | ||
5d747d61 | 3247 | |
77a89957 MM |
3248 | Thu Apr 6 17:00:46 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
3249 | ||
3250 | * Makefile.in (X11_INCLUDES): Define as empty. | |
3251 | (X11_CFLAGS): Define as including $(X11_INCLUDES). | |
3252 | (X11_LIB_SWITCHES): Define as empty. | |
3253 | (X11_LIBS): Define as -lX11. | |
3254 | ||
cb5aa38b | 3255 | start-sanitize-gdbtk |
77a89957 MM |
3256 | * configure.in (enable_gdbtk): If gdbtk, support the --x-includes |
3257 | and --x-libraries switches, setting the X11_INCLUDES and | |
3258 | X11_LIB_SWITCHES respectively. Instead of using a hardcoded -lX11 | |
3259 | in ENABLE_CLIBS, use the X11_LIB_SWITCHES and X11_LIBS variables. | |
3260 | ||
3261 | * gdbtk.c (gdbtk_init): If SIOCSPGRP is not available, don't use | |
3262 | it. This means that the stop button doesn't work, but is better | |
3263 | than nothing. | |
cb5aa38b | 3264 | end-sanitize-gdbtk |
77a89957 | 3265 | |
8066e434 JK |
3266 | Wed Apr 5 19:57:38 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3267 | ||
3268 | * mips-tdep.c (mips_print_register): Remove unused variable | |
3269 | our_type and call to init_type. Fixes memory leak. Reindent function. | |
3270 | ||
3271 | * mips-tdep.c (mips_print_register), findvar.c | |
3272 | (write_register_bytes): Make buffer char[] instead of unsigned | |
3273 | char[]. | |
3274 | ||
dee80384 JK |
3275 | Mon Apr 3 19:28:14 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3276 | ||
8066e434 | 3277 | * top.c, utils.c, main.c, defs.h: Replace error_pre_print with two |
dee80384 JK |
3278 | variables: error_pre_print (for RETURN_ERROR) and quit_pre_print |
3279 | (for RETURN_QUIT). Fixes a bug whereby typing ^C (e.g. in "maint | |
3280 | print sym") could output extraneous stuff. | |
3281 | * objfiles.c: Don't declare error_pre_print; defs.h does it. | |
3282 | ||
3283 | Mon Apr 3 13:48:28 1995 Stu Grossman (grossman@andros.cygnus.com) | |
3284 | ||
3285 | * monitor.h: Add MO_GETMEM_NEEDS_RANGE flag. | |
3286 | * monitor.c (monitor_read_memory): Use previously mentioned flag | |
3287 | to send proper format memory examine commands to the w89k monitor. | |
3288 | Also, try to handle bizarre format of memory dump... | |
3289 | ||
3290 | * op50-rom.c w89k-rom.c: Update to new monitor.[ch] conventions. | |
3291 | ||
576c3913 PS |
3292 | Sat Apr 1 03:22:20 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
3293 | ||
3294 | * dbxread.c (process_one_symbol) [SOFUN_ADDRESS_MAYBE_MISSING]: | |
3295 | Handle relocated symbol address. | |
3296 | * partial-stab.h, case N_SO, SOFUN_ADDRESS_MAYBE_MISSING: | |
3297 | Do not relocate a zero address. | |
3298 | ||
23a1346e JK |
3299 | Thu Mar 30 19:46:36 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3300 | ||
7c7c4f0a JK |
3301 | * config/a29k/tm-a29k.h: Nuke obsolete define CONTROL_END_ADDR; it |
3302 | is nowhere used. | |
3303 | ||
23a1346e JK |
3304 | * stabsread.c (read_range_type): Remove FIXME comment about |
3305 | type-id (I presume this meant a number followed by = followed by a | |
3306 | type) versus type number; Per fixed it. | |
3307 | ||
1e1dd175 SS |
3308 | Wed Mar 29 09:56:04 1995 Jason Molenda (crash@phydeaux.cygnus.com) |
3309 | ||
3310 | * configure.in: sparc-*-sunos5* is same as sparc-*-solaris2*. | |
3311 | ||
a2f0cf2f SS |
3312 | Wed Mar 29 18:30:03 1995 Stan Shebs <shebs@andros.cygnus.com> |
3313 | ||
3314 | * remote-e7000.c (why_stop): Add new kinds of strings to expect | |
3315 | from the emulator. | |
3316 | (e7000_wait): Add interpretations for more stop reasons, | |
3317 | including warnings for write protect and cycle address errors. | |
3318 | ||
a706069f SG |
3319 | Wed Mar 29 17:09:29 1995 Stu Grossman (grossman@cygnus.com) |
3320 | ||
3321 | start-sanitize-gdbtk | |
3322 | * Makefile.in (gdbtk.o): Use X11_CFLAGS to provide alternate | |
3323 | locations (per-host) for X11 include files. | |
3324 | * config/pa/hppahpux.mh (XM_CLIBS): Add -L/usr/lib/X11R5 to force | |
3325 | the use of R5 libs. (X11_CFLAGS): Add this to indicate the locs | |
3326 | of the R5 include files. | |
3327 | end-sanitize-gdbtk | |
3328 | * monitor.c monitor.h remote-est.c rom68k-rom.c: Add start of | |
3329 | support for interrupting target. | |
3330 | * monitor.c (monitor_open): Send stop command before doing | |
3331 | anything else. | |
3332 | * (monitor_load_srec): Fix record size calculation to prevent end | |
3333 | of segment from getting trashed. | |
3334 | * rom68k-rom.c: Update to latest version of struct monitor_ops. | |
3335 | * config/sparc/tm-sparc.h (FIX_CALL_DUMMY): Fix byte-order | |
3336 | problems. Makes DOS hosted function calling work. | |
3337 | * sparclite/crt0.s: Define _start to make COFF happy. | |
a706069f | 3338 | |
3e8fdb61 MM |
3339 | Wed Mar 29 09:11:51 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
3340 | ||
3341 | * defs.h (atof): Don't provide an external declaration if atof is | |
3342 | a macro. | |
3343 | ||
e137e850 PS |
3344 | Wed Mar 29 00:01:07 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
3345 | ||
3346 | * rs6000-tdep.c (skip_prologue): Skip saving of LR and CR in | |
3347 | the stack frame, fix typos in `st rx,NUM(r1)' and `stu r1,NUM(r1)' | |
3348 | tests. | |
3349 | ||
e55a5796 PB |
3350 | Tue Mar 28 17:04:04 1995 Per Bothner <bothner@kalessin.cygnus.com> |
3351 | ||
3352 | * gdbtypes.c (create_range_type): If indextype has TYPE_FLAG_STUB | |
3353 | set, set TYPE_FLAG_TARGET_STUB. | |
3354 | (check_stub_type): Recalculate TYPE_LENGTH for range type. | |
3355 | * stabsread.c (read_range_type): If index type number is followed | |
3356 | by '=', back up, call read_type. and assume we have a true range. | |
3357 | * gdbtypes.h (TYPE_FLAG_TARGET_STUB): Update comment. | |
3358 | ||
3f403f6a PS |
3359 | Mon Mar 27 22:51:54 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
3360 | ||
3361 | * alpha-nat.c, irix4-nat.c, irix5-nat.c, mipsv4-nat.c, | |
3362 | sparc-tdep.c (supply_gregset, supply_fpregset): Fill inaccessible | |
3363 | registers with zero to handle recent read_register_bytes change. | |
3364 | * irix4-nat.c, irix5-nat.c, mipsv4-nat.c (supply_gregset, | |
3365 | fill_gregset): Fix handling of CAUSE_REGNUM. | |
3366 | * mips-nat.c (store_inferior_registers): Handle unwritable | |
3367 | registers when storing a single register. | |
3368 | * config/mips/tm-irix3.h (CAUSE_REGNUM, BADVADDR_REGNUM): | |
3369 | Fix definitions. | |
3370 | ||
3371 | * mdebugread.c (parse_symbol, psymtab_to_symtab_1): Clear | |
3372 | allocated mips_extra_func_info, if the debug info is corrupt, | |
3373 | the PDR to fill it in might be missing. | |
3374 | ||
3b94a0b8 KH |
3375 | Mon Mar 27 14:43:00 1995 Kung Hsu <kung@mexican.cygnus.com> |
3376 | ||
3377 | * vx-share/regPacket.h: a new file interfacing with vxworks. | |
3378 | ||
d582898a JK |
3379 | Sun Mar 26 13:22:47 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3380 | ||
3381 | * breakpoint.c (bpstat_do_actions): Once we've executed the | |
3382 | commands, set bs->commands to NULL. | |
3383 | ||
b9e58503 PS |
3384 | Sat Mar 25 01:16:10 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
3385 | ||
3386 | * buildsym.c (patch_subfile_name): Update last_source_file | |
3387 | with the real source file name. | |
3388 | * dbxread.c (end_psymtab): Handle static functions in the | |
3389 | SOFUN_ADDRESS_MAYBE_MISSING case by passing pst->filename | |
3390 | to lookup_minimal_symbol. | |
3391 | (process_one_symbol): Ignore extra outermost context from | |
3392 | SunPRO cc and acc. | |
3393 | * stabsread.c (define_symbol): Do not complain for SunPRO | |
3394 | static variable encoding if STATIC_TRANSFORM_NAME is defined. | |
3395 | * sparc-tdep.c, config/sparc/tm-sun4sol2.h | |
3396 | (sunpro_static_transform_name): Renamed from | |
3397 | solaris_static_transform_name. | |
3398 | * config/sparc/tm-sun4os4.h (STATIC_TRANSFORM_NAME): | |
3399 | Define to sunpro_static_transform_name for acc 3.0 compiled | |
3400 | executables. | |
3401 | * procfs.c, config/alpha/nm-osf2.h (PROCFS_DONT_TRACE_FAULTS): | |
3402 | Renamed from PROCFS_DONT_TRACE_IFAULT, don't trace any faults | |
3403 | if defined. | |
3404 | * procfs.c (info_proc_siginfo): Cast sip->si_addr to | |
3405 | `unsigned long' and use `lx' format for printing it. | |
3406 | ||
3407 | Fri Mar 24 15:45:42 1995 Stu Grossman (grossman@cygnus.com) | |
3408 | ||
3409 | * configure.in: Move test for m68*-est-* before m68*-*-coff*. | |
3410 | * findvar.c: Move default def of CANNOT_STORE_REGISTER closer to | |
3411 | the beginning of the code. | |
3412 | * (write_register_gen): New routine. Analogous to | |
3413 | read_register_gen. | |
3414 | * (write_register_bytes): Another rewrite! Make it smarter about | |
3415 | not updating regs with the same value. | |
3416 | * monitor.c (printf_monitor readchar): Use stderr instead of | |
3417 | stdout to output debug info. Also cleanup readchar a little. | |
3418 | * (expect): Make sure that excessive responses are null | |
3419 | terminated. | |
3420 | * (monitor_open): Check for magic number in monitor_ops struct. | |
3421 | Allow multiple commands as init strings. Also, clear all | |
3422 | breakpoints. | |
3423 | * (monitor_resume monitor_wait): Send a command to dump all the | |
3424 | regs for those targets which don't do so when waking up after a | |
3425 | continue command. | |
3426 | * (monitor_wait): Handle excessive response output better. | |
3427 | * (monitor_write_memory): Use block fill, word, and long word | |
3428 | commands (if they exist) to write memory more efficiently. | |
3429 | * General cleanups to use flag bits instead of individual flag | |
3430 | words in monitor_ops struct. | |
3431 | * (monitor_command): Return output from command. | |
3432 | * (monitor_load_srec): Allocate buffer only once. Use alloca. | |
3433 | Wait for load response string instead of using a timeout to start | |
3434 | sending S-records. Fix bug where value of srec_frame shrinks. If | |
3435 | hashmark is set, print `-' for retransmissions. General cleanups. | |
3436 | * (monitor_make_srec): Get rid of S-record default type kludge. | |
3437 | * monitor.h: Use seperate struct for memory and register | |
3438 | read/write commands. Memory commands can come in byte, word, | |
3439 | long, and longlong forms. | |
3440 | * (monitor_ops): Change lots of fields. Generalize some stuff. | |
3441 | Put all flags into flags word. Allow init to be a list of commands. | |
3442 | Add command for clearing all breakpoints, block fill, dumping all | |
3443 | registers. | |
3444 | * remote-est.c: Rewrite to use new monitor conventions. | |
3445 | * config/m68k/est.mt (TDEPFILES): Add monitor.o. | |
3446 | * config/m68k/tm-est.h: Set NUM_REGS to 18. | |
3447 | * testsuite/gdb.base/break.exp: Lots of cleanups. Use gdb_test | |
3448 | more thoroughly. | |
3449 | ||
9bfed1ee JL |
3450 | Thu Mar 23 23:20:00 1995 Jeff Law (law@snake.cs.utah.edu) |
3451 | ||
3452 | * somsolib.c (som_solib_add): Handle case where a shared library | |
3453 | referenced by a core file has sections without the SEC_ALLOC bit | |
3454 | set (eg stabs sections). | |
3455 | ||
1c04536e JK |
3456 | Thu Mar 23 15:07:08 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3457 | ||
3458 | * breakpoint.c (bpstat_do_actions): For each element in the bpstat | |
3459 | chain, do all the commands regardless of whether they run the | |
3460 | inferior. | |
3461 | ||
aa949c08 DE |
3462 | Wed Mar 22 19:17:06 1995 Doug Evans <dje@cygnus.com> |
3463 | ||
3464 | * mem-break.c (LITTLE_BREAKPOINT, BIG_BREAKPOINT): Define as | |
3465 | BREAKPOINT if mono-endian. | |
3466 | (break_insn): Deleted. | |
3467 | (big_break_insn, little_break_insn): Define. | |
3468 | (memory_insert_breakpoint): Handle bi-endian cpus. | |
3469 | (BREAKPOINT_LEN): Define. | |
3470 | (memory_remove_breakpoint): Use it. | |
3471 | (memory_breakpoint_size): Likewise. | |
3472 | ||
9cc2cd4f KH |
3473 | Tue Mar 21 17:03:17 1995 Kung Hsu <kung@mexican.cygnus.com> |
3474 | ||
3475 | * sparc-stub.c: add nop after 'bg good_wim'. | |
3476 | * sparcl-stub.c: ditto. | |
3477 | ||
1968ed13 JK |
3478 | Tue Mar 21 13:34:12 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3479 | ||
3480 | * infrun.c (handle_command): Don't print TARGET_SIGNAL_0, | |
3481 | TARGET_SIGNAL_UNKNOWN, or TARGET_SIGNAL_DEFAULT. | |
3482 | ||
e6059f4a JL |
3483 | Mon Mar 20 10:09:59 1995 Jeff Law (law@snake.cs.utah.edu) |
3484 | ||
3485 | * hppab-nat.c (store_inferior_registers): Sync with HPUX version. | |
3486 | ||
a15f6b0a SG |
3487 | Mon Mar 20 07:34:48 1995 Stu Grossman (grossman@cygnus.com) |
3488 | ||
3489 | * hppah-nat.c (store_inferior_registers): Move check for | |
3490 | CANNOT_STORE_REGISTER to a better place. Fixes ptrace I/O errors | |
3491 | found by test suite during function calls, which attempts to write | |
3492 | unwritable registers. | |
3493 | ||
5c26250b PS |
3494 | Sat Mar 18 02:02:24 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
3495 | ||
3496 | * mdebugread.c (parse_symbol): If finishing a function without | |
3497 | known parameter type info, set that from parameter symbols. | |
3498 | Remove commented-out add_param_to_type support. | |
3499 | ||
3500 | Thu Mar 16 16:38:03 1995 Jim Kingdon (kingdon@lioth.cygnus.com) | |
3501 | ||
3502 | * xcoffread.c (process_linenos): Make sure filename we pass to | |
3503 | start_subfile will cause deduce_language_from_filename to return | |
3504 | the correct thing. Reindent function to GNU standards. | |
3505 | ||
334655aa C |
3506 | Thu Mar 16 15:54:00 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
3507 | ||
3508 | * nlm/gdbserve.c (handle_exception): #if out call to StopBell, | |
3509 | as it is not available on NetWare 3 or PIN. | |
3510 | * nlm/ppc.c (StopBell): Removed. | |
3511 | ||
8367c66b JK |
3512 | Thu Mar 16 12:14:41 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3513 | ||
d1f14b46 JK |
3514 | * xcoffread.c (read_xcoff_symtab): When creating a dummy parameter |
3515 | inferred from the traceback tags, give its type the name | |
3516 | "<non-float parameter>". | |
3517 | ||
8367c66b JK |
3518 | * stabsread.c (rs6000_builtin_type): Recognize types -31 to -34. |
3519 | ||
2081365f SG |
3520 | Wed Mar 15 15:09:29 1995 Stu Grossman (grossman@cygnus.com) |
3521 | ||
3522 | * findvar.c (read_register_bytes write_register_bytes): Make | |
3523 | these routines much smarter about updating registers from the | |
3524 | target, only doing so when absolutely necessary. This really | |
3525 | speeds up register modification on some remote targets. | |
3526 | ||
3527 | * monitor.c: More cleanups. Get rid of monitor_load_ascii_srec. | |
3528 | BFD makes this unnecessary. Lots of debugging speedups. | |
3529 | * (expect): NULL terminate return string. | |
3530 | * (monitor_open monitor_supply_register parse_register_dump | |
3531 | monitor_wait monitor_fetch_register): Switch to using GNU regexp | |
3532 | library to parse multi-register displays. | |
3533 | * (monitor_read_memory): Read multiple bytes (up to 16) at once. | |
3534 | * (monitor_create_inferior): Call clear_proceed_status to make run | |
3535 | command notice first breakpoint. | |
3536 | * (monitor_load): Clean up. Reset inferior_pid, set pc to start | |
3537 | address and reset symbol table stuff to make loads put things into | |
3538 | a fresh state. | |
3539 | * (monitor_load_srec): Lower sleep time to 1 second. | |
3540 | ||
3541 | * monitor.h (struct monitor_ops): Add register_pattern and | |
3542 | supply_register to monitor_ops. | |
3543 | ||
3544 | * rom68k-rom.c: Add new support for handling register dumps. | |
efe4e52d SG |
3545 | * config/m68k/tm-m68k.h: Define D0_REGNUM and A0_REGNUM for register |
3546 | dump handling. | |
2081365f | 3547 | |
a7f6f40b JK |
3548 | Wed Mar 15 15:18:27 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3549 | ||
3550 | * utils.c, defs.h (putchar_unfiltered, fputc_unfiltered): Make | |
3551 | argument be an int, not a char. Using a prototype followed by an | |
3552 | old-style function definition in a case where an argument is | |
3553 | widened is a GCC-ism not supported by the native AIX compiler. | |
3554 | ||
b1dda26e C |
3555 | Wed Mar 15 12:22:35 1995 J.T. Conklin <jtc@rtl.cygnus.com> |
3556 | ||
68c1bc9c C |
3557 | * nlmstub.def: Removed, this was moved to nlm/gdbserve.def |
3558 | long ago. | |
3559 | ||
a64bbacf | 3560 | * configure.in (alpha-*-netware*): Removed configuration. |
68c1bc9c C |
3561 | * config/alpha/{alpha-nw.mt, gdbserve.mt, tm-alphanw.h}: Removed. |
3562 | * nlm/{README-ALPHA-NETWARE, aio.h, alpha-io.S, alpha-regdef.h, | |
3563 | alpha.c, alpha.h, altdebug.h}: Removed. | |
3564 | ||
b1dda26e C |
3565 | * nlm/gdbserve.c (main): Add support for processing BOARD= |
3566 | argument, deprecate NODE=. | |
3567 | ||
961b8ebd JK |
3568 | Wed Mar 15 10:58:26 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3569 | ||
3570 | * c-exp.y (yylex): Make an empty character constant an error. | |
3571 | ||
912cb3fd PB |
3572 | Tue Mar 14 15:00:54 1995 Per Bothner <bothner@kalessin.cygnus.com> |
3573 | ||
3574 | * valops.c (value_arg_coerce): Do possible value_coerce_array | |
3575 | before determining type argument to value_cast. | |
3576 | ||
1990231d KH |
3577 | Tue Mar 14 10:41:41 1995 Kung Hsu <kung@mexican.cygnus.com> |
3578 | ||
3579 | * remote-es.c: Replace ignore with 0. | |
3580 | ||
a3012272 JK |
3581 | Tue Mar 14 05:52:36 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3582 | ||
2e12bf4f JK |
3583 | * valops.c (value_repeat), eval.c (evaluate_subexp_standard): |
3584 | If VALUE_REPEATED is already set, just error out. | |
3585 | ||
36633dcc JK |
3586 | * valops.c (value_cast, value_slice), parse.c (follow_types): Add |
3587 | FIXME-type-allocation comments. | |
3588 | ||
a3012272 JK |
3589 | * gdbtypes.h (struct type): Fix comment about what units the |
3590 | TYPE_LENGTH is in. | |
3591 | ||
477b2425 SS |
3592 | Mon Mar 13 18:27:25 1995 Stan Shebs <shebs@andros.cygnus.com> |
3593 | ||
3594 | * ch-valprint.c (annotate.h): Include. | |
3595 | * eval.c (evaluate_subexp_standard): Remove unused variable. | |
3596 | (calc_f77_array_dims): Add parens to expression. | |
3597 | * f-exp.y (yylex): Add parens to expression, remove unused label. | |
3598 | * f-lang.h (calc_f77_array_dims): Declare. | |
3599 | * f-valprint.c (f_val_print): Remove unused variables. | |
3600 | ||
4f69fe46 JK |
3601 | Mon Mar 13 15:25:47 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
3602 | ||
3603 | * alpha-tdep.c (find_proc_desc): If pdr.framereg field is -1, don't | |
3604 | use the PDR, just examine prologues instead. | |
3605 | ||
477b2425 | 3606 | start-sanitize-arc |
c230fbb6 KH |
3607 | Fri Mar 10 16:13:18 1995 Kung Hsu <kung@mexican.cygnus.com> |
3608 | ||
c230fbb6 KH |
3609 | * config/tm-arc.h: Change arc register names. |
3610 | end-sanitize-arc | |
3611 | ||
a1a0d974 PS |
3612 | Fri Mar 10 02:49:40 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
3613 | ||
3614 | Fix problems with infinite recursion when printing a class | |
3615 | that contains a static instance of the class. | |
3616 | * cp-valprint.c (dont_print_vb_obstack): Renamed from | |
3617 | dont_print_obstack, made static. | |
3618 | (dont_print_statmem_obstack): New obstack, controls printing | |
3619 | of static member classes. | |
3620 | (_initialize_cp_valprint): Initialize it. | |
3621 | (cp_print_static_field): New function, handles printing of | |
3622 | static members. | |
3623 | (cp_print_value_fields): New parameter dont_print_statmem to | |
3624 | handle recursive printing of static member classes, use | |
3625 | cp_print_static_field to handle printing of static members. | |
3626 | * c-valprint.c (cp_print_value_fields): Update prototype and | |
3627 | call to include additional dont_print_statmem parameter. | |
3628 | * c-valprint.c, f-valprint.c (dont_print_obstack): Remove unused | |
3629 | extern declaration. | |
3630 | ||
3631 | * alpha-tdep.c, findvar.c, infptrace.c: Include <string.h>. | |
3632 | ||
3633 | * config/alpha/tm-alpha.h (FRAME_FIND_SAVED_REGS): Call | |
3634 | alpha_find_saved_regs if fi->saved_regs is still NULL. | |
3635 | ||
3636 | * elfread.c (elf_symtab_read): Ensure that the filename field | |
3637 | of a minsym is nonempty. Ignore solib trampoline symbols from | |
3638 | the main symbol table, they might have a bogus value. | |
3639 | ||
3640 | * procfs.c (set_proc_siginfo), config/alpha/alpha-osf2.mh: | |
3641 | Fix typos in comments. | |
3642 | ||
45d6f623 JK |
3643 | Thu Mar 9 17:19:47 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
3644 | ||
3645 | * mdebugread.c (parse_symbol, psymtab_to_symtab_1): Initialize | |
3646 | pdr.framereg field of MIPS_EFI_SYMBOL_NAME symbol to -1. That way | |
3647 | we know whether the PDR ever got set. | |
3648 | * mips-tdep.c (find_proc_desc): If pdr.framereg field is -1, don't | |
3649 | use the PDR, just examine prologues instead. | |
3650 | ||
3651 | Wed Mar 8 23:35:10 1995 Jeff Law (law@snake.cs.utah.edu) | |
3652 | ||
3653 | * somsolib.c (som_solib_section_offsets): Get offset of text | |
3654 | section right. | |
3655 | ||
34c40fd7 SG |
3656 | Wed Mar 8 16:12:21 1995 Stu Grossman (grossman@cygnus.com) |
3657 | ||
8cbf6efc | 3658 | start-sanitize-gdbtk |
9468f8aa SG |
3659 | * gdbtk.c (gdb_get_breakpoint_info): Return error if breakpoint |
3660 | type is not bp_breakpoint. | |
8cbf6efc | 3661 | end-sanitize-gdbtk |
9468f8aa | 3662 | |
34c40fd7 SG |
3663 | * source.c (forward_search_command reverse_search_command): Set |
3664 | convenience variable $_ to be the line # of the match. | |
3665 | * symtab.c (decode_line_1): Allow convenience variables to be | |
3666 | used in line specs (for breakpoints and such). | |
3667 | ||
95618211 SS |
3668 | Wed Mar 8 12:51:00 1995 Stan Shebs <shebs@andros.cygnus.com> |
3669 | ||
3670 | * Makefile.in (VERSION): Bump to 4.14.1. | |
3671 | * NEWS, README: Update for 4.14. | |
3672 | * i386v-nat.c (i386_insert_aligned_watchpoint): Fix declaration. | |
3673 | (i386_insert_nonaligned_watchpoint): Call aligned instead of | |
3674 | generic watchpoint insertion. | |
3675 | ||
830a65b3 PB |
3676 | Tue Mar 7 19:26:10 1995 Per Bothner <bothner@kalessin.cygnus.com> |
3677 | ||
3678 | * valops.c (value_slice): Do COERCE_VARYING_ARRAY. | |
3679 | ||
236274b9 SG |
3680 | Tue Mar 7 00:23:47 1995 Stu Grossman (grossman@cygnus.com) |
3681 | ||
95618211 | 3682 | * monitor.c, array-rom.c, monitor.h, rom68k-rom.c: Move target_ops |
32fa4b59 SG |
3683 | into monitor.c. |
3684 | * monitor.c (monitor_create_inferior): Allow run command to start | |
3685 | program. | |
3686 | ||
f17aed8b SG |
3687 | * monitor.c (monitor_load): Set PC to start address when done |
3688 | loading. | |
3689 | ||
95618211 | 3690 | * array-rom.c, monitor.h, rom68k-rom.c: Clean up target_ops. |
f17aed8b SG |
3691 | Remove ref to monitor_create_inferior. |
3692 | ||
8f078234 SG |
3693 | * monitor.c: More general cleanups. Add prototypes, remove |
3694 | unused routines. Fix bug with wrong number of args to error(). | |
3695 | ||
cc60ad63 SG |
3696 | * main.c (main): Don't start up GUI when running under gdb mode |
3697 | in emacs. | |
3698 | ||
1265e2d8 SG |
3699 | * Makefile.in: Add rules for monitor.o and rom68k-rom.o to make |
3700 | Sun make (with VPATH) work... | |
3701 | ||
95618211 | 3702 | * monitor.c, monitor.h, rom68k-rom.c: Serious cleanup to make IDP |
1265e2d8 | 3703 | (rom68k) target work right. |
95618211 | 3704 | * array-rom.c, op50-rom.c, w89k-rom.c: Partial updates to new |
1265e2d8 SG |
3705 | monitor.c interface. More work needs to be done here. |
3706 | * config/m68k/tm-monitor.h: Change DECR_PC_AFTER_BREAK to 0 to | |
3707 | match the IDP monitor. Also, set NUM_REGS to 18 cuz there's no | |
3708 | floating-point for this card. | |
3709 | ||
95618211 | 3710 | * serial.h, ser-go32.c, ser-go32-para.c, ser-mac.c, ser-tcp.c, |
85c8b135 SG |
3711 | ser-unix.c: Add SERIAL_SETSTOPBITS to set the number of stopbits |
3712 | (needed for IDP board?!?!?). | |
3713 | ||
95618211 SS |
3714 | * defs.h, utils.c, remote-hms.c, remote-pa.c, remote.c: Fix defs |
3715 | and usage of fputc_unfiltered and putchar_unfiltered. Eliminate | |
7baea946 SG |
3716 | putc_unfiltered (it's superfluous). |
3717 | ||
95618211 | 3718 | * command.h, command.c, top.c: Add var_enum command type. It's |
09374c98 | 3719 | like var_string but allows only only one of the specified strings. |
236274b9 | 3720 | |
e70bba9f JK |
3721 | Mon Mar 6 15:03:59 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3722 | ||
3723 | * valops.c (value_cast): Don't use backslash newline--pre-ANSI | |
3724 | compilers (such as SunOS4 /bin/cc) don't generally support it | |
3725 | except in some contexts. | |
3726 | ||
f7a69ed7 PB |
3727 | Fri Mar 3 17:42:48 1995 Per Bothner <bothner@kalessin.cygnus.com> |
3728 | ||
2379f65c | 3729 | * valops.c (value_cast): Check for cast to array type *before* |
f7a69ed7 PB |
3730 | we coerce array to pointer (in case arg2 is already array). |
3731 | ||
3732 | * valops.c (call_function_by_hand): Set using_gcc to 2 if using | |
3733 | gcc2. Needed for REG_STRUCT_HAS_ADDR to work on sparc. | |
3734 | Also check REG_STRUCT_HAS_ADDR for union, array and string types. | |
3735 | ||
3736 | * valops.c (call_function_by_hand): Re-arrange code for pushing | |
3737 | paramaters on the stack so we can do better STACK_ALIGN. | |
3738 | ||
3739 | * valops.c (call_function_by_hand): Call error if the number | |
3740 | of arguments is fewer than parameter types in function type. | |
3741 | ||
732ff6af DE |
3742 | Fri Mar 3 17:13:05 1995 Doug Evans <dje@canuck.cygnus.com> |
3743 | ||
3744 | * sparc-tdep.c (sparc_extract_struct_value_address): Move | |
3745 | sparc64 support to here. | |
3746 | (sparc64_extract_struct_value_address): Deleted. | |
3747 | (dump_ccreg): Add a prototype so long long arg -> int. | |
3748 | * sparc/tm-sp64.h (USE_STRUCT_CONVENTION): Define. | |
3749 | (EXTRACT_STRUCT_VALUE_ADDRESS): Delete. | |
3750 | ||
13ffa6be JL |
3751 | Fri Mar 3 15:12:12 1995 Jeff Law (law@snake.cs.utah.edu) |
3752 | ||
3a0fbb3b JL |
3753 | * hpread.c (hpread_record_lines): New argument "offset". All |
3754 | callers changed. Use it to handle dynamic address relocation. | |
3755 | (hpread_build_psymtabs): Adjust texthigh as we read each function | |
3756 | debug symbol. Fix computation of texthigh. | |
3757 | (hpread_read_subrange_type): Work around macro bugs in HP's | |
3758 | compilers. | |
3759 | (hpread_process_one_debug_symbol): Correctly map source lines. | |
3760 | ||
2097152a JL |
3761 | * somread.c (check_strange_names): Filter names emitted by the HP |
3762 | compiler when generating PIC code. | |
3763 | ||
13ffa6be JL |
3764 | * valops.c (value_struct_elt_for_reference): Work around macro |
3765 | bugs in HP's compilers. | |
3766 | * c-exp.y (block): Likewise. | |
3767 | ||
0d172a2e JK |
3768 | Fri Mar 3 12:27:28 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
3769 | ||
5816555b JK |
3770 | * rs6000-tdep.c (push_dummy_frame): Fix order of arguments to |
3771 | store_address. | |
3772 | ||
0d172a2e JK |
3773 | * utils.c [_AIX]: Include stddef.h instead of #defining size_t. |
3774 | ||
629b6214 MM |
3775 | Fri Mar 3 12:33:24 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
3776 | ||
3777 | * rs6000-tdep.c (skip_prologue): Skip multiple stores of the saved | |
3778 | registers that GCC emits on the PowerPC by default in addition to | |
3779 | the store multiple instruction used on the Power series. | |
3780 | ||
8b0f5a9d DE |
3781 | Fri Mar 3 00:54:58 1995 Doug Evans <dje@canuck.cygnus.com> |
3782 | ||
3783 | * sparc-tdep.c (decode_asi): New function. | |
3784 | (sparc_print_register_hook): Pretty print more v9 registers. | |
3785 | * sparc/tm-sp64.h (REGISTER_NAMES): Fix some typos. | |
3786 | ||
306d27ca DE |
3787 | Thu Mar 2 22:20:22 1995 Doug Evans <dje@canuck.cygnus.com> |
3788 | ||
3789 | * dwarfread.c (struct dieinfo): Use CORE_ADDR for at_{low,high}_pc. | |
3790 | (target_to_host): Change result type to CORE_ADDR. | |
3791 | ||
3792 | Thu Mar 2 15:13:04 1995 Jim Kingdon (kingdon@lioth.cygnus.com) | |
3793 | ||
3794 | * rs6000-tdep.c: Fix byte-swapping sins. | |
3795 | ||
dc59e982 MM |
3796 | Thu Mar 2 16:48:45 1995 Michael Meissner <meissner@cygnus.com> |
3797 | ||
3798 | * rs6000-tdep.c (branch_dest): Minor code cleanup, don't share | |
3799 | code between branch unconditional and branch conditional cases. | |
3800 | ||
762cf56f DE |
3801 | Wed Mar 1 09:41:26 1995 Doug Evans <dje@canuck.cygnus.com> |
3802 | ||
3803 | Various changes for sparc64. | |
3804 | * sparc-tdep.c (NUM_SPARC_FPREGS): Define. | |
3805 | (SPARC_INTREG_SIZE): Define. | |
3806 | (*): Use SPARC_INTREG_SIZE instead of REGISTER_RAW_SIZE (intreg) | |
3807 | where appropriate. | |
3808 | (enum branch_type): New value `done_retry'. | |
3809 | (isbranch): Renamed from isannulled. All callers changed. | |
3810 | Support new sparc64 branch insns. | |
3811 | (single_step): Handle done_retry. | |
3812 | (sparc_extract_struct_value_address): Don't assume 4 byte regs. | |
3813 | (get_saved_register): Likewise. | |
3814 | (sparc_push_dummy_frame): Likewise. | |
3815 | (sparc_frame_find_saved_regs): Likewise. | |
3816 | (sparc_pop_frame): Likewise. Don't refer to FPS_REGNUM, CPS_REGNUM, | |
3817 | or PS_REGNUM if not sparc64. sparc64 has 64 fp regs. | |
3818 | (sparc64_extract_struct_value_address): New function. | |
3819 | (dump_ccreg, sparc_print_register_hook): Likewise. | |
3820 | * sp64-tdep.c: Deleted. | |
3821 | * sparc/tm-sp64.h (GDB_TARGET_IS_SPARC64): Define. | |
3822 | (NUM_REGS): Reduce by 2, cle/tle are in the pstate reg. | |
3823 | (CC_HAS_LONG_LONG): Define. | |
3824 | (REGISTER_NAMES): Delete cle/tle and reorganize. | |
3825 | (PS_REGNUM, FPS_REGNUM, CPS_REGNUM): Delete, they're ifdef'd out of | |
3826 | sparc-tdep.c now. | |
3827 | (REGISTER_BYTES): Update. | |
3828 | (REGISTER_CONVERT_TO_VIRTUAL, REGISTER_CONVERT_TO_RAW): Delete. | |
3829 | (EXTRACT_RETURN_VALUE): Delete. Use definition in tm-sparc.h. | |
3830 | (NO_SINGLE_STEP): Likewise. | |
3831 | * sparc/tm-sparc.h (EXTRACT_VALUE_RETURN): Don't assume 4 byte regs. | |
3832 | * sparc/sp64.mt: Move simulator support ... | |
3833 | * sparc/sp64sim.mt: ... to here. | |
3834 | ||
7e869571 KH |
3835 | Wed Mar 1 13:14:42 1995 Kung Hsu <kung@mexican.cygnus.com> |
3836 | ||
3837 | * remote-vx960.c: new file for target specific register packaging. | |
3838 | * remote-vx68.c: ditto. | |
3839 | * config/i960/vxworks960.mt: add remote-vx960.o. | |
3840 | * config/m68k/vxworks68.mt: add remote-vx68.o. | |
3841 | ||
8bfd30b2 MM |
3842 | Wed Mar 1 13:42:49 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
3843 | ||
3844 | * remote.c (remote_wait): Make calls to strtol be type correct by | |
3845 | passing the address of a char * pointer instead of an unsigned | |
3846 | char *. | |
3847 | ||
3848 | * rs6000-tdep.c (push_dummy_frame): Cast sp to char * when calling | |
3849 | write_memory to make things type correct. | |
3850 | ||
ea082c0a MM |
3851 | Wed Mar 1 12:17:31 1995 Michael Meissner <meissner@cygnus.com> |
3852 | ||
3853 | * ch-exp.y, c-exp.y, f-exp.y, m2-exp.y (yy defines): Support the | |
3854 | standard Linux yacc by adding more names to be redefined with a | |
3855 | prefix. | |
3856 | ||
bc28e68d JK |
3857 | Tue Feb 28 22:55:47 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3858 | ||
3859 | * hppa-tdep.c (pa_print_registers), monitor.c: Use | |
3860 | extract_unsigned_integer and friends, not SWAP_TARGET_AND_HOST. | |
3861 | * defs.h, findvar.c: Move SWAP_TARGET_AND_HOST back to findvar.c. | |
3862 | Rename it to SWAP_FLOATING to make it clear it is no longer for | |
3863 | integers. | |
3864 | ||
326ae3e2 KH |
3865 | Tue Feb 28 14:38:39 1995 Kung Hsu <kung@mexican.cygnus.com> |
3866 | ||
66aa7cf9 KH |
3867 | * defs.h (SWAP_TARGET_AND_HOST): check endianess at runtime not |
3868 | compile time. | |
3869 | ||
8cbf6efc | 3870 | start-sanitize-arc |
abed6bc2 KH |
3871 | * arc-tdep.c (_initialize_arc_tdep): set tm_print_insn according to |
3872 | processor. | |
3873 | * remote-arc.c (arc_wait): when a processor stops, stop other two | |
3874 | processors too. | |
3875 | * remote-arc.c (switch_command): switch tm_print_insn. | |
8cbf6efc | 3876 | end-sanitize-arc |
abed6bc2 | 3877 | |
bc01beb5 KH |
3878 | * vx-share/ptrace.h: merge in WRS new ptrace requests. |
3879 | ||
75988f94 KH |
3880 | * defs.h: fix a syntax error. |
3881 | ||
161520dc KH |
3882 | * a29k-tdep.c (get_longjmp_target): add this function, from WRS. |
3883 | * remote-vx.c: move read_register and write_register out to | |
3884 | target specific files. | |
3885 | * remote-vx29k.c (get_fp_contnets): add this function, from WRS. | |
3886 | ||
326ae3e2 KH |
3887 | * defs.h: define SWAP_TARGET_AND_HOST macro. |
3888 | * findvar.c, monitor.c, hppa-tdep.c: remove definition of | |
3889 | SWAP_TARGET_AND_HOST. | |
3890 | ||
de7ad6d8 JK |
3891 | Tue Feb 28 08:31:40 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3892 | ||
689409ca JK |
3893 | * alpha-tdep.c (find_proc_desc): Only attempt to set |
3894 | PROC_LOCALOFF (found_heuristic) if found_heuristic is non-NULL. | |
de7ad6d8 | 3895 | |
431b7d5f SS |
3896 | Mon Feb 27 11:56:32 1995 Stan Shebs <shebs@andros.cygnus.com> |
3897 | ||
3898 | * monitor.c: General gcc -Wall lint cleanup and reformat. | |
3899 | (monitor_command): If no args, send an empty command. | |
3900 | ||
82fc3432 SG |
3901 | Thu Feb 23 21:07:25 1995 Stu Grossman (grossman@cygnus.com) |
3902 | ||
3903 | * monitor.c (monitor_load_ascii_srec): Add a one second sleep | |
3904 | after send LOAD_CMD to prevent loss of first S-record. | |
3905 | ||
835c2559 PB |
3906 | Tue Feb 21 20:48:42 1995 Per Bothner <bothner@kalessin.cygnus.com> |
3907 | ||
3908 | * valops.c (call_function_by_hand): Set using_gcc to 2 if gcc-2. | |
3909 | Call error if too few arguments. | |
3910 | If REG_STRUCT_HAS_ADDR (structs passed by invisible reference), | |
3911 | copy and convert to reference *before* we calculate alignment. | |
3912 | Also, make sure structs allocated for return values and invisible | |
3913 | reference don't violate STACK_ALIGN. | |
3914 | ||
1d19172b PB |
3915 | Tue Feb 21 23:29:59 1995 Per Bothner <bothner@rtl.cygnus.com> |
3916 | ||
3917 | * ch-exp.y (expression_conversion): Recognize 'ARRAY () TYPE (EXPR)' | |
3918 | (same as C's '(TYPE[])EXPR') | |
3919 | ||
7f4b4b71 SS |
3920 | Tue Feb 21 11:47:26 1995 Stan Shebs <shebs@andros.cygnus.com> |
3921 | ||
3922 | * top.c (print_gdb_version): Update the year. | |
3923 | ||
d940a47e JK |
3924 | Sun Feb 19 14:31:57 1995 Jim Kingdon <kingdon@rtl.cygnus.com> |
3925 | ||
7f4b4b71 | 3926 | * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Look for newlib in |
d940a47e JK |
3927 | `..' not in `../..'. |
3928 | ||
f5de4904 PS |
3929 | Sun Feb 19 11:05:28 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
3930 | ||
3931 | * procfs.c (unconditionally_kill_inferior): Don't issue a PIOCKILL | |
3932 | in addition to a PIOCSSIG to kill the inferior. | |
3933 | ||
fda36387 PB |
3934 | Thu Feb 16 15:06:12 1995 Per Bothner <bothner@kalessin.cygnus.com> |
3935 | ||
3936 | * parse.c (follow_types): Given (TYPE[]) (i.e. with no length), | |
3937 | create a 0-length array type, and set BOUND_CANNOT_BE_DETERMINED. | |
3938 | * valops.c (value_cast): If a cast like (TYPE[])VALUE (i.e. array | |
3939 | of unknown length) use sizeof(VALUE)/sizeof(TYPE) as the length. | |
3940 | * c-typeprint.c (c_type_print_varspec_suffix): If array length | |
3941 | is 0, print it, but not if upper_bound is BOUND_CANNOT_BE_DETERMINED. | |
3942 | ||
92c6bf4d MM |
3943 | Thu Feb 16 16:06:50 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
3944 | ||
3945 | * dcache.c (insque, remque): Rewrite Linux support. | |
3946 | ||
677653a0 MM |
3947 | Wed Feb 15 12:33:20 1995 Michael Meissner <meissner@tiktok.cygnus.com> |
3948 | ||
3949 | * config/powerpc/tm-ppc-eabi.h (TEXT_SEGMENT_BASE): Define as 1. | |
3950 | ||
fed9a8d4 MM |
3951 | * dcache.c (insque, remque): If compiling in standard C on Linux, |
3952 | protect insque and remque with macros to cast the pointer | |
3953 | arguments to the proper type. | |
677653a0 MM |
3954 | |
3955 | Tue Feb 14 17:16:41 1995 Stu Grossman (grossman@cygnus.com) | |
3956 | ||
7f4b4b71 | 3957 | * annotate.c, breakpoint.c, defs.h, top.c: Replace |
677653a0 | 3958 | enable/disable_breakpoint_hook with modify_breakpoint_hook. |
7f4b4b71 SS |
3959 | start-sanitize-gdbtk |
3960 | * gdbtk.c: Ditto. | |
3961 | * gdbtk.c: General cleanups, get rid of unused variables. Redo | |
677653a0 MM |
3962 | handling of stdout/stderr to just return output as the result of |
3963 | the tcl command that caused the output. Cleanup -Wall stuff. | |
3964 | * (breakpoint_notify): Now returns just action and breakpoint | |
3965 | number. | |
3966 | * (gdb_get_breakpoint_list): New routine. Does the obvious. | |
3967 | * (gdb_get_breakpoint_info): Mostly derived from the old | |
3968 | breakpoint_notify, but returns lots more info. | |
3969 | * (dsprintf_append_element): Helper routine, works like printf, | |
3970 | but appends a tcl element onto the specified DString. Good for | |
3971 | building up lists as return values. | |
3972 | * (gdbtk_enable/disable_breakpoint): Go away. Replaced with | |
3973 | gdbtk_modify_breakpoint. | |
3974 | * (*many routines*): Use new result protocol. | |
3975 | * (call_wrapper): Make sure that recursive calls don't trash results. | |
3976 | * gdbtk.tcl: New windows, autocmd, and breakpoints. | |
3977 | * (gdbtk_tcl_fputs): Don't use $current_output_win redirection | |
3978 | anymore. It's not needed (in fact, this routine may not be needed | |
3979 | anymore). | |
3980 | * (gdbtk_tcl_breakpoint): Change to reflect new breakpoint | |
3981 | notification protocol. | |
3982 | * (gdbtk_tcl_busy gdbtk_tcl_idle): Straighten out buttons, remove | |
3983 | catches. | |
3984 | * (interactive_cmd): Use this wrapper around button invocations | |
3985 | of many commands. This will catch errors and put the results into | |
3986 | the command window. It also updates all the other windows. | |
3987 | * Also, change reliefs of most things to sunken. This actually | |
3988 | looks better. | |
3989 | * (create_file_win): Fix margin binding to allow breakpoints to | |
3990 | work again. | |
3991 | * (create_asm_win): Use return value of gdb_disassemble instead | |
3992 | of implicit I/O to the command window. | |
3993 | * (create_command_window): Use new result protocol to get output | |
3994 | from commands. | |
7f4b4b71 | 3995 | end-sanitize-gdbtk |
677653a0 | 3996 | |
5466f20f JK |
3997 | Tue Feb 14 16:58:07 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
3998 | ||
3999 | * expression.h: Move declaration of evaluate_subexp_with_coercion | |
4000 | from here... | |
4001 | * value.h: ...to here. | |
4002 | * expression.h: Don't include value.h | |
4003 | ||
a6865104 JK |
4004 | Tue Feb 14 11:46:07 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
4005 | ||
4006 | * expression.h: Move include of value.h until after declaration of | |
4007 | enum exp_opcode. | |
4008 | ||
faf4dcd7 SS |
4009 | Sun Feb 12 13:47:30 1995 Stan Shebs <shebs@andros.cygnus.com> |
4010 | ||
d5c8cefe SS |
4011 | * remote-e7000.c: Comprehensive cleanup; removal of dead code, |
4012 | simplify code, declare things, format to standards. | |
4013 | (inferior.h, value.h, command.h, remote-utils.h): Include. | |
4014 | (e7000_login): Rename to e7000_login_command. | |
4015 | (e7000_ftp): Rename to e7000_ftp_command. | |
4016 | (e7000_drain): Rename to e7000_drain_command. | |
4017 | ||
faf4dcd7 SS |
4018 | * irix5-nat.c (string.h): Include near beginning of file. |
4019 | ||
18d3d859 JK |
4020 | Sun Feb 12 12:36:38 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
4021 | ||
4022 | * valops.c (value_arg_coerce): Use VALUE_TYPE not SYMBOL_TYPE on | |
4023 | arg, it is a value not a symbol. | |
4024 | ||
4025 | gcc -Wall lint: | |
4026 | * eval.c: Move declaration of evaluate_subexp_with_coercion from here.. | |
4027 | * expression.h: ..to here. | |
4028 | * expression.h: Include value.h. | |
4029 | * ch-lang.c (evaluate_subexp_chill): Add default case in switch. | |
4030 | ||
60438e8e PB |
4031 | Sun Feb 12 11:03:47 1995 Per Bothner <bothner@kalessin.cygnus.com> |
4032 | ||
7398958c PB |
4033 | * language.h (struct language_defn): New field evaluate_exp. |
4034 | * c-lang.c (c_language_defn, cplus_language_defn, asm_langauge_defn), | |
4035 | f-lang.c (f_language_defn), language.c (unknown_language_defn, | |
4036 | auto_language_defn, local_language_defn), m2-lang.c (m2_language_defn): | |
4037 | Set evaluate_exp to evaluate_subexp_standard. | |
4038 | * ch-lang.c (evaluate_subexp_chill): New function. Chill-specific | |
4039 | support for MULTI_SUBSCRIPT. | |
4040 | (chill_language_defn): Set evaluate_exp to evaluate_subexp_chill. | |
4041 | * eval.c (enum noside): Move from here .... | |
4042 | * expression.h (enum noside): ... to here. | |
4043 | (evaluate_subexp_standard): New prototype. | |
4044 | * eval.c (evaluate_subexp): Renamed to evaluate_subexp_standard. | |
4045 | Removed lo-longer-needed test for chill_varying_type. | |
4046 | (evaluate_subexp): New. Calls exp->language_defn->evaluate_exp. | |
4047 | ||
60438e8e PB |
4048 | * ch-exp.y (maybe_expression_list): New non-terminal. |
4049 | (primitive_value): Allow empty parameter list. | |
4050 | ||
27202b6a PB |
4051 | Sun Feb 12 10:02:16 1995 Per Bothner <bothner@cygnus.com> |
4052 | ||
4053 | * buildsym.c (finish_block): If finishing a function without known | |
4054 | parameter type info, set that from parameter symbols. | |
4055 | * c-typeprint.c (c_type_print_varspec_suffix): For TYPE_CODE_FUNC, | |
4056 | print parameter types, if available. | |
4057 | * ch-typeprint.c (chill_type_print_base): Likewise. | |
4058 | ||
4059 | * gdbtypes.h (struct type): Remove function type field. | |
4060 | (TYPE_FUNCTION_TYPE): Remove macro. We can't as simply re-use | |
4061 | function types now that we're also storing parameter types. | |
4062 | And the payoff is much less. | |
4063 | * gdbtypes.c (make_function_type): Don't use/set TYPE_FUNCTION_TYPE. | |
4064 | (recursive_dump_type): Don't print TYPE_FUNCTION_TYPE. | |
4065 | * dwarfread.c (read_subroutine_type): Don't set TYPE_FUNCTION_TYPE. | |
4066 | ||
5222ca60 PB |
4067 | * valops.c (value_arg_coerce): Now takes param_type argument. |
4068 | (call_function_by_hand): Convert arguments with value_arg_coerce | |
4069 | early, and overwrite original args with converted args. | |
4070 | No longer need multiple calls to value_arg_coerce. | |
4071 | (value_arg_push): Removed. | |
4072 | * hppa-tdep.c (hppa_push_arguments): No longer call value_arg_coerce. | |
4073 | * mips-tdep.c (mips_push_arguments): Likewise. | |
4074 | * alpha-tdep.c (alpha_push_arguments): Likewise. | |
4075 | * rs6000-tdep.c (push_arguments, ran_out_of_registers_for_arguments): | |
4076 | Likewise. | |
4077 | * value.h (value_arg_coerce): Remove declaration. (It's now static.) | |
4078 | ||
4079 | * valops.c (value_cast): Do COERCE_VARYING_ARRAY after COERCE_REF. | |
4080 | ||
7c606261 PB |
4081 | * symtab.c (add_param_to_type): Remove (commented-out) function, |
4082 | since that functionality has been re-written. | |
4083 | * coffread.c: Remove commented-out add_param_to_type support. | |
4084 | * mdebugread.c (parse_symbol): Likewise. | |
4085 | * stabsread.c (define_symbol): Likewise. | |
4086 | ||
21af55c9 JK |
4087 | Sun Feb 12 09:03:47 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
4088 | ||
4089 | * buildsym.c (start_subfile): Set language for f2c like for cfront. | |
4090 | ||
4091 | Thu Feb 9 20:20:11 1995 Rob Savoye <rob@darkstar.cygnus.com> | |
4092 | ||
4093 | * op50n-rom.c: Add the control registers. | |
4094 | ||
76a457c0 SS |
4095 | Thu Feb 9 15:46:39 1995 Stan Shebs <shebs@andros.cygnus.com> |
4096 | ||
4097 | * Makefile.in (CLIBS): Add $(LIBIBERTY) before, in addition to | |
4098 | after, any host/target/native libraries. | |
4099 | * dcache.c (insque, remque): Remove declarations. | |
4100 | * gdbtypes.h (type_code): Remove trailing comma. | |
4101 | ||
4102 | From Peter Schauer: | |
4103 | * xcoffread.c (read_xcoff_symtab) [C_HIDEXT]: Move #ifdef | |
4104 | STATIC_NODEBUG_VARS inside case. | |
4105 | ||
137a07e6 JK |
4106 | Thu Feb 9 07:43:41 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
4107 | ||
4108 | * config/sparc/tm-sun4sol2.h: Define STATIC_TRANSFORM_NAME. | |
4109 | * partial-stab.h: Call it. | |
4110 | * stabsread.c (define_symbol) [STATIC_TRANSFORM_NAME]: Call | |
4111 | STATIC_TRANSFORM_NAME to get the name and use minimal symbols to | |
4112 | get the address. | |
4113 | * sparc-tdep.c (solaris_static_transform_name): New function. | |
4114 | ||
506af7a7 JL |
4115 | Thu Feb 9 12:09:09 1995 Jeff Law (law@snake.cs.utah.edu) |
4116 | ||
4117 | * somread.c (som_symtab_read): Handle dynamic relocation for both | |
4118 | text and data symbols. | |
4119 | (som_symfile_offsets): If objfile is a shared library, then get | |
4120 | text and data offsets from the shared library structures. | |
4121 | * somsolib.c (som_solib_add): Copy the bfd pointer from the | |
4122 | objfile rather than reopening the file again. | |
4123 | (som_solib_section_offsets): New function. | |
4124 | * somsolib.h (som_solib_section_offsets): Declare. | |
4125 | ||
2d336b1b JK |
4126 | Wed Feb 8 20:32:18 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
4127 | ||
4128 | * config/sparc/tm-sun4sol2.h, dbxread.c: Rename | |
4129 | N_SO_ADDRESS_MAYBE_MISSING to SOFUN_ADDRESS_MAYBE_MISSING. | |
4130 | * symtab.h (minimal_symbol) [SOFUN_ADDRESS_MAYBE_MISSING]: Add | |
4131 | filename field. | |
4132 | * elfread.c (record_minimal_symbol_and_info), | |
4133 | minsyms.c, symtab.h (prim_record_minimal_symbol_and_info): Return | |
4134 | newly created symbol. | |
4135 | * elfread.c (elf_symtab_read) [SOFUN_ADDRESS_MAYBE_MISSING]: | |
4136 | Set filename field of minimal symbol. | |
4137 | * symmisc.c (dump_msymbols) [SOFUN_ADDRESS_MAYBE_MISSING]: | |
4138 | Print filename field. | |
4139 | * minsyms.c, symtab.h (lookup_minimal_symbol): New arg sfile. | |
4140 | * symm-tdep.c, somsolib.c, hppa-tdep.c, c-exp.y, f-exp.y, | |
4141 | m2-exp.y, nindy-tdep.c, m3-nat.c, irix5-nat.c, hpread.c, | |
4142 | os9kread.c, breakpoint.c, alpha-tdep.c, valops.c, symtab.c, | |
4143 | printcmd.c, dbxread.c: Change callers to pass NULL for sfile. | |
4144 | * dbxread.c (process_one_symbol) [SOFUN_ADDRESS_MAYBE_MISSING]: | |
4145 | Find address of function from minimal symbols. | |
4146 | * partial-stab.h, case 'f', 'F': Call find_stab_function_addr | |
4147 | instead of getting pst->textlow from the stab. | |
4148 | * minsyms.c (find_stab_function_addr): New function. | |
4149 | ||
151e7820 RS |
4150 | Wed Feb 8 19:19:56 1995 Rob Savoye <rob@darkstar.cygnus.com> |
4151 | ||
4152 | * monitor.c: Fix so all the output shows up in the GUI command | |
4153 | window. | |
4154 | ||
9c4ecee6 SS |
4155 | Mon Feb 6 18:50:59 1995 Stan Shebs <shebs@andros.cygnus.com> |
4156 | ||
4157 | * i386-tdep.c (_initialize_i386_tdep): Put void decl on separate | |
4158 | line, so init.c generation works correctly. | |
4159 | start-sanitize-arc | |
4160 | * arc-tdep.c (_initialize_arc_tdep): Ditto. | |
4161 | end-sanitize-arc | |
4162 | ||
16b3ea5e RS |
4163 | Mon Feb 6 14:44:36 1995 Rob Savoye <rob@darkstar.cygnus.com> |
4164 | ||
04697040 RS |
4165 | * config/mips/idt.mt: Add support for the lsi33k target. |
4166 | * config/sparc/sun4sol2.mh: Add support for ser-tcp. | |
16b3ea5e RS |
4167 | * array-rom.c: Finish the rest of the support commands needed by |
4168 | GDB. | |
4169 | * mips-tdep.c: Add LSI33k register names and processor type. | |
4170 | ||
d039851f | 4171 | start-sanitize-gdbtk |
ddc0c38d | 4172 | Sun Feb 5 20:32:44 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
9c4ecee6 | 4173 | |
d039851f JK |
4174 | * gdbtk.c (gdb_disassemble): Deference pointer to function before |
4175 | calling it (pre-ANSI compilers generally require this). | |
ddc0c38d | 4176 | |
f64a8968 | 4177 | end-sanitize-gdbtk |
ddc0c38d SS |
4178 | Sat Feb 4 13:29:52 1995 Stan Shebs <shebs@andros.cygnus.com> |
4179 | ||
4180 | * config/m68k/est.mt (TDEPFILES): Remove m68k-pinsn.o. | |
4181 | ||
6396e0c0 KH |
4182 | Fri Feb 3 16:47:31 1995 Kung Hsu <kung@mexican.cygnus.com> |
4183 | ||
4184 | * ser-go32-para.c (dos_read): fix syntax errors. | |
4185 | ||
a76ef70a SG |
4186 | Fri Feb 3 11:19:20 1995 Stu Grossman (grossman@cygnus.com) |
4187 | ||
ddc0c38d SS |
4188 | * core.c (dis_asm_read_memory), defs.h, top.c: Get rid of |
4189 | dis_asm_read_memory_hook. We can now call the disassemblers | |
4190 | directly and have no need for this hook anymore. | |
4191 | start-sanitize-gdbtk | |
4192 | * gdbtk.c (gdb_disassemble): Ditto. | |
4193 | end-sanitize-gdbtk | |
4194 | * defs.h, printcmd.c: Make print_insn be static. | |
a76ef70a SG |
4195 | |
4196 | * ser-go32.c (dos_comisr): Make this 8 bit clean. | |
4197 | * (dos_open dos_close): Allow multiple opens to the same device. | |
4198 | Use a ref count to prevent unwanted deallocations. | |
4199 | * sparcl-tdep.c: Put #ifdefs around all socket stuff to make GO32 | |
4200 | happy. | |
4201 | * (sparclite_ops): Switch to download_stratum. | |
4202 | * target.h (enum strata): Move download_stratum before | |
4203 | process_stratum so that executable targets get pushed on top of | |
4204 | download targets. | |
4205 | ||
1b552670 RS |
4206 | Thu Feb 2 19:02:45 1995 Rob Savoye <rob@darkstar.cygnus.com> |
4207 | ||
4208 | * array-rom.c: Remove the non GDB remote protocol config stuff. | |
4209 | ||
4210 | * monitor.c: All reading/writing functions for memory and | |
4211 | registers work. | |
4212 | ||
75a5da5f KH |
4213 | Thu Feb 2 16:11:04 1995 Kung Hsu <kung@mexican.cygnus.com> |
4214 | ||
ddc0c38d | 4215 | start-sanitize-arc |
75a5da5f KH |
4216 | * config/arc/arc.mt: new target makefile for arc processor. |
4217 | * config/arc/tm-arc.h: new target header for arc processor. | |
4218 | * config/arc/go32.mh: new go32 host makefile for arc processor. | |
4219 | * config/arc/xm-go32.h: new go32 host header for arc processor. | |
4220 | * arc-tdep.c: new target dependent codes for arc processor. | |
4221 | * remote-arc.c: new file for arc-specific protocol through | |
4222 | parallel line. | |
ddc0c38d | 4223 | end-sanitize-arc |
75a5da5f | 4224 | * ser-go32-para.c: new file for go32 parallel port communication. |
75a5da5f | 4225 | |
2d144441 SS |
4226 | Thu Feb 2 13:58:40 1995 Stan Shebs <shebs@andros.cygnus.com> |
4227 | ||
4228 | * Makefile.in (VERSION): Bump to 4.13.2. | |
4229 | ||
4230 | Thu Feb 2 07:27:56 1995 Jim Kingdon (kingdon@lioth.cygnus.com) | |
4231 | ||
4232 | Fix compiler warnings: | |
4233 | * remote-e7000.c (printf_e7000debug): Rename to puts_e7000debug | |
4234 | and have the caller do the sprintf. Saves us from varargs hell. | |
4235 | (normal): Define before use. | |
4236 | * remote-e7000.c: Reindent a few things. | |
4237 | ||
8a329002 | 4238 | Wed Feb 1 21:16:42 1995 Per Bothner <bothner@kalessin.cygnus.com> |
6073b8de | 4239 | |
8a329002 PB |
4240 | * f-typeprint.c (f_type_print_varspec_suffix): Print array index |
4241 | ranges in reverse order. | |
4242 | * f-valprint.c (f77_create_arrayprint_offset_tbl): Fix calculation. | |
4243 | ||
4244 | * eval.c (evaluate_subscript): Don't call value_subscript, since | |
4245 | it adjusts for lower bound and enforces ranges. | |
4246 | ||
4247 | * expression.h (exp_code): Remove MULTI_F77_SUBSCRIPT, OP_F77_SUBSTR. | |
4248 | * eval.c, parse.c: Removed uses of removed opcodes. | |
ead95f8a PB |
4249 | * eval.c (evaluate_subexp): Clean up handling of |
4250 | OP_UNDETERMINED_ARGLIST (no backtracking, more general). | |
4251 | ||
4252 | * f-valprint.c (f_val_print): Print TYPE_CODE_STRING using | |
4253 | LA_PRINT_STRING, and not val_print_string (which reads from inferior). | |
4254 | ||
4255 | * ch-lang.c (chill_is_varying_struct), ch-lang.h: Remve function | |
4256 | duplicate function made redundant by chill_varying_type. | |
4257 | ||
4258 | Re-write of f77 string and complex number support: | |
4259 | ||
4260 | * language.h (struct language_defn): New fields string_lower_bound | |
4261 | and string_char_type. | |
4262 | * c-lang.c (c_language_defn, cplus_language_defn, asm_language_defn), | |
4263 | language.c (unknown_language_defn, auto_language_defn, | |
4264 | local_language_defn), m2-lang.c (m2_language_defn), f-lang.c | |
4265 | (f_language_defn), ch-lang.c (chill_language_defn): Set new fields. | |
4266 | * gdbtypes.c (create_string_type): Use new string_char_type field. | |
4267 | * valops.c (value_string): Use new string_lower_bound field. | |
4268 | ||
4269 | * defs.h (TARGET_COMPLEX_BIT, TARGET_DOUBLE_COMPLEX_BIT): Removed. | |
4270 | * f-lang.c (f_create_fundamental_type, _initialize_f_language), | |
4271 | m2-lang.c (m2_create_fundamental_type), | |
4272 | gdbtypes.c (_initialize_gdbtypes): Set TYPE_TARGET_TYPE of complex | |
4273 | types. Set their TYPE_CODEs to TYPE_CODE_COMPLEX. | |
4274 | * mdebugread.c (mdebug_type_complex, mdebug_type_double_complex): | |
4275 | Removed. Use builtin_type_complex and builtin_type_double_complex. | |
4276 | ||
4277 | * gdbtypes.h (enum type_code): Removed TYPE_CODE_LITERAL_STRING | |
4278 | and TYPE_CODE_LITERAL_COMPLEX. | |
4279 | * c-typeprint.c, f-typeprint.c, f-valprint.c, eval.c: Removed uses of | |
4280 | TYPE_CODE_LITERAL_STRING and TYPE_CODE_LITERAL_COMPLEX. | |
4281 | * gdbtypes.c, gdbtypes.h (f77_create_literal_complex_type, | |
4282 | f77_create_literal_string_type): Removed. | |
4283 | * value.h (VALUE_LITERAL_DATA, VALUE_SUBSTRING_MEMADDR, | |
4284 | VALUE_SUBSTRING_MYADDR): Removed. | |
4285 | ||
4286 | * expression.h (enum exp_opcode): Rename OP_F77_LITERAL_COMPLEX to | |
4287 | OP_COMPLEX. | |
4288 | * parse.c: Update accordingly. | |
4289 | ||
4290 | * f-valprint.c (f77_print_cmplx): Removed. | |
4291 | (f_val_print case TYPE_CODE_COMPLEX): Re-write to use print_floating. | |
4292 | ||
4293 | * f-exp.y (STRING_LITERAL): Use OP_STRING instead of OP_ARRAY. | |
4294 | * eval.c (evaluate_subexp): For case OP_ARRAY, don't call | |
4295 | f77_value_literal_string. | |
4296 | * valops.c, value.h (f77_value_literal_string, f77_value_substring, | |
4297 | f77_assign_from_literal_string, f77_assign_from_literal_complex): | |
4298 | Removed. | |
4299 | (value_assign): No longer need to handle literal types. | |
4300 | * valops.c (f77_value_literal_complex), value.h: Re-written and | |
4301 | renamed to value_literal_complex. Last arg is now a (complex) type. | |
4302 | * valops.c (f77_cast_into_complex): Re-written and renamed to | |
4303 | cast_into_complex. | |
4304 | * eval.c (evaluate_subexp): Update accordingly. | |
4305 | ||
6073b8de PB |
4306 | * ch-valprint.c (chill_val_print): On TYPE_CODE_STRING, don't |
4307 | print address for non-'s'-formats. | |
4308 | * ch-typeprint.c, ch-valprint.c: Use chill_varying_type instead | |
4309 | of chill_is_varying_struct. | |
4310 | ||
e3be225e SS |
4311 | Wed Feb 1 13:27:33 1995 Stan Shebs <shebs@andros.cygnus.com> |
4312 | ||
4313 | gcc -Wall lint. | |
4314 | * alpha-tdep.c (alpha_in_lenient_prologue): Comment out. | |
4315 | (after_prologue): Remove unused local b. | |
4316 | * procfs.c (thread.h): Include. | |
4317 | (pr_flag_table, pr_why_table, faults_table, siginfo_table): Use | |
4318 | nested braces in initializer. | |
4319 | * top.c (initialize_targets, initialize_utils): Declare. | |
4320 | (locate_arg, insert_args): Add parens around tested assignments. | |
4321 | * remote-utils.c (sr_scan_args): Remove decl of strtol. | |
4322 | * remote.c (thread.h): Include. | |
4323 | (remote_wait): Remove unused local p2. | |
4324 | * sparc-tdep.c (fill_gregset, fill_fpregset): Remove decls of | |
4325 | registers array. | |
4326 | ||
4327 | defs.h (stdlib.h): Include. | |
4328 | (exit, perror, atoi, qsort, memcpy, memcmp): Don't declare. | |
4329 | (fclose, atof, malloc, realloc, free, strchr, strrchr, strstr, | |
4330 | strtok, strerror): Don't specify parameter types in declaration. | |
4331 | ||
f91a9e05 PB |
4332 | Wed Feb 1 12:23:57 1995 Per Bothner <bothner@kalessin.cygnus.com> |
4333 | ||
4334 | * ch-exp.y (value_string_element, string_primitive_value, | |
4335 | start_element, left_element, right_element, slice_size, | |
4336 | lower_element, upper_element, first_element): Removed. | |
4337 | (value_string_slice, value_array_slice): Replaced by ... | |
4338 | (slice): New non-terminal, with working slice support. | |
4339 | (primitive_value_lparen, rparen): New non-terminals. | |
4340 | (maybe_tuple_elements): New non-terminal, to allow empty tuples. | |
4341 | (idtokentab): Added "up". | |
4342 | ||
4343 | * value.h (COERCE_VARYING_ARRAY): New macro. | |
4344 | * valarith.c (value_subscript): Use it. | |
4345 | * valops.c (value_cast): Likewise. Also, do nothing if already | |
4346 | correct type, and allow converting from/to range to/from scalar. | |
4347 | ||
4348 | * valops.c, value.h (varying_to_slice, value_slice): New functions. | |
4349 | * eval.c (OP_ARRAY): Add cast for array element. | |
4350 | * expression.h (TERNOP_SLICE, TERNOP_SLICE_COUNT): New exp_opcodes. | |
4351 | * valops.c (chill_varying_type): Moved function frp, here ... | |
4352 | * gdbtypes.c (chill_varying_type), gdbtypes.h: ... to here. | |
4353 | * parse.c (length_of_subexp, prefixify_subexp): Add support | |
4354 | for TERNOP_SLICE, TERNOP_SLICE_COUNT. | |
4355 | * expprint.c (print_subexp, dump_expression): Likewise. | |
4356 | * eval.c (evaluate_subexp): Likewise. | |
4357 | ||
4358 | * eval.c (evaluate_subexp case MULTI_SUBSCRIPT): Don't call | |
4359 | value_x_binop on a Chill varying string. | |
4360 | ||
23676ab8 JK |
4361 | Tue Jan 31 13:51:53 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
4362 | ||
4363 | * config/m68k/monitor.mt, | |
4364 | config/pa/{hppabsd.mt,hppahpux.mt,hppaosf.mt,hppapro.mt}: Put | |
4365 | depfiles in TDEPFILES not REMOTE_O. | |
4366 | ||
ccbae889 SC |
4367 | Tue Jan 31 11:14:44 1995 Steve Chamberlain <sac@splat> |
4368 | ||
4369 | From nigel@algor.co.uk. | |
4370 | * ser-go32.c (dos_close): Don't crash if scb null. | |
4371 | (dos_sendbreak): New function. | |
4372 | (dos_ops): Point to dos_sendbreak. | |
4373 | (dos_info): Calculate COM number correctly. | |
4374 | ||
a81ce07d JK |
4375 | Tue Jan 31 09:40:11 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
4376 | ||
4377 | * xcoffread.c (process_xcoff_symbol): Use new variables | |
4378 | func_symbol_type and var_symbol_type as type of functions and | |
4379 | variables which don't have any stabs associated with them. | |
4380 | Reindent most of function. | |
4381 | (_initialize_xcoffread): Initialize *_symbol_type. | |
4382 | ||
4383 | * xcoffread.c (read_xcoff_symtab): Reindent most of function. | |
4384 | Put C_HIDEXT symbols in the minimal symbols, rather than ignoring | |
4385 | them (this part commented out as I didn't quite get it to work). | |
4386 | (cs_to_section, find_targ_sec): New functions, to support above code. | |
4387 | * xcoffread.c (RECORD_MINIMAL_SYMBOL): Only skip '.' if it is | |
4388 | actually present. | |
4389 | ||
0e887539 | 4390 | Mon Jan 30 17:34:24 1995 Stu Grossman (grossman@cygnus.com) |
e3be225e | 4391 | start-sanitize-gdbtk |
78daa95e SG |
4392 | * gdbtk.tcl (create_file_win): Disable old popup menu for source |
4393 | window. | |
e3be225e | 4394 | end-sanitize-gdbtk |
0e887539 SG |
4395 | * sparcl-tdep.c: Add `sparclite' target for doing serial and udp |
4396 | downloads to SPARClite demo boards. | |
4397 | ||
4398 | Sun Jan 29 09:43:22 1995 Jim Kingdon (kingdon@lioth.cygnus.com) | |
4399 | ||
4400 | * remote.c, remote-pa.c: Remove #if 0'd icache code. It has had | |
4401 | no hope of working as is for a long time (in particular, shebs' 27 | |
4402 | Jan 95 change confuses the issue further--target_read_memory and | |
4403 | xfer_core_file do *not* do the same thing in this context). | |
4404 | Revise comment. | |
4405 | ||
de537409 PS |
4406 | Sat Jan 28 13:40:46 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
4407 | ||
4408 | * elfread.c (elf_symtab_read): Do not test BSF_GLOBAL for | |
4409 | procedure linkage table symbols, it is no longer set due to the | |
4410 | Jan 6 BFD change in bfd/elfcode.h. | |
4411 | ||
06c41b39 SS |
4412 | Fri Jan 27 17:08:06 1995 Stan Shebs <shebs@andros.cygnus.com> |
4413 | ||
f22661ee SS |
4414 | * top.c (use_windows): Clarify comments. |
4415 | ||
0d2d8412 SS |
4416 | * convex-tdep.c (xfer_core_file): Comment out. |
4417 | * config/convex/tm-convex.h (XFER_CORE_FILE): Remove. | |
4418 | * remote.c, remote-pa.c (remote_fetch_word): Change xfer_core_file | |
4419 | references to target_read_memory. | |
4420 | * gdbcore.h (xfer_core_file, core_open, core_detach): Remove | |
4421 | declarations. | |
4422 | * corelow.c (core_open, core_detach): Make static. | |
4423 | ||
06c41b39 SS |
4424 | * arm-tdep.c: Make it compile. |
4425 | (exec_file_command, xfer_core_file): Comment out. | |
4426 | (arm_print_insn): Remove, now in libopcodes. | |
4427 | (skip_prologue): Comment out most of body. | |
4428 | (arm_frame_find_saved_regs): Move here from tm-arm.h. | |
4429 | (_initialize_arm_tdep): Set tm_print_insn. | |
4430 | * config/arm/tm-arm.h: Remove old refs to first_object_file_end. | |
4431 | (XFER_CORE_FILE): Remove. | |
4432 | (FRAME_FIND_SAVED_REGS): Call arm_frame_find_saved_regs. | |
4433 | ||
0d6a571b JK |
4434 | Fri Jan 27 08:48:28 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
4435 | ||
4436 | * Makefile.in (CHILL_LIB): Define as in testsuite/Makefile.in. | |
4437 | ||
bf644f8f JK |
4438 | Thu Jan 26 18:24:41 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
4439 | ||
606ae2ba JK |
4440 | * symtab.c (find_pc_line): When subtracting one to get a line |
4441 | number, make sure not to end up with zero. | |
4442 | ||
bf644f8f JK |
4443 | * remote-vx.c: Revert all of Kung's changes of 16 Jan. The |
4444 | problems with those changes were (a) the file didn't compile, (b) | |
4445 | they changed memset to bzero--memset is correct, (c) they took out | |
4446 | code to deal with boards lacking floating point, (d) who knows | |
4447 | what I didn't discover in a quick read. | |
4448 | ||
c746aa85 SG |
4449 | Thu Jan 26 17:32:54 1995 Stu Grossman (grossman@cygnus.com) |
4450 | ||
4451 | * sparcl-tdep.c: Clean up formatting and indentation. | |
4452 | ||
d2d0e51d SC |
4453 | Thu Jan 26 10:49:59 1995 Steve Chamberlain <sac@splat> |
4454 | ||
4455 | * remote-hms.c (hms_ops): Change ref of hr_load_image | |
4456 | to gr_load_image. | |
03fc5a0b SC |
4457 | (dcache_flush, dcache_hit, dcache_value, dcache_fetch, |
4458 | dcache_poke, dcache_init): Deleted. | |
4459 | (hms_open, hms_resume, hms_fetch_word, hms_store_word): | |
4460 | Use dcache routines provided by remote-util.h | |
d2d0e51d | 4461 | |
97544048 MM |
4462 | Thu Jan 26 12:08:31 1995 Michael Meissner <meissner@cygnus.com> |
4463 | ||
4464 | * configure.in: Add support for powerpc-*-eabi. | |
4465 | ||
4466 | * powerpc/tm-ppc-eabi.h, powerpc/pcc-eabi.mt: New files for | |
4467 | PowerPC support. | |
4468 | ||
acc4efde PB |
4469 | Wed Jan 25 18:13:14 1995 Per Bothner <bothner@kalessin.cygnus.com> |
4470 | ||
4471 | * language.h (struct language_defn): New field c_style_arrays. | |
4472 | * language.c (unknown_language_defn, auto_language_defn, | |
4473 | local_language_defn), c-lang.c (c_language_defn, cplus_language_defn, | |
4474 | asm_language_defn): Set c_style_arrays to true. | |
4475 | * m2-lang.c (m2_language_defn), ch-lang.c (chill_language_defn), | |
4476 | f-lang.c (f_language_defn): Set c_style_arrays to false. | |
4477 | * valops.c (value_string): If c_style_array is not set, | |
4478 | allocate string in gdb (not inferior) using allocate_value. | |
4479 | ||
4480 | * value.h (COERCE_ARRAY), valops.c (value_addr, value_arg_coerce): | |
4481 | Only call value_coerce_array if current_language->c_style_arrays. | |
4482 | * values.c: Add #include "language.h". (Needed for COERCE_ARRAY.) | |
4483 | ||
4484 | * valops.c (chill_varying_type): New predicate. | |
4485 | * valops.c (value_cast): Support assigning a fixed string or array | |
4486 | to a variable string/array structure. | |
4487 | ||
4488 | * valarith.c (value_subscripted_rvalue): Extra parameter lowerbound. | |
4489 | Check index>=lowerbound, and then add lowerbound to index here, | |
4490 | instead of in caller. Generalize to arbitrary lval_types. | |
4491 | (value_subscript): Use enhanced value_subscripted_rvalue if | |
4492 | c_style_arrays is false (and index is in range). | |
4493 | ||
8cbf6efc | 4494 | start-sanitize-gdbtk |
b66051ec SG |
4495 | Wed Jan 25 18:23:46 1995 Stu Grossman (grossman@cygnus.com) |
4496 | ||
4497 | * gdbtk.c (gdbtk_init): Prevent segfault when gdbtk.tcl can't be | |
4498 | found. | |
4499 | * gdbtk.tcl: Initialize expr_update_list() to prevent errors when | |
4500 | popping up expression window for the first time. | |
8cbf6efc | 4501 | end-sanitize-gdbtk |
b66051ec | 4502 | |
ee3a45e7 PB |
4503 | Wed Jan 25 18:13:14 1995 Per Bothner <bothner@kalessin.cygnus.com> |
4504 | ||
4505 | * eval.c (evaluate_subexp case OP_ARRAY): Fix calls to memset: | |
4506 | TYPE_LENGTH is length in bytes, not bits. | |
4507 | ||
5024a43f JK |
4508 | Wed Jan 25 08:19:35 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
4509 | ||
4510 | * infrun.c (proceed): Flush stdout before resuming inferior. | |
4511 | * infcmd.c (step_1), annotate.c (annotate_starting): | |
4512 | Don't bother to flush here. | |
4513 | ||
dc192b86 JL |
4514 | Wed Jan 25 01:11:21 1995 Jeff Law (law@snake.cs.utah.edu) |
4515 | ||
4516 | * hpread.c (hpread_process_one_debug_symbol): Fix lines garbled | |
4517 | by an ill-advised global search and replace. | |
4518 | ||
c81a3fa9 SG |
4519 | Tue Jan 24 12:10:28 1995 Stu Grossman (grossman@cygnus.com) |
4520 | ||
8e5bc49f SG |
4521 | * gdbtk.tcl (create_registers_window): Work around a radiobutton |
4522 | widget bug to make Options|Natural button work. | |
4523 | ||
c81a3fa9 SG |
4524 | * gdbtk.c (gdb_disassemble): Fix problem with source+assembly and |
4525 | g++ caused by out-of-order pc's. | |
4526 | * gdbtk.tcl (files_command): Remove duplicate file names. Also, | |
4527 | add scrollbar. | |
4528 | ||
6bd7d9fa SG |
4529 | Mon Jan 23 17:21:09 1995 Stu Grossman (grossman@cygnus.com) |
4530 | ||
4531 | * gdbtk.tcl: Take .gdbtkinit if it exists. Makes gdbtk match the | |
4532 | doc! | |
4533 | ||
6d34c236 PB |
4534 | Mon Jan 23 13:11:46 1995 Per Bothner <bothner@kalessin.cygnus.com> |
4535 | ||
4536 | Add support for Chill bitstring literals (e.h. H'FF00'). | |
4537 | * ch-exp.y (match_bitstring_literal): Fix for proper endianness. | |
4538 | * expprint.c (print_subexp): Don't call error on OP_BITSTRING, | |
4539 | just print B'<unimlemented>'. | |
4540 | * gdbtypes.c (create_set_type): Fix bug in length calculation. | |
4541 | * valops.c, value.h (value_bitstring): New function. | |
4542 | * eval.c (evaluate_subexp): Implement support for OP_BITSTRING. | |
4543 | ||
4544 | * ch-typeprint.c (chill_type_print_base): For TYPE_CODE_FUNC, | |
4545 | check that return type is non-void, and print in proper Chill syntax. | |
4546 | ||
ce51845b RS |
4547 | Mon Jan 23 12:20:34 1995 Rob Savoye <rob@darkstar.cygnus.com> |
4548 | ||
4549 | * Makefile.in: Remove references to remote-mon.c. | |
4550 | * remote-mon.c: remove. Replaced by rom68k-rom.c. | |
4551 | * rom68k-rom.c: Support for Rom68k monitor. | |
4552 | ||
a9c67591 JK |
4553 | Mon Jan 23 10:50:57 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
4554 | ||
4555 | * Makefile.in (CHILL_FOR_TARGET): Update -L argument to point to | |
4556 | gcc/ch/runtime not chillrt, since that is where the chill runtime | |
4557 | lives now. | |
4558 | ||
0c699ac1 SC |
4559 | Mon Jan 23 00:06:57 1995 Steve Chamberlain <sac@splat> |
4560 | ||
4561 | * remote-hms.c (hms_load): Delete. | |
4562 | (target_ops): Use hr_load_image. | |
4563 | ||
4564 | * remote-e7000.c, remote-z8k.c, remote-nindy.c (target_ops): | |
4565 | Define memory_insert/remove_breakpoint. | |
4566 | * xm-go32.h: Remove redundant SIGs. | |
4567 | ||
4568 | Thu Jan 19 20:26:58 1995 Steve Chamberlain <sac@splat> | |
4569 | ||
4570 | * ser-go32.c: Rewritten by nigel@algor.co.uk. | |
4571 | ||
dcda44a0 PB |
4572 | Fri Jan 20 15:23:55 1995 Per Bothner <bothner@kalessin.cygnus.com> |
4573 | ||
4574 | * expression.h (OP_LABELED): New operator, for Chill | |
4575 | labeled structre tuples. | |
4576 | * ch-exp.y (tuple_element, named_record_element, tuple_elements): | |
4577 | New non-terminals, to handle labeled structure tuples. | |
4578 | (tuple): Re-define using tuple_elements. | |
4579 | * eval.c (evaluate_labeled_field_init): New function, to handle | |
4580 | initialization of structure fields, possibly using OP_LABELED. | |
4581 | (evaluate_subexp): Use it. | |
4582 | * expprint.c (print_subexp case): For OP_ARRAY, use Chill syntax | |
4583 | for Chill. Handled OP_LABELED. | |
4584 | * parse.c (length_of_subexp, prefixify_subexp): Handle OP_LABELED. | |
4585 | ||
4586 | * eval.c (evaluate_subexp): Handle Chill Powerset tuples. | |
4587 | * valarith.c (value_bit_index): Just treat bitstring as represented | |
4588 | by an array of bytes. Alignment is handled by compiler. | |
4589 | ||
4590 | Wed Jan 18 19:00:29 1995 Stan Shebs <shebs@andros.cygnus.com> | |
4591 | ||
4592 | * h8300-tdep.c (gdb_print_insn_h8300): Fix typo (&info -> info). | |
4593 | * sh-tdep.c (gdb_print_insn_sh): Ditto. | |
4594 | ||
6bbc99e3 KH |
4595 | Wed Jan 18 11:25:43 1995 Kung Hsu <kung@mexican.cygnus.com> |
4596 | ||
4597 | * remote-os9k.c (rombug_open): Fix a bug in exception handling | |
4598 | command. | |
4599 | * remote-os9k.c (rombug_write_inferior_memory): reset buffer after | |
4600 | write. | |
4601 | ||
eedb3363 JK |
4602 | Tue Jan 17 09:48:38 1995 Jim Kingdon <kingdon@lioth.cygnus.com> |
4603 | ||
4604 | * parse.c (_initialize_parse): Improve wording of names of | |
4605 | msym_*_symbol_type. | |
4606 | ||
daa4c5f8 ILT |
4607 | Tue Jan 17 14:00:58 1995 Ian Lance Taylor <ian@sanguine.cygnus.com> |
4608 | ||
4609 | * config/mips/tm-mips.h (enum mips_fpu_type): New enum. | |
4610 | (mips_fpu): Change type to enum mips_fpu_type. | |
4611 | (FIX_CALL_DUMMY): Handle mips_fpu == MIPS_FPU_SINGLE. | |
4612 | * mips-tdep.c (mips_fpu): Change type to enum mips_fpu_type. | |
4613 | Don't initialize. | |
4614 | (mips_fpu_string): New static variable. | |
4615 | (mips_push_dummy_frame): Handle mips_fpu == MIPS_FPU_SINGLE. | |
4616 | (mips_pop_frame): Likewise. | |
4617 | (mips_extract_return_value): Likewise. | |
4618 | (mips_store_return_value): Likewise. | |
4619 | (mips_set_fpu_command): New static function. | |
4620 | (mips_show_fpu_command): New static function. | |
4621 | (_initialize_mips_tdep): Change handling of set/show mipsfpu. | |
4622 | ||
3fb93d86 JK |
4623 | Tue Jan 17 09:48:38 1995 Jim Kingdon <kingdon@lioth.cygnus.com> |
4624 | ||
5ad32be2 JK |
4625 | * a29k-tdep.c (gdb_print_insn_a29k): Fix typo (&info -> info). |
4626 | ||
3fb93d86 JK |
4627 | * parse.c (write_exp_msymbol): Use new variables |
4628 | msym_*_symbol_type as type of msymbol expression. | |
4629 | (_initialize_parse): Initialize them. | |
4630 | ||
18b46e7c SS |
4631 | Mon Jan 16 18:11:03 1995 Stan Shebs <shebs@andros.cygnus.com> |
4632 | ||
4633 | General cleanup and simplication of disassembler interface. | |
4634 | * a29k-pinsn.c, arm-pinsn.c, convex-pinsn.c, gould-pinsn.c, | |
4635 | hppa-pinsn.c, i386-pinsn.c, i960-pinsn.c, m68k-pinsn.c, | |
4636 | m88k-pinsn.c, mips-pinsn.c, ns32k-pinsn.c, pyr-pinsn.c, | |
4637 | rs6000-pinsn.c, sparc-pinsn.c, tahoe-pinsn.c, vax-pinsn.c: Remove. | |
4638 | * gould-tdep.c, ns32k-tdep.c, tahoe-tdep.c, vax-tdep.c: New files, | |
4639 | had been -pinsn.c files. | |
4640 | * Makefile.in (ALLDEPFILES): Remove removed files. | |
4641 | (a29k-pinsn.o, arm-pinsn.o, convex-pinsn.o, gould-pinsn.o, | |
4642 | hppa-pinsn.o, i386-pinsn.o, i960-pinsn.o, m68k-pinsn.o, | |
4643 | m88k-pinsn.o, mips-pinsn.o, ns32k-pinsn.o, pyr-pinsn.o, | |
4644 | rs6000-pinsn.o, sparc-pinsn.o, tahoe-pinsn.o, vax-pinsn.o): | |
4645 | Remove compile actions. | |
4646 | * arm-tdep.o, gould-tdep.o, ns32k-tdep.o, tahoe-tdep.o, | |
4647 | vax-tdep.o: Add compile actions. | |
4648 | * defs.h (tm_print_insn): New global. | |
4649 | * a29k-tdep.c (gdb_print_insn_a29k): New function. | |
4650 | (_initialize_a29k_tdep): Rename from _initialize_29k, | |
4651 | set tm_print_insn. | |
4652 | * alpha-tdep.c (print_insn): Remove. | |
4653 | (_initialize_alpha_tdep): Set tm_print_insn. | |
4654 | * arm-tdep.c (arm_print_insn): New function, was print_insn | |
4655 | in arm-pinsn.c. | |
4656 | * convex-tdep.c (convex_print_insn): New function, was print_insn | |
4657 | in convex-pinsn.c. | |
4658 | * h8300-tdep.c (print_insn): Remove. | |
4659 | (gdb_print_insn_h8300): New function. | |
4660 | (_initialize_h8300_tdep): New function. | |
4661 | * h8500-tdep.c (print_insn): Remove. | |
4662 | (_initialize_h8500_tdep): New function. | |
4663 | * hppa-tdep.c (_initialize_hppa_tdep): Set tm_print_insn. | |
4664 | * i386-tdep.c (_initialize_i386_tdep): New function. | |
4665 | * i960-tdep.c (mem, next_insn): New functions, were in | |
4666 | i960-pinsn.c. | |
4667 | (_initialize_i960_tdep): Set tm_print_insn. | |
4668 | * m68k-tdep.c (_initialize_m68k_tdep): New function. | |
4669 | * m88k-tdep.c (_initialize_m88k_tdep): New function. | |
4670 | * mips-tdep.c (gdb_print_insn_mips): New function. | |
4671 | (_initialize_mips_tdep): Set tm_print_insn. | |
4672 | * pyr-tdep.c (pyr_print_insn): New function, was print_insn | |
4673 | in pyr-pinsn.c. | |
4674 | * rs6000-tdep.c (_initialize_rs6000_tdep): New function. | |
4675 | * sh-tdep.c (print_insn): Remove. | |
4676 | (gdb_print_insn_sh): New function. | |
4677 | (_initialize_sh_tdep): Set tm_print_insn. | |
4678 | * sparc-tdep.c (_initialize_sparc_tdep): New function. | |
4679 | * w65-tdep.c (print_insn): Remove. | |
4680 | (_initialize_w65_tdep): New function. | |
4681 | * z8k-tdep.c (print_insn): Remove. | |
4682 | (gdb_print_insn_z8k): New function. | |
4683 | (_initialize_z8k_tdep): Set tm_print_insn. | |
4684 | * printcmd.c (print_insn): New function, generic disassembler. | |
4685 | * config/*/*.mt (TDEPFILES): Remove refs to *-pinsn.o. | |
4686 | ||
83d9bb14 KH |
4687 | Mon Jan 16 15:43:29 1995 Kung Hsu <kung@mexican.cygnus.com> |
4688 | ||
4689 | * Makefile.in: add new files remote-vx29k.c, config/a29k/tm-vx29k.h, | |
4690 | and config/a29k/vx29k.mt. | |
4691 | * configure.in: add new configuration a29k-*-vxworks. | |
4692 | * remote-vx29k.c: new file merged from WRS. | |
4693 | * remote-vx.c: merge changes from WRS. | |
4694 | * config/a29k/vx29k.mt: new file for new configuration. | |
4695 | * config/a29k/tm-vx29k.h: new header file for newconfiguration. | |
4696 | ||
16041d53 SC |
4697 | Sun Jan 15 14:36:19 1995 Steve Chamberlain <sac@splat> |
4698 | ||
4699 | * breakpoint.h (disable_breakpoint, enable_breakpoint): | |
4700 | New declarations. | |
4701 | (enum bpdisp): Change name of 'delete' member to 'del'. | |
4702 | (struct bpstat): Changed name to 'bpstats'. | |
4703 | * breakpoint.c (disable_breakpoint, enable_breakpoint, | |
4704 | breakpoint_chain): Made globally visible. | |
4705 | (bpstat_stop_status): Use new name for bpstat. | |
4706 | (break_command_1, watch_command_1, catch_command_1, | |
4707 | breakpoint_auto_delete, denable_delete_breakpoint): Use 'del' | |
4708 | instead of 'delete'. | |
4709 | (set_breakpoint_sal): New function. | |
4710 | * defs.h (registers_changed_hook): New declaration. | |
4711 | * infcmd.c (run_stack_dummy): 'delete' is now 'del'. | |
4712 | * inflow.c (new_tty): Treat WIN32 in same way as __GO32__ | |
4713 | * main.c (main): Don't scan options when in WIN32 and exit | |
4714 | without entering main loop. | |
4715 | * m2-exp.y (m2_elx): Member 'class' is now 'aclass'. | |
4716 | * symtab.h (struct symbol, struct partial_symbol): Changed name of | |
4717 | member 'class' to 'aclass'. | |
4718 | (SYMBOL_CLASS, PSYMBOL_CLASS): Reflect change. | |
4719 | * top.c (registers_changed_hook): New definition. | |
4720 | * utils.c (quit, notice_quit, initialize_utils): Treate WIN32 | |
4721 | in same way as __GO32__. | |
4722 | * value.h (c_typedef_print): Rename 'new' argument. | |
4723 | ||
be21628d SC |
4724 | * w65-tdep.c, config/tm-w65.h, config/w65.mt: New files. |
4725 | * configure.in: Suppprt for w65, | |
4726 | ||
4727 | ||
22b1c54a JK |
4728 | Sat Jan 14 11:18:11 1995 Jim Kingdon <kingdon@lioth.cygnus.com> |
4729 | ||
8248d21b JK |
4730 | * infcmd.c (signal_command): For "signal 0", pass (CORE_ADDR)-1, |
4731 | not stop_pc, to proceed. | |
4732 | ||
22b1c54a JK |
4733 | * eval.c (evaluate_subexp): Clear expect_type except for C++ and CHILL. |
4734 | ||
b5088d10 JK |
4735 | Fri Jan 13 17:52:57 1995 Jim Kingdon <kingdon@lioth.cygnus.com> |
4736 | ||
4737 | * infcmd.c (signal_command): Accept "signal 0"; the change to not | |
4738 | accept it was accidental. "handle 0" and "info signal 0" remain | |
4739 | illegal, though. | |
4740 | ||
218d43e5 SS |
4741 | Fri Jan 13 15:19:01 1995 Stan Shebs <shebs@andros.cygnus.com> |
4742 | ||
4743 | * Makefile.in (all): Don't make libgdb-files. | |
4744 | (libgdb): New action, makes libgdb-files. | |
4745 | ||
0f8631fb PB |
4746 | Thu Jan 12 21:23:25 1995 Per Bothner <bothner@kalessin.cygnus.com> |
4747 | ||
4748 | * stabsread.c (read_enum_type): When pending enum symbols are | |
4749 | put into the enum type, they must be inserted in "backwards | |
4750 | order, in case we've overflowed a struct pending buffer. | |
4751 | ||
218d43e5 | 4752 | start-sanitize-gdbtk |
4604b34c SG |
4753 | Thu Jan 12 15:02:40 1995 Stu Grossman (grossman@cygnus.com) |
4754 | ||
218d43e5 | 4755 | * gdbtk.c, gdbtk.tcl: Update/add copyright. |
4604b34c SG |
4756 | * gdbtk.tcl (build_framework): Several fixes for filespec widget, |
4757 | including dismiss button, and better error handling. | |
4758 | * (create_command_win): Bind button 2 to retrieve selection. | |
218d43e5 | 4759 | end-sanitize-gdbtk |
4604b34c | 4760 | |
2592eef8 PS |
4761 | Thu Jan 12 09:33:24 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
4762 | ||
4763 | * README: Add note about SPARCworks cc release 3.0 and higher. | |
4764 | ||
4765 | Add procfs support for Alpha OSF/1-2.x. | |
4766 | * config/alpha/nm-osf.h: Renamed from nm-alpha.h, generic | |
4767 | OSF/1 native support. | |
4768 | * config/alpha/alpha-osf1.mh (NAT_FILE): Changed accordingly. | |
4769 | (MUNCH_DEFINE): Removed. | |
4770 | * config/alpha/alpha-osf2.mh, config/alpha/nm-osf2.h: New files | |
4771 | for procfs support. | |
4772 | * configure.in (alpha-dec-osf*): Use alpha-osf2.mh for OSF/1 | |
4773 | release 2.x and higher, else alpha-osf1.mh, as the procfs support | |
4774 | in release 1.x is incomplete. | |
4775 | * Makefile.in (ALLCONFIG): Add config/alpha/alpha-osf2.mh. | |
4776 | * alpha-nat.c (supply_gregset, fill_gregset, supply_fpgregset, | |
4777 | fill_fpgregset): New routines for procfs support. | |
4778 | * inftarg.c (_initialize_inftarg): Don't add ptrace support | |
4779 | if we have an optional procfs and /proc is accessible. | |
4780 | * procfs.c: Include sys/fault.h and sys/syscall.h before | |
4781 | including sys/procfs.h. | |
4782 | (unconditionally_kill_inferior): If PROCFS_NEED_PIOCSSIG_FOR_KILL | |
4783 | is defined, additionally perform a PIOCSSIG to really terminate | |
4784 | the inferior. | |
4785 | (create_procinfo): Always return a result. | |
4786 | (create_procinfo, do_attach): Don't trace T_IFAULT faults if | |
4787 | PROCFS_DONT_TRACE_IFAULT is defined. | |
4788 | (procfs_init_inferior): Use START_INFERIOR_TRAPS_EXPECTED as | |
4789 | argument to startup_inferior if it is defined. | |
4790 | (proc_set_exec_trap): If PIOCSSPCACT is defined, use it instead | |
4791 | of tracing exits from exec system calls. Needed for the user level | |
4792 | loader under Alpha OSF/1. | |
4793 | (do_detach): Clear any pending signal if we want to detach from | |
4794 | a process without a signal. | |
4795 | (set_proc_siginfo): If PROCFS_DONT_PIOCSSIG_CURSIG is defined, | |
4796 | don't issue a PIOCSSIG if pr_cursig already contains the signal we | |
4797 | intend to set. | |
4798 | (info_proc_signals): If PROCFS_SIGPEND_OFFSET is defined, the | |
4799 | pending signals are numbered from 1 instead of 0. | |
4800 | (info_proc_mappings): Increase size of output format for addresses | |
4801 | if BFD_HOST_64_BIT is defined. | |
4802 | (procfs_stop): Renamed from child_stop. | |
4803 | (_initialize_procfs): Don't add procfs support if we have an | |
4804 | optional procfs and /proc is not accessible. | |
4805 | ||
218d43e5 | 4806 | start-sanitize-gdbtk |
724498fd SG |
4807 | Wed Jan 11 17:06:55 1995 Stu Grossman (grossman@cygnus.com) |
4808 | ||
280c564c | 4809 | * gdbtk.tcl: Add button to control mixed source disassembly. |
218d43e5 | 4810 | Use text widgets in expr window. The give me more control over |
280c564c | 4811 | layout. |
218d43e5 SS |
4812 | Add auto-updating of exprs in expression window. |
4813 | Handle expressions out of scope a bit better. | |
4814 | Make selected window pop up to the top when invoked via the | |
280c564c | 4815 | menubar. |
218d43e5 | 4816 | Make copyright message have raised relief. |
280c564c | 4817 | |
724498fd SG |
4818 | * gdbtk.c (gdbtk_init): Improve handling for errors in gdbtk.tcl |
4819 | during startup. | |
218d43e5 | 4820 | end-sanitize-gdbtk |
724498fd | 4821 | |
b04a78d4 RS |
4822 | Wed Jan 11 17:53:26 1995 Rob Savoye <rob@darkstar.cygnus.com> |
4823 | ||
4824 | * array-rom.c: Add support for most commands. | |
4825 | ||
4826 | * monitor.c: Add GDB remote protocol for the hybrid environment on | |
4827 | the Array board. | |
4828 | ||
b47ae8fb JL |
4829 | Wed Jan 11 00:44:01 1995 Jeff Law (law@snake.cs.utah.edu) |
4830 | ||
4831 | * command.c (show_user_1): Use print_command_line to show a user | |
4832 | defined command (including control structures). | |
4833 | ||
4834 | * top.c (init_main): Change documentation for user defined | |
4835 | commands to indicate they may accept up to ten arguments. | |
4836 | ||
1d9489c1 JK |
4837 | Tue Jan 10 16:22:41 1995 Jim Kingdon <kingdon@lioth.cygnus.com> |
4838 | ||
4839 | * mips-tdep.c (mips_skip_prologue): Accept or as well as addu for | |
4840 | `move $s8, $sp' instruction. | |
4841 | ||
3b55fbe3 JK |
4842 | Sun Jan 8 12:45:34 1995 Jim Kingdon <kingdon@deneb.cygnus.com> |
4843 | ||
4844 | * target.c, target.h (target_signal_from_command): New function. | |
4845 | * infrun.c (handle_command, signals_info), infcmd.c | |
4846 | (signal_command): Use it. | |
4847 | * infrun.c, infcmd.c: Update docstrings for these commands. | |
4848 | ||
4849 | * target.h (enum target_signal), target.c (signals), target.c | |
4850 | (target_signal_from_host, target_signal_to_host): Add | |
4851 | TARGET_SIGNAL_REALTIME_* and TARGET_SIGNAL_PRIO for lynx. | |
4852 | * config/tm-lynx.h: Define signal numbers for realtime events. | |
4853 | ||
02b40a19 PS |
4854 | Sat Jan 7 07:23:53 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) |
4855 | ||
4856 | * dbxread.c (process_one_symbol): Handle N_FUN symbols | |
4857 | for Sun acc 3.0 under SunOS4. | |
4858 | ||
4859 | Changes to improve handling of runtime common symbols | |
4860 | under SunOS4. | |
4861 | * minsyms.c (get_symbol_leading_char): New routine to determine | |
4862 | the leading symbol character for an objfile. | |
4863 | (prim_record_minimal_symbol_and_info, install_minimal_symbols): | |
4864 | Use it. | |
4865 | * objfiles.h (rt_common_objfile): New global, points to objfile | |
4866 | containing the runtime common minimal symbols. | |
4867 | * objfiles.c (free_objfile): Mark rt_common_objfile as | |
4868 | unallocated before freeing it. | |
4869 | * solib.c (allocate_rt_common_objfile): New routine to allocate | |
4870 | an objfile for the runtime common minimal symbols. | |
4871 | (solib_add_common_symbols): Allocate an objfile for the runtime | |
4872 | common symbols if necessary and put common symbols into it. | |
4873 | Clean up code and comments. | |
4874 | (solib_add, special_symbol_handling): Cleanup comments regarding | |
4875 | runtime common symbols. | |
4876 | * stabsread.c (scan_file_globals_1): New routine, contains | |
4877 | old scan_file_globals code. Checks if there are any unresolved | |
4878 | global symbols before starting the expensive minimal symbol table | |
4879 | search. | |
4880 | (scan_file_globals): Now calls scan_file_globals_1 for the passed | |
4881 | objfile and eventually for the runtime common objfile. Complains | |
4882 | about any unresolved global symbols and removes them from the | |
4883 | global symbol chain to avoid dangling pointers into the symbol | |
4884 | table if the symbol table is reread. | |
4885 | ||
09722039 SG |
4886 | Thu Jan 5 17:38:29 1995 Stu Grossman (grossman@cygnus.com) |
4887 | ||
4a4f9e3b | 4888 | * Makefile.in (install_only uninstall): Indent for clarity. |
09722039 SG |
4889 | |
4890 | * core.c (dis_asm_read_memory): Add call to | |
4891 | dis_asm_read_memory_hook to provide alternate way for disassembler | |
4892 | to read memory. | |
4893 | ||
4894 | * defs.h: Protect from multiple inclusion. Add decl for | |
4895 | dis_asm_read_memory_hook. | |
4896 | ||
4a4f9e3b SS |
4897 | * top.c: Make window startup be the default. |
4898 | * Add dis_asm_read_memory_hook. | |
4899 | ||
4900 | start-sanitize-gdbtk | |
09722039 SG |
4901 | * gdbtk.c (finish_saving_output): Don't do anything if not saving |
4902 | output. | |
4903 | * (breakpoint_notify): Don't send null filename to tcl. | |
4904 | * (gdb_eval): New tcl command to eval an expression. | |
4905 | * (gdb_disassemble): New tcl command to do disassembly. This | |
4906 | allows tcl code to choose between exec file and target memeory, | |
4907 | and can also do mixed source and assembly. | |
4908 | * (gdbtk_init): Move reading of gdbtk.tcl to the end to make sure | |
4909 | that more of the environment is set up. Also, create link between | |
4910 | gdb and tcl vars disassemble{-_}from{-_}exec. | |
4911 | ||
4912 | * gdbtk.tcl: New expression window support. | |
4913 | * Make assembly window be 80 columns wide. | |
4914 | * Use new disassembly method. Add menu items to select | |
4915 | disassembly from exec file or target. | |
4916 | * Change View menubar item to Options. | |
4917 | ||
4918 | * Get rid of Stack, Breakpoints, Signals, and Variables Windows, | |
4919 | since they don't exist yet. | |
4920 | ||
4921 | * Pop up a copyright window on startup. | |
4a4f9e3b | 4922 | end-sanitize-gdbtk |
09722039 | 4923 | |
117a817d JL |
4924 | Thu Jan 5 01:16:40 1995 Jeff Law (law@snake.cs.utah.edu) |
4925 | ||
4926 | * stabsread.c (define_symbol): Handle `a' symbol type used for | |
4927 | reference parameter passed in a register. | |
4928 | ||
c4a5c37c SS |
4929 | start-sanitize-gdbtk |
4930 | Wed Jan 4 19:49:10 1995 Stan Shebs <shebs@andros.cygnus.com> | |
4931 | ||
4932 | * gdbtk.tcl (build_framework): Add standard commands menu, more | |
4933 | windows to standard windows menu. | |
4934 | (not_implemented_yet): Clarify message. | |
4935 | end-sanitize-gdbtk | |
4936 | ||
034022bf KH |
4937 | Wed Jan 4 12:27:29 1995 Kung Hsu <kung@mexican.cygnus.com> |
4938 | ||
c023fbf4 KH |
4939 | * defs.h: move include tm.h up, so that the type LONGEST can |
4940 | also based on the target requirement to determine. In this case | |
4941 | target mips64. | |
4942 | ||
034022bf KH |
4943 | * remote-os9k.c (rombug_open): catch exception e in rombug. |
4944 | * remote-os9k.c (rombug_wait): print message before register display | |
4945 | from rombug. | |
4946 | ||
fd2ae9ec JK |
4947 | Wed Jan 4 09:18:27 1995 Jim Kingdon (kingdon@lioth.cygnus.com) |
4948 | ||
4949 | * top.c (locate_arg): Call strchr not index. | |
4950 | ||
3bcf4181 PB |
4951 | Tue Jan 3 16:52:03 1995 Per Bothner <bothner@kalessin.cygnus.com> |
4952 | ||
2d67c7e9 PB |
4953 | * ch-exp.y (literal): Recognize NULL. |
4954 | (tuple): Parse simple unlabelled tuples. | |
4955 | * eval.c (evaluate_subexp case OP_ARRAY): Use expect_type to | |
4956 | evaluate brace-initializer-expressions depending on context. | |
4957 | (evaluate_subexp case UNOP_CAST): Pass the target type as | |
4958 | expected type when evaluating the expression. | |
4959 | ||
3bcf4181 PB |
4960 | * ch-typeprint.c (chill_type_print_base): Get names of PTR and |
4961 | BOOL from TYPE_NAME. | |
4962 | * ch-valprint.c (chill_print_type_scalar): New function, to handle | |
4963 | TYPE_CODE_RANGE better than print_type_scalar does. | |
4964 | (chill_val_print_array_elements): Use above new function. | |
4965 | ||
6dd6578b SS |
4966 | Mon Jan 2 15:02:51 1995 Stan Shebs <shebs@andros.cygnus.com> |
4967 | ||
4968 | * remote-udi.c (udi_load): Tell symbol_file_add that the | |
4969 | program being loaded is the main program. | |
c4ea046a | 4970 | |
986c54ca | 4971 | For older changes see ChangeLog-94 |
bd5635a1 RP |
4972 | \f |
4973 | Local Variables: | |
4974 | mode: indented-text | |
4975 | left-margin: 8 | |
4976 | fill-column: 74 | |
4977 | version-control: never | |
4978 | End: |