* gdb.t00/help.exp: Replace most of docstrings for "tbreak",
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 3ed27e1b544600782ea59d22a6e2c2242cfadc50..83d6cb3f7f98af21d0571ff700b403c105738513 100644 (file)
@@ -1,3 +1,212 @@
+Fri Mar 11 08:08:50 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
+
+       * breakpoint.c (_initialize_breakpoint): Update docstring for
+       tbreak to match what the code actually does.  Don't mention tbreak
+       in docstrings for "enable once" or "enable breakpoints once".
+
+Thu Mar 10 08:52:38 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
+
+       * symfile.h (ADD_PSYMBOL_VT_TO_LIST): Don't put a semicolon after
+       while (0).  That defeats the whole purpose of using do . . . while (0).
+       * mdebugread.c (parse_partial_symbols): Don't use ?: expression as
+       list for ADD_PSYMBOL_TO_LIST; the macro takes its address and
+       using a ?: expression as an lvalue is not portable.
+
+       * stabsread.c (define_symbol): If REG_STRUCT_HAS_ADDR, also
+       convert a LOC_ARG to a LOC_REF_ARG.  Update code which combines
+       'p' and 'r' symbol descriptors into a single symbol to look for a
+       LOC_REF_ARG.
+       * README, config/sparc/tm-sparc.h: Update comments.
+
+Wed Mar  9 21:43:24 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
+
+       * mdebugread.c (parse_type):  Do not complain for types with
+       an `indexNil' aux index, these are simply undefined types.
+       Remove indexNil check from caller of parse_type.
+       * mdebugread.c (parse_partial_symbols):  Do not enter
+       stGlobal, scCommon symbols into the minimal symbol table, their
+       value is the size of the common, not its address.
+       Handle scInit, scFini, scPData and scXData sections.
+       Use minimal symbol type mst_file_* for stLabel symbols, instead of
+       mst_*.
+       Enter stProc symbols into the global_psymbols list once, not into
+       the static_psymbols_list.
+       Get rid of dummy psymtab if it is empty, to allow proper detection
+       of stripped executables.
+       * mdebugread.c (cross_ref):  Allow cross references to Fortran
+       common blocks.
+
+Wed Mar  9 15:23:19 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
+
+       * stabsread.c (common_block_end, fix_common_block): Stash the
+       struct pending * in the SYMBOL_TYPE, not the SYMBOL_NAMESPACE, so
+       as to not assume that a pointer fits in an enum.
+
+Wed Mar  9 18:56:36 1994  Kung Hsu  (kung@mexican.cygnus.com)
+
+       * os9kread.c (fill_sym): check compiler verion number for pre-
+       UltraC compiler.
+       * os9kread.c (os9k_process_one_symbol): address of symbol is
+       relative to section not module.
+       * stabsread.c (define_symbol): add symbol type 's' as local
+       symbol for os9k.
+       * remote-os9k.c: add command 'set monitor_log' to turn on or off
+       monitor logging.
+       * remote-os9k.c: fix bug in delete breakpoint, single step trace.
+       * remote-os9k.c: fix bug in 'set remotebaud' function.
+       * remote-os9k.c (rombug_link): minimize checking so to improve
+       speed.
+       * symfile.c (symbol_file_command): check if failed to link, also make
+       the command be able to accept more than one filenames.
+       * target.c (target_link): check if failed to link with rombug.
+       * config/i386/tm-i386os9k.h : add #define DECR_PC_AFTER_BREAK 0.
+
+Wed Mar  9 15:23:19 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
+
+       * remote-es.c (es1800_child_ops): Don't declare it static.
+
+Tue Mar  8 11:42:39 1994  Jim Kingdon  (kingdon@cygnus.com)
+
+       * config/i386/tm-i386v4.h: Give just macro name, not args, to #undef.
+
+Tue Mar  8 06:56:13 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
+
+       * dbxread.c: New variable lowest_text_address.
+       (record_minimal_symbol, read_dbx_symtab): Set it.
+       (read_dbx_symtab): Use lowest_text_address + text_size instead of
+       end_of_text_address.
+       * config/gould/tm-pn.h: Add comment regarding END_OF_TEXT_DEFAULT.
+
+       * dbxread.c (end_psymtab): Remove old and commented out
+       capping_global and capping_static.  Fix comments regarding
+       N_SO_ADDRESS_MAYBE_MISSING to match the real name of the macro.
+
+       * parser-defs.h: Add "extern" to start of variable declarations so
+       we don't end up with commons.
+       * parse.c: Define these variables.
+
+       * irix5-nat.c (find_solib): Cast o_path to CORE_ADDR when using it
+       as one.
+
+Mon Mar  7 13:00:50 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
+
+       * alpha-tdep.c: Change value to value_ptr.
+
+Sun Mar  6 17:36:53 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
+
+       * solib.c (elf_locate_base):  New function to locate the address
+       of the dynamic linker's runtime structure in the dynamic info section.
+       * solib.c (locate_base):  Use it instead of iterating over the list
+       of mapped address segments.
+       * solib.c (look_for_base, bfd_lookup_symbol):  Removed, no longer
+       necessary.
+
+Fri Mar  4 09:50:47 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)
+
+       * hppa-tdep.c (pc_in_linker_stub): Move decl to beginning of file.
+       (pc_in_interrupt_handler): New function.  Also add PARAM decl.
+       (find_proc_framesize): Deal with HPUX setting SAVE_SP bit for
+       signal trampoline and interrupt routines.
+       (frame_saved_pc): Handle signal trampolines and interrupt routines.
+       (frame_chain, frame_chain_valid): Likewise.
+       (hppa_frame_find_saved_regs): Likewise.  Also deal with special
+       saved regs convention for SP.
+       
+       * tm-hppa[bho].h: FRAME_FIND_SAVED_PC_IN_SIGTRAMP): Define.
+       (FRAME_BASE_BEFORE_SIGTRAMP): Define.
+       (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP): Define.
+
+       * tm-hppah.h (IN_SIGTRAMP): Define.
+
+Thu Mar  3 12:41:16 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
+
+       * ch-exp.y (match_simple_name_string): Accept '_' as well as an
+       alphabetic character as the start of a name.
+
+       * sparclite/Makefile.in (all install): Build and install aload.
+
+       * configure.in: Accept i[34]86-*-*sysv32 because that is what
+       config.guess and config.sub produce.
+
+       * mips-tdep.c: Change value to value_ptr.
+
+Wed Mar  2 09:17:55 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
+
+       * breakpoint.c, breakpoint.h, c-valprint.c, ch-valprint.c,
+       cp-valprint.c, eval.c, expprint.c, findvar.c, language.c,
+       objfiles.h, infcmd.c, printcmd.c, stack.c, typeprint.c,
+       valarith.c, valops.c, valprint.c, value.h, values.c: Replace
+       value with value_ptr.  This is for the ptx compiler.
+       * objfiles.h, target.h: Don't declare a "sec_ptr" field using a
+       "sec_ptr" typedef.
+       * symm-nat.c: Add a bunch of stuff for symmetry's ptrace stuff.
+       #if 0 i386_float_info.
+       * symm-tdep.c (round): Remove.  Also remove sgttyb.
+       * symm-tdep.c: Remove lots of stuff which duplicates stuff from
+       i386-tdep.c.  Remove register_addr and ptx_coff_regno_to_gdb.
+       * i386-tdep.c (i386_frame_find_saved_regs): Put in
+       I386_REGNO_TO_SYMMETRY check in case it is needed for Dynix
+       someday.
+       * config/i386/nm-symmetry.h: Change KERNEL_U_ADDR.  Move
+       stuff from PTRACE_READ_REGS, PTRACE_WRITE_REGS macros to
+       symm-nat.c.  Define CHILD_WAIT and declare child_wait().
+       * config/i386/tm-symmetry.h: Remove call function stuff; stuff in
+       tm-i386v.h is apparently OK.
+       * config/i386/xm-symmetry.h [_SEQUENT_]: Define HAVE_TERMIOS not
+       HAVE_TERMIO.  Define MEM_FNS_DECLARED, NEED_POSIX_SETPGID, and
+       USE_O_NOCTTY.
+
+Wed Mar  2 11:31:08 1994  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
+
+       * osfsolib.c (xfer_link_map_member): Update to use new
+       target_read_string interface.
+
+Wed Mar  2 09:17:55 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
+
+       * infrun.c (wait_for_inferior): In checking
+       remove_breakpoints_on_following_step, check
+       through_sigtramp_breakpoint as well as step_resume_breakpoint.
+
+Tue Mar  1 16:22:56 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
+
+       * os9kread.c (os9k_process_one_symbol): Rename
+       VARIABLES_INSIDE_BLOCK to OS9K_VARIABLES_INSIDE_BLOCK.
+       * symfile.c (symbol_file_command): Check for (CORE_ADDR)-1, not
+       (CORE_ADDR)0, from target_link, since that is what it uses.
+       Process name at end, not during parsing (like we did before Kung's
+       change), so that -readnow and -mapped can appear anywhere.
+       Make text_relocation a local variable.
+       * config/i386/i386os9k.mt: Fix comment.
+       * Makefile.in (ALLDEPFILES): Add remote-os9k.c.
+       * os9kread.c: Put "comments" after #endif inside /* */.
+       * stabsread.h: Add os9k_stabs variable.
+       * stabsread.c (start_stabs), os9kread.c (os9k_process_one_symbol):
+       Set it.
+       * stabsread.c (define_symbol): If os9k_stabs, put a 'V' symbol
+       descriptor in global_symbols not local_symbols.
+       (read_type): If os9k_stabs, accept 'c', 'i', and 'b' type
+       descriptors.
+       (read_type): If os9k_stabs, accept function parameters after 'f'
+       type descriptor.
+       (read_array_type): If os9k_stabs, don't expect index type and
+       expect lower and upper to be separated by ',' not ';'.
+       (read_enum_type): If os9k_stabs, read a number before the first
+       enumeration constant.
+       (os9k_init_type_vector): New function.
+       (dbx_lookup_type): Call it when starting new type vector.
+       * config/i386/tm-i386os9k.h: Define BELIEVE_PCC_PROMOTION.
+       * (os9k_process_one_symbol): Call define_symbol not os9k_define_symbol.
+       * os9kstab.c: Removed.
+       * Makefile.in: Update accordingly.
+       * objfiles.c (objfile_relocate_data): Removed.
+       * remote-os9k.c (rombug_wait): Call objfile_relocate
+       not objfile_relocate_data.
+       * objfiles.h, objfiles.c: Remove find_pc_objfile.
+       * remote-os9k.c (rombug_wait): Call find_pc_section not
+       find_pc_objfile.
+       * main.c (quit_command): Check inferior_pid; revert Kung change.
+       * remote-os9k.c (rombug_create_inferior): Set inferior_pid.
+
 Tue Mar  1 14:56:14 1994  Kung Hsu  (kung@mexican.cygnus.com)
 
        * os9kread.c: New file to read os9000 style symbo table.
This page took 0.02589 seconds and 4 git commands to generate.