* gdbserver/low-hppabsd.c: Remove error declaration.
[binutils-gdb.git] / gdb / ChangeLog
1 Thu Jul 20 15:00:31 1995 Jeff Law (law@snake.cs.utah.edu)
2
3 * gdbserver/low-hppabsd.c: Remove error declaration.
4 * gdbserver/low-sparc.c: Likewise.
5 * gdbserver/low-sun3.c: Likewise.
6 * gdbserver/server.h: Remove error and fatal declaration.
7 * gdbserver/utils.c (error): Update to be compatable with recent
8 changes in defs.h.
9 (fatal): Likewise.
10
11 Wed Jul 19 22:42:43 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
12
13 * config/m68k/tm-m68kv4.h (DWARF_REG_TO_REGNUM): Define to
14 correctly map floating point registers numbers.
15
16 * dwarfread.c (locval, new_symbol): Handle variables that are
17 optimized out.
18
19 * mdebugread.c: Replace all uses of builtin_type_* with
20 mdebug_type_*. Define and initialize mdebug_type_*.
21
22 * serial.h (serial_close): Add additional argument `really_close'.
23 (SERIAL_CLOSE): Update serial_close call accordingly.
24 (SERIAL_UN_FDOPEN): Use serial_close to handle refcnt properly.
25 * serial.c (serial_close): Handle `really_close'.
26 * serial.h (scb_base): Moved to serial.c, made static.
27
28 * valops.c (value_addr): Don't coerce arrays.
29 (typecmp): Coerce arrays instead of calling value_addr if necessary.
30
31 Wed Jul 19 18:19:28 1995 Stan Shebs <shebs@andros.cygnus.com>
32
33 From Richard Earnshaw (rearnsha@armltd.co.uk):
34 * infrun.c (wait_for_inferior): Set the convenience variable
35 $_exitcode to the termination code of the inferior.
36 * top.c (quit_command): Accept optional expression to use
37 as parameter to exit().
38
39 Wed Jul 19 13:15:32 1995 Kung Hsu <kung@mexican.cygnus.com>
40
41 * remote.c (remote_wait): When getting registers, check endianess and
42 do conversion if necessary.
43
44 Tue Jul 18 00:41:31 1995 Jeff Law (law@snake.cs.utah.edu)
45
46 * gdbserver/low-hppabsd.c: New file.
47 * gdbserver/Makefile.in (SFILES): Add low-hppabsd.c.
48 * config/pa/hppabsd.mh (XDEPFILES): Add ser-tcp.o.
49 (GDBSERVER_DEPFILES): Add low-hppabsd.o.
50 * config/pa/hppaosf.mh: Likewise.
51
52 Mon Jul 17 21:35:18 1995 Fred Fish <fnf@cygnus.com>
53
54 * dache.c (struct dcache_block): Change data member from unsigned
55 char to char, since everything passed in and out of dcache is char
56 or casted to appropriate type anyway.
57 (dcache_alloc): Move assignment of db out of test and combine
58 separate tests into if-else.
59 (dcache_peek_byte): Change ptr from unsigned char* to char*.
60 (dcache_peek_byte): Remove now unnecessary cast in read_memory call.
61 (dcache_peek): Change cast of incoming data arg.
62 (dcache_poke): Change cast of addr of incoming data arg.
63 (dcache_info): Mask data passed to printf_filtered to lsbyte only.
64 (dcache_info): Change printf_filtered arg from "% 2x" to " %2x".
65 * target.c (debug_to_thread_alive): Change return type to int and
66 return zero, for type compatibility with other *_thread_alive
67 funcs.
68 (cleanup_target): Change cast of ignore function to match type of the
69 to_thread_alive member.
70 * defs.h (error_hook): Add ATTR_NORETURN.
71 * defs.h (NORETURN, ATTR_NORETURN): Switch from volatile to
72 __attribute__ method with gcc 2.7, to avoid gcc 2.6.3 bug.
73 * remote.c (remote_wait): Cast first arg to strtol, strchr, and
74 strncmp to "const char *" from "unsigned char *".
75 (remote_wait): Cast arg to putpkt and strcpy from "unsigned char *"
76 to "char *".
77 (remote_wait): Change printf format for long arg from "%d" to "%ld".
78 (getpkt): Remove unused variable "bp".
79 (remote_fetch_word, remote_store_word): Ifdef out apparently unused
80 functions.
81 * breakpoint.c (watchpoint_check): Removed unused variables
82 "saved_level" and "saved_frame".
83 * valops.c (value_arg_coerce): Add other enum TYPE_CODE_* and
84 default cases to switch for completeness.
85 * infrun.c (wait_for_inferior): Enclose "have_waited" label
86 in #ifdef that matches the one in which it is referenced.
87 * ser-unix.c (hardwire_noflush_set_tty_state): Enclose otherwise
88 unused variable "state" in #ifdef that matches one in which it is
89 referenced.
90 * eval.c (evaluate_subexp_standard): Remove unused variable "var".
91 * eval.c (evaluate_subexp_standard): Remove unused variable
92 "tmp_symbol".
93 * valarith.c (value_subscript): Remove unused variable
94 "lowerbound", which is redeclared in a nested scope prior to use.
95 * printcmd.c (print_frame_nameless_args): Use "%ld" to print long
96 arg, not "%d".
97 * {mem-break.c, remote-pa.c, remote.c, saber.suppress}:
98 Remove unused static var "check_break_insn_size".
99 * buildsym.c (finish_block): Add other enum LOC_* and default
100 cases to switch for completeness.
101 ch-lang.c (type_lower_upper): Removed unused label "retry".
102 Add other enum TYPE_* and default cases to switch for completeness.
103 * f-typeprint.c (f_type_print_args): Ifdef out unused function
104 that may be used someday when Fortran support is complete.
105 * ch-valprint.c (chill_print_type_scalar): Add other enum
106 TYPE_* and default cases to switch for completeness.
107 (chill_val_print): Remove unused local var "high_bound" that
108 is redeclared in a nested scope prior to use.
109 (chill_var_print): Use "%ld" to print long arg, not "%d".
110 * regex.c (re_compile_fastmap, re_match_2): Add remaining enum
111 types and default to switches for completeness.
112 * minsyms.c (lookup_minimal_symbol_text): Delete unused variable
113 "trampoline_symbol".
114 (prim_record_minimal_symbol_and_info): Return NULL rather than
115 trash.
116 * elfread.c (elf_symtab_read): Don't dereference NULL returns from
117 record_minimal_symbol_and_info.
118 * f-lang.c (saved_function_list_end): Ifdef out unused variable
119 that may be used someday.
120 * f-valprint.c (f_val_print): Remove unused local "straddr".
121
122 Mon Jul 17 13:08:00 1995 Ian Lance Taylor <ian@cygnus.com>
123
124 * stabsread.h (struct stab_section_list): Define.
125 (coffstab_build_psymtabs): Remove staboff and stabsize parameters.
126 Add textaddr, textsize, and stabs parameters.
127 * gdb-stabs.h (struct dbx_symfile_info): Remove text_sect field.
128 Add text_addr and text_size fields.
129 (DBX_TEXT_SECT): Don't define.
130 (DBX_TEXT_ADDR, DBX_TEXT_SIZE): Define.
131 * coffread.c: Include <ctype.h>.
132 (struct coff_symfile_info): Remove stabsect and stabindexsect
133 fields. Add textaddr, textsize, and stabsects fields.
134 (coff_locate_sections): Record the address of the .text section,
135 and total the sizes of all sections with names beginning with
136 ".text". Don't bother to record a .stab.index section (COFF
137 doesn't use them). Make a linked list of all sections with names
138 beginning with ".stab".
139 (coff_symfile_read): Adjust call to coffstab_build_psymtabs for
140 new parameters.
141 * dbxread.c (dbx_symfile_read): Use DBX_TEXT_ADDR and
142 DBX_TEXT_SIZE, rather than getting both from DBX_TEXT_SECT.
143 (dbx_symfile_init): Set DBX_TEXT_ADDR and DBX_TEXT_SIZE, not
144 DBX_TEXT_SECT.
145 (elfstab_build_psymtabs): Likewise.
146 (stabsect_build_psymtabs): Likewise.
147 (symbuf_sections, symbuf_left, symbuf_read): New static variables.
148 (fill_symbuf): If symbuf_sections is not NULL, read symbols from
149 multiple sections.
150 (coffstab_build_psymtabs): Remove staboffset and stabsize
151 parameters. Add textaddr, textsize, and stabsects parameters.
152 Set DBX_TEXT_ADDR and DBX_TEXT_SIZE, not DBX_TEXT_SECT. Handle
153 multiple stabs sections.
154 * os9kread.c (os9k_symfile_read): Use DBX_TEXT_ADDR and
155 DBX_TEXT_SIZE, rather than getting both from DBX_TEXT_SECT.
156 (os9k_symfile_init): Set DBX_TEXT_ADDR and DBX_TEXT_SIZE, not
157 DBX_TEXT_SECT.
158
159 * remote-vx.c (vx_ops, vx_run_ops): Initialize new to_thread_alive
160 field.
161
162 Sat Jul 15 01:02:53 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
163
164 * config/alpha/alpha-osf3.mh, config/alpha/nm-osf3.h: New files
165 for OSF/1-3.x procfs support.
166 * configure.in (alpha-dec-osf): Use them when configuring
167 for OSF/1-3.x.
168 * configure: Updated.
169 * target.c: Include <string.h>.
170
171 Fri Jul 14 16:16:56 1995 J.T. Conklin <jtc@rtl.cygnus.com>
172
173 * Makefile.in, configure.in: Use one variable, frags, to hold
174 pathnames of makefile fragments.
175 * configure: regenerated.
176
177 Fri Jul 14 09:49:47 1995 Jeff Law (law@snake.cs.utah.edu)
178
179 * procfs.c (procfs_ops): Fix typo in last change.
180
181 Thu Jul 13 13:42:38 1995 Jeffrey A. Law <law@rtl.cygnus.com>
182
183 * inftarg.c (child_thread_alive): New function to see if a
184 particular thread is still running.
185 (child_ops): Add child_thread_alive entry.
186 * remote.c (remote_thread_alive): New function to see if a
187 particular thread is still alive.
188 (remote_ops): Add remote_thread_alive.
189 * target.c (dummy_target): Add dummy entry for thread_alive.
190 (cleanup_target): de_fault thread_alive too.
191 (update_current_target): INHERIT thread_alive too.
192 (debug_to_thread_alive): New function.
193 (setup_target_debug): Add debug_to_thread_alive.
194 * target.h (struct target_ops): Add to_thread_alive.
195 (target_thread_alive): Define.
196 * thread.c (info_threads_command): Don't call kill; use
197 target_thread_alive instead.
198 * config/nm-lynx.h (CHILD_THREAD_ALIVE): Define.
199 * gdbserver/low-lynx.c (mythread_alive): New function.
200 (mywait): Don't restart any threads after a new thread notification,
201 let the generic code handle it.
202 * gdbserver/low-sparc.c (mythread_alive): Dummy version.
203 * gdbserver/low-sun3.c (mythread_alive): Likewise.
204 * gdbserver/server.c (main): Handle thread_alive requests.
205 * gdbserver/server.h (mythread_alive): Declare.
206 * corelow.c (core_ops): Add dummy entry for thread_alive.
207 * exec.c (exec_ops): Likewise.
208 * m3-nat.c (m3_ops): Likewise.
209 * monitor.c (monitor_ops): Likewise.
210 * procfs.c (procfs_ops): Likewise.
211 * remote-arc.c (arc_ops): Likewise.
212 * remote-array.c (array_ops): Likewise.
213 * remote-e7000.c (e7000_ops): Likewise.
214 * remote-es.c (es1800_ops, es1800_child_ops): Likewise.
215 * remote-mips.c (mips_ops): Likewise.
216 * remote-pa.c (remote_hppro_ops): Likewise.
217 * remote-sim.c (gdbsim_ops): Likewise.
218 * sparcl-tdep.c (sparclite_ops): Likewise.
219
220 Tue Jul 11 11:15:55 1995 Kung Hsu <kung@rtl.cygnus.com>
221
222 * solib.c: Add _DYNAMIC__MGC base symbol for Mentor Graphics Inc.
223 * solib.c (match_main): New function for checking name of main.
224 * solib.c (solib_add): Not to add if solib match main.
225
226 Fri Jul 7 14:41:56 1995 Kung Hsu <kung@rtl.cygnus.com>
227
228 * elfread.c (elf_symtab_read): Fix a bug ignoring compiler
229 generated internal labels ($LM...).
230
231 Wed Jul 5 11:38:36 1995 Kung Hsu <kung@rtl.cygnus.com>
232
233 * defs.h: if __GO32__ or WIN32 the directory separating symbol should
234 be '\' not '/'.
235
236 * remote-nindy (nindy_wait): Use infinite timeout reading after
237 esacpe character.
238
239 Tue Jul 4 10:30:22 1995 Jeffrey A. Law <law@rtl.cygnus.com>
240
241 * infrun.c (wait_for_inferior): When switching from one thread to
242 another, save infrun's state for the old thread and load infrun's
243 previous state for the new thread.
244 * thread.c (struct thread_info): Add new fields for thread specific
245 state saved/restored in infrun.c.
246 (add_thread): Initialize new fields.
247 (load_infrun_state): New function.
248 (save_infrun_state): New function.
249 * thread.h (load_infrun_state): Provide external decl.
250 (save_infrun_state): Likewise.
251
252 * infrun.c (wait_for_inferior): When we hit a breakpoint for the
253 wrong thread, make sure to write the fixed PC value into the thread
254 that stopped. Restart all threads after single stepping over a
255 breakpoint for a different thread.
256 * breakpoint.c (set_momentary_breakpoint): Make momentary
257 breakpoints thread specific in a multi-threaded program.
258 * lynx-nat.c (child_resume): Add some comments. Correctly
259 choose between the single and multi-threaded step and continue
260 ptrace calls.
261
262 Fri Jun 30 16:15:36 1995 Stan Shebs <shebs@andros.cygnus.com>
263
264 * config/h8300/h8300.mt: Renamed from h8300hms.mt.
265 * config/h8500/h8500.mt: Renamed from h8500hms.mt.
266 * config/z8k/z8k.mt: Renamed from z8ksim.mt.
267 * configure, configure.in: Update to reflect renamings.
268
269 * remote-sim.c (sim): New command, passes commands to simulator.
270 (simulator_command): New function.
271 (gdbsim_ops): Clean up.
272 * remote-sim.h (sim_do_command): Declare.
273 * sh-tdep.c (memory_size): Remove command.
274
275 * Makefile.in (SIM, SIM_OBS): New variables.
276 (CLIBS, CDEPS): Add value of SIM.
277 (DEPFILES): Add value of SIM_OBS
278
279 * config/arm/arm.mt, config/h8300/h8300.mt, config/h8500/h8500.mt,
280 config/sh/sh.mt, config/sparc/sp64sim.mt, config/w65/w65.mt,
281 config/z8k/z8k.mt: Remove simulator files from TDEPFILES,
282 define in SIM_OBS and SIM.
283 config/sparc/sp64sim.mt (SIMFILES): Remove.
284
285 * remote-z8k.c: Remove, was superseded by remote-sim.c
286 * Makefile.in, mpw-make.in: Remove references to remote-z8k.c.
287
288 Sun Jun 25 15:30:43 1995 Stan Shebs <shebs@cygnus.com>
289
290 * remote.c (remote_read_bytes, remote_write_bytes): Second arg
291 should be char *, not unsigned char *.
292 * dcache.h (memxferfunc): Ditto.
293 * monitor.c (monitor_write_memory, monitor_read_memory_single):
294 Ditto.
295 (monitor_make_srec): Let compiler figure size of hextab.
296
297 Sat Jun 24 19:27:37 1995 Jeffrey A. Law <law@rtl.cygnus.com>
298
299 * lynx-nat.c (child_wait): Don't restart new threads and loop
300 to the top of child_wait; let the machine independent code in
301 wait_for_inferior deal with new thread notifications.
302
303 Fri Jun 23 11:51:58 1995 Kung Hsu <kung@mexican.cygnus.com>
304
305 * remote-nindy (nindy_load): Put in target specific load, it's
306 20 times faster.
307
308 Thu Jun 22 20:21:59 1995 Stan Shebs <shebs@andros.cygnus.com>
309
310 * utils.c (error): Move local `args' outside conditional,
311 move local `string1' inside, declare function as void if
312 non-ANSI compiler, dereference error_hook when calling.
313
314 * mac-xdep.c (stdarg.h): Don't include.
315
316 Thu Jun 22 13:12:33 1995 Kung Hsu <kung@mexican.cygnus.com>
317
318 * remote-nindy.c (nindy_wait): Change timeout in SERIAL_READCHAR.
319
320 Wed Jun 21 13:24:41 1995 Jeff Law (law@snake.cs.utah.edu)
321
322 * hppam3-nat.c: Change HP800_THREAD_STATE to TRACE_FLAVOR and
323 HP800_THREAD_STATE_COUNT to TRACE_FLAVOR_SIZE.
324
325 Wed Jun 21 05:57:56 1995 Steve Chamberlain <sac@slash.cygnus.com>
326
327 * monitor.c: Turn on caching.
328 (monitor_printf): If a ^C was sent, don't expect to see its
329 echo.
330 (monitor_open): Enable caching.
331 (monitor_resume, monitor_load): Flush cache.
332 (monitor_xfer_memory): Call cache routine.
333 (monitor_dump_regs): New.
334 (monitor_fetch_registers): If monitor_dump_regs available
335 then use it.
336 (monitor_load): Don't ref exec_bfd if it's NULL.
337 (monitor_load_srec): Use new monitor_make_srec calling convention.
338 (monitor_make_srec): Rewrite to cope with two, three and four byte
339 addresses.
340 * remote-hms.c (hms_cmds): Initialze end-of-command delim.
341 * dcache.h, dcache.h: Rewritten.
342 * remote.c: Reenable caching.
343 (getpkt): Reduce MAX_TRIES to 3.
344 (remote_xfer_memory): Use dcache_xfer_memory.
345 * defs.h (error_hook): New.
346 * top.c (error_hook): New definition.
347 * utils.c (error): Use error_hook if initialized.
348 * sparcl-tdep.c (HAVE_SOCKETS): Don't define if GO32 or WIN32. Use
349 HAVE_SOCKETS in place of #ifndef GO32.
350
351 Tue Jun 20 22:17:44 1995 Jeff Law (law@snake.cs.utah.edu)
352
353 * config/pa/tm-hppa.h (PSW_*): Define processor status word masks.
354 (INSTRUCTION_NULLIFIED): Allow specific targets to override.
355 * config/pa/tm-hppao.h (INSTRUCTION_NULLIFIED): Define to work
356 around losing mach kernel behavior.
357
358 Tue Jun 20 12:03:36 1995 Stan Shebs <shebs@andros.cygnus.com>
359
360 * monitor.c (monitor_wait): Don't use the watchdog timeout
361 if its value is 0.
362 * w89k-rom.c (w89k_open): Define to be static.
363
364 start-sanitize-gdbtk
365 Tue Jun 20 10:19:40 1995 Stu Grossman (grossman@cygnus.com)
366
367 * gdbtk.c: Add functions Tcl_Malloc, Tcl_Realloc, and Tcl_Free.
368
369 * gdbtk.tcl (add_breakpoint_frame): Add more fields.
370 * (create_file_win create_asm_win build_framework): Create null
371 bindings for meta keys to keep window from dropping down to
372 insertion point when meta is pressed by itself. New bindings:
373 Up/Down - Scroll up/down one line at a time
374 Next/Prior - Scroll up/down one page at a time
375 Home/End - Warp to current pc/end of file
376 * (build_framework): Turn on breakpoint menu.
377 * (create_command_window): Implement tab completion. Add binding
378 for ^C to stop target.
379 end-sanitize-gdbtk
380
381 Sat Jun 17 10:17:16 1995 Jeff Law (law@snake.cs.utah.edu)
382
383 * somsolib.c (som_solib_add): Validate regexp argument.
384 Don't assume the first entry on dld's library list is the main
385 program. Don't load the same library more than once and don't
386 consider the main program a shared library.
387 (som_solib_sharedlibrary_command): New function
388 (_initialize_som_solib): Add "sharedlibrary" command.
389
390 Thu Jun 15 14:54:58 1995 Stan Shebs <shebs@andros.cygnus.com>
391
392 * array-rom.c: Remove, no longer used.
393
394 * remote-hms.c (hms_open): Make static.
395
396 * mpw-config.in (MacSerial.h): Copy from version in {CIncludes},
397 not {MPW}Interfaces:CIncludes.
398 * ser-mac.c (mac_baud_rate_table): Fix value for 38400 baud.
399
400 Wed Jun 14 14:27:07 1995 Per Bothner <bothner@kalessin.cygnus.com>
401
402 * ch-exp.y: Remove lots of unsupported productions and names.
403 Add support for IF-expressions, ORIF, ANDIF, NUM, and ADDR.
404
405 Tue Jun 13 21:40:11 1995 Per Bothner <bothner@kalessin.cygnus.com>
406
407 * parser-defs.h (enum precedence): Added PREC_BUILTIN_FUNCTION.
408 * expression.h (enum exp_opcode): Added UNOP_LOWER, UNOP_UPPER,
409 UNUP_LENGTH.
410 * expprint.c (dump_expression): Handle the new exp_opcodes.
411 (print_subexp): Handle PREC_BUILTIN_FUNCTION.
412 (print_simple_m2_func): Removed.
413 (print_subexp): Remove support for Modula2 builtin functions.
414 * m2-lang.c (m2_op_print_tab): Add support for builtin functions.
415 * ch-exp.y: Parse LOWER, UPPER, and LENGTH builtins.
416 (write_lower_upper_value): Convenience function for LOWER and UPPER.
417 (upper_lower_argument, length_argument): Removed non-terminals.
418 * ch-lang.c (chill_op_print_tab): Entries for UPPER, LOWER, LENGTH.
419 (type_lower_upper): New function. Calculate LOWER/UPPER of type.
420 (value_chill_length): New function. Calcalate LENGTH of ARRAY/STRING.
421 (evaluate_subexp_chill): Handle UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
422
423 Mon Jun 12 12:48:13 1995 Stan Shebs <shebs@andros.cygnus.com>
424
425 Windows support bits from Steve Chamberlain <sac@slash.cygnus.com>.
426 * defs.h: Don't declare strchr and friends if WIN32.
427 (DIRNAME_SEPARATOR): Move here from source.c.
428 (SLASH_P, SLASH_CHAR, SLASH_STRING, ROOTED_P): New macros,
429 symbolic definitions for filename bits.
430 * top.c (cd_command): Use these.
431 * source.c (mod_path, openp): Ditto.
432 * terminal.h: Disable termio/sgtty definitions if WIN32.
433 * findvar.c (registers_changed): Call registers_changed_hook
434 if it is defined.
435
436 Mon Jun 12 12:22:05 1995 J.T. Conklin <jtc@rtl.cygnus.com>
437
438 * Makefile.in (distclean, realclean): Remove config.cache and
439 config.log.
440
441 Mon Jun 12 00:21:59 1995 Jeff Law (law@snake.cs.utah.edu)
442
443 * somsolib.c: Include gdb-stabs.h.
444 (som_solib_section_offsets): Use SECT_OFF_XXX rather than 0, 1,
445 etc. Initialize offsets for RODATA & BSS too.
446
447 Sat Jun 10 17:59:11 1995 Jeff Law (law@snake.cs.utah.edu)
448
449 * hppa-tdep.c (frame_chain): Try to compensate for incomplete
450 register information in core files when backtracing.
451
452 Fri Jun 9 14:51:38 1995 Stu Grossman (grossman@cygnus.com)
453
454 * remote-nrom.c: Remove everything but download code. More
455 cleanups.
456
457 Thu Jun 8 15:06:00 1995 Stu Grossman (grossman@cygnus.com)
458
459 * defs.h maint.c monitor.c remote-mips.c remote.c: Add support
460 for `watchdog' variable. This allows the user to put an upper
461 limit on the amount of time that GDB will wait for the target to
462 return from a step or continue operation. This will primarily be
463 used for the testsuite, where it is difficult to come up with a
464 reasonable timeout for things like function calls, which can take
465 as long as three minutes under some circumstances. If the
466 watchdog timer expires, GDB will generate an error that looks like
467 `Watchdog has expired.', and will detach from the target.
468
469 * remote-mips.c (mips_open): Setup initial frame from target.
470 Print it out so that user is told where the program is stopped
471 when they attach.
472
473 * remote-nrom.c: Loads of cleanups. Use serial code to open
474 network connections. Use expect() to wait for response to
475 download command.
476
477 * ser-tcp.c (tcp_open): Retry connection if we get ECONNREFUSED.
478
479 * serial.c serial.h (serial_open serial_fdopen serial_close):
480 Allow users to open the same device multiple times. They all get
481 to share the same serial_t. This is about the only way to have
482 multiple active targets use the same device (for download and
483 debug).
484
485 * sparcl-tdep.c: Keep #include <unistd.h> away from GO32.
486
487 * target.c: Add `targetdebug' variable. If this is non-zero,
488 then a special target is put at the top of the target stack which
489 will cause all calls through the target vector to have their args
490 and results printed out.
491
492 Wed Jun 7 17:40:37 1995 Per Bothner <bothner@kalessin.cygnus.com>
493
494 * ch-exp.y: Handle <primitive_value> "->" <modename>.
495
496 Wed Jun 7 17:46:33 1995 Michael Meissner <meissner@tiktok.cygnus.com>
497
498 * mem-break.c (LITTLE_BREAKPOINT): If BREAKPOINT and
499 {LITTLE,BIG}_BREAKPOINT are all defined, don't redefine.
500 (BIG_BREAKPOINT): Ditto.
501
502 * config/rs6000/tm-rs6000.h (BREAKPOINT): Define as either
503 BIG_BREAKPOINT or LITTLE_BREAKPOINT depending on the target byte
504 order.
505
506 Wed Jun 7 12:41:42 1995 Jeff Law (law@snake.cs.utah.edu)
507
508 * somsolib.c (som_solib_section_offsets): Handle relative pathnames.
509
510 * hppa-tdep.c (frame_saved_pc): Handle backtracing through signal
511 handler in dynamically linked executables.
512
513 Tue Jun 6 10:44:25 1995 Michael Meissner <meissner@tiktok.cygnus.com>
514
515 From Andrew Cagney <cagney@highland.com.au>
516 * rs6000-tdep.c (single_step): Handle both little and big endian
517 breakpoints.
518 (gdb_print_insn_powerpc): Deal with disassembling both little and
519 big endian PowerPC systems.
520 (_initialize_rs6000_tdep): Use gdb_print_insn_powerpc to handle
521 disassembly, rather that assuming big endian order.
522
523 * config/rs6000/tm-rs6000.h (BREAKPOINT): Delete.
524 (BIG_BREAKPOINT): Define, big endian breakpoint instruction.
525 (LITTLE_BREAKPOINT): Define, little endian breakpoint instruction.
526
527 Sat Jun 3 01:54:56 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
528
529 * README: Add note about Unixware 2.x.
530
531 * dbxread.c (process_one_symbol): Check for exact symbol name
532 match when fixing up N_GSYM and N_STSYM symbols from Sun acc.
533
534 * valprint.c (value_print_array_elements): Use
535 fprintf_filtered to put out `<repeats %u times>',
536 from schwab@issan.informatik.uni-dortmund.de (Andreas Schwab).
537
538 * value.h (struct value): Change `repetitions' field from
539 `short' to `int' type.
540
541 start-sanitize-arc
542 Fri Jun 2 11:17:23 1995 Doug Evans <dje@canuck.cygnus.com>
543
544 * arc-tdep.c (arc_bfd_mach_type): New static global.
545 (codestream_fill): Handle byte order differences.
546 (setup_prologue_scan): Don't read stdarg function's "sub sp,sp,N".
547 (arc_get_frame_setup): Read it here.
548 (arc_frame_saved_pc): And here.
549 (arc_print_insn): New function.
550 (arc_set_cpu_type): Set arc_bfd_mach_type. Don't set tm_print_insn.
551 (_initialize_arc_tdep): Set tm_print_insn to arc_print_insn.
552 end-sanitize-arc
553
554 Wed May 31 12:04:01 1995 J.T. Conklin <jtc@rtl.cygnus.com>
555
556 * nlm/{configure.in, Makefile.in}: Converted to use autoconf.
557 * nlm/configure: New file, generated with autoconf 2.3.
558
559 * nlm/configure.in: Use sed instead of awk to get the value of
560 cpufile. Awk is not a utility required by the GNU coding
561 standards. This change also fixes the rigid whitespace
562 requirements that were required for awk.
563
564 * sparclite/aload.c: Use a file descriptor instead of a stdio
565 stream for i/o with target board.
566 Use #error if HAVE_TERMIOS is not defined.
567
568 * sparclite/{Makefile.in, configure.in}: Converted to use
569 autoconf.
570 * sparclite/configure: New file, generated with autoconf 2.3.
571
572 Sun May 28 23:10:07 1995 Jeff Law (law@snake.cs.utah.edu)
573
574 * defs.h: Include either varargs.h or stdarg.h (for va_list).
575 Fix stupid thinko in last change ("..." -> "va_list").
576
577 * defs.h (vprintf_filtered declaration): Add PARAMS prototype;
578 gcc-2.5 chokes on format attributes for unprototyped functions.
579 (vfprintf_filtered declaration): Likewise.
580 (vprintf_unfiltered declaration): Likewise.
581 (vfprintf_unfiltered). Likewise.
582
583 Sat May 27 23:54:17 1995 J.T. Conklin <jtc@rtl.cygnus.com>
584
585 * configure.in: Use sed instead of awk to get the values of
586 hostfile, targetfile and nativefile. Awk is not a utility
587 required by the GNU coding standards. This change also
588 fixes the rigid whitespace requirements that were required
589 for awk.
590 * configure: regenerated.
591
592 Sat May 27 16:24:04 1995 Angela Marie Thomas <angela@cirdan.cygnus.com>
593
594 * sparclite/{Makefile,configure}.in: Add hooks for building with
595 -lsocket & -lnsl for solaris2. Don't build aload/eload for DOS.
596
597 Thu May 25 12:46:37 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
598
599 * gdbserver/remote-utils.c (prepare_resume_reply): Add FIXME
600 comment regarding signal numbering.
601
602 Wed May 24 15:49:47 1995 Steve Chamberlain <sac@slash.cygnus.com>
603
604 * arm-tdep.c (_initialize_arm_tdep): Use print_insn_little_arm
605 now.
606
607 * arm-tdep.c (convert_from_extended, convert_to_extended):
608 New.
609 * coffread.c (enter_linenos): Return if linetab 0.
610 * config/arm/arm.mt (TDEPFILES): Add simulator support.
611 * config/arm/tm-arm.h (FRAME_FIND_SAVED_REGS): Fix prototypes.
612
613 Mon May 22 19:37:21 1995 Rob Savoye <rob@darkstar.cygnus.com>
614
615 * config/idt.mt: replace monitor and array-rom with the new
616 remote-array.
617
618 Mon May 22 15:38:25 1995 Stu Grossman (grossman@cygnus.com)
619
620 * remote-nindy.c: Install Kung patch for PR 6820. I have no idea
621 what this does...
622
623 * breakpoint.c: Move defaults of watchpoint related macros into
624 target.h.
625 * target.h: Macros from breakpoint.c. Conditionalize based on
626 TARGET_HAS_HARDWARE_WATCHPOINTS.
627 * i386v-nat.c procfs.c: Use TARGET_HAS_HARDWARE_WATCHPOINTS
628 instead of TARGET_CAN_USE_HARDWARE_WATCHPOINT to enable watchpoint
629 code.
630 * config/i386/nm-linux.h, config/mips/nm-irix4.h,
631 config/pa/nm-hppab.h, config/sparc/tm-sparclite.h: #define
632 TARGET_HAS_HARDWARE_WATCHPOINTS to enable watchpoint code.
633
634 Mon May 22 06:47:30 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
635
636 * breakpoint.c, target.h: Move defaults of watchpoint related
637 macros back to breakpoint.c. Required to get GDB compiling
638 on Solaris again.
639
640 Fri May 19 14:49:37 1995 J.T. Conklin <jtc@rtl.cygnus.com>
641
642 * defs.h (ATTR_FORMAT): New macro, expands to gcc's format
643 attribute when compiled by gcc.
644 * defs.h, language.h, monitor.h: Changed many function
645 declarations to use ATTR_FORMAT.
646
647 * breakpoint.c (delete_command); source.c (directory_command);
648 top.c (define_command): Changed call to query() that had too
649 many arguments.
650 * printcmd.c (address_info): Changed call to printf_filtered()
651 that had too many arguments.
652
653 Fri May 19 09:52:07 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
654
655 * infrun.c (wait_for_inferior): Move assignments to stop_signal
656 and stop_pc, and STOPPED_BY_WATCHPOINT code, back where they
657 were--after the switch statement on w.kind. You can't read the
658 registers of an inferior which has exited. Use a goto in the
659 STOPPED_BY_WATCHPOINT code.
660 * infrun.c (wait_for_inferior): Reinstate
661 HAVE_STEPPABLE_WATCHPOINT and HAVE_CONTINUABLE_WATCHPOINT code.
662
663 Fri May 19 06:15:40 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
664
665 * utils.c, complaints.c, language.c, monitor.c, remote-array.c,
666 remote-mips.c, remote-os9k.c, remote-st.c: Conditionalize use of
667 stdarg rather than varargs on ANSI_PROTOTYPES not __STDC__; it
668 must match the definition of PARAMS.
669 start-sanitize-gdbtk
670 * gdbtk.c: Likewise.
671 end-sanitize-gdbtk
672
673 Thu May 18 15:58:46 1995 J.T. Conklin <jtc@rtl.cygnus.com>
674
675 * utils.c (fprintf_filtered, fprintf_unfiltered, fprintfi_filtered,
676 printf_filtered, printf_unfiltered, printfi_filtered, query, warning,
677 error, fatal, fatal_dump_core): Use stdarg.h macros when compiling
678 with an ANSI compiler.
679 * complaints.c (complain): Likewise.
680 * language.c (type_error, range_error): Likewise.
681 * monitor.c (monitor_printf, monitor_printf_noecho): Likewise.
682 * remote-array.c (printf_monitor, debuglogs): Likewise.
683 * remote-mips.c (mips_error): Likewise.
684 * remote-os9k.c (printf_monitor): Likewise.
685 * remote-st.c (printf_stdebug): Likewise.
686 start-sanitize-gdbtk
687 * gdbtk.c (gdbtk_query): Likewise.
688 end-sanitize-gdbtk
689
690 * defs.h, complaints.h, language.h, monitor.h: Add prototypes to
691 match above changes.
692
693 * printcmd.c: Remove uneeded #include <varargs.h>.
694 * remote-e7000.c: Likewise.
695
696 * f-typeprint.c (f_type_print_base): Fix typo found by above
697 changes.
698
699 Wed May 17 11:21:32 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
700
701 * Makefile.in (xcoffread.o): Depend on partial-stab.h.
702
703 * xcoffsolib.c (sharedlibrary_command): New command.
704 * xcoffsolib.c (solib_info): Call xcoff_relocate_symtab.
705 * xcoffsolib.c: Miscellaneous cleanups.
706
707 * partial-stab.h: Ignore symbol descriptor '-' (for local
708 variables with negative type numbers) without complaint.
709
710 * rs6000-nat.c (vmap_ldinfo): Use bfd_stat rather than our own
711 local emulation thereof. Remove unused variable ostart.
712
713 Wed May 17 15:55:53 1995 J.T. Conklin <jtc@rtl.cygnus.com>
714
715 * Makefile.in (config.status): changed target so that
716 config.status --recheck is executed if configure script changes.
717
718 * monitor.c (monitor_printf): Changed format specification in
719 error message to work with pre-ansi compilers.
720 (monitor_load_srec): reduced length of s-records from 128 to 32
721 bytes so download is more reliable with the rom68k monitor.
722
723 * rom68k-rom.c: Added trailing space to prompt string.
724
725 * config/i386/xm-i386sco.h (HAVE_STRSTR): Removed.
726 * config/i386/xm-go32.h, mswin/xm.h (SYS_SIGLIST_MISSING):
727 Removed.
728 * defs.h, config/{xm-lynx.h, xm-nbsd.h},
729 config/i386/{xm-i386bsd.h, xm-linux.h},
730 config/m68k/xm-hp300bsd.h, config/mips/xm-irix4.h,
731 config/ns32k/xm-ns32km3.h, doc/gdbint.texinfo
732 (PSIGNAL_IN_SIGNAL_H): Removed.
733
734 Tue May 16 13:16:06 1995 J.T. Conklin <jtc@rtl.cygnus.com>
735
736 * Makefile.in (Makefile): Added config.status to dependency list.
737
738 * configure.in: Added INIT-CMDS argument to AC_OUTPUT which sets
739 gdb_host_cpu, gdb_target_cpu and nativefile.
740 * configure: regenerated.
741
742 Mon May 15 23:50:51 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
743
744 * mdebugread.c (parse_symbol): Do not relocate stBlock/scText
745 symbols, their value is the displacement from the procedure address.
746 * top.c (init_main): Add missing newlines to help strings for
747 `if' and `while' commands, fix help string for `show commands'.
748
749 Mon May 15 18:37:56 1995 Stu Grossman (grossman@cygnus.com)
750
751 * breakpoint.c: Move defaults of watchpoint related macros into
752 target.h. Use BP_TEMPFLAG and BP_HARDWAREFLAG instead of
753 constants.
754 * infrun.c (wait_for_inferior): Enhance comment near
755 STOPPED_BY_WATCHPOINT.
756 * target.h: Macros from breakpoint.c.
757
758 Mon May 15 17:11:38 1995 J.T. Conklin <jtc@rtl.cygnus.com>
759
760 * config/i386/{i386sol2.mh, i386v4.mh, ncr3000.mh},
761 config/m68k/m68kv4.mh, config/mips/{irix4.mh, irix5.mh,
762 mipsv4.mh}, config/sparc/sun4so2.mh (INSTALL): Removed, figured
763 out by autoconf.
764 * config/apollo68v.mh (RANLIB): Removed, figured out by autoconf.
765
766 * Makefile.in, configure.in: Converted to use autoconf
767 * aclocal.m4: New file, local autoconf macro definitions.
768 * configure: New file, generated with autoconf 2.3.
769
770 Mon May 15 14:46:41 1995 Stan Shebs <shebs@andros.cygnus.com>
771
772 * remote.c (remote_kill): Add prototype.
773 * cpu32bug-rom.c (cpu32bug_open): Properly define as static.
774 * config/h8300/h8300hms.mt (TDEPFILES): Add monitor.o.
775
776 Mon May 15 12:12:34 1995 Stu Grossman (grossman@cygnus.com)
777
778 * sparclite/salib.c (win_ovf win_unf): Make window size constant
779 into a variable (__WINSIZE) so that it can be controlled via the
780 .h file.
781 * sparclite/sparclite.h: Add SL933 #ifdef to set __WINSIZE to 6
782 for the 933 board.
783
784 * infrun.c: Add #ifdef HP_OS_BUG to all references to
785 trap_expected_after_continue.
786 * (wait_for_inferior): Fix for remote watchpoints. Don't try to
787 insert breakpoints while target is running (this only works on
788 *some* native targets). This may also speed up native watchpoints
789 considerably.
790
791 Sat May 13 13:55:04 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
792
793 * dwarfread.c (struct dwfinfo), dbxread.c (struct symloc),
794 mdebugread.c (struct symloc), hpread.c (struct symloc),
795 xcoffread.c (struct symloc): Fix inaccurate comment introduced
796 20 Apr 1995.
797
798 Sat May 13 13:34:18 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
799
800 * rs6000-tdep.c (find_toc_address): Revise comment.
801 * symfile.c, symfile.h (init_psymbol_list): New function;
802 consolidate duplicated copies from os9kread.c, dbxread.c
803 and dwarfread.c.
804 * defs.h: Declare info_verbose.
805 * xcoffread.c: Extensive changes to support psymtabs.
806
807 Fri May 12 13:48:41 1995 Stu Grossman (grossman@andros.cygnus.com)
808
809 * cpu32bug-rom.c remote-est.c rom68k-rom.c: Update line_term element.
810
811 Fri May 12 06:39:30 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
812
813 * partial-stab.h: Expand comments.
814
815 Thu May 11 19:01:37 1995 Jeff Law (law@snake.cs.utah.edu)
816
817 * Support debugging using native MACH primitives on hppa*-*-osf*.
818 * configure.in: hppa*-*-osf* != hppa*-*-bsd* anymore.
819 * config/pa/hppaosf.mh: New file.
820 * config/pa/nm-hppao.h: Likewise.
821 * hppam3-nat.c: Likewise.
822 * config/pa/tm-hppao.h (PSW_SS): Define for single-stepping.
823 (MACHINE_CPROC_*_OFFSET): Define.
824 (TRACE_*): Define.
825 (START_INFERIOR_TRAPS_EXPECTED): Delete definition.
826
827 Wed May 10 18:59:26 1995 Stu Grossman (grossman@andros.cygnus.com)
828
829 * hppa-tdep.c (read_unwind_info): Cosmetic cleanup.
830 * (unwind_command): Clean it up and make it print things out
831 nicer.
832 * monitor.c: Add ^C handling capability (mostly ripped off from
833 remote.c).
834 * (monitor_printf): Make it check the command echo.
835 * (monitor_printf_noecho): Similar to above, but doesn't check
836 for echo.
837 * (monitor_stop): No longer waits for prompt. That is the job of
838 the caller. This makes things work much better for monitor_wait,
839 which waits for the prompt itself.
840 * (monitor_open): Deal with new monitor_stop semantics. Also,
841 flush input after sending init strings to get rid of junk that may
842 be output. Also, don't always send \r to remote. Use
843 monitor_ops->line_term cuz proper character isn't always \r.
844 * (monitor_fetch_register): Switch to completely different
845 algorithm to deal with lame-ass monitors which put spaces in the
846 middle of numbers, and prompt with a space!!!!!
847 * (monitor_read_memory_single): New routine to be used with
848 monitors that can only return one byte/short/long at a time. This
849 is selected via MO_GETMEM_READ_SINGLE.
850 * (monitor_load_srec): Use monitor_printf_noecho for sending S
851 records. Most targets don't echo them.
852 * (monitor.h): Get rid of cmd_delim. Add line_delim.
853 * op50n-rom.c (op50n_cmds): Fill it up. Make it work.
854 * w89k-rom.c: Change all eols from \r to \n. Change load_resp to
855 ^Q to prevent error message.
856 * config/pa/tm-hppa.h (CALL_DUMMY (for hppro)): Add special
857 instruction sequence at end to make restore_pc_queue happy.
858
859 Wed May 10 15:59:00 1995 Torbjorn Granlund <tege@adder.cygnus.com>
860
861 * remote-est.c (est_open): Make static to match prototype.
862
863 Tue May 9 16:58:50 1995 Michael Meissner <meissner@tiktok.cygnus.com>
864
865 * configure.in: Add little endian PowerPC support.
866 * config/powerpc/ppcle-eabi.mt: New file for little endian PowerPC
867 support.
868 * config/powerpc/tm-ppcle-eabi.h: ditto.
869
870 Mon May 8 12:11:38 1995 J.T. Conklin <jtc@rtl.cygnus.com>
871
872 * nlm/configure.in (gdb_host, gdb_host_cpu, gdb_target): Removed.
873 These variables not used.
874
875 * config/m68k/monitor.mt (TDEPFILES): Added cpu32bug-rom.o.
876
877 Wed May 3 17:54:47 1995 Stan Shebs <shebs@andros.cygnus.com>
878
879 * monitor.c (monitor_command): Don't use PROMPT until monitor
880 target is known to be open.
881 (monitor_make_srec): Don't define size of hextab.
882
883 Tue May 2 18:32:24 1995 Stan Shebs <shebs@andros.cygnus.com>
884
885 * configure.in (--enable-netrom): New configuration option.
886 * Makefile.in (REMOTE_OBS): Rename from REMOTE_O, append
887 value of NETROM_OBS.
888 (NETROM_OBS): New variable.
889 * remote-nrom.c: New file, NetROM target support.
890 * config/a29k/a29k-udi.mt, config/i960/vxworks960.mt: Use
891 REMOTE_OBS instead of REMOTE_O.
892 start-sanitize-arc
893 * config/arc/arc.mt: Ditto.
894 end-sanitize-arc
895
896 Fri Apr 28 23:30:00 1995 Stu Grossman (grossman@cygnus.com)
897
898 * array-rom.c (_initialize_array array_open): Move baud_rate
899 initialization from _initxxx to array_open to fix bug with
900 overriding -b command line option.
901
902 Thu Apr 27 20:29:34 1995 Doug Evans <dje@canuck.cygnus.com>
903
904 * Makefile.in (RUNTEST): Fix reference of `srcdir'.
905
906 Wed Apr 26 19:01:08 1995 Steve Chamberlain <sac@slash.cygnus.com>
907
908 * remote-hms.c: Rewrite to use new monitor conventions.
909
910 Tue Apr 25 11:27:14 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
911
912 * dbxread.c: Add comment explaining lowest_text_address.
913 Add comment regarding stringtab_global and psymtabs.
914
915 Sat Apr 22 01:26:29 1995 Jeff Law (law@snake.cs.utah.edu)
916
917 * config/pa/tm-hppa.h (EXTRACT_STRUCT_VALUE_ADDRESS): Fix.
918
919 * config/pa/tm-hppa.h (EXTRACT_RETURN_VALUE): Rewrite to correctly
920 handle "short", "int" and small structures returned in registers.
921
922 Fri Apr 21 12:57:53 1995 Kung Hsu <kung@mexican.cygnus.com>
923
924 * minsyms.c: add new function lookup_minimal_symbol_text, to look
925 for text symbol only.
926 * breakpoint.c (create_longjmp_breakpoint): call
927 lookup_minimal_symbol_text instead of lookup_minimal_symbol.
928 * symtab.h: add lookup_minimal_symbol_text prototype.
929
930 Fri Apr 21 12:03:44 1995 Stan Shebs <shebs@andros.cygnus.com>
931
932 * sh-tdep.c (sh-opc.h): Don't include.
933 (gdbcore.h): Include.
934 (frame_find_saved_regs): Remove unused local.
935
936 Thu Apr 20 10:12:21 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
937
938 * dwarfread.c (struct dwfinfo), dbxread.c (struct symloc),
939 mdebugread.c (struct symloc), hpread.c (struct symloc): Clean
940 up comments.
941
942 Wed Apr 19 16:58:11 1995 Stu Grossman (grossman@andros.cygnus.com)
943
944 * hppa-tdep.c (deposit_17): New routine to deposit 17 bit
945 constants into PA instructions.
946 * Put #ifdefs around all signal handling code. Not generally
947 needed for embedded boards.
948 * (hppa_fix_call_dummy): Parameterize offsets into call dummy to
949 allow different dummys to be used by this code. Use
950 INSTRUCTION_SIZE instead of REGISTER_SIZE for things.
951 Conditionalize setup of _sr4export fixup. Improve comments.
952 * config/pa/tm-hppa.h: Define INSTRUCTION_SIZE. Use a different
953 call dummy if PA_LEVEL_0 is defined. Better comments for call
954 dummys. Define offsets for LDIL/LDO instructions which load
955 function addresses.
956 * config/pa/tm-pro.h: Get rid of signal handling stuff. Define
957 PA_LEVEL_0 to disable mucking with space regs and such.
958
959 Mon Apr 17 15:37:08 1995 Stu Grossman (grossman@andros.cygnus.com)
960
961 * cpu32bug-rom.c monitor.h op50-rom.c remote-est.c rom68k-rom.c
962 w89k-rom.c: Remove loadtypes, loadprotos and baudrates.
963 * op50-rom.c: Fix copyrights and add load routine to op50n_cmds.
964 * rom68k-rom.c (_initialize_rom68k): Don't set baud rate.
965 * w89k-rom.c: Fix copyrights.
966
967 Sun Apr 16 14:00:55 1995 Stu Grossman (grossman@andros.cygnus.com)
968
969 * monitor.c: Move all xmodem stuff into xmodem.[ch]. Remove
970 unnecessary remoteloadprotocol and remoteloadtype support.
971 * (expect expect_prompt): Change names to monitor_expect and
972 monitor_expect_prompt. Make them global.
973 * (printf_monitor): Change name to monitor_printf. Make global.
974 * (monitor_read_memory): Flush command echo to avoid parsing
975 ambiguity with CPU32Bug monitor.
976 * (monitor_load): Remove remoteloadprotocol and remoteloadtype
977 support. Call target_ops->load_routine, default to
978 monitor_load_srec.
979 * (monitor_load_srec): Remove everything but S-record support.
980 * monitor.h (monitor_ops): Add load_routine to provide monitor
981 specific download capability.
982 * remote-est.c: Clean up copyrights and comments.
983 * w89k-rom.c: Use new xmodem support.
984 * xmodem.c xmodem.h: New files to support xmodem downloads.
985 * rom68k-rom.c remote-est.c: Fix copyrights, add load_routine
986 entry to monitor_ops.
987 * cpu32bug-rom.c: New file to support Moto BCC debuggers.
988 * config/m68k/est.mt (TDEPFILES): Add cpu32bug.o.
989 * config/pa/hppapro.mt (TDEPFILES): Add xmodem.o.
990
991 Sat Apr 15 18:00:15 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
992
993 * rem-multi.shar: Removed; superceded by gdbserver.
994
995 Fri Apr 14 12:10:24 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
996
997 * xcoffread.c (xcoff_sym_fns): Revise comment about merging this
998 with coffread.c.
999
1000 * breakpoint.c (fixup_breakpoints): Removed.
1001 * rs6000-nat.c (vmap_symtab): Don't call fixup_breakpoints.
1002 (vmap_ldinfo, xcoff_relocate_core): Call breakpoint_re_set.
1003
1004 * coffread.c (coff_symfile_offsets): Allocate SECT_OFF_MAX
1005 sections, not just SECT_OFF_MAX-1.
1006
1007 * rs6000-nat.c (vmap_symtab), xcoffread.c: Re-do section offsets
1008 to be indexed by SECT_OFF_* instead of xcoff section numbers.
1009 * objfiles.c, remote.c: Remove comments regarding SECT_OFF_*.
1010 * symtab.h: Revise comment about block_line_section.
1011 * rs6000-nat.c (vmap_symtab): Don't relocate objfile->sections.
1012
1013 Sat Apr 15 14:15:14 1995 Stan Shebs <shebs@andros.cygnus.com>
1014
1015 * mpw-make.in (init.c): Don't try to do symbolic {o} in sed
1016 command, not allowed by some version of MPW Make.
1017 * ser-mac.c (mac-setbaudrate): Make it actually set baud rates.
1018
1019 Sat Apr 15 14:05:09 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1020
1021 * alpha-tdep.c (alpha_push_arguments): Fix typo (TYPE_VALUE ->
1022 VALUE_TYPE). Do the cast for TYPE_CODE_BOOL, TYPE_CODE_CHAR,
1023 TYPE_CODE_ENUM, and TYPE_CODE_RANGE as well as TYPE_CODE_INT.
1024
1025 Sat Apr 15 14:04:32 1995 Per Bothner <bothner@cygnus.com>
1026
1027 * alpha-tdep.c (alpha_push_arguments): Only cast to long for
1028 TYPE_CODE_INT.
1029
1030 start-sanitize-gdbtk
1031 Sat Apr 15 13:52:24 1995 Stan Shebs <shebs@andros.cygnus.com>
1032
1033 * gdbtk.c (gdb_disassemble): Read from inferior if connected
1034 to a VxWorks target.
1035
1036 Fri Apr 14 10:18:20 1995 Stu Grossman (grossman@cygnus.com)
1037
1038 * README.GDBTK: New file. Contains the obvious.
1039 end-sanitize-gdbtk
1040
1041 Thu Apr 13 16:17:04 1995 Rob Savoye <rob@darkstar.cygnus.com>
1042
1043 * remote-array.c: New file for Array Tech LSI33k based controller
1044 board.
1045
1046 Thu Apr 13 12:23:31 1995 Kung Hsu <kung@rtl.cygnus.com>
1047
1048 * a29k-tdep.c (get_longjmp_target): Replace SWAP_TARGET_AND_HOST with
1049 extract_address.
1050 * remote-vxsparc.c: New file, preliminary check in, this configuration
1051 not supported yet.
1052 * remote-vxmips.c: ditto.
1053
1054 Thu Apr 13 12:10:14 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1055
1056 * rs6000-tdep.c (xcoff_add_toc_to_loadinfo): Don't use a prototype
1057 to declare the function.
1058
1059 Wed Apr 12 16:40:20 1995 Stan Shebs <shebs@andros.cygnus.com>
1060
1061 * monitor.h (init_monitor_ops): Declare.
1062 * rom68k-rom.c: Clarify some comments.
1063 (rom68k_open): Define as static, to match decl.
1064
1065 Wed Apr 12 16:36:44 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1066
1067 * gdb.gdb: New file.
1068 * .gdbinit: Move list-objfiles to gdb.gdb.
1069
1070 * values.c (set_internalvar): Set modifiable flag of newval.
1071
1072 Wed Apr 12 14:34:31 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
1073
1074 * xcoffread.c: Call complain() rather than error() or printing a
1075 warning.
1076
1077 start-sanitize-arc
1078 Wed Apr 12 08:15:27 1995 Doug Evans <dje@canuck.cygnus.com>
1079
1080 * arc-tdep.c: #include "gdbcmd.h".
1081 (codestream_seek): Pass CORE_ADDR.
1082 (arc_cpu_type, tmp_arc_cpu_type, arc_cpu_type_table): New globals.
1083 (debug_pipeline_p): Likewise.
1084 (X_...): Instruction field access macros.
1085 (BUILD_INSN): Define.
1086 (codestream_tell): Allow for stream elements > 1 byte.
1087 (codestream_fill): Likewise.
1088 (setup_prologue_scan): New function.
1089 (arc_get_frame_setup): Call it. Update to current spec
1090 regarding prologues. Use BUILD_INSN.
1091 (skip_prologue): New argument `frameless_p'. Use BUILD_INSN.
1092 (arc_frame_saved_pc): New function.
1093 (frame_find_saved_regs): Use BUILD_INSN.
1094 (get_insn_type, single_step): New functions.
1095 (one_stepped): New global.
1096 (arc_set_cpu_type_command, arc_show_cpu_type_command): New functions.
1097 (arc_set_cpu_type): New function.
1098 (_initialize_arc_tdep): Define new `set' commands `cpu',
1099 `displaypipeline', and `debugpipeline'.
1100 * remote-arc.c (break_insn): Add bi-endian support.
1101 (arc_insert_breakpoint): Likewise.
1102 (arc_remove_breakpoint): Likewise.
1103 (switch_command): Delete.
1104 * arc/tm-arc.h (TARGET_BYTE_ORDER): Delete.
1105 (TARGET_BYTE_ORDER_SELECTABLE): Define.
1106 (DEFAULT_ARC_CPU_TYPE): Define.
1107 (SKIP_PROLOGUE_FRAMELESS_P): Define.
1108 (BREAKPOINT): Delete.
1109 (BIG_BREAKPOINT, LITTLE_BREAKPOINT): Define.
1110 (DECR_PC_AFTER_BREAK): Change to 8.
1111 (NO_SINGLE_STEP): Define.
1112 (ARC_PC_TO_REAL_ADDRESS): Define.
1113 (SAVED_PC_AFTER_CALL): Use it.
1114 (NUM_REGS, REGISTER_BYTES): Fix.
1115 (FRAME_SAVED_PC): Call arc_frame_saved_pc.
1116 (FRAME_LOCALS_ADDRESS): Fix.
1117 end-sanitize-arc
1118
1119 Tue Apr 11 16:42:37 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1120
1121 * top.c, utils.c, defs.h: Remove error_hook. It is currently
1122 unused and would need to hook into error_begin()/return_to_top_level(),
1123 instead of error(), if it were to be used.
1124
1125 Tue Apr 11 13:46:25 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
1126
1127 * utils.c, defs.h (warning_begin): Renamed from warning_setup, for
1128 consistency with error_begin. Also print warning_pre_print.
1129 Document it better.
1130 * utils.c (warning): Use it.
1131 * utils.c (error_begin): Doc fix.
1132 * rs6000-nat.c (vmap_ldinfo): If we don't find ldinfo for the
1133 symfile_objfile, nuke it.
1134
1135 Tue Apr 11 09:35:20 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1136
1137 * printcmd.c (print_address_numeric): Pass use_local to
1138 print_longest, rather than always passing 1.
1139
1140 * nlm/Makefile.in: Remove comments discussing munch.
1141
1142 start-sanitize-gdbtk
1143 Tue Apr 11 11:07:12 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1144
1145 * gdbtk.c (gdbtk_init): If SIOCSPGRP is not available, but
1146 F_SETOWN is, use that.
1147 end-sanitize-gdbtk
1148
1149 Mon Apr 10 18:31:57 1995 Stan Shebs <shebs@andros.cygnus.com>
1150
1151 Merge in support for Mac MPW as a host.
1152 (Old change descriptions retained for informational value.)
1153
1154 * mpw-config.in (i386-unknown-go32): Change from aout.
1155 (sh-hitachi-hms): New target.
1156 * mpw-make.in (BISON): Use byacc instead of bison.
1157 (VERSION): Bump to 4.14.1.
1158 (*-pinsn.*): Remove mentions everywhere.
1159 (all): Don't build MacGDB.
1160 (gdb, SiowGDB): Depend on Version.r.
1161 (Version.r): Generate from version info.
1162 * main.c (main): Pass program name to START_PROGRESS, END_PROGRESS.
1163 (main) [MPW]: Remove debugging hook.
1164 * mac-xdep.c (debug_openp): New flag.
1165 (mac_init): Set flag if env variable defined.
1166 * ser-mac.c (mac_open): Clarify error message.
1167 (mac_readchar): Call PROGRESS while looping.
1168 (mac_write): Call sleep instead of sec_sleep.
1169 (sec_sleep): Remove.
1170 * source.c (openp) [MPW]: Only print debugging info if debugging.
1171 * utils.c (query) [MPW]: Clarify that behavior is a bug.
1172
1173 * mpw-make.in (init.c): Use open-brace instead of mpw-open-brace.
1174
1175 * main.c, source.c: Remove hacks that replace long strings
1176 with shorter ones, now solved portably.
1177
1178 * config/m68k/xm-mpw.h (spin.h): Include.
1179 (ALMOST_STDC): Only define if MPW_C.
1180 * config/m68k/tm-mac.h: New file, Mac target definitions.
1181
1182 * mpw-config.in (m68k-apple-macos, ppc-apple-macos,
1183 i386-unknown-aout): New targets.
1184 (mk.tmp): Add *DEPFILES definitions.
1185 * mpw-make.in: Remove gC rules, clean up definitions for other
1186 include files, bump version, fix bogus \ that should be \Option-d.
1187 (init.c): Build correctly.
1188
1189 * mpw-make.in (HFILES_NO_SRCDIR): Add somsolib.h
1190 (ALLDEPFILES): Add somsolib.c.
1191 (somsolib.o): Add some dependencies.
1192
1193 * mpw-config.in: Use nm-empty.h if host is not target.
1194 (xdepfiles): Add mac-xdep.c.o.
1195 (xm_file): Remove.
1196 * mpw-make.in: Add Fortran files.
1197 (XDEPFILES): Remove.
1198
1199 * mpw-config.in (MacSerial.h): Duplicate from standard Serial.h.
1200 * ser-mac.c (MacSerial.h): Include instead of Serial.h.
1201
1202 * mpw-make.in: Use {s} instead of {srcdir} everywhere.
1203 (bindir, libdir): Remove extra colon.
1204 (source.c): Compile with C instead of gC.
1205 (c-exp.tab.c, ch-exp.tab.c, m2-exp.tab.c): Add {o}.
1206 (install-only): Don't install MacGDB.
1207 * source.c (openp) [MPW]: Add a debugging display.
1208 (open_source_file) [MPW]: Use MPW basename finders.
1209 [MPW_C]: Briefer versions of help for line and list commands.
1210
1211 * mpw-make.in: Change references from paread.c to somread.c
1212
1213 * mpw-make.in (VERSION): Update to 4.12.3.
1214 (SiowGDB): New target, GDB using SIOW library.
1215 (init-new.c): New target, attempt to generate init.c from sources.
1216 (main.c.o, top.c.o): Put each in its own segment.
1217 * main.c (main) [MPW]: Always call mac_init.
1218 * utils.c (query) [MPW]: Always return "yes" if in MacGDB, output
1219 an extra newline otherwise.
1220 * mac-xdep.c: More comments in various places, remove junk.
1221 (mac_init): Add tests for MPW and SIOW.
1222 (use_wne, has_color_qd): Renamed.
1223 (use_color_qd): New variable.
1224 (grow_window): Only do console resizing to console window,
1225 call resize_console_window.
1226 (zoom_window): Call resize_console_window.
1227 (resize_console_window, scroll_text): New functions.
1228 (adjust_console_sizes): Always align viewrect to even multiples of
1229 text lines.
1230 (adjust_console_text): Always scroll by whole lines.
1231 (hacked_vfprintf, hacked_puts, hacked_fputc, hacked_putc): Force a
1232 recalculation of scroll positions if a newline was output.
1233 (hacked_fflush): Similarly, for flushing.
1234 (hacked_fgetc): New function, aborts if called in MacGDB.
1235 * ser-mac.c (mac_readchar): Rename starttime to start_time,
1236 remove debugging printf.
1237 (mac_write): Sleep on first 4 writes.
1238 (sec_sleep): New function, works like standard sleep.
1239 * macgdb.r: Adjust positioning and contents of About box.
1240 Set minimum size to 2000K, preferred size to 5000K.
1241 * config/m68k/xm-mpw.h (fgetc): Define as a macro.
1242
1243 * mpw-make.in (.c.o, .gc.o): Prefix segment names with gdb_.
1244 (top.c.o, annotate.c.o): Add build rules.
1245 * macgdb.r (SysTypes.r): Include.
1246 ('vers'): New resource, version info.
1247 (mFile, mEdit, mDebug): Enable all menu items.
1248 (mDebug): Add key equivalents for continue, step, next.
1249 (wConsole): Add zoom and close boxes to window.
1250 * mac-xdep.c (new_console_window): New function, code taken from
1251 mac_init.
1252 (mac_command_loop): Use GetCaretTime for wait interval, call
1253 do_idle on null events.
1254 (do_idle): New function.
1255 (zoom_window): Implement zooming.
1256 (v_scroll_proc): New function, handles vertical scrolling.
1257 (activate_window): Do activation of console window.
1258 (do_menu_command): Implement items of file, edit, and debug menus.
1259 (do_keyboard_command): Fix command extraction.
1260 (adjust_console_sizes, adjust_console_text): New functions.
1261 (hacked_fprintf, hacked_vfprintf, hacked_fputs, hacked_fputc,
1262 hacked_putc): Don't call draw_console.
1263 * ser-mac.c (mac_open): Add an error message for invalid ports.
1264 (first_mac_write): New global.
1265 (mac_write): Use first_mac_write to sleep on first several writes.
1266
1267 * mpw-make.in (INCLUDE_CFLAGS): Add readline source dir.
1268 (READLINE_CFLAGS, READLINE_SRC, READLINE_DIR): Uncomment.
1269 (TSOBS): Don't compile inflow.c.
1270 (all, install): Add MacGDB.
1271 * main.c (main): Do Mac-specific init and command loop if a
1272 standalone app, skip full option help message if compiling
1273 with MPW C.
1274 (gdb_readline): If MPW, add a newline after the (gdb) prompt.
1275 * utils.c (_initialize_utils): If MPW, don't try to use termcap to
1276 compute the window size.
1277 * config/m68k/xm-mpw.h (printf, fprintf, fputs, fputc, putc,
1278 fflush): Define as macros that expand into hacked_... versions.
1279 (StandAlone, mac_app): Declare.
1280 * macgdb.r (SIZE): Set the default partition to 4000K.
1281 * mac-xdep.c (readline.h, history.h): Include.
1282 (terminal.h): Don't include.
1283 (mac_app): Define.
1284 (gdb_has_a_terminal): Define Mac-specific version.
1285 (do_keyboard_command): Simplify search for command string.
1286 (readline): Define as gdb_readline.
1287 Add other history/readline stubs to make main gdb link.
1288 (hacked_fprintf, hacked_printf, hacked_vfprintf, hacked_fputs,
1289 hacked_fputc, hacked_fflush): New functions, intercept output to
1290 stdout and stderr, send to console window.
1291
1292 * mpw-make.in (MacGDB): New target, standalone Mac-hosted gdb.
1293 (XDEPFILES): Define.
1294 (main.c.o): Compile with gC instead of C.
1295 * mac-defs.h: New file, menu etc definitions shared between
1296 C and Rez files.
1297 * macgdb.r: New file, Rez (resource compiler) resource
1298 definitions.
1299 * mac-xdep.c: New file, Mac host interface code.
1300 * config/m68k/xm-mpw.h (PATHNAME_SEPARATOR): Rename to
1301 DIRNAME_SEPARATOR.
1302 (PATHNAME_SEPARATOR_STRING): Remove.
1303 (SIGQUIT, SIGHUP): Define.
1304 (fileno, R_OK): Define.
1305
1306 * mpw-config.in: New file, MPW configuration fragment.
1307 * mpw-make.in: New file, MPW makefile fragment.
1308 * config/m68k/xm-mpw.h: New file, MPW host definitions.
1309 * ser-mac.c: New file, Mac serial interface.
1310
1311 Mon Apr 10 16:47:57 1995 Kung Hsu <kung@mexican.cygnus.com>
1312
1313 * valprint.c (print_longest): Fix a syntax error in #ifdef
1314 PRINTF_HAS_LONG_LONG.
1315
1316 * config/mips/xm-irix5.h: turn on CC_HAS_LONG_LONG and
1317 PRINTF_HAS_LONG_LONG.
1318 * config/mips/tm-irix5.h: turn on FORCE_LONG_LONG.
1319
1320 Sat Apr 8 02:47:45 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1321
1322 * mdebugread.c (parse_symbol): Use new variable
1323 nodebug_var_symbol_type as type of variables which don't have any
1324 ecoff debug info associated with them.
1325 (parse_symbol, parse_procedure): Use heuristics to determine if
1326 functions were compiled without debugging info and change their
1327 type to nodebug_function_symbol_type.
1328 (_initialize_mdebugread): Initialize nodebug_*_symbol_type.
1329
1330 * source.c (line_info): Clear sal.pc for `info line' without
1331 arguments.
1332
1333 Fri Apr 7 17:43:01 1995 Stu Grossman (grossman@andros.cygnus.com)
1334
1335 * monitor.c: make_xmodem_packet and print_xmodem_packet go away.
1336 send_xmodem_packet shows up to do the obvious. Lots of fixes to
1337 xmodem downloads including resetting of block number at start of
1338 new transfers, fix for buffer overrun problem, addition of CRC
1339 generation code.
1340 * (monitor_open): loadtype_str and loadproto_str now default to
1341 first entry in monitor_ops->loadtypes.
1342 * (monitor_wait): Lengthen register dump buf, because of verbose
1343 Winbond monitor.
1344 * (monitor_fetch_register): Report unimplemented registers as 0.
1345 * (monitor_read_memory): Only do 16 byte aligned transfers
1346 because of formatting weirdness with the Winbond monitor. Also,
1347 ignore non-hex, non-whitespace formatting between bytes (same
1348 monitor).
1349 * (monitor_load): Clean up logic.
1350 * (monitor_load_srec): Re-do xmodem support. Move lots of it
1351 into send_xmodem_packet.
1352 * (getacknak): Get rid of polls and timeouts. Handle CRC
1353 requests from receiver.
1354 * (monitor_make_srec): Efficiency improvements. Don't call
1355 sprintf to output two digit hex numbers.
1356 * (crcinit, docrc): New, CRC-16 support routines.
1357 * (send_xmodem_packet): New routine to generate either CRC-16 or
1358 checksummed xmodem packets.
1359
1360 * remote-est.c (est_loadtypes), rom68k-rom.c (rom68k_loadtypes):
1361 Reduce tables down to only the load types supported by each
1362 monitor.
1363
1364 * w89k-rom.c (w89k_supply_register): Parses output of Winbond
1365 register dumps.
1366 * (w89k_loadtypes, w89k_loadprotos): Reduce to just srec/xmodem.
1367 * (w89k_cmds): Add clear all breakpoints, memory fill, and dump
1368 registers commands.
1369
1370 * config/pa/tm-hppa.h: Define lots register offsets needed by
1371 w89k-rom.c.
1372
1373
1374 Thu Apr 6 17:00:46 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1375
1376 * Makefile.in (X11_INCLUDES): Define as empty.
1377 (X11_CFLAGS): Define as including $(X11_INCLUDES).
1378 (X11_LIB_SWITCHES): Define as empty.
1379 (X11_LIBS): Define as -lX11.
1380
1381 start-sanitize-gdbtk
1382 * configure.in (enable_gdbtk): If gdbtk, support the --x-includes
1383 and --x-libraries switches, setting the X11_INCLUDES and
1384 X11_LIB_SWITCHES respectively. Instead of using a hardcoded -lX11
1385 in ENABLE_CLIBS, use the X11_LIB_SWITCHES and X11_LIBS variables.
1386
1387 * gdbtk.c (gdbtk_init): If SIOCSPGRP is not available, don't use
1388 it. This means that the stop button doesn't work, but is better
1389 than nothing.
1390 end-sanitize-gdbtk
1391
1392 Wed Apr 5 19:57:38 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1393
1394 * mips-tdep.c (mips_print_register): Remove unused variable
1395 our_type and call to init_type. Fixes memory leak. Reindent function.
1396
1397 * mips-tdep.c (mips_print_register), findvar.c
1398 (write_register_bytes): Make buffer char[] instead of unsigned
1399 char[].
1400
1401 Mon Apr 3 19:28:14 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1402
1403 * top.c, utils.c, main.c, defs.h: Replace error_pre_print with two
1404 variables: error_pre_print (for RETURN_ERROR) and quit_pre_print
1405 (for RETURN_QUIT). Fixes a bug whereby typing ^C (e.g. in "maint
1406 print sym") could output extraneous stuff.
1407 * objfiles.c: Don't declare error_pre_print; defs.h does it.
1408
1409 Mon Apr 3 13:48:28 1995 Stu Grossman (grossman@andros.cygnus.com)
1410
1411 * monitor.h: Add MO_GETMEM_NEEDS_RANGE flag.
1412 * monitor.c (monitor_read_memory): Use previously mentioned flag
1413 to send proper format memory examine commands to the w89k monitor.
1414 Also, try to handle bizarre format of memory dump...
1415
1416 * op50-rom.c w89k-rom.c: Update to new monitor.[ch] conventions.
1417
1418 Sat Apr 1 03:22:20 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1419
1420 * dbxread.c (process_one_symbol) [SOFUN_ADDRESS_MAYBE_MISSING]:
1421 Handle relocated symbol address.
1422 * partial-stab.h, case N_SO, SOFUN_ADDRESS_MAYBE_MISSING:
1423 Do not relocate a zero address.
1424
1425 Thu Mar 30 19:46:36 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1426
1427 * config/a29k/tm-a29k.h: Nuke obsolete define CONTROL_END_ADDR; it
1428 is nowhere used.
1429
1430 * stabsread.c (read_range_type): Remove FIXME comment about
1431 type-id (I presume this meant a number followed by = followed by a
1432 type) versus type number; Per fixed it.
1433
1434 Wed Mar 29 09:56:04 1995 Jason Molenda (crash@phydeaux.cygnus.com)
1435
1436 * configure.in: sparc-*-sunos5* is same as sparc-*-solaris2*.
1437
1438 Wed Mar 29 18:30:03 1995 Stan Shebs <shebs@andros.cygnus.com>
1439
1440 * remote-e7000.c (why_stop): Add new kinds of strings to expect
1441 from the emulator.
1442 (e7000_wait): Add interpretations for more stop reasons,
1443 including warnings for write protect and cycle address errors.
1444
1445 Wed Mar 29 17:09:29 1995 Stu Grossman (grossman@cygnus.com)
1446
1447 start-sanitize-gdbtk
1448 * Makefile.in (gdbtk.o): Use X11_CFLAGS to provide alternate
1449 locations (per-host) for X11 include files.
1450 * config/pa/hppahpux.mh (XM_CLIBS): Add -L/usr/lib/X11R5 to force
1451 the use of R5 libs. (X11_CFLAGS): Add this to indicate the locs
1452 of the R5 include files.
1453 end-sanitize-gdbtk
1454 * monitor.c monitor.h remote-est.c rom68k-rom.c: Add start of
1455 support for interrupting target.
1456 * monitor.c (monitor_open): Send stop command before doing
1457 anything else.
1458 * (monitor_load_srec): Fix record size calculation to prevent end
1459 of segment from getting trashed.
1460 * rom68k-rom.c: Update to latest version of struct monitor_ops.
1461 * config/sparc/tm-sparc.h (FIX_CALL_DUMMY): Fix byte-order
1462 problems. Makes DOS hosted function calling work.
1463 * sparclite/crt0.s: Define _start to make COFF happy.
1464
1465 Wed Mar 29 09:11:51 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1466
1467 * defs.h (atof): Don't provide an external declaration if atof is
1468 a macro.
1469
1470 Wed Mar 29 00:01:07 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1471
1472 * rs6000-tdep.c (skip_prologue): Skip saving of LR and CR in
1473 the stack frame, fix typos in `st rx,NUM(r1)' and `stu r1,NUM(r1)'
1474 tests.
1475
1476 Tue Mar 28 17:04:04 1995 Per Bothner <bothner@kalessin.cygnus.com>
1477
1478 * gdbtypes.c (create_range_type): If indextype has TYPE_FLAG_STUB
1479 set, set TYPE_FLAG_TARGET_STUB.
1480 (check_stub_type): Recalculate TYPE_LENGTH for range type.
1481 * stabsread.c (read_range_type): If index type number is followed
1482 by '=', back up, call read_type. and assume we have a true range.
1483 * gdbtypes.h (TYPE_FLAG_TARGET_STUB): Update comment.
1484
1485 Mon Mar 27 22:51:54 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1486
1487 * alpha-nat.c, irix4-nat.c, irix5-nat.c, mipsv4-nat.c,
1488 sparc-tdep.c (supply_gregset, supply_fpregset): Fill inaccessible
1489 registers with zero to handle recent read_register_bytes change.
1490 * irix4-nat.c, irix5-nat.c, mipsv4-nat.c (supply_gregset,
1491 fill_gregset): Fix handling of CAUSE_REGNUM.
1492 * mips-nat.c (store_inferior_registers): Handle unwritable
1493 registers when storing a single register.
1494 * config/mips/tm-irix3.h (CAUSE_REGNUM, BADVADDR_REGNUM):
1495 Fix definitions.
1496
1497 * mdebugread.c (parse_symbol, psymtab_to_symtab_1): Clear
1498 allocated mips_extra_func_info, if the debug info is corrupt,
1499 the PDR to fill it in might be missing.
1500
1501 Mon Mar 27 14:43:00 1995 Kung Hsu <kung@mexican.cygnus.com>
1502
1503 * vx-share/regPacket.h: a new file interfacing with vxworks.
1504
1505 Sun Mar 26 13:22:47 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1506
1507 * breakpoint.c (bpstat_do_actions): Once we've executed the
1508 commands, set bs->commands to NULL.
1509
1510 Sat Mar 25 01:16:10 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1511
1512 * buildsym.c (patch_subfile_name): Update last_source_file
1513 with the real source file name.
1514 * dbxread.c (end_psymtab): Handle static functions in the
1515 SOFUN_ADDRESS_MAYBE_MISSING case by passing pst->filename
1516 to lookup_minimal_symbol.
1517 (process_one_symbol): Ignore extra outermost context from
1518 SunPRO cc and acc.
1519 * stabsread.c (define_symbol): Do not complain for SunPRO
1520 static variable encoding if STATIC_TRANSFORM_NAME is defined.
1521 * sparc-tdep.c, config/sparc/tm-sun4sol2.h
1522 (sunpro_static_transform_name): Renamed from
1523 solaris_static_transform_name.
1524 * config/sparc/tm-sun4os4.h (STATIC_TRANSFORM_NAME):
1525 Define to sunpro_static_transform_name for acc 3.0 compiled
1526 executables.
1527 * procfs.c, config/alpha/nm-osf2.h (PROCFS_DONT_TRACE_FAULTS):
1528 Renamed from PROCFS_DONT_TRACE_IFAULT, don't trace any faults
1529 if defined.
1530 * procfs.c (info_proc_siginfo): Cast sip->si_addr to
1531 `unsigned long' and use `lx' format for printing it.
1532
1533 Fri Mar 24 15:45:42 1995 Stu Grossman (grossman@cygnus.com)
1534
1535 * configure.in: Move test for m68*-est-* before m68*-*-coff*.
1536 * findvar.c: Move default def of CANNOT_STORE_REGISTER closer to
1537 the beginning of the code.
1538 * (write_register_gen): New routine. Analogous to
1539 read_register_gen.
1540 * (write_register_bytes): Another rewrite! Make it smarter about
1541 not updating regs with the same value.
1542 * monitor.c (printf_monitor readchar): Use stderr instead of
1543 stdout to output debug info. Also cleanup readchar a little.
1544 * (expect): Make sure that excessive responses are null
1545 terminated.
1546 * (monitor_open): Check for magic number in monitor_ops struct.
1547 Allow multiple commands as init strings. Also, clear all
1548 breakpoints.
1549 * (monitor_resume monitor_wait): Send a command to dump all the
1550 regs for those targets which don't do so when waking up after a
1551 continue command.
1552 * (monitor_wait): Handle excessive response output better.
1553 * (monitor_write_memory): Use block fill, word, and long word
1554 commands (if they exist) to write memory more efficiently.
1555 * General cleanups to use flag bits instead of individual flag
1556 words in monitor_ops struct.
1557 * (monitor_command): Return output from command.
1558 * (monitor_load_srec): Allocate buffer only once. Use alloca.
1559 Wait for load response string instead of using a timeout to start
1560 sending S-records. Fix bug where value of srec_frame shrinks. If
1561 hashmark is set, print `-' for retransmissions. General cleanups.
1562 * (monitor_make_srec): Get rid of S-record default type kludge.
1563 * monitor.h: Use seperate struct for memory and register
1564 read/write commands. Memory commands can come in byte, word,
1565 long, and longlong forms.
1566 * (monitor_ops): Change lots of fields. Generalize some stuff.
1567 Put all flags into flags word. Allow init to be a list of commands.
1568 Add command for clearing all breakpoints, block fill, dumping all
1569 registers.
1570 * remote-est.c: Rewrite to use new monitor conventions.
1571 * config/m68k/est.mt (TDEPFILES): Add monitor.o.
1572 * config/m68k/tm-est.h: Set NUM_REGS to 18.
1573 * testsuite/gdb.base/break.exp: Lots of cleanups. Use gdb_test
1574 more thoroughly.
1575
1576 Thu Mar 23 23:20:00 1995 Jeff Law (law@snake.cs.utah.edu)
1577
1578 * somsolib.c (som_solib_add): Handle case where a shared library
1579 referenced by a core file has sections without the SEC_ALLOC bit
1580 set (eg stabs sections).
1581
1582 Thu Mar 23 15:07:08 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1583
1584 * breakpoint.c (bpstat_do_actions): For each element in the bpstat
1585 chain, do all the commands regardless of whether they run the
1586 inferior.
1587
1588 Wed Mar 22 19:17:06 1995 Doug Evans <dje@cygnus.com>
1589
1590 * mem-break.c (LITTLE_BREAKPOINT, BIG_BREAKPOINT): Define as
1591 BREAKPOINT if mono-endian.
1592 (break_insn): Deleted.
1593 (big_break_insn, little_break_insn): Define.
1594 (memory_insert_breakpoint): Handle bi-endian cpus.
1595 (BREAKPOINT_LEN): Define.
1596 (memory_remove_breakpoint): Use it.
1597 (memory_breakpoint_size): Likewise.
1598
1599 Tue Mar 21 17:03:17 1995 Kung Hsu <kung@mexican.cygnus.com>
1600
1601 * sparc-stub.c: add nop after 'bg good_wim'.
1602 * sparcl-stub.c: ditto.
1603
1604 Tue Mar 21 13:34:12 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1605
1606 * infrun.c (handle_command): Don't print TARGET_SIGNAL_0,
1607 TARGET_SIGNAL_UNKNOWN, or TARGET_SIGNAL_DEFAULT.
1608
1609 Mon Mar 20 10:09:59 1995 Jeff Law (law@snake.cs.utah.edu)
1610
1611 * hppab-nat.c (store_inferior_registers): Sync with HPUX version.
1612
1613 Mon Mar 20 07:34:48 1995 Stu Grossman (grossman@cygnus.com)
1614
1615 * hppah-nat.c (store_inferior_registers): Move check for
1616 CANNOT_STORE_REGISTER to a better place. Fixes ptrace I/O errors
1617 found by test suite during function calls, which attempts to write
1618 unwritable registers.
1619
1620 Sat Mar 18 02:02:24 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1621
1622 * mdebugread.c (parse_symbol): If finishing a function without
1623 known parameter type info, set that from parameter symbols.
1624 Remove commented-out add_param_to_type support.
1625
1626 Thu Mar 16 16:38:03 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1627
1628 * xcoffread.c (process_linenos): Make sure filename we pass to
1629 start_subfile will cause deduce_language_from_filename to return
1630 the correct thing. Reindent function to GNU standards.
1631
1632 Thu Mar 16 15:54:00 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1633
1634 * nlm/gdbserve.c (handle_exception): #if out call to StopBell,
1635 as it is not available on NetWare 3 or PIN.
1636 * nlm/ppc.c (StopBell): Removed.
1637
1638 Thu Mar 16 12:14:41 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1639
1640 * xcoffread.c (read_xcoff_symtab): When creating a dummy parameter
1641 inferred from the traceback tags, give its type the name
1642 "<non-float parameter>".
1643
1644 * stabsread.c (rs6000_builtin_type): Recognize types -31 to -34.
1645
1646 Wed Mar 15 15:09:29 1995 Stu Grossman (grossman@cygnus.com)
1647
1648 * findvar.c (read_register_bytes write_register_bytes): Make
1649 these routines much smarter about updating registers from the
1650 target, only doing so when absolutely necessary. This really
1651 speeds up register modification on some remote targets.
1652
1653 * monitor.c: More cleanups. Get rid of monitor_load_ascii_srec.
1654 BFD makes this unnecessary. Lots of debugging speedups.
1655 * (expect): NULL terminate return string.
1656 * (monitor_open monitor_supply_register parse_register_dump
1657 monitor_wait monitor_fetch_register): Switch to using GNU regexp
1658 library to parse multi-register displays.
1659 * (monitor_read_memory): Read multiple bytes (up to 16) at once.
1660 * (monitor_create_inferior): Call clear_proceed_status to make run
1661 command notice first breakpoint.
1662 * (monitor_load): Clean up. Reset inferior_pid, set pc to start
1663 address and reset symbol table stuff to make loads put things into
1664 a fresh state.
1665 * (monitor_load_srec): Lower sleep time to 1 second.
1666
1667 * monitor.h (struct monitor_ops): Add register_pattern and
1668 supply_register to monitor_ops.
1669
1670 * rom68k-rom.c: Add new support for handling register dumps.
1671 * config/m68k/tm-m68k.h: Define D0_REGNUM and A0_REGNUM for register
1672 dump handling.
1673
1674 Wed Mar 15 15:18:27 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1675
1676 * utils.c, defs.h (putchar_unfiltered, fputc_unfiltered): Make
1677 argument be an int, not a char. Using a prototype followed by an
1678 old-style function definition in a case where an argument is
1679 widened is a GCC-ism not supported by the native AIX compiler.
1680
1681 Wed Mar 15 12:22:35 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1682
1683 * nlmstub.def: Removed, this was moved to nlm/gdbserve.def
1684 long ago.
1685
1686 * configure.in (alpha-*-netware*): Removed configuration.
1687 * config/alpha/{alpha-nw.mt, gdbserve.mt, tm-alphanw.h}: Removed.
1688 * nlm/{README-ALPHA-NETWARE, aio.h, alpha-io.S, alpha-regdef.h,
1689 alpha.c, alpha.h, altdebug.h}: Removed.
1690
1691 * nlm/gdbserve.c (main): Add support for processing BOARD=
1692 argument, deprecate NODE=.
1693
1694 Wed Mar 15 10:58:26 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1695
1696 * c-exp.y (yylex): Make an empty character constant an error.
1697
1698 Tue Mar 14 15:00:54 1995 Per Bothner <bothner@kalessin.cygnus.com>
1699
1700 * valops.c (value_arg_coerce): Do possible value_coerce_array
1701 before determining type argument to value_cast.
1702
1703 Tue Mar 14 10:41:41 1995 Kung Hsu <kung@mexican.cygnus.com>
1704
1705 * remote-es.c: Replace ignore with 0.
1706
1707 Tue Mar 14 05:52:36 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1708
1709 * valops.c (value_repeat), eval.c (evaluate_subexp_standard):
1710 If VALUE_REPEATED is already set, just error out.
1711
1712 * valops.c (value_cast, value_slice), parse.c (follow_types): Add
1713 FIXME-type-allocation comments.
1714
1715 * gdbtypes.h (struct type): Fix comment about what units the
1716 TYPE_LENGTH is in.
1717
1718 Mon Mar 13 18:27:25 1995 Stan Shebs <shebs@andros.cygnus.com>
1719
1720 * ch-valprint.c (annotate.h): Include.
1721 * eval.c (evaluate_subexp_standard): Remove unused variable.
1722 (calc_f77_array_dims): Add parens to expression.
1723 * f-exp.y (yylex): Add parens to expression, remove unused label.
1724 * f-lang.h (calc_f77_array_dims): Declare.
1725 * f-valprint.c (f_val_print): Remove unused variables.
1726
1727 Mon Mar 13 15:25:47 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
1728
1729 * alpha-tdep.c (find_proc_desc): If pdr.framereg field is -1, don't
1730 use the PDR, just examine prologues instead.
1731
1732 start-sanitize-arc
1733 Fri Mar 10 16:13:18 1995 Kung Hsu <kung@mexican.cygnus.com>
1734
1735 * config/tm-arc.h: Change arc register names.
1736 end-sanitize-arc
1737
1738 Fri Mar 10 02:49:40 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1739
1740 Fix problems with infinite recursion when printing a class
1741 that contains a static instance of the class.
1742 * cp-valprint.c (dont_print_vb_obstack): Renamed from
1743 dont_print_obstack, made static.
1744 (dont_print_statmem_obstack): New obstack, controls printing
1745 of static member classes.
1746 (_initialize_cp_valprint): Initialize it.
1747 (cp_print_static_field): New function, handles printing of
1748 static members.
1749 (cp_print_value_fields): New parameter dont_print_statmem to
1750 handle recursive printing of static member classes, use
1751 cp_print_static_field to handle printing of static members.
1752 * c-valprint.c (cp_print_value_fields): Update prototype and
1753 call to include additional dont_print_statmem parameter.
1754 * c-valprint.c, f-valprint.c (dont_print_obstack): Remove unused
1755 extern declaration.
1756
1757 * alpha-tdep.c, findvar.c, infptrace.c: Include <string.h>.
1758
1759 * config/alpha/tm-alpha.h (FRAME_FIND_SAVED_REGS): Call
1760 alpha_find_saved_regs if fi->saved_regs is still NULL.
1761
1762 * elfread.c (elf_symtab_read): Ensure that the filename field
1763 of a minsym is nonempty. Ignore solib trampoline symbols from
1764 the main symbol table, they might have a bogus value.
1765
1766 * procfs.c (set_proc_siginfo), config/alpha/alpha-osf2.mh:
1767 Fix typos in comments.
1768
1769 Thu Mar 9 17:19:47 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
1770
1771 * mdebugread.c (parse_symbol, psymtab_to_symtab_1): Initialize
1772 pdr.framereg field of MIPS_EFI_SYMBOL_NAME symbol to -1. That way
1773 we know whether the PDR ever got set.
1774 * mips-tdep.c (find_proc_desc): If pdr.framereg field is -1, don't
1775 use the PDR, just examine prologues instead.
1776
1777 Wed Mar 8 23:35:10 1995 Jeff Law (law@snake.cs.utah.edu)
1778
1779 * somsolib.c (som_solib_section_offsets): Get offset of text
1780 section right.
1781
1782 Wed Mar 8 16:12:21 1995 Stu Grossman (grossman@cygnus.com)
1783
1784 start-sanitize-gdbtk
1785 * gdbtk.c (gdb_get_breakpoint_info): Return error if breakpoint
1786 type is not bp_breakpoint.
1787 end-sanitize-gdbtk
1788
1789 * source.c (forward_search_command reverse_search_command): Set
1790 convenience variable $_ to be the line # of the match.
1791 * symtab.c (decode_line_1): Allow convenience variables to be
1792 used in line specs (for breakpoints and such).
1793
1794 Wed Mar 8 12:51:00 1995 Stan Shebs <shebs@andros.cygnus.com>
1795
1796 * Makefile.in (VERSION): Bump to 4.14.1.
1797 * NEWS, README: Update for 4.14.
1798 * i386v-nat.c (i386_insert_aligned_watchpoint): Fix declaration.
1799 (i386_insert_nonaligned_watchpoint): Call aligned instead of
1800 generic watchpoint insertion.
1801
1802 Tue Mar 7 19:26:10 1995 Per Bothner <bothner@kalessin.cygnus.com>
1803
1804 * valops.c (value_slice): Do COERCE_VARYING_ARRAY.
1805
1806 Tue Mar 7 00:23:47 1995 Stu Grossman (grossman@cygnus.com)
1807
1808 * monitor.c, array-rom.c, monitor.h, rom68k-rom.c: Move target_ops
1809 into monitor.c.
1810 * monitor.c (monitor_create_inferior): Allow run command to start
1811 program.
1812
1813 * monitor.c (monitor_load): Set PC to start address when done
1814 loading.
1815
1816 * array-rom.c, monitor.h, rom68k-rom.c: Clean up target_ops.
1817 Remove ref to monitor_create_inferior.
1818
1819 * monitor.c: More general cleanups. Add prototypes, remove
1820 unused routines. Fix bug with wrong number of args to error().
1821
1822 * main.c (main): Don't start up GUI when running under gdb mode
1823 in emacs.
1824
1825 * Makefile.in: Add rules for monitor.o and rom68k-rom.o to make
1826 Sun make (with VPATH) work...
1827
1828 * monitor.c, monitor.h, rom68k-rom.c: Serious cleanup to make IDP
1829 (rom68k) target work right.
1830 * array-rom.c, op50-rom.c, w89k-rom.c: Partial updates to new
1831 monitor.c interface. More work needs to be done here.
1832 * config/m68k/tm-monitor.h: Change DECR_PC_AFTER_BREAK to 0 to
1833 match the IDP monitor. Also, set NUM_REGS to 18 cuz there's no
1834 floating-point for this card.
1835
1836 * serial.h, ser-go32.c, ser-go32-para.c, ser-mac.c, ser-tcp.c,
1837 ser-unix.c: Add SERIAL_SETSTOPBITS to set the number of stopbits
1838 (needed for IDP board?!?!?).
1839
1840 * defs.h, utils.c, remote-hms.c, remote-pa.c, remote.c: Fix defs
1841 and usage of fputc_unfiltered and putchar_unfiltered. Eliminate
1842 putc_unfiltered (it's superfluous).
1843
1844 * command.h, command.c, top.c: Add var_enum command type. It's
1845 like var_string but allows only only one of the specified strings.
1846
1847 Mon Mar 6 15:03:59 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1848
1849 * valops.c (value_cast): Don't use backslash newline--pre-ANSI
1850 compilers (such as SunOS4 /bin/cc) don't generally support it
1851 except in some contexts.
1852
1853 Fri Mar 3 17:42:48 1995 Per Bothner <bothner@kalessin.cygnus.com>
1854
1855 * valops.c (value_cast): Check for cast to array type *before*
1856 we coerce array to pointer (in case arg2 is already array).
1857
1858 * valops.c (call_function_by_hand): Set using_gcc to 2 if using
1859 gcc2. Needed for REG_STRUCT_HAS_ADDR to work on sparc.
1860 Also check REG_STRUCT_HAS_ADDR for union, array and string types.
1861
1862 * valops.c (call_function_by_hand): Re-arrange code for pushing
1863 paramaters on the stack so we can do better STACK_ALIGN.
1864
1865 * valops.c (call_function_by_hand): Call error if the number
1866 of arguments is fewer than parameter types in function type.
1867
1868 Fri Mar 3 17:13:05 1995 Doug Evans <dje@canuck.cygnus.com>
1869
1870 * sparc-tdep.c (sparc_extract_struct_value_address): Move
1871 sparc64 support to here.
1872 (sparc64_extract_struct_value_address): Deleted.
1873 (dump_ccreg): Add a prototype so long long arg -> int.
1874 * sparc/tm-sp64.h (USE_STRUCT_CONVENTION): Define.
1875 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
1876
1877 Fri Mar 3 15:12:12 1995 Jeff Law (law@snake.cs.utah.edu)
1878
1879 * hpread.c (hpread_record_lines): New argument "offset". All
1880 callers changed. Use it to handle dynamic address relocation.
1881 (hpread_build_psymtabs): Adjust texthigh as we read each function
1882 debug symbol. Fix computation of texthigh.
1883 (hpread_read_subrange_type): Work around macro bugs in HP's
1884 compilers.
1885 (hpread_process_one_debug_symbol): Correctly map source lines.
1886
1887 * somread.c (check_strange_names): Filter names emitted by the HP
1888 compiler when generating PIC code.
1889
1890 * valops.c (value_struct_elt_for_reference): Work around macro
1891 bugs in HP's compilers.
1892 * c-exp.y (block): Likewise.
1893
1894 Fri Mar 3 12:27:28 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
1895
1896 * rs6000-tdep.c (push_dummy_frame): Fix order of arguments to
1897 store_address.
1898
1899 * utils.c [_AIX]: Include stddef.h instead of #defining size_t.
1900
1901 Fri Mar 3 12:33:24 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1902
1903 * rs6000-tdep.c (skip_prologue): Skip multiple stores of the saved
1904 registers that GCC emits on the PowerPC by default in addition to
1905 the store multiple instruction used on the Power series.
1906
1907 Fri Mar 3 00:54:58 1995 Doug Evans <dje@canuck.cygnus.com>
1908
1909 * sparc-tdep.c (decode_asi): New function.
1910 (sparc_print_register_hook): Pretty print more v9 registers.
1911 * sparc/tm-sp64.h (REGISTER_NAMES): Fix some typos.
1912
1913 Thu Mar 2 22:20:22 1995 Doug Evans <dje@canuck.cygnus.com>
1914
1915 * dwarfread.c (struct dieinfo): Use CORE_ADDR for at_{low,high}_pc.
1916 (target_to_host): Change result type to CORE_ADDR.
1917
1918 Thu Mar 2 15:13:04 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1919
1920 * rs6000-tdep.c: Fix byte-swapping sins.
1921
1922 Thu Mar 2 16:48:45 1995 Michael Meissner <meissner@cygnus.com>
1923
1924 * rs6000-tdep.c (branch_dest): Minor code cleanup, don't share
1925 code between branch unconditional and branch conditional cases.
1926
1927 Wed Mar 1 09:41:26 1995 Doug Evans <dje@canuck.cygnus.com>
1928
1929 Various changes for sparc64.
1930 * sparc-tdep.c (NUM_SPARC_FPREGS): Define.
1931 (SPARC_INTREG_SIZE): Define.
1932 (*): Use SPARC_INTREG_SIZE instead of REGISTER_RAW_SIZE (intreg)
1933 where appropriate.
1934 (enum branch_type): New value `done_retry'.
1935 (isbranch): Renamed from isannulled. All callers changed.
1936 Support new sparc64 branch insns.
1937 (single_step): Handle done_retry.
1938 (sparc_extract_struct_value_address): Don't assume 4 byte regs.
1939 (get_saved_register): Likewise.
1940 (sparc_push_dummy_frame): Likewise.
1941 (sparc_frame_find_saved_regs): Likewise.
1942 (sparc_pop_frame): Likewise. Don't refer to FPS_REGNUM, CPS_REGNUM,
1943 or PS_REGNUM if not sparc64. sparc64 has 64 fp regs.
1944 (sparc64_extract_struct_value_address): New function.
1945 (dump_ccreg, sparc_print_register_hook): Likewise.
1946 * sp64-tdep.c: Deleted.
1947 * sparc/tm-sp64.h (GDB_TARGET_IS_SPARC64): Define.
1948 (NUM_REGS): Reduce by 2, cle/tle are in the pstate reg.
1949 (CC_HAS_LONG_LONG): Define.
1950 (REGISTER_NAMES): Delete cle/tle and reorganize.
1951 (PS_REGNUM, FPS_REGNUM, CPS_REGNUM): Delete, they're ifdef'd out of
1952 sparc-tdep.c now.
1953 (REGISTER_BYTES): Update.
1954 (REGISTER_CONVERT_TO_VIRTUAL, REGISTER_CONVERT_TO_RAW): Delete.
1955 (EXTRACT_RETURN_VALUE): Delete. Use definition in tm-sparc.h.
1956 (NO_SINGLE_STEP): Likewise.
1957 * sparc/tm-sparc.h (EXTRACT_VALUE_RETURN): Don't assume 4 byte regs.
1958 * sparc/sp64.mt: Move simulator support ...
1959 * sparc/sp64sim.mt: ... to here.
1960
1961 Wed Mar 1 13:14:42 1995 Kung Hsu <kung@mexican.cygnus.com>
1962
1963 * remote-vx960.c: new file for target specific register packaging.
1964 * remote-vx68.c: ditto.
1965 * config/i960/vxworks960.mt: add remote-vx960.o.
1966 * config/m68k/vxworks68.mt: add remote-vx68.o.
1967
1968 Wed Mar 1 13:42:49 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1969
1970 * remote.c (remote_wait): Make calls to strtol be type correct by
1971 passing the address of a char * pointer instead of an unsigned
1972 char *.
1973
1974 * rs6000-tdep.c (push_dummy_frame): Cast sp to char * when calling
1975 write_memory to make things type correct.
1976
1977 Wed Mar 1 12:17:31 1995 Michael Meissner <meissner@cygnus.com>
1978
1979 * ch-exp.y, c-exp.y, f-exp.y, m2-exp.y (yy defines): Support the
1980 standard Linux yacc by adding more names to be redefined with a
1981 prefix.
1982
1983 Tue Feb 28 22:55:47 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1984
1985 * hppa-tdep.c (pa_print_registers), monitor.c: Use
1986 extract_unsigned_integer and friends, not SWAP_TARGET_AND_HOST.
1987 * defs.h, findvar.c: Move SWAP_TARGET_AND_HOST back to findvar.c.
1988 Rename it to SWAP_FLOATING to make it clear it is no longer for
1989 integers.
1990
1991 Tue Feb 28 14:38:39 1995 Kung Hsu <kung@mexican.cygnus.com>
1992
1993 * defs.h (SWAP_TARGET_AND_HOST): check endianess at runtime not
1994 compile time.
1995
1996 start-sanitize-arc
1997 * arc-tdep.c (_initialize_arc_tdep): set tm_print_insn according to
1998 processor.
1999 * remote-arc.c (arc_wait): when a processor stops, stop other two
2000 processors too.
2001 * remote-arc.c (switch_command): switch tm_print_insn.
2002 end-sanitize-arc
2003
2004 * vx-share/ptrace.h: merge in WRS new ptrace requests.
2005
2006 * defs.h: fix a syntax error.
2007
2008 * a29k-tdep.c (get_longjmp_target): add this function, from WRS.
2009 * remote-vx.c: move read_register and write_register out to
2010 target specific files.
2011 * remote-vx29k.c (get_fp_contnets): add this function, from WRS.
2012
2013 * defs.h: define SWAP_TARGET_AND_HOST macro.
2014 * findvar.c, monitor.c, hppa-tdep.c: remove definition of
2015 SWAP_TARGET_AND_HOST.
2016
2017 Tue Feb 28 08:31:40 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2018
2019 * alpha-tdep.c (find_proc_desc): Only attempt to set
2020 PROC_LOCALOFF (found_heuristic) if found_heuristic is non-NULL.
2021
2022 Mon Feb 27 11:56:32 1995 Stan Shebs <shebs@andros.cygnus.com>
2023
2024 * monitor.c: General gcc -Wall lint cleanup and reformat.
2025 (monitor_command): If no args, send an empty command.
2026
2027 Thu Feb 23 21:07:25 1995 Stu Grossman (grossman@cygnus.com)
2028
2029 * monitor.c (monitor_load_ascii_srec): Add a one second sleep
2030 after send LOAD_CMD to prevent loss of first S-record.
2031
2032 Tue Feb 21 20:48:42 1995 Per Bothner <bothner@kalessin.cygnus.com>
2033
2034 * valops.c (call_function_by_hand): Set using_gcc to 2 if gcc-2.
2035 Call error if too few arguments.
2036 If REG_STRUCT_HAS_ADDR (structs passed by invisible reference),
2037 copy and convert to reference *before* we calculate alignment.
2038 Also, make sure structs allocated for return values and invisible
2039 reference don't violate STACK_ALIGN.
2040
2041 Tue Feb 21 23:29:59 1995 Per Bothner <bothner@rtl.cygnus.com>
2042
2043 * ch-exp.y (expression_conversion): Recognize 'ARRAY () TYPE (EXPR)'
2044 (same as C's '(TYPE[])EXPR')
2045
2046 Tue Feb 21 11:47:26 1995 Stan Shebs <shebs@andros.cygnus.com>
2047
2048 * top.c (print_gdb_version): Update the year.
2049
2050 Sun Feb 19 14:31:57 1995 Jim Kingdon <kingdon@rtl.cygnus.com>
2051
2052 * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Look for newlib in
2053 `..' not in `../..'.
2054
2055 Sun Feb 19 11:05:28 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2056
2057 * procfs.c (unconditionally_kill_inferior): Don't issue a PIOCKILL
2058 in addition to a PIOCSSIG to kill the inferior.
2059
2060 Thu Feb 16 15:06:12 1995 Per Bothner <bothner@kalessin.cygnus.com>
2061
2062 * parse.c (follow_types): Given (TYPE[]) (i.e. with no length),
2063 create a 0-length array type, and set BOUND_CANNOT_BE_DETERMINED.
2064 * valops.c (value_cast): If a cast like (TYPE[])VALUE (i.e. array
2065 of unknown length) use sizeof(VALUE)/sizeof(TYPE) as the length.
2066 * c-typeprint.c (c_type_print_varspec_suffix): If array length
2067 is 0, print it, but not if upper_bound is BOUND_CANNOT_BE_DETERMINED.
2068
2069 Thu Feb 16 16:06:50 1995 Michael Meissner <meissner@tiktok.cygnus.com>
2070
2071 * dcache.c (insque, remque): Rewrite Linux support.
2072
2073 Wed Feb 15 12:33:20 1995 Michael Meissner <meissner@tiktok.cygnus.com>
2074
2075 * config/powerpc/tm-ppc-eabi.h (TEXT_SEGMENT_BASE): Define as 1.
2076
2077 * dcache.c (insque, remque): If compiling in standard C on Linux,
2078 protect insque and remque with macros to cast the pointer
2079 arguments to the proper type.
2080
2081 Tue Feb 14 17:16:41 1995 Stu Grossman (grossman@cygnus.com)
2082
2083 * annotate.c, breakpoint.c, defs.h, top.c: Replace
2084 enable/disable_breakpoint_hook with modify_breakpoint_hook.
2085 start-sanitize-gdbtk
2086 * gdbtk.c: Ditto.
2087 * gdbtk.c: General cleanups, get rid of unused variables. Redo
2088 handling of stdout/stderr to just return output as the result of
2089 the tcl command that caused the output. Cleanup -Wall stuff.
2090 * (breakpoint_notify): Now returns just action and breakpoint
2091 number.
2092 * (gdb_get_breakpoint_list): New routine. Does the obvious.
2093 * (gdb_get_breakpoint_info): Mostly derived from the old
2094 breakpoint_notify, but returns lots more info.
2095 * (dsprintf_append_element): Helper routine, works like printf,
2096 but appends a tcl element onto the specified DString. Good for
2097 building up lists as return values.
2098 * (gdbtk_enable/disable_breakpoint): Go away. Replaced with
2099 gdbtk_modify_breakpoint.
2100 * (*many routines*): Use new result protocol.
2101 * (call_wrapper): Make sure that recursive calls don't trash results.
2102 * gdbtk.tcl: New windows, autocmd, and breakpoints.
2103 * (gdbtk_tcl_fputs): Don't use $current_output_win redirection
2104 anymore. It's not needed (in fact, this routine may not be needed
2105 anymore).
2106 * (gdbtk_tcl_breakpoint): Change to reflect new breakpoint
2107 notification protocol.
2108 * (gdbtk_tcl_busy gdbtk_tcl_idle): Straighten out buttons, remove
2109 catches.
2110 * (interactive_cmd): Use this wrapper around button invocations
2111 of many commands. This will catch errors and put the results into
2112 the command window. It also updates all the other windows.
2113 * Also, change reliefs of most things to sunken. This actually
2114 looks better.
2115 * (create_file_win): Fix margin binding to allow breakpoints to
2116 work again.
2117 * (create_asm_win): Use return value of gdb_disassemble instead
2118 of implicit I/O to the command window.
2119 * (create_command_window): Use new result protocol to get output
2120 from commands.
2121 end-sanitize-gdbtk
2122
2123 Tue Feb 14 16:58:07 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2124
2125 * expression.h: Move declaration of evaluate_subexp_with_coercion
2126 from here...
2127 * value.h: ...to here.
2128 * expression.h: Don't include value.h
2129
2130 Tue Feb 14 11:46:07 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2131
2132 * expression.h: Move include of value.h until after declaration of
2133 enum exp_opcode.
2134
2135 Sun Feb 12 13:47:30 1995 Stan Shebs <shebs@andros.cygnus.com>
2136
2137 * remote-e7000.c: Comprehensive cleanup; removal of dead code,
2138 simplify code, declare things, format to standards.
2139 (inferior.h, value.h, command.h, remote-utils.h): Include.
2140 (e7000_login): Rename to e7000_login_command.
2141 (e7000_ftp): Rename to e7000_ftp_command.
2142 (e7000_drain): Rename to e7000_drain_command.
2143
2144 * irix5-nat.c (string.h): Include near beginning of file.
2145
2146 Sun Feb 12 12:36:38 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2147
2148 * valops.c (value_arg_coerce): Use VALUE_TYPE not SYMBOL_TYPE on
2149 arg, it is a value not a symbol.
2150
2151 gcc -Wall lint:
2152 * eval.c: Move declaration of evaluate_subexp_with_coercion from here..
2153 * expression.h: ..to here.
2154 * expression.h: Include value.h.
2155 * ch-lang.c (evaluate_subexp_chill): Add default case in switch.
2156
2157 Sun Feb 12 11:03:47 1995 Per Bothner <bothner@kalessin.cygnus.com>
2158
2159 * language.h (struct language_defn): New field evaluate_exp.
2160 * c-lang.c (c_language_defn, cplus_language_defn, asm_langauge_defn),
2161 f-lang.c (f_language_defn), language.c (unknown_language_defn,
2162 auto_language_defn, local_language_defn), m2-lang.c (m2_language_defn):
2163 Set evaluate_exp to evaluate_subexp_standard.
2164 * ch-lang.c (evaluate_subexp_chill): New function. Chill-specific
2165 support for MULTI_SUBSCRIPT.
2166 (chill_language_defn): Set evaluate_exp to evaluate_subexp_chill.
2167 * eval.c (enum noside): Move from here ....
2168 * expression.h (enum noside): ... to here.
2169 (evaluate_subexp_standard): New prototype.
2170 * eval.c (evaluate_subexp): Renamed to evaluate_subexp_standard.
2171 Removed lo-longer-needed test for chill_varying_type.
2172 (evaluate_subexp): New. Calls exp->language_defn->evaluate_exp.
2173
2174 * ch-exp.y (maybe_expression_list): New non-terminal.
2175 (primitive_value): Allow empty parameter list.
2176
2177 Sun Feb 12 10:02:16 1995 Per Bothner <bothner@cygnus.com>
2178
2179 * buildsym.c (finish_block): If finishing a function without known
2180 parameter type info, set that from parameter symbols.
2181 * c-typeprint.c (c_type_print_varspec_suffix): For TYPE_CODE_FUNC,
2182 print parameter types, if available.
2183 * ch-typeprint.c (chill_type_print_base): Likewise.
2184
2185 * gdbtypes.h (struct type): Remove function type field.
2186 (TYPE_FUNCTION_TYPE): Remove macro. We can't as simply re-use
2187 function types now that we're also storing parameter types.
2188 And the payoff is much less.
2189 * gdbtypes.c (make_function_type): Don't use/set TYPE_FUNCTION_TYPE.
2190 (recursive_dump_type): Don't print TYPE_FUNCTION_TYPE.
2191 * dwarfread.c (read_subroutine_type): Don't set TYPE_FUNCTION_TYPE.
2192
2193 * valops.c (value_arg_coerce): Now takes param_type argument.
2194 (call_function_by_hand): Convert arguments with value_arg_coerce
2195 early, and overwrite original args with converted args.
2196 No longer need multiple calls to value_arg_coerce.
2197 (value_arg_push): Removed.
2198 * hppa-tdep.c (hppa_push_arguments): No longer call value_arg_coerce.
2199 * mips-tdep.c (mips_push_arguments): Likewise.
2200 * alpha-tdep.c (alpha_push_arguments): Likewise.
2201 * rs6000-tdep.c (push_arguments, ran_out_of_registers_for_arguments):
2202 Likewise.
2203 * value.h (value_arg_coerce): Remove declaration. (It's now static.)
2204
2205 * valops.c (value_cast): Do COERCE_VARYING_ARRAY after COERCE_REF.
2206
2207 * symtab.c (add_param_to_type): Remove (commented-out) function,
2208 since that functionality has been re-written.
2209 * coffread.c: Remove commented-out add_param_to_type support.
2210 * mdebugread.c (parse_symbol): Likewise.
2211 * stabsread.c (define_symbol): Likewise.
2212
2213 Sun Feb 12 09:03:47 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2214
2215 * buildsym.c (start_subfile): Set language for f2c like for cfront.
2216
2217 Thu Feb 9 20:20:11 1995 Rob Savoye <rob@darkstar.cygnus.com>
2218
2219 * op50n-rom.c: Add the control registers.
2220
2221 Thu Feb 9 15:46:39 1995 Stan Shebs <shebs@andros.cygnus.com>
2222
2223 * Makefile.in (CLIBS): Add $(LIBIBERTY) before, in addition to
2224 after, any host/target/native libraries.
2225 * dcache.c (insque, remque): Remove declarations.
2226 * gdbtypes.h (type_code): Remove trailing comma.
2227
2228 From Peter Schauer:
2229 * xcoffread.c (read_xcoff_symtab) [C_HIDEXT]: Move #ifdef
2230 STATIC_NODEBUG_VARS inside case.
2231
2232 Thu Feb 9 07:43:41 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
2233
2234 * config/sparc/tm-sun4sol2.h: Define STATIC_TRANSFORM_NAME.
2235 * partial-stab.h: Call it.
2236 * stabsread.c (define_symbol) [STATIC_TRANSFORM_NAME]: Call
2237 STATIC_TRANSFORM_NAME to get the name and use minimal symbols to
2238 get the address.
2239 * sparc-tdep.c (solaris_static_transform_name): New function.
2240
2241 Thu Feb 9 12:09:09 1995 Jeff Law (law@snake.cs.utah.edu)
2242
2243 * somread.c (som_symtab_read): Handle dynamic relocation for both
2244 text and data symbols.
2245 (som_symfile_offsets): If objfile is a shared library, then get
2246 text and data offsets from the shared library structures.
2247 * somsolib.c (som_solib_add): Copy the bfd pointer from the
2248 objfile rather than reopening the file again.
2249 (som_solib_section_offsets): New function.
2250 * somsolib.h (som_solib_section_offsets): Declare.
2251
2252 Wed Feb 8 20:32:18 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
2253
2254 * config/sparc/tm-sun4sol2.h, dbxread.c: Rename
2255 N_SO_ADDRESS_MAYBE_MISSING to SOFUN_ADDRESS_MAYBE_MISSING.
2256 * symtab.h (minimal_symbol) [SOFUN_ADDRESS_MAYBE_MISSING]: Add
2257 filename field.
2258 * elfread.c (record_minimal_symbol_and_info),
2259 minsyms.c, symtab.h (prim_record_minimal_symbol_and_info): Return
2260 newly created symbol.
2261 * elfread.c (elf_symtab_read) [SOFUN_ADDRESS_MAYBE_MISSING]:
2262 Set filename field of minimal symbol.
2263 * symmisc.c (dump_msymbols) [SOFUN_ADDRESS_MAYBE_MISSING]:
2264 Print filename field.
2265 * minsyms.c, symtab.h (lookup_minimal_symbol): New arg sfile.
2266 * symm-tdep.c, somsolib.c, hppa-tdep.c, c-exp.y, f-exp.y,
2267 m2-exp.y, nindy-tdep.c, m3-nat.c, irix5-nat.c, hpread.c,
2268 os9kread.c, breakpoint.c, alpha-tdep.c, valops.c, symtab.c,
2269 printcmd.c, dbxread.c: Change callers to pass NULL for sfile.
2270 * dbxread.c (process_one_symbol) [SOFUN_ADDRESS_MAYBE_MISSING]:
2271 Find address of function from minimal symbols.
2272 * partial-stab.h, case 'f', 'F': Call find_stab_function_addr
2273 instead of getting pst->textlow from the stab.
2274 * minsyms.c (find_stab_function_addr): New function.
2275
2276 Wed Feb 8 19:19:56 1995 Rob Savoye <rob@darkstar.cygnus.com>
2277
2278 * monitor.c: Fix so all the output shows up in the GUI command
2279 window.
2280
2281 Mon Feb 6 18:50:59 1995 Stan Shebs <shebs@andros.cygnus.com>
2282
2283 * i386-tdep.c (_initialize_i386_tdep): Put void decl on separate
2284 line, so init.c generation works correctly.
2285 start-sanitize-arc
2286 * arc-tdep.c (_initialize_arc_tdep): Ditto.
2287 end-sanitize-arc
2288
2289 Mon Feb 6 14:44:36 1995 Rob Savoye <rob@darkstar.cygnus.com>
2290
2291 * config/mips/idt.mt: Add support for the lsi33k target.
2292 * config/sparc/sun4sol2.mh: Add support for ser-tcp.
2293 * array-rom.c: Finish the rest of the support commands needed by
2294 GDB.
2295 * mips-tdep.c: Add LSI33k register names and processor type.
2296
2297 start-sanitize-gdbtk
2298 Sun Feb 5 20:32:44 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2299
2300 * gdbtk.c (gdb_disassemble): Deference pointer to function before
2301 calling it (pre-ANSI compilers generally require this).
2302
2303 end-sanitize-gdbtk
2304 Sat Feb 4 13:29:52 1995 Stan Shebs <shebs@andros.cygnus.com>
2305
2306 * config/m68k/est.mt (TDEPFILES): Remove m68k-pinsn.o.
2307
2308 Fri Feb 3 16:47:31 1995 Kung Hsu <kung@mexican.cygnus.com>
2309
2310 * ser-go32-para.c (dos_read): fix syntax errors.
2311
2312 Fri Feb 3 11:19:20 1995 Stu Grossman (grossman@cygnus.com)
2313
2314 * core.c (dis_asm_read_memory), defs.h, top.c: Get rid of
2315 dis_asm_read_memory_hook. We can now call the disassemblers
2316 directly and have no need for this hook anymore.
2317 start-sanitize-gdbtk
2318 * gdbtk.c (gdb_disassemble): Ditto.
2319 end-sanitize-gdbtk
2320 * defs.h, printcmd.c: Make print_insn be static.
2321
2322 * ser-go32.c (dos_comisr): Make this 8 bit clean.
2323 * (dos_open dos_close): Allow multiple opens to the same device.
2324 Use a ref count to prevent unwanted deallocations.
2325 * sparcl-tdep.c: Put #ifdefs around all socket stuff to make GO32
2326 happy.
2327 * (sparclite_ops): Switch to download_stratum.
2328 * target.h (enum strata): Move download_stratum before
2329 process_stratum so that executable targets get pushed on top of
2330 download targets.
2331
2332 Thu Feb 2 19:02:45 1995 Rob Savoye <rob@darkstar.cygnus.com>
2333
2334 * array-rom.c: Remove the non GDB remote protocol config stuff.
2335
2336 * monitor.c: All reading/writing functions for memory and
2337 registers work.
2338
2339 Thu Feb 2 16:11:04 1995 Kung Hsu <kung@mexican.cygnus.com>
2340
2341 start-sanitize-arc
2342 * config/arc/arc.mt: new target makefile for arc processor.
2343 * config/arc/tm-arc.h: new target header for arc processor.
2344 * config/arc/go32.mh: new go32 host makefile for arc processor.
2345 * config/arc/xm-go32.h: new go32 host header for arc processor.
2346 * arc-tdep.c: new target dependent codes for arc processor.
2347 * remote-arc.c: new file for arc-specific protocol through
2348 parallel line.
2349 end-sanitize-arc
2350 * ser-go32-para.c: new file for go32 parallel port communication.
2351
2352 Thu Feb 2 13:58:40 1995 Stan Shebs <shebs@andros.cygnus.com>
2353
2354 * Makefile.in (VERSION): Bump to 4.13.2.
2355
2356 Thu Feb 2 07:27:56 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2357
2358 Fix compiler warnings:
2359 * remote-e7000.c (printf_e7000debug): Rename to puts_e7000debug
2360 and have the caller do the sprintf. Saves us from varargs hell.
2361 (normal): Define before use.
2362 * remote-e7000.c: Reindent a few things.
2363
2364 Wed Feb 1 21:16:42 1995 Per Bothner <bothner@kalessin.cygnus.com>
2365
2366 * f-typeprint.c (f_type_print_varspec_suffix): Print array index
2367 ranges in reverse order.
2368 * f-valprint.c (f77_create_arrayprint_offset_tbl): Fix calculation.
2369
2370 * eval.c (evaluate_subscript): Don't call value_subscript, since
2371 it adjusts for lower bound and enforces ranges.
2372
2373 * expression.h (exp_code): Remove MULTI_F77_SUBSCRIPT, OP_F77_SUBSTR.
2374 * eval.c, parse.c: Removed uses of removed opcodes.
2375 * eval.c (evaluate_subexp): Clean up handling of
2376 OP_UNDETERMINED_ARGLIST (no backtracking, more general).
2377
2378 * f-valprint.c (f_val_print): Print TYPE_CODE_STRING using
2379 LA_PRINT_STRING, and not val_print_string (which reads from inferior).
2380
2381 * ch-lang.c (chill_is_varying_struct), ch-lang.h: Remve function
2382 duplicate function made redundant by chill_varying_type.
2383
2384 Re-write of f77 string and complex number support:
2385
2386 * language.h (struct language_defn): New fields string_lower_bound
2387 and string_char_type.
2388 * c-lang.c (c_language_defn, cplus_language_defn, asm_language_defn),
2389 language.c (unknown_language_defn, auto_language_defn,
2390 local_language_defn), m2-lang.c (m2_language_defn), f-lang.c
2391 (f_language_defn), ch-lang.c (chill_language_defn): Set new fields.
2392 * gdbtypes.c (create_string_type): Use new string_char_type field.
2393 * valops.c (value_string): Use new string_lower_bound field.
2394
2395 * defs.h (TARGET_COMPLEX_BIT, TARGET_DOUBLE_COMPLEX_BIT): Removed.
2396 * f-lang.c (f_create_fundamental_type, _initialize_f_language),
2397 m2-lang.c (m2_create_fundamental_type),
2398 gdbtypes.c (_initialize_gdbtypes): Set TYPE_TARGET_TYPE of complex
2399 types. Set their TYPE_CODEs to TYPE_CODE_COMPLEX.
2400 * mdebugread.c (mdebug_type_complex, mdebug_type_double_complex):
2401 Removed. Use builtin_type_complex and builtin_type_double_complex.
2402
2403 * gdbtypes.h (enum type_code): Removed TYPE_CODE_LITERAL_STRING
2404 and TYPE_CODE_LITERAL_COMPLEX.
2405 * c-typeprint.c, f-typeprint.c, f-valprint.c, eval.c: Removed uses of
2406 TYPE_CODE_LITERAL_STRING and TYPE_CODE_LITERAL_COMPLEX.
2407 * gdbtypes.c, gdbtypes.h (f77_create_literal_complex_type,
2408 f77_create_literal_string_type): Removed.
2409 * value.h (VALUE_LITERAL_DATA, VALUE_SUBSTRING_MEMADDR,
2410 VALUE_SUBSTRING_MYADDR): Removed.
2411
2412 * expression.h (enum exp_opcode): Rename OP_F77_LITERAL_COMPLEX to
2413 OP_COMPLEX.
2414 * parse.c: Update accordingly.
2415
2416 * f-valprint.c (f77_print_cmplx): Removed.
2417 (f_val_print case TYPE_CODE_COMPLEX): Re-write to use print_floating.
2418
2419 * f-exp.y (STRING_LITERAL): Use OP_STRING instead of OP_ARRAY.
2420 * eval.c (evaluate_subexp): For case OP_ARRAY, don't call
2421 f77_value_literal_string.
2422 * valops.c, value.h (f77_value_literal_string, f77_value_substring,
2423 f77_assign_from_literal_string, f77_assign_from_literal_complex):
2424 Removed.
2425 (value_assign): No longer need to handle literal types.
2426 * valops.c (f77_value_literal_complex), value.h: Re-written and
2427 renamed to value_literal_complex. Last arg is now a (complex) type.
2428 * valops.c (f77_cast_into_complex): Re-written and renamed to
2429 cast_into_complex.
2430 * eval.c (evaluate_subexp): Update accordingly.
2431
2432 * ch-valprint.c (chill_val_print): On TYPE_CODE_STRING, don't
2433 print address for non-'s'-formats.
2434 * ch-typeprint.c, ch-valprint.c: Use chill_varying_type instead
2435 of chill_is_varying_struct.
2436
2437 Wed Feb 1 13:27:33 1995 Stan Shebs <shebs@andros.cygnus.com>
2438
2439 gcc -Wall lint.
2440 * alpha-tdep.c (alpha_in_lenient_prologue): Comment out.
2441 (after_prologue): Remove unused local b.
2442 * procfs.c (thread.h): Include.
2443 (pr_flag_table, pr_why_table, faults_table, siginfo_table): Use
2444 nested braces in initializer.
2445 * top.c (initialize_targets, initialize_utils): Declare.
2446 (locate_arg, insert_args): Add parens around tested assignments.
2447 * remote-utils.c (sr_scan_args): Remove decl of strtol.
2448 * remote.c (thread.h): Include.
2449 (remote_wait): Remove unused local p2.
2450 * sparc-tdep.c (fill_gregset, fill_fpregset): Remove decls of
2451 registers array.
2452
2453 defs.h (stdlib.h): Include.
2454 (exit, perror, atoi, qsort, memcpy, memcmp): Don't declare.
2455 (fclose, atof, malloc, realloc, free, strchr, strrchr, strstr,
2456 strtok, strerror): Don't specify parameter types in declaration.
2457
2458 Wed Feb 1 12:23:57 1995 Per Bothner <bothner@kalessin.cygnus.com>
2459
2460 * ch-exp.y (value_string_element, string_primitive_value,
2461 start_element, left_element, right_element, slice_size,
2462 lower_element, upper_element, first_element): Removed.
2463 (value_string_slice, value_array_slice): Replaced by ...
2464 (slice): New non-terminal, with working slice support.
2465 (primitive_value_lparen, rparen): New non-terminals.
2466 (maybe_tuple_elements): New non-terminal, to allow empty tuples.
2467 (idtokentab): Added "up".
2468
2469 * value.h (COERCE_VARYING_ARRAY): New macro.
2470 * valarith.c (value_subscript): Use it.
2471 * valops.c (value_cast): Likewise. Also, do nothing if already
2472 correct type, and allow converting from/to range to/from scalar.
2473
2474 * valops.c, value.h (varying_to_slice, value_slice): New functions.
2475 * eval.c (OP_ARRAY): Add cast for array element.
2476 * expression.h (TERNOP_SLICE, TERNOP_SLICE_COUNT): New exp_opcodes.
2477 * valops.c (chill_varying_type): Moved function frp, here ...
2478 * gdbtypes.c (chill_varying_type), gdbtypes.h: ... to here.
2479 * parse.c (length_of_subexp, prefixify_subexp): Add support
2480 for TERNOP_SLICE, TERNOP_SLICE_COUNT.
2481 * expprint.c (print_subexp, dump_expression): Likewise.
2482 * eval.c (evaluate_subexp): Likewise.
2483
2484 * eval.c (evaluate_subexp case MULTI_SUBSCRIPT): Don't call
2485 value_x_binop on a Chill varying string.
2486
2487 Tue Jan 31 13:51:53 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2488
2489 * config/m68k/monitor.mt,
2490 config/pa/{hppabsd.mt,hppahpux.mt,hppaosf.mt,hppapro.mt}: Put
2491 depfiles in TDEPFILES not REMOTE_O.
2492
2493 Tue Jan 31 11:14:44 1995 Steve Chamberlain <sac@splat>
2494
2495 From nigel@algor.co.uk.
2496 * ser-go32.c (dos_close): Don't crash if scb null.
2497 (dos_sendbreak): New function.
2498 (dos_ops): Point to dos_sendbreak.
2499 (dos_info): Calculate COM number correctly.
2500
2501 Tue Jan 31 09:40:11 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2502
2503 * xcoffread.c (process_xcoff_symbol): Use new variables
2504 func_symbol_type and var_symbol_type as type of functions and
2505 variables which don't have any stabs associated with them.
2506 Reindent most of function.
2507 (_initialize_xcoffread): Initialize *_symbol_type.
2508
2509 * xcoffread.c (read_xcoff_symtab): Reindent most of function.
2510 Put C_HIDEXT symbols in the minimal symbols, rather than ignoring
2511 them (this part commented out as I didn't quite get it to work).
2512 (cs_to_section, find_targ_sec): New functions, to support above code.
2513 * xcoffread.c (RECORD_MINIMAL_SYMBOL): Only skip '.' if it is
2514 actually present.
2515
2516 Mon Jan 30 17:34:24 1995 Stu Grossman (grossman@cygnus.com)
2517 start-sanitize-gdbtk
2518 * gdbtk.tcl (create_file_win): Disable old popup menu for source
2519 window.
2520 end-sanitize-gdbtk
2521 * sparcl-tdep.c: Add `sparclite' target for doing serial and udp
2522 downloads to SPARClite demo boards.
2523
2524 Sun Jan 29 09:43:22 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2525
2526 * remote.c, remote-pa.c: Remove #if 0'd icache code. It has had
2527 no hope of working as is for a long time (in particular, shebs' 27
2528 Jan 95 change confuses the issue further--target_read_memory and
2529 xfer_core_file do *not* do the same thing in this context).
2530 Revise comment.
2531
2532 Sat Jan 28 13:40:46 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2533
2534 * elfread.c (elf_symtab_read): Do not test BSF_GLOBAL for
2535 procedure linkage table symbols, it is no longer set due to the
2536 Jan 6 BFD change in bfd/elfcode.h.
2537
2538 Fri Jan 27 17:08:06 1995 Stan Shebs <shebs@andros.cygnus.com>
2539
2540 * top.c (use_windows): Clarify comments.
2541
2542 * convex-tdep.c (xfer_core_file): Comment out.
2543 * config/convex/tm-convex.h (XFER_CORE_FILE): Remove.
2544 * remote.c, remote-pa.c (remote_fetch_word): Change xfer_core_file
2545 references to target_read_memory.
2546 * gdbcore.h (xfer_core_file, core_open, core_detach): Remove
2547 declarations.
2548 * corelow.c (core_open, core_detach): Make static.
2549
2550 * arm-tdep.c: Make it compile.
2551 (exec_file_command, xfer_core_file): Comment out.
2552 (arm_print_insn): Remove, now in libopcodes.
2553 (skip_prologue): Comment out most of body.
2554 (arm_frame_find_saved_regs): Move here from tm-arm.h.
2555 (_initialize_arm_tdep): Set tm_print_insn.
2556 * config/arm/tm-arm.h: Remove old refs to first_object_file_end.
2557 (XFER_CORE_FILE): Remove.
2558 (FRAME_FIND_SAVED_REGS): Call arm_frame_find_saved_regs.
2559
2560 Fri Jan 27 08:48:28 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2561
2562 * Makefile.in (CHILL_LIB): Define as in testsuite/Makefile.in.
2563
2564 Thu Jan 26 18:24:41 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
2565
2566 * symtab.c (find_pc_line): When subtracting one to get a line
2567 number, make sure not to end up with zero.
2568
2569 * remote-vx.c: Revert all of Kung's changes of 16 Jan. The
2570 problems with those changes were (a) the file didn't compile, (b)
2571 they changed memset to bzero--memset is correct, (c) they took out
2572 code to deal with boards lacking floating point, (d) who knows
2573 what I didn't discover in a quick read.
2574
2575 Thu Jan 26 17:32:54 1995 Stu Grossman (grossman@cygnus.com)
2576
2577 * sparcl-tdep.c: Clean up formatting and indentation.
2578
2579 Thu Jan 26 10:49:59 1995 Steve Chamberlain <sac@splat>
2580
2581 * remote-hms.c (hms_ops): Change ref of hr_load_image
2582 to gr_load_image.
2583 (dcache_flush, dcache_hit, dcache_value, dcache_fetch,
2584 dcache_poke, dcache_init): Deleted.
2585 (hms_open, hms_resume, hms_fetch_word, hms_store_word):
2586 Use dcache routines provided by remote-util.h
2587
2588 Thu Jan 26 12:08:31 1995 Michael Meissner <meissner@cygnus.com>
2589
2590 * configure.in: Add support for powerpc-*-eabi.
2591
2592 * powerpc/tm-ppc-eabi.h, powerpc/pcc-eabi.mt: New files for
2593 PowerPC support.
2594
2595 Wed Jan 25 18:13:14 1995 Per Bothner <bothner@kalessin.cygnus.com>
2596
2597 * language.h (struct language_defn): New field c_style_arrays.
2598 * language.c (unknown_language_defn, auto_language_defn,
2599 local_language_defn), c-lang.c (c_language_defn, cplus_language_defn,
2600 asm_language_defn): Set c_style_arrays to true.
2601 * m2-lang.c (m2_language_defn), ch-lang.c (chill_language_defn),
2602 f-lang.c (f_language_defn): Set c_style_arrays to false.
2603 * valops.c (value_string): If c_style_array is not set,
2604 allocate string in gdb (not inferior) using allocate_value.
2605
2606 * value.h (COERCE_ARRAY), valops.c (value_addr, value_arg_coerce):
2607 Only call value_coerce_array if current_language->c_style_arrays.
2608 * values.c: Add #include "language.h". (Needed for COERCE_ARRAY.)
2609
2610 * valops.c (chill_varying_type): New predicate.
2611 * valops.c (value_cast): Support assigning a fixed string or array
2612 to a variable string/array structure.
2613
2614 * valarith.c (value_subscripted_rvalue): Extra parameter lowerbound.
2615 Check index>=lowerbound, and then add lowerbound to index here,
2616 instead of in caller. Generalize to arbitrary lval_types.
2617 (value_subscript): Use enhanced value_subscripted_rvalue if
2618 c_style_arrays is false (and index is in range).
2619
2620 start-sanitize-gdbtk
2621 Wed Jan 25 18:23:46 1995 Stu Grossman (grossman@cygnus.com)
2622
2623 * gdbtk.c (gdbtk_init): Prevent segfault when gdbtk.tcl can't be
2624 found.
2625 * gdbtk.tcl: Initialize expr_update_list() to prevent errors when
2626 popping up expression window for the first time.
2627 end-sanitize-gdbtk
2628
2629 Wed Jan 25 18:13:14 1995 Per Bothner <bothner@kalessin.cygnus.com>
2630
2631 * eval.c (evaluate_subexp case OP_ARRAY): Fix calls to memset:
2632 TYPE_LENGTH is length in bytes, not bits.
2633
2634 Wed Jan 25 08:19:35 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2635
2636 * infrun.c (proceed): Flush stdout before resuming inferior.
2637 * infcmd.c (step_1), annotate.c (annotate_starting):
2638 Don't bother to flush here.
2639
2640 Wed Jan 25 01:11:21 1995 Jeff Law (law@snake.cs.utah.edu)
2641
2642 * hpread.c (hpread_process_one_debug_symbol): Fix lines garbled
2643 by an ill-advised global search and replace.
2644
2645 Tue Jan 24 12:10:28 1995 Stu Grossman (grossman@cygnus.com)
2646
2647 * gdbtk.tcl (create_registers_window): Work around a radiobutton
2648 widget bug to make Options|Natural button work.
2649
2650 * gdbtk.c (gdb_disassemble): Fix problem with source+assembly and
2651 g++ caused by out-of-order pc's.
2652 * gdbtk.tcl (files_command): Remove duplicate file names. Also,
2653 add scrollbar.
2654
2655 Mon Jan 23 17:21:09 1995 Stu Grossman (grossman@cygnus.com)
2656
2657 * gdbtk.tcl: Take .gdbtkinit if it exists. Makes gdbtk match the
2658 doc!
2659
2660 Mon Jan 23 13:11:46 1995 Per Bothner <bothner@kalessin.cygnus.com>
2661
2662 Add support for Chill bitstring literals (e.h. H'FF00').
2663 * ch-exp.y (match_bitstring_literal): Fix for proper endianness.
2664 * expprint.c (print_subexp): Don't call error on OP_BITSTRING,
2665 just print B'<unimlemented>'.
2666 * gdbtypes.c (create_set_type): Fix bug in length calculation.
2667 * valops.c, value.h (value_bitstring): New function.
2668 * eval.c (evaluate_subexp): Implement support for OP_BITSTRING.
2669
2670 * ch-typeprint.c (chill_type_print_base): For TYPE_CODE_FUNC,
2671 check that return type is non-void, and print in proper Chill syntax.
2672
2673 Mon Jan 23 12:20:34 1995 Rob Savoye <rob@darkstar.cygnus.com>
2674
2675 * Makefile.in: Remove references to remote-mon.c.
2676 * remote-mon.c: remove. Replaced by rom68k-rom.c.
2677 * rom68k-rom.c: Support for Rom68k monitor.
2678
2679 Mon Jan 23 10:50:57 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
2680
2681 * Makefile.in (CHILL_FOR_TARGET): Update -L argument to point to
2682 gcc/ch/runtime not chillrt, since that is where the chill runtime
2683 lives now.
2684
2685 Mon Jan 23 00:06:57 1995 Steve Chamberlain <sac@splat>
2686
2687 * remote-hms.c (hms_load): Delete.
2688 (target_ops): Use hr_load_image.
2689
2690 * remote-e7000.c, remote-z8k.c, remote-nindy.c (target_ops):
2691 Define memory_insert/remove_breakpoint.
2692 * xm-go32.h: Remove redundant SIGs.
2693
2694 Thu Jan 19 20:26:58 1995 Steve Chamberlain <sac@splat>
2695
2696 * ser-go32.c: Rewritten by nigel@algor.co.uk.
2697
2698 Fri Jan 20 15:23:55 1995 Per Bothner <bothner@kalessin.cygnus.com>
2699
2700 * expression.h (OP_LABELED): New operator, for Chill
2701 labeled structre tuples.
2702 * ch-exp.y (tuple_element, named_record_element, tuple_elements):
2703 New non-terminals, to handle labeled structure tuples.
2704 (tuple): Re-define using tuple_elements.
2705 * eval.c (evaluate_labeled_field_init): New function, to handle
2706 initialization of structure fields, possibly using OP_LABELED.
2707 (evaluate_subexp): Use it.
2708 * expprint.c (print_subexp case): For OP_ARRAY, use Chill syntax
2709 for Chill. Handled OP_LABELED.
2710 * parse.c (length_of_subexp, prefixify_subexp): Handle OP_LABELED.
2711
2712 * eval.c (evaluate_subexp): Handle Chill Powerset tuples.
2713 * valarith.c (value_bit_index): Just treat bitstring as represented
2714 by an array of bytes. Alignment is handled by compiler.
2715
2716 Wed Jan 18 19:00:29 1995 Stan Shebs <shebs@andros.cygnus.com>
2717
2718 * h8300-tdep.c (gdb_print_insn_h8300): Fix typo (&info -> info).
2719 * sh-tdep.c (gdb_print_insn_sh): Ditto.
2720
2721 Wed Jan 18 11:25:43 1995 Kung Hsu <kung@mexican.cygnus.com>
2722
2723 * remote-os9k.c (rombug_open): Fix a bug in exception handling
2724 command.
2725 * remote-os9k.c (rombug_write_inferior_memory): reset buffer after
2726 write.
2727
2728 Tue Jan 17 09:48:38 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
2729
2730 * parse.c (_initialize_parse): Improve wording of names of
2731 msym_*_symbol_type.
2732
2733 Tue Jan 17 14:00:58 1995 Ian Lance Taylor <ian@sanguine.cygnus.com>
2734
2735 * config/mips/tm-mips.h (enum mips_fpu_type): New enum.
2736 (mips_fpu): Change type to enum mips_fpu_type.
2737 (FIX_CALL_DUMMY): Handle mips_fpu == MIPS_FPU_SINGLE.
2738 * mips-tdep.c (mips_fpu): Change type to enum mips_fpu_type.
2739 Don't initialize.
2740 (mips_fpu_string): New static variable.
2741 (mips_push_dummy_frame): Handle mips_fpu == MIPS_FPU_SINGLE.
2742 (mips_pop_frame): Likewise.
2743 (mips_extract_return_value): Likewise.
2744 (mips_store_return_value): Likewise.
2745 (mips_set_fpu_command): New static function.
2746 (mips_show_fpu_command): New static function.
2747 (_initialize_mips_tdep): Change handling of set/show mipsfpu.
2748
2749 Tue Jan 17 09:48:38 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
2750
2751 * a29k-tdep.c (gdb_print_insn_a29k): Fix typo (&info -> info).
2752
2753 * parse.c (write_exp_msymbol): Use new variables
2754 msym_*_symbol_type as type of msymbol expression.
2755 (_initialize_parse): Initialize them.
2756
2757 Mon Jan 16 18:11:03 1995 Stan Shebs <shebs@andros.cygnus.com>
2758
2759 General cleanup and simplication of disassembler interface.
2760 * a29k-pinsn.c, arm-pinsn.c, convex-pinsn.c, gould-pinsn.c,
2761 hppa-pinsn.c, i386-pinsn.c, i960-pinsn.c, m68k-pinsn.c,
2762 m88k-pinsn.c, mips-pinsn.c, ns32k-pinsn.c, pyr-pinsn.c,
2763 rs6000-pinsn.c, sparc-pinsn.c, tahoe-pinsn.c, vax-pinsn.c: Remove.
2764 * gould-tdep.c, ns32k-tdep.c, tahoe-tdep.c, vax-tdep.c: New files,
2765 had been -pinsn.c files.
2766 * Makefile.in (ALLDEPFILES): Remove removed files.
2767 (a29k-pinsn.o, arm-pinsn.o, convex-pinsn.o, gould-pinsn.o,
2768 hppa-pinsn.o, i386-pinsn.o, i960-pinsn.o, m68k-pinsn.o,
2769 m88k-pinsn.o, mips-pinsn.o, ns32k-pinsn.o, pyr-pinsn.o,
2770 rs6000-pinsn.o, sparc-pinsn.o, tahoe-pinsn.o, vax-pinsn.o):
2771 Remove compile actions.
2772 * arm-tdep.o, gould-tdep.o, ns32k-tdep.o, tahoe-tdep.o,
2773 vax-tdep.o: Add compile actions.
2774 * defs.h (tm_print_insn): New global.
2775 * a29k-tdep.c (gdb_print_insn_a29k): New function.
2776 (_initialize_a29k_tdep): Rename from _initialize_29k,
2777 set tm_print_insn.
2778 * alpha-tdep.c (print_insn): Remove.
2779 (_initialize_alpha_tdep): Set tm_print_insn.
2780 * arm-tdep.c (arm_print_insn): New function, was print_insn
2781 in arm-pinsn.c.
2782 * convex-tdep.c (convex_print_insn): New function, was print_insn
2783 in convex-pinsn.c.
2784 * h8300-tdep.c (print_insn): Remove.
2785 (gdb_print_insn_h8300): New function.
2786 (_initialize_h8300_tdep): New function.
2787 * h8500-tdep.c (print_insn): Remove.
2788 (_initialize_h8500_tdep): New function.
2789 * hppa-tdep.c (_initialize_hppa_tdep): Set tm_print_insn.
2790 * i386-tdep.c (_initialize_i386_tdep): New function.
2791 * i960-tdep.c (mem, next_insn): New functions, were in
2792 i960-pinsn.c.
2793 (_initialize_i960_tdep): Set tm_print_insn.
2794 * m68k-tdep.c (_initialize_m68k_tdep): New function.
2795 * m88k-tdep.c (_initialize_m88k_tdep): New function.
2796 * mips-tdep.c (gdb_print_insn_mips): New function.
2797 (_initialize_mips_tdep): Set tm_print_insn.
2798 * pyr-tdep.c (pyr_print_insn): New function, was print_insn
2799 in pyr-pinsn.c.
2800 * rs6000-tdep.c (_initialize_rs6000_tdep): New function.
2801 * sh-tdep.c (print_insn): Remove.
2802 (gdb_print_insn_sh): New function.
2803 (_initialize_sh_tdep): Set tm_print_insn.
2804 * sparc-tdep.c (_initialize_sparc_tdep): New function.
2805 * w65-tdep.c (print_insn): Remove.
2806 (_initialize_w65_tdep): New function.
2807 * z8k-tdep.c (print_insn): Remove.
2808 (gdb_print_insn_z8k): New function.
2809 (_initialize_z8k_tdep): Set tm_print_insn.
2810 * printcmd.c (print_insn): New function, generic disassembler.
2811 * config/*/*.mt (TDEPFILES): Remove refs to *-pinsn.o.
2812
2813 Mon Jan 16 15:43:29 1995 Kung Hsu <kung@mexican.cygnus.com>
2814
2815 * Makefile.in: add new files remote-vx29k.c, config/a29k/tm-vx29k.h,
2816 and config/a29k/vx29k.mt.
2817 * configure.in: add new configuration a29k-*-vxworks.
2818 * remote-vx29k.c: new file merged from WRS.
2819 * remote-vx.c: merge changes from WRS.
2820 * config/a29k/vx29k.mt: new file for new configuration.
2821 * config/a29k/tm-vx29k.h: new header file for newconfiguration.
2822
2823 Sun Jan 15 14:36:19 1995 Steve Chamberlain <sac@splat>
2824
2825 * breakpoint.h (disable_breakpoint, enable_breakpoint):
2826 New declarations.
2827 (enum bpdisp): Change name of 'delete' member to 'del'.
2828 (struct bpstat): Changed name to 'bpstats'.
2829 * breakpoint.c (disable_breakpoint, enable_breakpoint,
2830 breakpoint_chain): Made globally visible.
2831 (bpstat_stop_status): Use new name for bpstat.
2832 (break_command_1, watch_command_1, catch_command_1,
2833 breakpoint_auto_delete, denable_delete_breakpoint): Use 'del'
2834 instead of 'delete'.
2835 (set_breakpoint_sal): New function.
2836 * defs.h (registers_changed_hook): New declaration.
2837 * infcmd.c (run_stack_dummy): 'delete' is now 'del'.
2838 * inflow.c (new_tty): Treat WIN32 in same way as __GO32__
2839 * main.c (main): Don't scan options when in WIN32 and exit
2840 without entering main loop.
2841 * m2-exp.y (m2_elx): Member 'class' is now 'aclass'.
2842 * symtab.h (struct symbol, struct partial_symbol): Changed name of
2843 member 'class' to 'aclass'.
2844 (SYMBOL_CLASS, PSYMBOL_CLASS): Reflect change.
2845 * top.c (registers_changed_hook): New definition.
2846 * utils.c (quit, notice_quit, initialize_utils): Treate WIN32
2847 in same way as __GO32__.
2848 * value.h (c_typedef_print): Rename 'new' argument.
2849
2850 * w65-tdep.c, config/tm-w65.h, config/w65.mt: New files.
2851 * configure.in: Suppprt for w65,
2852
2853
2854 Sat Jan 14 11:18:11 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
2855
2856 * infcmd.c (signal_command): For "signal 0", pass (CORE_ADDR)-1,
2857 not stop_pc, to proceed.
2858
2859 * eval.c (evaluate_subexp): Clear expect_type except for C++ and CHILL.
2860
2861 Fri Jan 13 17:52:57 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
2862
2863 * infcmd.c (signal_command): Accept "signal 0"; the change to not
2864 accept it was accidental. "handle 0" and "info signal 0" remain
2865 illegal, though.
2866
2867 Fri Jan 13 15:19:01 1995 Stan Shebs <shebs@andros.cygnus.com>
2868
2869 * Makefile.in (all): Don't make libgdb-files.
2870 (libgdb): New action, makes libgdb-files.
2871
2872 Thu Jan 12 21:23:25 1995 Per Bothner <bothner@kalessin.cygnus.com>
2873
2874 * stabsread.c (read_enum_type): When pending enum symbols are
2875 put into the enum type, they must be inserted in "backwards
2876 order, in case we've overflowed a struct pending buffer.
2877
2878 start-sanitize-gdbtk
2879 Thu Jan 12 15:02:40 1995 Stu Grossman (grossman@cygnus.com)
2880
2881 * gdbtk.c, gdbtk.tcl: Update/add copyright.
2882 * gdbtk.tcl (build_framework): Several fixes for filespec widget,
2883 including dismiss button, and better error handling.
2884 * (create_command_win): Bind button 2 to retrieve selection.
2885 end-sanitize-gdbtk
2886
2887 Thu Jan 12 09:33:24 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2888
2889 * README: Add note about SPARCworks cc release 3.0 and higher.
2890
2891 Add procfs support for Alpha OSF/1-2.x.
2892 * config/alpha/nm-osf.h: Renamed from nm-alpha.h, generic
2893 OSF/1 native support.
2894 * config/alpha/alpha-osf1.mh (NAT_FILE): Changed accordingly.
2895 (MUNCH_DEFINE): Removed.
2896 * config/alpha/alpha-osf2.mh, config/alpha/nm-osf2.h: New files
2897 for procfs support.
2898 * configure.in (alpha-dec-osf*): Use alpha-osf2.mh for OSF/1
2899 release 2.x and higher, else alpha-osf1.mh, as the procfs support
2900 in release 1.x is incomplete.
2901 * Makefile.in (ALLCONFIG): Add config/alpha/alpha-osf2.mh.
2902 * alpha-nat.c (supply_gregset, fill_gregset, supply_fpgregset,
2903 fill_fpgregset): New routines for procfs support.
2904 * inftarg.c (_initialize_inftarg): Don't add ptrace support
2905 if we have an optional procfs and /proc is accessible.
2906 * procfs.c: Include sys/fault.h and sys/syscall.h before
2907 including sys/procfs.h.
2908 (unconditionally_kill_inferior): If PROCFS_NEED_PIOCSSIG_FOR_KILL
2909 is defined, additionally perform a PIOCSSIG to really terminate
2910 the inferior.
2911 (create_procinfo): Always return a result.
2912 (create_procinfo, do_attach): Don't trace T_IFAULT faults if
2913 PROCFS_DONT_TRACE_IFAULT is defined.
2914 (procfs_init_inferior): Use START_INFERIOR_TRAPS_EXPECTED as
2915 argument to startup_inferior if it is defined.
2916 (proc_set_exec_trap): If PIOCSSPCACT is defined, use it instead
2917 of tracing exits from exec system calls. Needed for the user level
2918 loader under Alpha OSF/1.
2919 (do_detach): Clear any pending signal if we want to detach from
2920 a process without a signal.
2921 (set_proc_siginfo): If PROCFS_DONT_PIOCSSIG_CURSIG is defined,
2922 don't issue a PIOCSSIG if pr_cursig already contains the signal we
2923 intend to set.
2924 (info_proc_signals): If PROCFS_SIGPEND_OFFSET is defined, the
2925 pending signals are numbered from 1 instead of 0.
2926 (info_proc_mappings): Increase size of output format for addresses
2927 if BFD_HOST_64_BIT is defined.
2928 (procfs_stop): Renamed from child_stop.
2929 (_initialize_procfs): Don't add procfs support if we have an
2930 optional procfs and /proc is not accessible.
2931
2932 start-sanitize-gdbtk
2933 Wed Jan 11 17:06:55 1995 Stu Grossman (grossman@cygnus.com)
2934
2935 * gdbtk.tcl: Add button to control mixed source disassembly.
2936 Use text widgets in expr window. The give me more control over
2937 layout.
2938 Add auto-updating of exprs in expression window.
2939 Handle expressions out of scope a bit better.
2940 Make selected window pop up to the top when invoked via the
2941 menubar.
2942 Make copyright message have raised relief.
2943
2944 * gdbtk.c (gdbtk_init): Improve handling for errors in gdbtk.tcl
2945 during startup.
2946 end-sanitize-gdbtk
2947
2948 Wed Jan 11 17:53:26 1995 Rob Savoye <rob@darkstar.cygnus.com>
2949
2950 * array-rom.c: Add support for most commands.
2951
2952 * monitor.c: Add GDB remote protocol for the hybrid environment on
2953 the Array board.
2954
2955 Wed Jan 11 00:44:01 1995 Jeff Law (law@snake.cs.utah.edu)
2956
2957 * command.c (show_user_1): Use print_command_line to show a user
2958 defined command (including control structures).
2959
2960 * top.c (init_main): Change documentation for user defined
2961 commands to indicate they may accept up to ten arguments.
2962
2963 Tue Jan 10 16:22:41 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
2964
2965 * mips-tdep.c (mips_skip_prologue): Accept or as well as addu for
2966 `move $s8, $sp' instruction.
2967
2968 Sun Jan 8 12:45:34 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
2969
2970 * target.c, target.h (target_signal_from_command): New function.
2971 * infrun.c (handle_command, signals_info), infcmd.c
2972 (signal_command): Use it.
2973 * infrun.c, infcmd.c: Update docstrings for these commands.
2974
2975 * target.h (enum target_signal), target.c (signals), target.c
2976 (target_signal_from_host, target_signal_to_host): Add
2977 TARGET_SIGNAL_REALTIME_* and TARGET_SIGNAL_PRIO for lynx.
2978 * config/tm-lynx.h: Define signal numbers for realtime events.
2979
2980 Sat Jan 7 07:23:53 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
2981
2982 * dbxread.c (process_one_symbol): Handle N_FUN symbols
2983 for Sun acc 3.0 under SunOS4.
2984
2985 Changes to improve handling of runtime common symbols
2986 under SunOS4.
2987 * minsyms.c (get_symbol_leading_char): New routine to determine
2988 the leading symbol character for an objfile.
2989 (prim_record_minimal_symbol_and_info, install_minimal_symbols):
2990 Use it.
2991 * objfiles.h (rt_common_objfile): New global, points to objfile
2992 containing the runtime common minimal symbols.
2993 * objfiles.c (free_objfile): Mark rt_common_objfile as
2994 unallocated before freeing it.
2995 * solib.c (allocate_rt_common_objfile): New routine to allocate
2996 an objfile for the runtime common minimal symbols.
2997 (solib_add_common_symbols): Allocate an objfile for the runtime
2998 common symbols if necessary and put common symbols into it.
2999 Clean up code and comments.
3000 (solib_add, special_symbol_handling): Cleanup comments regarding
3001 runtime common symbols.
3002 * stabsread.c (scan_file_globals_1): New routine, contains
3003 old scan_file_globals code. Checks if there are any unresolved
3004 global symbols before starting the expensive minimal symbol table
3005 search.
3006 (scan_file_globals): Now calls scan_file_globals_1 for the passed
3007 objfile and eventually for the runtime common objfile. Complains
3008 about any unresolved global symbols and removes them from the
3009 global symbol chain to avoid dangling pointers into the symbol
3010 table if the symbol table is reread.
3011
3012 Thu Jan 5 17:38:29 1995 Stu Grossman (grossman@cygnus.com)
3013
3014 * Makefile.in (install_only uninstall): Indent for clarity.
3015
3016 * core.c (dis_asm_read_memory): Add call to
3017 dis_asm_read_memory_hook to provide alternate way for disassembler
3018 to read memory.
3019
3020 * defs.h: Protect from multiple inclusion. Add decl for
3021 dis_asm_read_memory_hook.
3022
3023 * top.c: Make window startup be the default.
3024 * Add dis_asm_read_memory_hook.
3025
3026 start-sanitize-gdbtk
3027 * gdbtk.c (finish_saving_output): Don't do anything if not saving
3028 output.
3029 * (breakpoint_notify): Don't send null filename to tcl.
3030 * (gdb_eval): New tcl command to eval an expression.
3031 * (gdb_disassemble): New tcl command to do disassembly. This
3032 allows tcl code to choose between exec file and target memeory,
3033 and can also do mixed source and assembly.
3034 * (gdbtk_init): Move reading of gdbtk.tcl to the end to make sure
3035 that more of the environment is set up. Also, create link between
3036 gdb and tcl vars disassemble{-_}from{-_}exec.
3037
3038 * gdbtk.tcl: New expression window support.
3039 * Make assembly window be 80 columns wide.
3040 * Use new disassembly method. Add menu items to select
3041 disassembly from exec file or target.
3042 * Change View menubar item to Options.
3043
3044 * Get rid of Stack, Breakpoints, Signals, and Variables Windows,
3045 since they don't exist yet.
3046
3047 * Pop up a copyright window on startup.
3048 end-sanitize-gdbtk
3049
3050 Thu Jan 5 01:16:40 1995 Jeff Law (law@snake.cs.utah.edu)
3051
3052 * stabsread.c (define_symbol): Handle `a' symbol type used for
3053 reference parameter passed in a register.
3054
3055 start-sanitize-gdbtk
3056 Wed Jan 4 19:49:10 1995 Stan Shebs <shebs@andros.cygnus.com>
3057
3058 * gdbtk.tcl (build_framework): Add standard commands menu, more
3059 windows to standard windows menu.
3060 (not_implemented_yet): Clarify message.
3061 end-sanitize-gdbtk
3062
3063 Wed Jan 4 12:27:29 1995 Kung Hsu <kung@mexican.cygnus.com>
3064
3065 * defs.h: move include tm.h up, so that the type LONGEST can
3066 also based on the target requirement to determine. In this case
3067 target mips64.
3068
3069 * remote-os9k.c (rombug_open): catch exception e in rombug.
3070 * remote-os9k.c (rombug_wait): print message before register display
3071 from rombug.
3072
3073 Wed Jan 4 09:18:27 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
3074
3075 * top.c (locate_arg): Call strchr not index.
3076
3077 Tue Jan 3 16:52:03 1995 Per Bothner <bothner@kalessin.cygnus.com>
3078
3079 * ch-exp.y (literal): Recognize NULL.
3080 (tuple): Parse simple unlabelled tuples.
3081 * eval.c (evaluate_subexp case OP_ARRAY): Use expect_type to
3082 evaluate brace-initializer-expressions depending on context.
3083 (evaluate_subexp case UNOP_CAST): Pass the target type as
3084 expected type when evaluating the expression.
3085
3086 * ch-typeprint.c (chill_type_print_base): Get names of PTR and
3087 BOOL from TYPE_NAME.
3088 * ch-valprint.c (chill_print_type_scalar): New function, to handle
3089 TYPE_CODE_RANGE better than print_type_scalar does.
3090 (chill_val_print_array_elements): Use above new function.
3091
3092 Mon Jan 2 15:02:51 1995 Stan Shebs <shebs@andros.cygnus.com>
3093
3094 * remote-udi.c (udi_load): Tell symbol_file_add that the
3095 program being loaded is the main program.
3096
3097 For older changes see ChangeLog-94
3098 \f
3099 Local Variables:
3100 mode: indented-text
3101 left-margin: 8
3102 fill-column: 74
3103 version-control: never
3104 End: