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