X-Git-Url: https://repo.jachan.dev/binutils.git/blobdiff_plain/e7e02420a7c0b676a28709af4962812ecee36823..d113e6b28e88d16de8cb23f5f6f73e6cb8981042:/gdb/ChangeLog diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 26d98bc49f..3f5f4f234a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,609 @@ +Fri Sep 24 17:25:41 1993 Stu Grossman (grossman at cygnus.com) + + * corelow.c: Add multi thread/process support for core files with + .reg/XXX pseudo-sections. + * i386lynx-nat.c thread.h thread.c: Remove unnecessary core file + support. + +Thu Sep 23 10:49:37 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * remote-udi.c (download): Skip zero length sections. + + * valops.c (search_struct_method, value_struct_elt): + Use (value)-1, not -1, for error. + + * infcmd.c (step_1), infrun.c (wait_for_inferior): Add comments + about SHIFT_INST_REGS. + + * exec.c (exec_file_command): Set text_end based on all code readonly + sections, not just ".text". + + * defs.h, infcmd.c, config/z8k/tm-z8k.h, config/m88k/tm-m88k.h, + config/sh/tm-sh.h, config/h8300/tm-h8300.h, config/h8500/tm-h8500.h, + z8k-tdep.c: Remove all references to ADDR_BITS_SET. + * config/m88k/tm-m88k.h: Define TARGET_WRITE_PC. + + * config/m88k/tm-m88k.h, m88k-tdep.c: Add call function stuff. + +Thu Sep 23 00:13:06 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Define as noop as + the pushing of the struct return address is already handled in + mips_push_arguments. + * mips-tdep.c (reinit_frame_cache_sfunc): Fix typo in prototype + declaration. + * mipsread.c (parse_symbol, parse_type, upgrade_type): Add more + sanity checks for corrupt symbol entries to avoid core dumps + reported by benson@odi.com. Obviously Ultrix 4.3A cc now has + the same problems as the OSF/1 alpha cc. + * mipsread.c (parse_lines): Iterate over the range of the compressed + line number entries, the old iteration sometimes failed to stop + and wrote past the end of the LINETABLE. Add sanity check to avoid + the same problem in case the line number info is corrupt. + * mipsread.c (parse_procedure): Adjust pdr for alpha __sigtramp. + * mipsread.c (parse_external, parse_partial_symbols): Ignore stNil + symbols that are produced for statics in .o files and stLocal symbols + that are produced for every section in OSF/1 dynamically linked + executables. + * mipsread.c (psymtab_to_symtab_1): Put out `undefined symbols' + warning only under `verbose on' as there are many undefined symbols + in a dynamically linked executable. + +Wed Sep 22 10:28:06 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * config/i960/nindy960.mt: Don't define REMOTE_O; REMOTE_O was + intended only for VxWorks. Remove dcache.o from TDEPFILES now + that we pick it up from the default REMOTE_O. + + * breakpoint.c (bpstat_what): Initialize retval.call_dummy and + retval.step_resume. + + * mips-tdep.c (mips_frame_chain): If frame size zero, return zero. + * rs6000-tdep.c: Add comment about framelessness. + + * remote-nindy.c: Declare ninMemGet and ninMemPut. + +Wed Sep 22 08:02:57 1993 Stu Grossman (grossman at cygnus.com) + + * Makefile.in: Add i386lynx-tdep to the right places. + (TARDIRS): Add gdbserver. + + * exec.c (print_section_info): Print entry point. + * i386lynx-nat.c (i386lynx_saved_pc_after_call): Move into + i386lynx-tdep.c. Add core file support. + * i386lynx-tdep.c: New module for Lynx/386 target dependant code. + * maint.c: Add `maint info sections' command to print info about all + sections that BFD knows about for exec and core files. + * sparc-tdep.c (sparc_push_dummy_frame): Update stack pointer + before putting frame on the stack. Consolidate writes to reduce + traffic for remote debugging. + * config/i386/i386lynx.mh (NATDEPFILES): Remove exec.o. + * config/i386/i386lynx.mt (TDEPFILES): Add exec.o, i386lynx-tdep.o. + * config/i386/nm-i386lynx.h: Add target_pid_to_str(). + * config/i386/tm-i386lynx.h: Remove target_pid_to_str(). + * sparclite/Makefile.in: Add deps to keep Sun make happy. + +Tue Sep 21 17:48:14 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * breakpoint.h, breakpoint.c (bpstat_stop_status): Add new argument + not_a_breakpoint. + * infrun.c (wait_for_inferior): Pass it. Also consolidate the + test of whether we are stepping into a CURRENTLY_STEPPING macro. + +Tue Sep 21 17:22:34 1993 K. Richard Pixley (rich@sendai.cygnus.com) + + * breakpoint.c (bpstat_stop_status), + infcmd.c (step_1), + infrun.c (wait_for_inferior): collapse SHIFT_INST_REGS ifdef + and insert macro. + + * m88k-tdep.c: include ieee-float.h. new global target_is_m88110. + new const struct ext_format_m88110 for float format. + (pic_prologue_code): add braces. + (next_insn): remove unused variable buf. + (frame_find_saved_regs): remove unused variables next_addr, + saved_regs, regnum. + (frame_locals_address): remove unused variables frame, ap. + (frame_args_address): remove unused variables frame, ap. + (push_parameters): add some breaks and a default case. + + * remote-bug.c: remove redundant includes of value.h, target.h, + serial.h. + (bug_open): corrected typo, sr_multi_scan -> gr_multi_scan. + (bug_fetch_register): special case sfip register for m88110. + remove flag bit masking of pc registers. This should be handled + by the ADDR_BITS_* macros. + (bug_store_register): special case sfip register for m88110. + Corrected sprint format for extended registers. + + * config/m88k/tm-m88k.h: white space and comment changes. include + ieee-float.h. expanded to cope with m88110 extended registers. + (R0_REGNUM, XFP_REGNUM, X0_REGNUM): new macros. + (SHIFT_INST_REGS): becomes a real macro. + +Tue Sep 21 17:48:14 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * breakpoint.c (breakpoint_1): Support bp_call_dummy. + +Tue Sep 21 17:06:19 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + * elfread.c (record_minimal_symbol_and_info): Guess the section to + use from the type. + * objfiles.c: Include gdb-stabs.h for SECT_* macros. + (objfile_relocate): Relocate textlow and texthigh in psymtabs. + Relocate partial symbols. Check that minimal SYMBOL_SECTION is + nonnegative before using it. + * symtab.h: Adjust section field comment. + + * remote.c (interrupt_query): New function. + (remote_interrupt_twice): Call interrupt_query. + (putpkt, getpkt): If quit_flag is set, call interrupt_query. + (remote_wait): Don't bother with objfile_relocate if the addresses + haven't changed. + (remote_fetch_registers): If we see a packet that doesn't start + with a hex character, fetch a new one. + +Tue Sep 21 11:44:00 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * remote.c, remote-utils.c: Use SERIAL_FLUSH_INPUT after opening it. + + * printcmd.c (print_scalar_formatted): When truncating value we are + going to print as unsigned, handle it generally for any length + less than sizeof (LONGEST), rather than special-casing sizeof (char), + sizeof (short), and sizeof (long). Clarify comment on what this + is for. + + * symfile.c (deduce_language_from_filename): Accept .cxx for C++. + * buildsym.c (start_subfile): Use deduce_language_from_filename + rather than checking for .C or .cc ourself. + +Mon Sep 20 14:53:11 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * defs.h: Declare argument of re_comp as const char *. + + * remote.c, remote-mips.c: Use sr_get_debug not remote_debug. + + * README: Say using bfd from another release doesn't generally work. + +Sat Sep 18 10:13:18 1993 Jim Kingdon (kingdon@poseidon.cygnus.com) + + * mipsread.c (parse_type): Don't complain() if we guessed struct + and it was a union, or vice versa. + + * defs.h (make_cleanup): Change PTR to void * when inside PARAMS. + + Some of the following is in #ifdef CALL_DUMMY_BREAKPOINT_OFFSET. + * breakpoint.h (enum bptype): Add bp_call_dummy. + (struct bpstat_what): Add call_dummy field. + * infrun.c (wait_for_inferior): Deal with it. + * breakpoint.c (bpstat_what): Deal with call dummy breakpoint. + * infcmd.c (run_stack_dummy): Set the call dummy breakpoint. + * config/sparc/tm-sparc.h: Define CALL_DUMMY_BREAKPOINT_OFFSET. + + * remote-sim.h: New file. + * remote-sim.c: Add remote debug feature. Rename stuff to distinguish + interface to simulator from gdb-specific stuff. Other changes. +start-sanitize-v9 + * remote-sp64sim.c: Renamed to remote-sim.c. + Use sr_get_debug instead of our own sim_verbose/simif_snoop. + Use gnutarget in call to bfd_openr. + Rename simif_* to gdbsim_*. + * config/sparc/sp64sim.mt: Change remote-sp64sim.c to remote-sim.c. +end-sanitize-v9 + +Fri Sep 17 04:41:17 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * findvar.c (extract_signed_integer): Cast *p to LONGEST before doing + the xor and subtract. Otherwise it will not sign extend if the type + of LONGEST is larger than int. + * cp-valprint.c (cp_print_class_method): Inhibit core dump if + domain is an undefined cross reference. + * valops.c (call_function_by_hand): Set real_pc to correct + value if CALL_DUMMY_LOCATION != ON_STACK. + +Thu Sep 16 20:37:06 1993 Jim Kingdon (kingdon@cirdan.cygnus.com) + + * config/a29k/tm-a29k.h (FRAME_CHAIN): If rsize is zero, return zero. + +Thu Sep 16 13:16:22 1993 Stu Grossman (grossman at cygnus.com) + + * infrun.c (wait_for_inferior): Allow user to single step within + a stack dummy. + +Thu Sep 16 12:34:01 1993 Jim Kingdon (kingdon@cirdan.cygnus.com) + + * dbxread.c (copy_pending): Deal with END NULL. + (process_one_symbol): Add comments about what common_block NULL means. + +Wed Sep 15 14:50:26 1993 Jim Kingdon (kingdon@cirdan.cygnus.com) + + * remote-udi.c, remote-adapt.c, remote-mm.c: Move processor_type + to tm-a29k.h and a29k-tdep.c and make it an enum. + * a29k-tdep.c (a29k_get_processor_type): New function. Fix many + aspects of how we detected the processor type. + * remote-udi.c, remote-adapt.c, remote-mm.c (*_open): Call it + rather than figuring out the type ourselves. + +Thu Sep 16 12:12:59 1993 Stu Grossman (grossman at cygnus.com) + + * sparc-stub.c (_trap_low): Do restore/save sequence after + setting sp to ensure that we load the previous window from the + right place on the stack. + +Thu Sep 16 00:36:32 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * mipsread.c: Many changes for alpha ecoff format: + Correct sizeof(int) == sizeof(long) assumptions. + Replace stParsed hack by putting the parsed types on the pending chain. + Replace mips specific ecoff mapping by ECOFF_REG_TO_REGNUM macro, + provide default for cross debugging. + Swapping the symbol back is no longer needed as the symbol is not + modified anymore. + Add new alpha basic types, handle btTypedef, handle stStaticProc + external symbols . + Update and clean up cross_ref for alpha cc cross ref variations. + Allocate types on the type_obstack to inhibit storage leaks. + * config/mips/tm-mips.h (ECOFF_REG_TO_REGNUM): Define. + * gdbtypes.c (recursive_dump_type): Dump TYPE_TAG_NAME if it is set. + +Tue Sep 14 09:12:17 1993 Jim Kingdon (kingdon@cirdan.cygnus.com) + + * stabsread.c (read_type): Process "s" (size) type attribute. + If type is defined to another type, copy the type. + +Tue Sep 14 18:37:17 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + * config/i386/i386v4.mh (NATDEPFILES): Move exec.o from here... + * config/i386/i386v4.mt (TDEPFILES): ...to here. + +Tue Sep 14 12:21:49 1993 K. Richard Pixley (rich@sendai.cygnus.com) + + * Makefile.in (remote_utils_h): add serial.h and target.h. + (main.o, remote-es.o, remote-nindy.o, remote.o): remove target.h + (already in remote_utils_h). + (remote-utils.o): new rule. + + * remote-utils.h: include serial.h. + + * serial.h: ifdef protect from multiple inclusion. + + * remote.c, remote-nindy.c, remote-mon.c, remote-es.c: include + remote-utils.h. + + * remote.c (remote_open), remote-nindy.c (nindy_open, + nindy_files_info), remote-mon.c (general_open), remote-es.c + (es1800_open): use remote-utils facilities for baud rate. + +Tue Sep 14 09:12:17 1993 Jim Kingdon (kingdon@cirdan.cygnus.com) + + * paread.c, coffread.c, elfread.c, dwarfread.c: + Include and before libbfd.h. + + * paread.c: Define BYTES_IN_WORD before including aout/aout64.h. + + * Makefile.in (a29k-tdep.o): Depend on $(defs_h). + * config/a29k/tm-a29k.h (SAVED_PC_AFTER_CALL): Use gr122 not lr0 + if this is a transparent procedure. + +Mon Sep 13 16:06:43 1993 Jim Kingdon (kingdon@cirdan.cygnus.com) + + * remote.c: Define remote_debug to 0 and #if 0 baud_rate. Temporary + hack so this file compiles again. + + * remote-utils.c (gr_multi_scan): Cast return value from alloca. + (gr_multi_scan): #if 0 never-reached return(-1). + + * remote-udi.c (udi_wait): Return inferior_pid not 0. + +Mon Sep 13 14:14:35 1993 K. Richard Pixley (rich@sendai.cygnus.com) + + Collect some remote things into remote-utils. + * remote-utils.[ch]: new files of functions collected from several + different remote targets. + * Makefile.in (REMOTE_O): add remote-utils.o. + (dcache_h, remote_utils_h): new macros. + (HFILES): add $(remote_utils_h). + (ALLDEPFILES): add $(remote_utils_h). + (dcache.o): new rule. + (main.o, remote-bug.o): also depend on $(remote_utils_h). + * target.h (remote_debug): extern moved to remote-utils.h. + * target.c (find_default_run_target, find_core_target): initialize + runable. + (remote_debug): moved to remote-utils.c. + (_initialize_targets): move declaration of user variable + remotedebug to remote-utils.c. + * remote-bug.c: include remote-utils.h rather than dcache.h. + (bug_close, bug_write, bug_write_cr, desc, bug_dcache, timeout, + dev_name, check_open, is_open, readchar, readchar_nofail, + pollchar, expect, expect_prompt, get_hex_digit, get_hex_byte, + get_hex_word, bug_kill, bug_detach, bug_create_inferior, + multi-scan, bug_prepare_to_store, bug_fetch_word, + bug_store_word, bug_files_info, bug_mourn, bug_com, bug_device, + bug_speed): removed and replaced with facilities from + remote-utils.[ch]. + (bug_read_inferior_memory): renamed to bug_read_memory. + (bug_write_inferior_memory): renamed to bug_write_memory. + (bug_xfer_inferior_memory): renamed to bug_xfer_memory. + (get_word): comment out this unused function for now. + (bug_settings, cpu_check_strings): new statics. + (bug_open): rewritten to use gr_open. + (_initialize_remote_bug): remove declarations of commands bug, + device, speed. + * main.c: include remote-utils.h. + (baud_rate): removed to remote-utils.c. + (main): handle baud rate settings using new facilities from + remote-utils. + * defs.h (baud_rate): removed extern. + + m88110 support via bug-197 monitor. + * remote-bug.c (get_reg_name, bug_fetch_register, + bug_store_register): added m88110 extended register support. + (wait_strings): added bug-197 prompt. + (bug_wait): cope with bug-197 prompt. + (start_load): cope with either bug-197 or bug-187 prompt. + +Mon Sep 13 12:53:09 1993 Jim Kingdon (kingdon@cirdan.cygnus.com) + + * inferior.h, infrun.c, thread.c, infcmd.c: Remove all uses of + pc_changed. If it was ever set to a non-zero value, it was before + GDB 2.8. It doesn't seem to have any useful function. + + * defs.h: Don't define NORETURN (see comment). + +Sat Sep 11 10:46:09 1993 Jim Kingdon (kingdon@poseidon.cygnus.com) + + * m88k-nat.c (fill_gregset): Set r31 and sfip. + +Thu Sep 9 10:18:29 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * remote-udi.c (udi_wait, case UDIStdinNeeded): Use a loop calling + getchar() (terminated only on '\n') instead of scanf. Send the + '\n' which terminates it to the remote system. + + More gcc lint: + * exec.c (ignore): Return 0. + * stack.c (return_command): Fetch lazy value directly, not via + VALUE_CONTENTS, to avoid "value computed is not used". + * inflow.c (new_tty): Move osigttou inside #if. + + * remote.c (remote_fetch_registers): If remote reply is short, just + note that fact and keep going (reading extra registers as all bits 0). + (remote_store_registers): Send number of registers that were found + by remote_fetch_registers. + * m68k-tdep.c, config/m68k/tm-m68k.h, config/m68k/tm-*.h: Remove + HAVE_68881. Define CANNOT_STORE_REGISTER if ptrace() can't write + floating registers. + * config/m68k/{tm-m68k-nofp.h,m68k-nofp.mt,tm-m68k-fp.h,m68k-fp.mt}: + Remove, replaced by {tm-m68k-em.h,m68k-em.mt}. + * Makefile.in, configure.in: Change accordingly. + +Thu Sep 9 04:59:03 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * mipsread.c (cross_ref): Allow SGI extended symbol types as cross + reference targets. + * symmisc.c (print_symbol): Use TYPE_TAG_NAME not TYPE_NAME to avoid + printing of identities. + +Wed Sep 8 19:18:27 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * breakpoint.c (breakpoint_1): Deal with step resume breakpoint. + +Wed Sep 8 13:01:10 1993 K. Richard Pixley (rich@cygnus.com) + + Gcc lint. + * config/m88k/tm-m88k.h (frame_find_saved_regs): prototype. + * config/h8300/tm-h8300.h (NUM_REGS): rewrite to avoid nested comment. + * blockframe.c (get_prev_frame_info): initialize address. + * breakpoint.c (bpstat_copy): initialize retval. + (bpstat_stop_status): initialize value_is_zero. + (bpstat_what): initialize bs_class. + (breakpoint_1, mention): add do-nothing case for bp_step_resume. + (break_command_1): initialize cond_end, addr_end, & + canonical_strings_chain. + (enable_breakpoint): initialize save_selected_frame. + * buildsym.c (end_symtab): initialize symtab & linetablesize. + * c-exp.y (parse_number): initialize i. + * c-typeprint.c (c_type_print_varspec_prefix): include + TYPE_CODE_BITSTRING in switch statements and do nothing. + * c-valprint.c (c_val_print): removed unused variable c. + * ch-valprint.c (chill_val_print): removed unused variable eltlen. + * cp-valprint.c (cp_print_class_method): initialize f & j. + * eval.c (evaluate_subexp): initialize pc2, arg1, arg2. + * expprint.c (print_subexp): initialize myprec, assoc, & tempstr. + * findvar.c (value_from_register): initialize first_addr. + * gdbtypes.c (lookup_struct_elt_type): localize use of temporary + variable typename. + * infcmd.c (run_stack_dummy): return zero rather than simple + return. + * infrun.c (wait_for_inferior): initialize stop_sp, prologue_pc. + remove symtab, appears unused. + (restore_selected_frame): return 1. + * mipsread.c (psymtab_to_symtab_1): initialize first_off. + (fixup_sigtramp): initialize b0. + * printcmd.c (do_examine): initialize val_type. + (print_frame_args): initialize b. + * ser-tcp.c (tcp_restore): comment out declaration. Appears + unused. + * ser-unix.c (hardwire_restore): comment out declaration. Appears + unused. + (hardwire_send_break): moved variable status into ifdef + HAVE_SGTTY. + (wait_for): moved variable numfds into ifdef HAVE_SGTTY. + * serial.h: comment change only. + * stabsread.c (rs6000_builtin_type): initialize rettype. + (read_range_type): initialize nbits. + * stack.c (print_frame_info): remove unused variable numargs. + (parse_frame_specification): remove unused variables arg1, arg2, + arg3. + (return_command): initialize return_value. + * symfile.c (cashier_psymtab): initialize pprev. + * symtab.c (find_pc_psymbol): initialize best. + (lookup_symbol): initialize s. + (make_symbol_completion_list): initialize quote_pos. + * thread.c: include command.h. + (thread_info): static declaration removed; unused. + (info_threads_command): fix == vs = typo. + * typeprint.c (whatis_exp): initialize old_chain. + * valprint.c (val_print_string): remove unused variable + first_addr_err. Initialize old_chain. + (_initialize_valprint): white space comment change. + * values.c (show_values): rewrite if statement to avoid empty + body. + (vb_match): remove unused variable fieldtype_target_type. + +Wed Sep 8 10:21:33 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * Makefile.in (mipsread.o): Depend on $(bfd_h). + +Tue Sep 7 13:06:44 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * gdbserver/Makefile.in (TAGS): config files are in + $(srcdir)/../config, not $(srcdir)/config. + + * config/pa/tm-hppa.h: Declare target_read_pc and target_write_pc. + (STORE_RETURN_VALUE): Pass the correct offset of the return + register to write_register_bytes. + * hppa-tdep.c: Use target_write_pc if PCOQ_TAIL_REGNUM was not saved. + +Tue Sep 7 14:30:34 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + * remote.c (remote_wait): Don't call error. Instead, call warning + inside a loop. User can ^C to get out. + + * config/m68k/tm-m68k.h (FIX_CALL_DUMMY): Changed name of swapping + routine to match BFD name change. + * config/z8k/tm-z8k.h (FIX_CALL_DUMMY): Likewise. + +Mon Sep 6 15:01:57 1993 Jeffrey Wheat (cassidy@cygnus.com) + + * elfread.c: change elf32_symbol_type to elf_symbol_type + +Mon Sep 6 15:43:25 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + * remote.c (remote_wait): Added 'W' and 'N' responses. + +Fri Sep 3 08:57:10 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * main.c, utils.c: Add comments about immediate_quit. + + * elfread.c (elf_symtab_read): Don't add symbols starting with ".L" + to minimal symbols. + + * target.c (pop_target): Don't try to deal with the stack becoming + empty. Shouldn't happen and the code that tried was broken. + + * dcache.c: Cast return value from xmalloc. + + * remote.c: Move setting of immediate_quit from remote_open to + remote_start_dummy and set it back to zero when done. + +Thu Sep 2 00:07:36 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * m88k-tdep.c: Remove a bunch of unused #includes. + + * language.h: Add comment about current_language. + + * mips-tdep.c (_initialize_mips_tdep): Change heuristic-fence-post + from var_uinteger to var_zinteger. + + * configure.in: Fix typo (delta88r4 -> delta88v4). + + * config/m88k/xm-delta88.h: Don't include sys/siginfo.h. It was + to make this work on SVR4 before SVR4 had its own configuration, + and it breaks SVR3. + + * config/m88k/tm-delta88v4.h: Define FRAME_CHAIN_VALID_ALTERNATE. + + * config/m88k/delta88v4.h (NATDEPFILES): Remove infptrace.o inftarg.o. + + * config/m88k/xm-dgux.h: Renamed from config/m88k/xm-m88k.h. + * config/m88k/m88k.mh: Use xm-dgux.h. + * config/m88k/xm-m88k.h: New file, with HOST_BYTE_ORDER, + MAKEVA_END and MAKEVA_ARG. + * config/m88k/xm-*.h: Include m88k/xm-m88k.h. + * printcmd.c: Remove __INT_VARARGS_H code; now in xm-m88k.h. + +Wed Sep 1 19:31:28 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * remote-udi.c (udi_wait): Call `warning' not `error'. + + * symtab.c (COMPLETION_LIST_ADD_SYMBOL): If the symbol has a + demangling, don't put the mangled form in the completion list. + + * symtab.c, symfile.c, c-exp.y, ch-exp.y, m2-exp.y, buildsym.c, + symfile.h, stabsread.c, minsyms.c, solib.c, nlmread.c, dwarfread.c + partial-stab.h, symmisc.c, gdbtypes.c: Lint. Remove (or put + inside #if) unused variables and labels. Fix unclosed comment. + Deal with enumeration values unhandled in switch statements. Make + sure non-void functions return values. Include appropriate + headers. + * dbxread.c (elfstab_build_psymtabs): Don't check for unsigned + value < 0. + +Wed Sep 1 14:36:00 1993 K. Richard Pixley (rich@sendai.cygnus.com) + + * i960-tdep.c, ns32k-pinsn.c, remote-adapt.c, xcoffread.c: + index -> strchr. + +Wed Sep 1 11:35:49 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * remote.c: Add comment explaining why dcache is disabled. + (remote_fetch_word, remote_store_word): Make static and #if 0. + They are not called from anywhere. + +Wed Sep 1 14:41:28 1993 K. Richard Pixley (rich@sendai.cygnus.com) + + * arm-tdep.c, convex-tdep.c, convex-xdep.c, dbxread.c, + h8300-tdep.c, h8500-tdep.c, i960-pinsn.c, i960-tdep.c, + infptrace.c, m88k-tdep.c, mips-tdep.c, regex.c, remote-vx.c, + rs6000-tdep.c, xcoffexec.c, xcoffread.c, z8k-tdep.c, + config/arm/tm-arm.h, config/convex/tm-convex.h, + config/gould/tm-np1.h, config/gould/tm-pn.h, + config/m68k/tm-isi.h, config/ns32k/tm-umax.h, + config/pa/tm-hppa.h, config/pyr/tm-pyr.h, + config/rs6000/tm-rs6000.h, config/tahoe/tm-tahoe.h, + config/vax/tm-vax.h: bzero -> memset. + + * regex.c: bcmp -> memcmp. + +Wed Sep 1 11:35:49 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * symtab.c (find_pc_line, find_line_common), + symtab.h (struct linetable), xcoffread.c (arrange_linetable): + Revise comments re linetable sorting. + * buildsym.c (compare_line_numbers): Sort by pc, not by line. + * coffread.c: Tell end_symtab to sort the line table. + + * coffread.c: Re-work a lot of the coff-specific stuff to use stuff + in buildsym.c. This includes coff_finish_block, coff_context_stack, + coff_local_symbols, coff_file_symbols, coff_global_symbols, + coff_end_symtab and coff_add_symbol_to_list. + (read_enum_type): Deal with it now that we have a "struct pending" + not a "struct coff_pending". + + * buildsym.c (end_symtab): Don't realloc subfile->linetable. + +Wed Sep 1 13:12:43 1993 K. Richard Pixley (rich@sendai.cygnus.com) + + * a68v-nat.c, altos-xdep.c, convex-tdep.c, convex-xdep.c, + findvar.c, hppab-nat.c, hppah-nat.c, i386mach-nat.c, + irix4-nat.c, m68k-tdep.c, m88k-tdep.c, mipsread.c, regex.c, + remote-bug.c, remote-hms.c, rs6000-nat.c, rs6000-tdep.c, + sparc-nat.c, stabsread.c, sun3-nat.c, sun386-nat.c, symfile.c, + umax-xdep.c, xcoffread.c, 29k-share/udi/udip2soc.c, + 29k-share/udi/udr.c, config/a29k/tm-a29k.h, config/arm/tm-arm.h, + config/convex/tm-convex.h, config/gould/tm-np1.h, + config/gould/tm-pn.h, config/h8300/tm-h8300.h, + config/h8500/tm-h8500.h, config/i386/tm-i386aix.h, + config/i386/tm-sun386.h, config/i386/tm-symmetry.h, + config/i960/tm-i960.h, config/m68k/tm-news.h, + config/m88k/tm-m88k.h, config/mips/tm-mips.h, + config/ns32k/tm-merlin.h, config/ns32k/tm-umax.h, + config/pa/tm-hppa.h, config/pyr/tm-pyr.h, + config/rs6000/tm-rs6000.h, config/sh/tm-sh.h, + config/tahoe/tm-tahoe.h, config/vax/tm-vax.h, + config/z8k/tm-z8k.h, nindy-share/nindy.c: bcopy -> memcpy. + Wed Sep 1 05:05:53 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) * mipsread.c (parse_partial_symbols): Use language from FDR if it @@ -31,6 +637,12 @@ Tue Aug 31 15:01:27 1993 K. Richard Pixley (rich@sendai.cygnus.com) * Makefile.in (REMOTE_O): add dcache.o. * config/m88k/m88k.mt (TDEPFILES): removed dcache.o. + Break dcache code out of remote-nindy.c. + * remote-nindy.c: removed dcache code. Changed callers to use new + conventions. include dcache.h. + (nindy_dcache): new static variable. + * config/i960/nindy960.mt (TDEPFILES): added dcache.o. + Break dcache code out of remote-bug.c into dcache.[hc]. * Makefile.in (dcache_h): new macro. (HFILES): added $(dcache_h).