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