X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2FChangeLog;h=50503bfc3d3a738b44dfa15d4a5c7e16df6f2fb6;hb=c20c1bdf992a90db69c4abb73594b2ff58154ef6;hp=3f5f0554a7d15291187d54e45d88cef3e7b18193;hpb=d87d7b10af019be954f45adc271f5580e3b1ad86;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3f5f0554a7..50503bfc3d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,171 @@ +Fri Feb 25 09:41:11 1994 Jim Kingdon (kingdon@deneb.cygnus.com) + + * remote.c, remote-mon.c, remote-utils.c, remote-utils.h, + target.h, remote-es.c, remote-nindy.c: Don't set baud rate if + baud_rate is -1. Remove sr_get_baud_rate and sr_set_baud_rate; + just use the global variable itself. When printing baud rate, + don't print a baud rate if baud_rate is -1. + + * coffread.c (read_coff_symtab): Pass mst_file_* to + record_minimal_symbol for C_STAT symbols. Put C_EXT and C_STAT + symbols in the minimal symbols regardless of SDB_TYPE. + +Thu Feb 24 08:30:33 1994 Jim Kingdon (kingdon@deneb.cygnus.com) + + * breakpoint.h (enum bptype): New type bp_through_sigtramp. + (bpstat_what_main_action): New code BPSTAT_WHAT_THROUGH_SIGTRAMP. + * breakpoint.c (bpstat_what): Return BPSTAT_WHAT_THROUGH_SIGTRAMP + if we hit a bp_through_sigtramp breakpoint. Remove kludge which + ignored bs->stop for a bp_step_resume breakpoint. + * infrun.c (wait_for_inferior): Make a through_sigtramp_breakpoint + which performs one (the check_sigtramp2 one) of the functions + which had been handled by the step_resume_breakpoint. For each + use of the step_resume_breakpoint, make it still use the + step_resume_breakpoint, use the through_sigtramp_breakpoint, or + operate on both. + Deal with BPSTAT_WHAT_THROUGH_SIGTRAMP return from bpstat_what. + When setting the frame address of the step resume breakpoint, set + it to the address for frame *before* the call instruction is + executed, not after. + + * mips-tdep.c (mips_print_register): Print integers using + print_scalar_formatted rather than duplicating all the + CC_HAS_LONG_LONG and so on. + (mips_push_dummy_frame): Use read_register_gen rather than using + read_register and then putting it back in target format with + store_unsigned_integer. If registers are more than 4 bytes, give + an error rather than have some registers overwrite other + registers. + #if 0 unused include of opcode/mips.h. + + * symfile.h: Don't declare arguments for coff_getfilename. + + * defs.h: Revert Kung change regarding FORCE_LONG_LONG. + +Thu Feb 24 08:06:52 1994 Jeffrey A. Law (law@snake.cs.utah.edu) + + * configure.in (hppa*-*-osf*): New configuration. + * config/pa/hppaosf.mt: New target makefile fragment. + * config/pa/tm-hppao.h: New target include file. + +Thu Feb 24 04:29:19 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * exec.c (print_section_info): Print entry point for exec_bfd only. + * ser-unix.c (wait_for): Fix typo in HAVE_TERMIO case. + * dwarfread.c: Remove second inclusion of , which + causes problems if has no multiple inclusion protection. + +Wed Feb 23 16:28:55 1994 Jeffrey A. Law (law@cygnus.com) + + * tm-hppa.h (CALL_DUMMY): Add two NOP instructions to the end of + the call dummy to avoid kernel bugs in HPUX, BSD, and OSF1. + (CALL_DUMMY_LENGTH): Changed accordingly. + +Wed Feb 23 16:21:25 1994 Stu Grossman (grossman at cygnus.com) + + * sparc-stub.c (trap_low): Make trap handler work for arbitrary + numbers of register windows. + + * sparclite/hello.c: Add factorial function for testing. + * salib.c: Use macros instead of constants for I/O addresses to + make 931 support easier. + * sparclite.h: Change constraint for LOC to "rJ" to force use of + register in sta/lda instructions. + +Wed Feb 23 10:39:18 1994 Jim Kingdon (kingdon@rtl.cygnus.com) + + * dbxread.c (process_one_symbol): Set + block_address_function_relative for COFF like we do for ELF and SOM. + +Sat Feb 19 03:17:32 1994 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * mdebugread.c (new_psymtab): Pass in section_offsets and set + them in the pst. + * mdebugread.c (handle_psymbol_enumerators): New function to enter + the enumerators of an ecoff enum into the partial symbol table. + * mdebugread.c (parse_partial_symbols): Call it. + * symfile.c (reread_symbols): Initialize objfile->*_psymbols.next. + * symmisc.c (dump_psymtab): Fix typo, clean up output of section + offsets. Cast psymtab->read_symtab to PTR before passing it to + gdb_print_address. + * i386-tdep.c (i386_skip_prologue): Skip over instructions that + set up the global offset table pointer in pic compiled code. + * config/mips/tm-mips.h (FIX_CALL_DUMMY): For big endian targets, + error() on TYPE_CODE_FLT arguments whose size is greater than 8, + swap all other TYPE_CODE_FLT arguments as mips_push_arguments + ensures that floats are promoted to doubles before they are pushed + on the stack. + +Fri Feb 18 23:12:59 1994 Stu Grossman (grossman at cygnus.com) + + * sparclite/Makefile.in, sparclite/salib.c, sparclite/sparclite.h: + Fixup cache_on and flush_i_cache so that they work for both the + 930 and 932 processors. Rewrite most low level funcs (uart + access & cache stuff) to use new ASI access macros in sparclite.h. + Also make it easy to access second serial port. + +Fri Feb 18 22:17:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + * hp300ux-nat.c: Don't incloude , , or + ; not needed. + +Fri Feb 18 08:26:29 1994 Jim Kingdon (kingdon@lioth.cygnus.com) + + * stack.c (print_frame_info): In "pathological" case, don't + distrust the line number information. + +Fri Feb 18 16:51:14 1994 Kung Hsu (kung@mexican.cygnus.com) + + * mips-tdep.c (mips_print_register): handle 64 bits register. + * valprint.c (print_longest): fix a bug in printing 64 bits value. + +Fri Feb 18 08:26:29 1994 Jim Kingdon (kingdon@lioth.cygnus.com) + + * Version 4.12.2. + + * Makefile.in (install): Do the sed for program_transform_name + ourselves instead of worrying about INSTALL_XFORM. This enables + users to override INSTALL_PROGRAM in the standard way. + + * Makefile.in (c-exp.tab.o, ch-exp.tab.o, m2-exp.tab.o): Don't + depend on Makefile.in. + + * defs.h, valprint.c: Make longest_to_int a function not a macro. + Only test against INT_MIN if a LONGEST is bigger than an int. + + * README: Change GhostScript to Ghostscript. + +Fri Feb 18 07:30:55 1994 Jim Kingdon (kingdon@cygnus.com) + + * config/rs6000/{tm-rs6000lynx.h,nm-rs6000lynx.h,xm-rs6000lynx.h}: + Rename to tm-rs6000ly.h, nm-rs6000ly.h, xm-rs6000ly.h for 14 + character file names. + * Makefile.in (ALLPARAM): Add these files. + + * config/mips/littlemips64.mt: Rename to mipsel64.mt for 14 + character file names. + * Makefile.in: Add Kung's new mips64 files. + +Thu Feb 17 17:25:47 1994 Kung Hsu (kung@mexican.cygnus.com) + + * configure.in: add mips64-*-elf, mips64-*-ecoff, mips64el-*-elf, + mips64el-*-ecoff and mips64-big-*. + * defs.h: get rid of FORCE_LONG_LONG. + * mips-tdep.c (mips_find_saved_regs): add sd and sdc1 instruction + parsing. Change register size to be MIPS_REGSIZE. + +Thu Feb 17 09:30:22 1994 David J. Mackenzie (djm@thepub.cygnus.com) + + * corelow.c, exec.c, irix5-nat.c, mipsread.c, objfiles.c, + osfsolib.c, rs6000-nat.c, solib.c, symfile.c, utils.c, + xcoffexec.c: Use bfd_get_error and bfd_set_error and new error names. + +Fri Feb 11 21:47:24 1994 Steve Chamberlain (sac@sphagnum.cygnus.com) + + * remote-hms.c (readchar, hms_open, hms_fetch_register): Made more robust. + (remove_commands, add_commands): Add/remove hms-drain when target + is connected. + Fri Feb 11 16:11:38 1994 Stu Grossman (grossman at cygnus.com) * configure.in: Add Lynx/rs6000 support.