2003-09-25 David Carlton <carlton@kealia.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 418a2a5e01599cd81310bd4b62c4852289c924a0..f7a0c9e5457a7d4889f50a83bcca7078f17b6662 100644 (file)
@@ -1,3 +1,985 @@
+2003-09-25  David Carlton  <carlton@kealia.com>
+
+       * c-exp.y: Include cp-support.h.  Add qualified_type.
+       (yylex): Delete nested type hack; add comments.
+       * cp-namespace.c (cp_lookup_nested_type): New function.
+       * cp-support.h: Declare cp_lookup_nested_type.
+       * eval.c (evaluate_subexp_standard): Call value_aggregate_elt
+       instead of value_struct_elt_for_reference.
+       * valops.c: Include cp-support.h.
+       (value_aggregate_elt): New function.
+       (value_namespace_elt): Ditto.
+       (value_struct_elt_for_reference): Make static.
+       * value.h: Delete declaration of value_struct_elt_for_reference;
+       add declaration for value_aggregate_elt.
+       * Makefile.in (c-exp.tab.o): Depend on $(cp_support_h).
+       (valops.o): Ditto.
+
+2003-09-25  Daniel Jacobowitz  <drow@mvista.com>
+
+       * stack.c: Include "reggroups.h".
+       (frame_info): Only display registers in all_reggroup.
+       * Makefile.in (stack.o): Update dependencies.
+
+2003-09-25  Jerome Guitton  <guitton@act-europe.fr>
+
+       * arm-tdep.c (arm_skip_prologue): Handle "sub ip, sp #n" and
+       "add ip, sp #n" in the prologue.
+       (arm_scan_prologue): Ditto.
+
+2003-09-25  Jerome Guitton  <guitton@act-europe.fr>
+
+       * MAINTAINERS (write after approval): Add myself.
+
+2003-09-25  Andreas Schwab  <schwab@suse.de>
+
+       * m68k-tdep.c: Include "dwarf2-frame.h".
+       (m68k_gdbarch_init): Add the DWARF CFI frame unwinder.
+       * Makefile.in (m68k-tdep.o): Update dependencies.
+
+2003-09-25  Corinna Vinschen  <vinschen@redhat.com>
+
+       * sh-tdep.c (struct frame_extra_info): Remove.
+       (struct sh_frame_cache): New structure.
+       (GET_SOURCE_REG): New macro extracting source register of an opcode.
+       (GET_TARGET_REG): Ditto but target register.
+       (GET_PUSHED_REG): Remove.
+       (IS_MOV_ARG_TO_REG): New macro.
+       (IS_MOV_ARG_TO_IND_R14): New macro.
+       (IS_MOV_ARG_TO_IND_R14_WITH_DISP): New macro.
+       (IS_MOVW_PCREL_TO_REG): New macro.
+       (IS_MOVL_PCREL_TO_REG): New macro.
+       (IS_SUB_REG_FROM_SP): New macro.
+       (IS_ARG_MOV): Remove.
+       (IS_MOV_TO_R14): Remove.
+       (IS_RESTORE_FP): New macro.
+       (IS_RTS): New macro.
+       (IS_LDS): New macro.
+       (IS_MOV_FP_SP): New macro.
+       (IS_ADD_REG_TO_FP): New macro.
+       (IS_ADD_IMM_FP): New macro.
+       (sh_skip_prologue_hard_way): Remove.
+       (sh_saved_pc_after_call): Remove.
+       (sh_frame_chain): Remove.
+       (sh_find_callers_reg): Remove.
+       (sh_nofp_frame_init_saved_regs): Remove. 
+       (sh_fp_frame_init_saved_regs): Remove.
+       (sh_init_extra_frame_info): Remove.
+       (sh_analyze_prologue): New function.
+       (sh_skip_prologue): Remove deprecated code.  Rely on new function
+       sh_analyze_prologue when after_prologue fails.
+       (sh_frame_saved_pc): Remove.
+       (sh_alloc_frame_cache): New function.
+       (sh_frame_cache): Ditto.
+       (sh_frame_prev_register): Ditto.
+       (sh_frame_this_id): Ditto.
+       (sh_frame_unwind): New structure defining the heuristic frame
+       sniffer interface.
+       (sh_frame_sniffer): New function.
+       (sh_unwind_sp): Ditto.
+       (sh_unwind_pc): Ditto.
+       (sh_unwind_dummy_id): Ditto.
+       (sh_frame_base_address): Ditto.
+       (sh_frame_base): New structure defining new frame base code.
+       (sh_in_function_epilogue_p): New function.
+       (sh_gdbarch_init): Restructure and simplify to eliminate deprecated
+       code and to call all new code instead.  Initialize dwarf2 and
+       heuristic frame sniffer.
+
+2003-09-24  Paul N. Hilfinger  <hilfingr@nile.gnat.com>
+
+       * parser-defs.h (struct exp_descriptor): New definition, containing 
+       language-specific info for printing, prefixifying, dumping, and 
+       evaluating expressions.
+       (exp_descriptor_standard): Declare new variable.
+       (print_subexp): Make global and declare here (from expprint.c).
+       (dump_subexp): Ditto.
+       (dump_subexp_body_standard): Declare.
+       (operator_length_standard): Declare.
+       (op_name_standard): Declare.
+       (print_subexp): Declare.
+       (print_subexp_standard): Declare.
+
+       * language.h (struct language_defn): Add la_exp_desc field to hold
+       pointer to table for language-specific operators.
+       Remove evaluate_exp field, which is now in struct exp_descriptor.
+       
+       * parse.c (operator_length): Move most code to new 
+       operator_length_standard function.  Use language-specific information.
+       (operator_length_standard): New function taking most code from 
+       operator_length.
+       (exp_descriptor_standard): New constant.
+       
+       * expression.h (enum exp_opcode): Add definitions of OP_EXTENDED0 
+       and OP_EXTENDED_LAST.
+       
+       * expprint.c (print_subexp): Use language-specific print_subexp.  
+       Make global; remove static declaration.
+       Move most code to print_subexp_standard.
+       (print_subexp_standard): New function, containing code formerly in 
+       print_subexp.
+       (op_name): Add expression to argument signature.
+       Use langauge-specific op_name. 
+       Move most code to op_name_standard.
+       (op_name_standard): New function, containing code formerly in op_name.
+       (dump_subexp):  Use new version of op_name function.
+       Use language-specific dump_subexp_body, and move most existing code to
+       dump_subexp_body_standard.
+       (dump_raw_expression): Use new op_name interface.
+       (dump_subexp_body): Move most code to dump_subexp_body_standard.
+       (dump_subexp_body_standard): New function, containing code formerly
+       in dump_subexp_body.
+       
+       * language.c (unknown_language): Add default la_exp_desc field and
+       remove evaluate_exp field.
+       (auto_language): Ditto.
+       (local_language): Ditto.
+       * f-lang.c (f_language_defn): Ditto.
+       * c-lang.c (c_language_defn): Ditto.
+       (cplus_language_defn): Ditto.
+       (asm_language_defn): Ditto.
+       (minimal_language_defn): Ditto.
+       * p-lang.c (pascal_language_defn): Ditto.
+       * m2-lang.c (m2_language_defn): Ditto.
+       * objc-lang.c (objc_language_defn): Ditto.
+       
+       * jv-lang.c (exp_descriptor_java): New variable, containing 
+       Java-specific expression evaluator.
+       (java_language_defn): Add la_exp_desc field and remove evaluate_exp
+       field.
+       * scm-lang.c (exp_descriptor_scm): New variable, containing 
+       Scheme-specific expression evaluator.
+       (scm_language_defn): Add la_exp_desc field and remove evaluate_exp
+       field.
+       * objc-lang.c (print_object_command): Take evaluate_exp from the
+       la_exp_desc field.
+       
+       * Makefile.in (eval.o): Add dependency on parser-defs.h.
+       
+       * eval.c: Include parser-defs.h for the full declaration of 
+       la_exp_desc's type.
+       (evaluate_subexp): Get evaluate_exp out of la_exp_desc field.
+       
+2003-09-23  Paul N. Hilfinger  <hilfingr@nile.gnat.com>
+
+       * parser-defs.h (operator_length): Declare.
+       
+       * parse.c (length_of_subexp): Use operator_length to get operator
+       lengths and arities for operators.
+       Move most code to new operator_length function.
+       (operator_length): New function absorbing most code from 
+       length_of_subexp.
+       (prefixify_subexp): Remove large case and use operator_length instead.
+       (parse_exp_1): Use renamings:
+       dump_prefix_expression => dump_raw_expression and 
+       dump_postfix_expression => dump_prefix_expression.
+       
+       * expression.h (dump_prefix_expression): Rename to ...
+       (dump_raw_expression): New name.
+       (dump_postfix_expression): Rename to ...
+       (dump_prefix_expression): New name.
+       
+       * expprint.c (dump_subexp): Make global.  Add comment.
+       Move most existing code to dump_subexp_body.
+       (dump_subexp_body): New function.
+       (dump_prefix_expression): Rename to dump_raw_expression.
+       Remove attempt to print the expression via print_expression: it can't 
+       work before the expression is prefixified.
+       (dump_raw_expression): Renamed from dump_prefix_expression.
+       (dump_postfix_expression): Rename to dump_prefix_expression, since 
+       that's what it does.
+       Remove 'note' parameter, since this routine must be used on 
+       prefixified expression.
+       (dump_prefix_expression): Renamed from dump_postfix_expression.
+       
+2003-09-22  Jim Blandy  <jimb@redhat.com>
+
+       * dwarf2read.c (read_array_type): When building the type for an
+       array of unspecified length, make sure to choose the upper bound
+       so that the array's total length comes out to be zero --- that's
+       how we represent such arrays.
+
+2003-09-22  Michael Chastain  <mec@shout.net>
+
+       * MAINTAINERS: Rename gdb.c++ to gdb.cp.
+
+2003-09-22  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * top.c (quit_force): Fix indirect call to quit_target so
+       a struct qt_args pointer is passed.
+
+2003-09-22  Andrew Cagney  <cagney@redhat.com>
+
+       * arch-utils.h (init_frame_pc_noop): Delete declaration.
+       * arch-utils.c (init_frame_pc_noop): Delete function.
+       * mn10300-tdep.c (mn10300_gdbarch_init): Do not set
+       "init_frame_pc".
+       * mips-tdep.c (mips_gdbarch_init): Ditto.
+       * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
+       * config/sparc/tm-sparc.h (init_frame_pc_noop): Delete
+       declaration.
+       (DEPRECATED_INIT_FRAME_PC): Delete macro.
+       * config/rs6000/tm-rs6000.h (init_frame_pc_noop): Delete
+       declaration.
+       (DEPRECATED_INIT_FRAME_PC): Delete macro.
+
+2003-09-22  Anthony Green  <green@redhat.com>
+
+       * monitor.c (monitor_expect): Delete unused conflicting targ_ops
+       declaration.
+
+2003-09-20  Andrew Cagney  <cagney@redhat.com>
+
+       * breakpoint.c: Eliminate ARGSUSED.
+       * buildsym.c, cli/cli-cmds.c, cli/cli-script.c: Ditto.
+       * coffread.c, corelow.c, dwarf2read.c, event-top.c: Ditto.
+       * exec.c, gcore.c, hpux-thread.c, infcmd.c, inflow.c: Ditto.
+       * infrun.c, inftarg.c, maint.c, ocd.c, printcmd.c: Ditto.
+       * procfs.c, regcache.c, remote-rdi.c, remote-sds.c: Ditto.
+       * remote.c, sol-thread.c, source.c, stabsread.c: Ditto.
+       * stack.c, symfile.c, target.c, top.c, typeprint.c: Ditto.
+       * utils.c, v850ice.c, valprint.c, values.c, win32-nat.c: Ditto.
+       * wince.c, remote-vx.c: Ditto.
+
+       * cli/cli-script.c: Remove "register" attributes.
+       * config/pa/tm-hppa.h: Ditto.
+       * cli/cli-decode.c: Ditto.
+       * cli/cli-cmds.c: Ditto.
+
+2003-09-19  Andrew Cagney  <cagney@redhat.com>
+
+       * sparcnbsd-nat.c (getregs_supplies): Rename NPC_REGNUM to
+       DEPRECATED_NPC_REGNUM.
+       * sparc64nbsd-nat.c (getregs_supplies): Ditto.
+
+2003-09-19  Christopher Faylor  <cgf@redhat.com>
+
+       * win32-nat.c (mappings): Remove HAVE_SSE conditional.
+
+2003-09-19  Jim Blandy  <jimb@redhat.com>
+
+       * macrotab.c (macro_include): Use the correct comparison to find
+       the appropriate place for this inclusion in the list.
+
+2003-09-19  Andrew Cagney  <cagney@redhat.com>
+
+       * config/pa/nm-hppah.h (NEED_TEXT_START_END): Delete.
+       (DEPRECATED_HPUX_TEXT_END): Define.
+       (deprecated_hpux_text_end): Declare.
+       (struct target_ops): Declare opaque.
+       * hppah-nat.c (text_end): Make static.
+       (deprecated_hpux_text_end): New function.
+       * exec.c (text_end): Delete global variable.
+       (NEED_TEXT_START_END): Do not define.
+       (exec_file_attach): Replace code computing "text_end" code with
+       call to DEPRECATED_HPUX_TEXT_END.
+
+2003-09-19  Andrew Cagney  <cagney@redhat.com>
+
+       * utils.c (align_up, align_down): New functions.
+       * defs.h (align_up, align_down): Declare.
+       * ppc-sysv-tdep.c (align_up, align_down): Delete functions.
+       * s390-tdep.c: Replace "round_up" and "round_down" with "align_up"
+       and "align_down".
+       (round_up, round_down): Delete functions.
+       * mips-tdep.c: Replace ROUND_UP and ROUND_DOWN with "align_up" and
+       "align_down".
+       (ROUND_DOWN, ROUND_UP): Delete macros.
+       (mips_dump_tdep): Do not print "ROUND_UP" or "ROUND_DOWN".
+       * h8300-tdep.c: Replace "round_up" and "round_down" with
+       "align_up" and "align_down".
+       (round_up, round_down): Delete macros.
+       * frv-tdep.c: Replace ROUND_UP and ROUND_DOWN with "align_up" and
+       "align_down".
+       (ROUND_UP, ROUND_DOWN): Delete macros.
+
+2003-09-18  J. Brobecker  <brobecker@gnat.com>
+
+       * hppa-hpux-tdep.c (_initialize_hppa_hpux_tdep): Remove a
+       hard-coded constant. Use the proper machine name instead.
+
+2003-09-17  Andrew Cagney  <cagney@redhat.com>
+
+       * sparc-tdep.c (legacy_register_name): Delete function.
+       * mips-tdep.c (mips_dump_tdep): Do not print REGISTER_NAME.
+       (mips_gdbarch_init): Refer to MIPS_REGISTER_NAME in comments.
+       * infcmd.c (gdb_register_name): Delete variable.
+       * gdbarch.sh (SDB_REG_TO_REGNUM): Delete reference to
+       REGISTER_NAME and "tm.h".
+       * gdbarch.h, gdbarch.c: Regenerate.
+       * dpx2-nat.c (regmap): Refer to REGISTER_NAME and not
+       REGISTER_NAMES in comments.
+       * remote-st.c (get_reg_name), i386b-nat.c (tregmap): Ditto.
+       * m68klinux-nat.c (regmap): Ditto.
+
+2003-09-17  Jim Blandy  <jimb@redhat.com>
+
+       * Makefile.in (dis_asm_h): Note that this #includes "bfd.h".
+
+2003-09-17  Andrew Cagney  <cagney@redhat.com>
+
+       * ppcnbsd-tdep.c (ppcnbsd_use_struct_convention): New function.
+       (ppcnbsd_init_abi): Set "use_struct_convention" to
+       "ppcnbsd_use_struct_convention".
+
+2003-09-17  Mark Kettenis  <kettenis@gnu.org>
+
+       * gdbarch.sh (DEPRECATED_REG_STRUCT_HAS_ADDR): Add comment.
+       * gdbarch.h, gdbarch.c: Regenerate.
+       (stabs_argument_has_addr): New architecture method.
+       * arch-utils.h (default_stabs_argument_has_addr): New prototype.
+       * arch-utils.c: Include "buildsym.h".
+       (default_stabs_argument_has_addr): New function.
+       * stabsread.c (define_symbol): Use stabs_argument_has_addr
+       instead of DEPRECATED_REG_STRUCT_HAS_ADDR.
+
+2003-09-17  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_NPC_REGNUM): Deprecate NPC_REGNUM.
+       * gdbarch.h, gdbarch.c: Regenerate.
+       * core-sol2.c, hppa-tdep.c, lynx-nat.c, procfs.c: Update.
+       * regcache.c, remote-vxsparc.c, sparc-linux-nat.c: Update.
+       * sparc-nat.c, sparc-tdep.c, sparc64-tdep.c: Update.
+       * sparcnbsd-tdep.c: Update.
+       
+2003-09-17  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_REGISTER_BYTE): Rename REGISTER_BYTE.
+       * gdbarch.h, gdbarch.c: Regenerate.
+       * arm-linux-tdep.c, core-sol2.c, cris-tdep.c: Update.
+       * d10v-tdep.c, frame.c: Update.
+       * hppa-tdep.c, hppab-nat.c, hppah-nat.c, hppam3-nat.c: Update.
+       * hpux-thread.c, i386gnu-nat.c, ia64-aix-nat.c: Update.
+       * ia64-linux-nat.c, irix5-nat.c, lynx-nat.c, m68knbsd-nat.c: Update.
+       * mcore-tdep.c, mips-linux-tdep.c, mips-tdep.c: Update.
+       * mipsv4-nat.c, mn10300-tdep.c, ns32k-tdep.c: Update.
+       * ns32knbsd-nat.c, ppc-bdm.c, regcache.c, remote-sds.c: Update.
+       * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Update.
+       * remote.c, rs6000-tdep.c, s390-tdep.c, sh64-tdep.c: Update.
+       * sparc-nat.c, sparc-tdep.c, sun3-nat.c, v850-tdep.c: Update.
+       * v850ice.c, vax-tdep.c, xstormy16-tdep.c: Update.
+       * config/m68k/tm-cisco.h, config/m68k/tm-delta68.h: Update.
+       * config/pa/nm-hppah.h: Update.
+
+2003-09-16  Andrew Cagney  <cagney@redhat.com>
+
+       * ppc-linux-tdep.c (ppc_linux_init_abi): Set the 32 bit
+       "use_struct_convention" to "ppc_linux_use_struct_convention".
+       (ppc_linux_use_struct_convention): New function.
+       * rs6000-tdep.c (rs6000_use_struct_convention): New function.
+       (rs6000_gdbarch_init): For AIX, set "use_struct_convention" to
+       "rs6000_use_struct_convention".
+       * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Delete
+       declaration.
+       * ppc-sysv-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
+       Delete function.
+
+2003-09-16  Andrew Cagney  <cagney@redhat.com>
+
+       * buildsym.c: Remove more occurances of "register".
+       * coffread.c, dbxread.c, dcache.c, dwarf2read.c: Ditto.
+       * environ.c, eval.c, f-valprint.c, findvar.c: Ditto.
+       * gdbtypes.c, gnu-v2-abi.c, h8300-tdep.c, hppa-tdep.c: Ditto.
+       * infcmd.c, mdebugread.c, minsyms.c, mips-tdep.c: Ditto.
+       * printcmd.c, remote-vx.c, sh-stub.c, sh-tdep.c: Ditto.
+       * sh64-tdep.c, source.c, stabsread.c, stack.c: Ditto.
+       * standalone.c, symfile.c, symmisc.c, symtab.c: Ditto.
+       * utils.c, valops.c, values.c, xcoffread.c: Ditto.
+
+2003-09-16  Corinna Vinschen  <vinschen@redhat.com>
+
+       * sh-tdep.h (struct gdbarch_tdep): Remove.  Change all register
+       numbers to enumeration values.
+       * sh-tdep.c: Accomodate above change.
+       (SH_NUM_REGS): Rename from SH_DEFAULT_NUM_REGS.
+       (NUM_PSEUDO_REGS_SH_MEDIA): Remove (sh5 only).
+       (NUM_PSEUDO_REGS_SH_COMPACT): Remove (sh5 only).
+       (IS_ADD_IMM_SP): Rename from IS_ADD_SP.
+       (IS_FPUSH): Rename from IS_FMOV.
+       (sh_extract_struct_value_address): Remove useless comment.
+       (sh_dsp_register_sim_regno): Use register values from sh-tdep.h
+       instead of own local values.
+       (sh_dump_tdep): Remove.
+       (_initialize_sh_tdep): Accomodate removing sh_dump_tdep.
+       * sh3-rom.c (sh3_supply_register): Accomodate sh-tdep.h changes.
+
+2003-09-15  Andrew Cagney  <cagney@redhat.com>
+
+       * doublest.c (convert_floatformat_to_doublest): No longer need to
+       cast "exp_bias" to an int.  Reverts 2002-12-04 change.
+
+2003-09-15  Daniel Jacobowitz  <drow@mvista.com>
+
+       * values.c (unpack_double): Call floatformat_is_valid.
+
+2003-09-15  Mark Kettenis  <kettenis@gnu.org>
+
+       * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Change type of
+       ps_strings into a long.
+
+       * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Rename from
+       _initialize_am64fbsd_nat.
+
+2003-09-15  Kevin Buettner  <kevinb@redhat.com>
+
+       * dwarf2read.c (dwarf2_get_pc_bounds): Complain if offset
+       associated with DW_AT_ranges attribute is out of bounds.
+
+2003-09-15  David Lecomber  <dsl@sources.redhat.com>
+
+       * f-valprint.c: Apply array element printing limits to multi-dimensional arrays
+
+2003-09-14  Michael Chastain  <mec@shout.net>
+
+       * config/m68k/nm-apollo68v.h: Delete.
+       * config/m68k/xm-apollo68v.h: Delete.
+
+2003-09-14  Andrew Cagney  <cagney@redhat.com>
+
+       * rs6000-tdep.c (rs6000_push_dummy_call): Fix typos.
+       * dcache.c: Update copyrights and descriptions.
+       * scm-exp.c, ia64-aix-nat.c, hppam3-nat.c: environ.c: Ditto.
+
+2003-09-14  Andrew Cagney  <cagney@redhat.com>
+
+       * config/djgpp/fnchange.lst: Rename "amd64fbsd-tdep.c" and
+       "amd64fbsd-nat.c" to "a64fb-tdep.c" and "a64fb-nat.c".
+
+2003-09-14  Andrew Cagney  <cagney@redhat.com>
+
+       * alpha-nat.c: Remove some occurances of "register".
+       * alpha-tdep.c, arm-tdep.c, blockframe.c, breakpoint.c: Ditto.
+       * buildsym.c, c-typeprint.c, c-valprint.c, coffread.c: Ditto.
+       * corefile.c, cp-support.c, cp-valprint.c, cris-tdep.c: Ditto.
+       * dbxread.c, dcache.c, dwarf2read.c, elfread.c: Ditto.
+       * environ.c, eval.c, event-top.c, f-typeprint.c: Ditto.
+       * f-valprint.c, findvar.c, frame.c, gdbtypes.c: Ditto.
+       * h8300-tdep.c, hppa-tdep.c, hppab-nat.c, hppah-nat.c: Ditto.
+       * hppam3-nat.c, hpread.c, ia64-aix-nat.c, ia64-linux-nat.c: Ditto.
+       * infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Ditto.
+       * infttrace.c, irix5-nat.c, jv-typeprint.c: Ditto.
+       * jv-valprint.c, m68k-tdep.c, m68klinux-nat.c, main.c: Ditto.
+       * mdebugread.c, minsyms.c, mips-linux-tdep.c: Ditto.
+       * mips-nat.c, mips-tdep.c, mipsread.c, mipsv4-nat.c: Ditto.
+       * ns32k-tdep.c, objfiles.c, p-typeprint.c: Ditto.
+       * p-valprint.c, ppc-linux-nat.c, printcmd.c: Ditto.
+       * remote-mips.c, remote-vx.c, rs6000-nat.c: Ditto.
+       * rs6000-tdep.c, scm-exp.c, sh-tdep.c, sh64-tdep.c: Ditto.
+       * solib.c, somread.c, source.c, sparc-tdep.c: Ditto.
+       * stabsread.c, stack.c, standalone.c, symfile.c: Ditto.
+       * symmisc.c, symtab.c, top.c, tracepoint.c: Ditto.
+       * typeprint.c, utils.c, valarith.c, valops.c: Ditto.
+       * values.c, vax-tdep.c, xcoffread.c: Ditto.
+       
+2003-09-13  Andrew Cagney  <cagney@redhat.com>
+
+       * config/pa/tm-hppa64.h (struct frame_info): Declare opaque.
+       * ppc-tdep.h (struct regcache): Declare opaque.
+       * objfiles.h (struct objfile_data): Declare opaque.
+       * cp-support.h (struct objfile): Declare opaque.
+       * linux-nat.h (target_waitstatus): Declare opaque.
+
+2003-09-14  Mark Kettenis  <kettenis@gnu.org>
+
+       * gdbarch.sh (DEPRECATED_REG_STRUCT_HAS_ADDR): Add comment.
+       (stabs_argument_has_addr): New architecture method.
+       * arch-utils.h (default_stabs_argument_has_addr): New prototype.
+       * arch-utils.c: Include "buildsym.h".
+       (default_stabs_argument_has_addr): New function.
+       * stabsread.c (define_symbol): Use stabs_argument_has_addr
+       instead of DEPRECATED_REG_STRUCT_HAS_ADDR.
+
+       * cris-tdep.c (cris_gdbarch_init): Set
+       deprecated_reg_struct_has_addr instead of reg_struct_has_addr.
+       * hppa-tdep.c (hppa_gdbarch_init): Likewise.
+       * mcore-tdep.c (mcore_gdbarch_init): Likewise.
+       * mips-tdep.c (mips_gdbarch_init): Likewise.
+       * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
+       * sparc-tdep.c (sparc_gdbarch_init): Likewise.
+
+2003-09-13  Andrew Cagney  <cagney@redhat.com>
+
+       * values.c (using_struct_return): Delete "function" and "funcaddr"
+       parameters.
+       * value.h (using_struct_return): Update declaration.
+       * infcmd.c (finish_command_continuation): Update.
+       (finish_command): Update.
+       * infcall.c (call_function_by_hand): Update.
+       * eval.c (evaluate_subexp_standard): Update.
+
+2003-09-13  Christopher Faylor  <cgf@redhat.com>
+
+       * win32-nat.c: Just rely on CONTEXT_EXTENDED_REGISTER being defined for
+       SSE registers since gdb will not operate correctly without this.
+       Restore include file ordering munged in previous change.
+       * config/i386/tm-cygwin.h: Remove HAVE_SSE_REGS define.
+
+2003-09-13  Mark Kettenis  <kettenis@gnu.org>
+
+       * gdbarch.sh (DEPRECATED_REG_STRUCT_HAS_ADDR): Renamed from
+       REG_STRUCT_HAS_ADDR.
+       * gdbarch.c, gdbarch.h: Updated.
+       * infcall.c (call_function_by_hand): Update.
+       * stabsread.c (define_symbol): Updated.
+       
+       * Makefile.in (xm-i386-sv32.h, tm-i386gas.h): Remove.
+
+2003-09-12  Christopher Faylor  <cgf@redhat.com>
+
+       * win32-nat.c: Reorganize so that defines used by target headers are
+       actually defined by the system headers.
+       * config/i386/tm-cygwin.h: Check for CONTEXT_EXTENDED_REGISTERS rather
+       than HAVE_CONTEXT_EXTENDED_REGISTERS, since the latter actually exists.
+
+2003-09-12  Jim Blandy  <jimb@redhat.com>
+
+       * dbxread.c (read_dbx_symtab): Don't report an internal error if
+       the file has no .data, .bss, or .rodata sections.  Instead wait
+       until we see a variable alleged to live in one of those sections.
+
+       * dbxread.c (read_dbx_symtab): If we have no .data section and no
+       .bss section, presume that any variables we find live in the
+       .rodata section.
+
+       * dbxread.c (read_dbx_symtab): Add FIXME about finding section
+       offsets for global and static variables.
+
+       * dbxread.c (read_dbx_symtab): The N_DATA and N_DATA | N_EXT
+       symbol types are, by definition, in the .data section, so it is
+       correct to use SECT_OFF_DATA (objfile) here, not data_sect_index.
+       If there is no .data section, there should be no N_DATA or N_DATA
+       | N_EXT symbols.
+
+2003-09-12  Mark Kettenis  <kettenis@gnu.org>
+
+       * amd64fbsd-tdep.c: Fix sigtramp recognition.
+       (amd64fbsd_sigcontext_addr): Rewrite.
+       (amd64fbsd_sigtramp_start, amd64fbsd_sigtramp_end): Initialize
+       with correct values.
+       (amd64fbsd_sc_reg_offset): Initialize with correct values.
+       (amd64fbsd_init_abi): Fix typo.
+
+2003-09-12  Andrew Cagney  <cagney@redhat.com>
+
+       * ppc-sysv-tdep.c (align_up, align_down): Replace "round2" macro.
+       (ppc_sysv_abi_push_dummy_call): Rewrite, use a two pass loop.
+
+2003-09-12  Andrew Cagney  <cagney@redhat.com>
+
+       * objfiles.h (struct entry_info): Deprecate "entry_file_lowpc" and
+       "entry_file_highpc".  Update comments.
+       * defs.h (deprecated_inside_entry_file): Rename
+       "inside_entry_file".
+       * blockframe.c (deprecated_inside_entry_file): Rename
+       "inside_entry_file".
+       * frame.c (get_prev_frame): Update.  Use if 0 instead of #if 0.
+       * vax-tdep.c (vax_frame_chain): Update.
+       * sh64-tdep.c (sh64_frame_chain): Update.
+       * sh-tdep.c (sh_frame_chain): Update.
+       * rs6000-tdep.c (rs6000_frame_chain): Update.
+       * ns32k-tdep.c (ns32k_frame_chain): Update.
+       * mips-tdep.c (mips_frame_chain): Update.
+       * m68hc11-tdep.c (m68hc11_frame_this_id): Update.
+       * m32r-tdep.c (m32r_frame_this_id): Update.
+       * i386-interix-tdep.c (i386_interix_frame_chain_valid): Update.
+       * frv-tdep.c (frv_frame_this_id): Update.
+       * d10v-tdep.c (d10v_frame_this_id): Update.
+       * cris-tdep.c (cris_frame_chain): Update.
+       * blockframe.c (legacy_frame_chain_valid): Update.
+       * avr-tdep.c (avr_frame_this_id): Update.
+       * arm-tdep.c (arm_prologue_this_id): Update.
+       * alpha-tdep.c (alpha_heuristic_frame_this_id): Update.
+       * objfiles.c (objfile_relocate): Update.
+       * mipsread.c (mipscoff_symfile_read): Update.
+       (mipscoff_symfile_read): Update.
+       * mdebugread.c (parse_partial_symbols): Update.
+       * dwarfread.c (read_file_scope): Update.
+       * dwarf2read.c (read_file_scope): Update.
+       * dbxread.c (read_dbx_symtab): Update.
+       (read_dbx_symtab): Update.
+       * coffread.c (complete_symtab): Update.
+
+2003-09-12  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * top.c (quit_target): New static helper function.
+       (quit_force): Moved code to quit_target().  Call quit_target()
+       via catch_errors() to catch errors during quit.
+
+2003-09-11  David Carlton  <carlton@kealia.com>
+
+       * buildsym.c (finish_block): Use allocate_block to allocate the
+       block.
+       * mdebugread.c (new_block): Add FIXME.
+
+2003-09-11  David Carlton  <carlton@kealia.com>
+
+       * gdbtypes.h: Add TYPE_CODE_NAMESPACE.
+       * gdbtypes.c (init_type): Handle TYPE_CODE_NAMESPACE.
+       (recursive_dump_type): Ditto.
+       * printcmd.c (print_formatted): Ditto.
+       * typeprint.c (print_type_scalar): Ditto.
+       * c-typeprint.c (c_type_print_varspec_prefix): Ditto.
+       (c_type_print_varspec_suffix, c_type_print_base): Ditto.
+       * cp-support.h: Declare cp_check_possible_namespace_symbols,
+       maint_cplus_cmd_list.
+       * cp-support.c: Make maint_cplus_cmd_list extern.
+       * cp-namespace.c: Include objfiles.h, gdbtypes.h, dictionary.h,
+       command.h.
+       (lookup_symbol_file): Look in possible namespace blocks when
+       appropriate.
+       (initialize_namespace_symtab): New.
+       (get_possible_namespace_block, free_namespace_block)
+       (check_possible_namespace_symbols)
+       (check_possible_namespace_symbols_loop)
+       (check_one_possible_namespace_symbol)
+       (lookup_possible_namespace_symbol, maintenance_cplus_namespace)
+       (_initialize_cp_namespace): Ditto.
+       * block.h: Declare allocate_block.
+       * block.c (allocate_block): New.
+       * jv-lang.c (get_java_class_symtab): Allocate blocks via
+       allocate_block.
+       * symfile.h: Update declaration of add_psymbol_to_list.
+       * symfile.c (add_psymbol_to_list): Return the partial symbol in
+       question.
+       * dwarf2read.c (dwarf2_build_psymtabs_hard): Add argument to
+       scan_partial_symbols_call.
+       (scan_partial_symbols): Add NAMESPACE argument; update calls to
+       helper functions.
+       (add_partial_symbol): If necessary, scan mangled names for names
+       of namespaces.
+       (add_partial_namespace): Add NAMESPACE argument; generate partial
+       symbols associated  to namespaces.
+       (add_partial_enumeration): Add NAMESPACE argument.
+       (new_symbol): Allow namespace syms.
+       (read_namespace): Generate namespace syms.
+       * objfiles.h: Add opaque declaration of struct symtab.
+       (struct objfile): Add cp_namespace_symtab member.
+       * objfiles.c (allocate_objfile): Set
+       objfile->cp_namespace_symtab.
+       * Makefile.in (cp-namespace.o): Depend on objfiles_h, gdbtypes_h,
+       dictionary_h, command_h.
+
+2003-09-11  Andrew Cagney  <cagney@redhat.com>
+
+       * rs6000-tdep.c (rs6000_push_dummy_call): Use
+       regcache_raw_write_signed to set SP_REGNUM, move the operation to
+       near the function's end.
+       (rs6000_gdbarch_init): Do not set "deprecated_dummy_write_sp".
+       * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Use
+       regcache_raw_write_signed to set SP_REGNUM.
+
+2003-09-11  Elena Zannoni  <ezannoni@redhat.com>
+
+       * symfile.c (symbol_file_add_with_addrs_or_offsets): Make sure
+       orig_addrs is set up properly.
+
+2003-09-11  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_STACK_ALIGN): Rename STACK_ALIGN.
+       * gdbarch.h, gdbarch.c: Re-generate.
+       * infcall.c (call_function_by_hand): Update.
+       * hppa-tdep.c (hppa_push_arguments): Update.
+       * ada-lang.c (place_on_stack): Update.
+       * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
+       * sparc-tdep.c (sparc_gdbarch_init): Update.
+       * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
+       * hppa-tdep.c (hppa_gdbarch_init): Update.
+       * h8300-tdep.c (h8300_gdbarch_init): Delete comment refering to
+       stack_align.
+
+2003-09-11  Daniel Jacobowitz  <drow@mvista.com>
+
+       * dwarf2loc.c (dwarf2_loc_desc_needs_frame): Variables in a
+       register do need a frame.
+
+2003-09-11  Andrew Cagney  <cagney@redhat.com>
+
+       Since the IRIX 4 configuration was forcing K&R mode it hasn't been
+       buildable since GDB 5.0.
+       * NEWS: Mention that IRIX 3 and IRIX 4 support were removed.
+       * configure.host: Delete "mips-sgi-irix3*" and "mips-sgi-irix4*".
+       * configure.tgt: Delete "mips*-sgi-*" a.k.a. irix3.
+       * irix4-nat.c: Delete file.
+       * config/mips/irix4.mh: Delete file.
+       * config/mips/irix3.mh: Delete file.
+       * config/mips/irix3.mt: Delete file.
+       * config/mips/tm-irix3.h: Delete file.
+       * config/mips/nm-irix3.h: Delete file.
+       * config/mips/xm-irix3.h: Delete file.
+       * config/mips/nm-irix4.h: Delete file.
+       * config/mips/xm-irix4.h: Delete file.
+       * config/mips/tm-irix5.h: Inline contents of "tm-irix3.h".
+
+2003-09-10  J. Brobecker  <brobecker@gnat.com>
+
+       * hppa-tdep.c: Include "dis-asm.h". Fixes a build failure.
+       * Makefile.in (hppa-tdep.o): Update dependencies.
+
+2003-09-10  James E Wilson  <wilson@specifixinc.com>
+
+       * MAINTAINERS: Change my e-mail address.  Move to paper trail
+       section.
+
+2003-09-10  Kevin Buettner  <kevinb@redhat.com>
+
+       * MAINTAINERS (frv): New ISA entry.
+
+2003-09-10  Kevin Buettner  <kevinb@redhat.com>
+
+       * frv-tdep.c (dis-asm.h): Include.
+       * Makefile.in (frv-tdep.o): Update dependencies.
+
+2003-09-09  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * ia64-tdep.c (ia64_sigtramp_frame_init_saved_regs):
+       Fix typo for high range of floating registers.
+
+2003-09-09  David Carlton  <carlton@kealia.com>
+
+       * dwarf2read.c (dwarf2_build_psymtabs_hard): Move lowpc and
+       highpc initialization here out of scan_partial_symbols.
+       (scan_partial_symbols): Restructure into a recursive version,
+       calling add_partial_namespace and add_partial_enumeration when
+       appropriate.
+       (add_partial_namespace): New.
+       (add_partial_enumeration, locate_pdi_sibling): Ditto.
+
+2003-09-09  Andrew Cagney  <cagney@redhat.com>
+
+       * rs6000-tdep.c (ppc_push_return_address): Delete function.
+       (rs6000_push_dummy_call): Set LR to BP_ADDR.
+       (rs6000_gdbarch_init): Do not set deprecated_push_return_address.
+       * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Ditto.
+
+       * rs6000-tdep.c (rs6000_fix_call_dummy): Delete function.
+       (rs6000_push_dummy_call): Set the "TOC" register.
+
+       * rs6000-tdep.c (rs6000_gdbarch_init): Do not set the deprecated
+       methods "max_register_raw_size", "max_register_virtual_size" or
+       "register_virtual_size".
+
+2003-09-09  Ian Lance Taylor  <ian@wasabisystems.com>
+
+       * MAINTAINERS: Update my e-mail address.
+
+2003-09-09  Andrew Cagney  <cagney@redhat.com>
+
+       * rs6000-tdep.c (rs6000_store_struct_return): Delete function.
+       (rs6000_push_dummy_call): Store the struct return address.
+       * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Ditto.
+
+2003-09-09  Andrew Cagney  <cagney@redhat.com>
+
+       * ppc-tdep.h (ppc_sysv_abi_push_dummy_call): Replace
+       "ppc_sysv_abi_push_arguments".
+       * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Replace
+       "ppc_sysv_abi_push_arguments".
+       * rs6000-tdep.c (rs6000_gdbarch_init): Set "push_dummy_call"
+       instead of "push_arguments".
+       (rs6000_push_dummy_call): Replace "rs6000_push_arguments".
+
+2003-09-09  Andrew Cagney  <cagney@redhat.com>
+
+       * sh64-tdep.c (sh64_push_return_address): Use ENTRY_POINT_ADDRESS
+       instead of CALL_DUMMY_ADDRESS.
+
+2003-09-09  Paul N. Hilfinger  <hilfingr@gnat.com>
+
+       * p-lang.c: Eliminate "register".
+       * c-lang.c: Ditto.
+       * expprint.c: Ditto.
+       * f-lang.c: Ditto.
+       * jv-lang.c: Ditto.
+       * language.c: Ditto.
+       * m2-lang.c: Ditto.
+       * parse.c: Ditto.
+       * scm-lang.c: Ditto.
+       * objc-lang.c: Ditto.
+
+2003-09-09  Nick Clifton  <nickc@redhat.com>
+
+       * v850-tdep.c (v850_processor_type_table): Add bfd_mach_v850e1.
+
+2003-09-04  Andrew Cagney  <cagney@redhat.com>
+
+       * avr-tdep.c: Include "dis-asm.h".
+       * cris-tdep.c: Include "dis-asm.h".
+       (cris_delayed_get_disassembler): Use "struct disassemble_info"
+       instead of corresponding typedef.
+       * h8300-tdep.c: Include "dis-asm.h".
+       * ia64-tdep.c: Include "dis-asm.h".
+       * i386-tdep.c: Include "dis-asm.h".
+       (i386_print_insn): Use "struct disassemble_info" instead of
+       corresponding typedef.
+       * m68k-tdep.c: Include "dis-asm.h".
+       * mcore-tdep.c: Include "dis-asm.h".
+       * mips-tdep.c: Include "dis-asm.h".
+       (gdb_print_insn_mips): Make static, use "struct disassemble_info"
+       instead of corresponding typedef.
+       * ns32k-tdep.c: Include "dis-asm.h".
+       * s390-tdep.c: Include "dis-asm.h".
+       * sparc-tdep.c: Include "dis-asm.h".
+       * vax-tdep.c: Include "dis-asm.h".
+       * v850-tdep.c: Include "dis-asm.h".
+       * mn10300-tdep.c: Include "dis-asm.h".
+       * rs6000-tdep.c: Include "dis-asm.h".
+       * xstormy16-tdep.c: Include "dis-asm.h".
+       (_initialize_xstormy16_tdep): Delete "extern" declaration of
+       print_insn_xstormy16.
+       * Makefile.in (v850-tdep.o): Update dependencies.
+       (vax-tdep.o, sparc-tdep.o, s390-tdep.o): Ditto.
+       (ns32k-tdep.o, mips-tdep.o, mcore-tdep.o): Ditto.
+       (m68k-tdep.o, ia64-tdep.o, i386-tdep.o): Ditto.
+       (h8300-tdep.o, cris-tdep.o, avr-tdep.o): Ditto.
+       (mn10300-tdep.o, xstormy16-tdep.o, disasm.o): Ditto.
+       (gdbarch_h): Remove $(dis_asm_h).
+       * disasm.c: Include "dis-asm.h".
+       (dis_asm_read_memory): Use "struct disassemble_info" instead of
+       corresponding typedef.
+       (dis_asm_memory_error, dump_insns, do_assembly_only): Ditto.
+       (gdb_disassemble_info, gdb_disassembly, gdb_print_insn): Ditto.
+       * gdbarch.sh: Do not include "dis-asm.h".
+       (struct disassemble_info): Declare opaque.
+       (TARGET_PRINT_INSN): Update declaration.
+       * gdbarch.h, gdbarch.c: Re-generate.
+
+2003-09-08  Andrew Cagney  <cagney@redhat.com>
+
+       * gdbarch.sh (DEPRECATED_CALL_DUMMY_ADDRESS): Rename
+       CALL_DUMMY_ADDRESS, change to a predicate.
+       * gdbarch.h, gdbarch.c: Re-generate.
+       * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
+       Use either DEPRECATED_CALL_DUMMY_ADDRESS or entry_point_address.
+       * infcall.c (call_function_by_hand): Ditto.
+       * sparc-tdep.c (sparc_push_return_address): Ditto.
+       (sparc_gdbarch_init): Set deprecated_call_dummy_address.
+       * xstormy16-tdep.c (xstormy16_push_return_address): Replace
+       CALL_DUMMY_ADDRESS with entry_point_address.
+       * v850-tdep.c (v850_push_return_address): Ditto.
+       * s390-tdep.c (s390_push_return_address): Ditto.
+       * rs6000-tdep.c (ppc_push_return_address): Ditto.
+       * mn10300-tdep.c (mn10300_push_return_address): Ditto.
+       * mcore-tdep.c (mcore_push_return_address): Ditto.
+       * cris-tdep.c (cris_push_return_address): Ditto.
+       * arm-tdep.c (arm_push_return_address): Ditto.
+
+2003-09-08  Andrew Cagney  <cagney@redhat.com>
+
+       * dwarf2-frame.c (enum dwarf2_reg_rule): New, replace anonymous
+       enum.  Add REG_UNSPECIFIED, rename REG_UNSAVED to REG_UNDEFINED
+       and REG_UNMODIFIED to REG_SAME_VALUE.
+       (execute_cfa_program): Update.
+       (dwarf2_frame_cache): Update.  Initialize table to
+       REG_UNSPECIFIED, complain if CFI fails to specify a register's
+       location.
+       (dwarf2_frame_prev_register): Update.  Handle REG_UNSPECIFIED.
+
+2003-09-08  Andrew Cagney  <cagney@redhat.com>
+
+       * gnu-nat.c: Remove "inline" function attribute.
+       * alpha-tdep.c, ppc-linux-tdep.c, macroexp.c: Ditto.
+
+2003-09-08  Kevin Buettner  <kevinb@redhat.com>
+
+       * config/frv/frv.mt (SIM_OBS, SIM): Enable simulator for FR-V
+       target.
+
+2003-09-08  Kevin Buettner  <kevinb@redhat.com>
+
+       * frv-tdep.c (frame-unwind.h, frame-base.h): Include.
+       (frame_extra_info): Rename this struct to frv_unwind_cache.
+       Delete fields ``fp_to_callers_sp_offset'' and ``lr_saved_on_stack''.
+       Add fields ``prev_sp'' and ``base''.
+       (frv_frame_chain, frv_frame_saved_pc, frv_frame_init_saved_regs)
+       (frv_saved_pc_after_call, frv_init_extra_frame_info)
+       (frv_push_return_address, frv_pop_frame, frv_pop_frame_regular):
+       Delete.
+       (frv_analyze_prologue): Add ``struct frv_unwind_cache *'' argument.
+       Revise all callers.  Fill in the unwind cache argument and make
+       other adjustments to account for new frame mechanisms.
+       (frv_frame_unwind_cache, frv_frame_align, frv_unwind_pc)
+       (frv_frame_this_id, frv_frame_prev_register, frv_frame_sniffer)
+       (frv_frame_base_address, frv_unwind_dummy_id): New functions.
+       (frv_frame_unwind, frv_frame_base): New structs.
+       (frv_push_arguments): Change name to frv_push_dummy_call().  Add
+       additional arguments expected by this method and adjust function
+       body accordingly.
+       (frv_gdbarch_init): Remove calls to the following functions:
+       set_gdbarch_deprecated_init_frame_pc(),
+       set_gdbarch_deprecated_saved_pc_after_call(),
+       set_gdbarch_deprecated_frame_chain(),
+       set_gdbarch_deprecated_frame_saved_pc(),
+       set_gdbarch_deprecated_frame_init_saved_regs(),
+       set_gdbarch_deprecated_push_arguments(),
+       set_gdbarch_deprecated_push_return_address(),
+       set_gdbarch_deprecated_pop_frame(),
+       set_gdbarch_deprecated_call_dummy_words(),
+       set_gdbarch_deprecated_sizeof_call_dummy_words(),
+       set_gdbarch_deprecated_init_extra_frame_info(),
+       set_gdbarch_deprecated_dummy_write_sp(), and
+       set_gdbarch_deprecated_pc_in_call_dummy().
+       Add calls to the following functions:
+       set_gdbarch_unwind_pc(), set_gdbarch_unwind_sp(),
+       set_gdbarch_frame_align(), frame_unwind_append_sniffer(), and
+       frame_base_set_default().
+       * Makefile.in (frv-tdep.o): Update dependencies.
+       
+2003-09-09  Mark Kettenis  <kettenis@gnu.org>
+
+       * dwarf2-frame.c (read_encoded_value): Add support for
+       DW_EH_PE_aligned encoding.
+
+2003-09-08  Daniel Jacobowitz  <drow@mvista.com>
+
+       * infrun.c (normal_stop): Don't print a message if the inferior
+       has exited.
+
+2003-09-08  Jim Blandy  <jimb@redhat.com>
+
+       * Makefile.in (dbxread.o): Note new dependency on $(gdb_assert_h).
+       * dbxread.c: #include "gdb_assert.h".
+       (read_dbx_symtab): If the objfile has no .data section, use the
+       section index for the .bss section instead.
+
+2003-09-08  Daniel Jacobowitz  <drow@mvista.com>
+
+       * frame.c (deprecated_safe_get_selected_frame): New function.
+       * frame.h (deprecated_safe_get_selected_frame): Add prototype.
+       * findvar.c (read_var_value): Call it.
+
+2003-09-08  Corinna Vinschen  <vinschen@redhat.com>
+
+       * Makefile.in (ALLDEPFILES): Add sh64-tdep.c.
+       (sh64-tdep.o): Add dependencies.
+       * configure.tgt: Add FIXME to sh-*-linux*.
+       * sh-tdep.c: Move sh64 support to sh64-tdep.c.
+       (sh_gdbarch_init): Always set correct sh_show_regs function
+       pointer.  Call sh64_gdbarch_init() if machine type is sh5. 
+       * sh-tdep.h: Move sh64 support to sh64-tdep.c.
+       * sh64-tdep.c: New file, containing all sh64 related code from
+       sh-tdep.c.
+       * config/sh/embed.mt (TDEPFILES): Add sh64-tdep.o.
+       * config/sh/linux.mt (TDEPFILES): Ditto.
+       * config/sh/nbsd.mt (TDEPFILES): Ditto. 
+       * config/sh/tm-sh.h: Drop REGISTER_TYPE definition.
+       * config/sh/wince.mt (TDEPFILES): Ditto.
+
+2003-09-07  Daniel Jacobowitz  <drow@mvista.com>
+
+       * lin-lwp.c (detach_callback): Don't call stop_wait_callback.
+       (stop_wait_callback): Handle !lp->signalled also.
+       (lin_lwp_has_pending, flush_callback): New functions.
+       (lin_lwp_wait): Call flush_callback.
+       * linux-proc.c (linux_proc_add_line_to_sigset): New function.
+       (linux_proc_pending_signals): New function.
+       * linux-nat.h (linux_proc_pending_signals): Add prototype.
+
+2003-09-07  Daniel Jacobowitz  <drow@mvista.com>
+
+       From Nick Kelsey <nickk@ubicom.com>:
+       * infrun.c (handle_inferior_event): Check IN_SOLIB_RETURN_TRAMPOLINE
+       when the stop PC is at the beginning of a function also.
+
 2003-09-06  Daniel Jacobowitz  <drow@mvista.com>
 
        * arm-linux-tdep.c (arm_linux_arm_be_breakpoint): New.
This page took 0.045175 seconds and 4 git commands to generate.