aboutsummaryrefslogtreecommitdiff
path: root/gdb
AgeCommit message (Collapse)AuthorFilesLines
2004-05-13 * aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.Joel Brobecker2-4/+9
Fixes a link link failure.
2004-05-13 * aix-thread.c (store_regs_kernel_thread): Fix a little obviousJoel Brobecker2-1/+5
error that was causing the build to fail.
2004-05-13 * aix-thread.c: #include "gdb_string.h". Needed for memset and memcopy.Joel Brobecker3-1/+7
* Makefile.in (aix-thread.o): Add dependency on gdb_string.h.
2004-05-13* aix-thread.c (pdc_read_regs, supply_gprs64, supply_fprs)Jim Blandy7-29/+42
(fetch_regs_user_thread, fetch_regs_kernel_thread) (store_regs_user_thread, store_regs_kernel_thread): Use ppc_num_gprs and ppc_num_fprs instead of '32' and '31'. * ppc-linux-nat.c (fill_gregset): Same. * ppc-linux-tdep.c (ppc_linux_supply_gregset) (ppc_linux_sigtramp_cache): Same. * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg) (ppcnbsd_sigtramp_cache_init): Same. * rs6000-nat.c (fetch_core_registers): Same. * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset) (rs6000_frame_cache): Same.
2004-05-132004-05-13 Andrew Cagney <cagney@redhat.com>Andrew Cagney2-12/+22
* infrun.c (handle_inferior_event): Check for STEP_OVER_UNDEBUGGABLE after signal trampolines and function calls. Update comments.
2004-05-13* aix-thread.c (supply_gprs64, fetch_regs_user_thread)Jim Blandy8-19/+44
(store_regs_user_thread): Use tdep->ppc_gp0_regnum, instead of assuming that the gprs are numbered starting with zero. * ppc-linux-nat.c (fill_gregset): Same. * ppc-linux-tdep.c (ppc_linux_supply_gregset): Same. * ppcnbsd-nat.c (getregs_supplies): Same. * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg): Same. * rs6000-nat.c (fetch_core_registers): Same. * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset): Same.
2004-05-132004-05-07 Michael Snyder <msnyder@redhat.com>Michael Snyder2-7/+27
* tracepoint.c (scope_info): Add handling for LOC_COMPUTED, LOC_COMPUTED_ARG, and LOC_INDIRECT.
2004-05-132004-05-13 Andrew Cagney <cagney@redhat.com>Andrew Cagney2-1/+5
* infrun.c (handle_inferior_event): Use frame_unwind_id. Index: infrun.c =================================================================== RCS file: /cvs/src/src/gdb/infrun.c,v retrieving revision 1.159 diff -p -u -r1.159 infrun.c --- infrun.c 13 May 2004 16:39:11 -0000 1.159 +++ infrun.c 13 May 2004 18:37:09 -0000 @@ -2437,7 +2437,7 @@ process_event_stop_test: return; } - if (frame_id_eq (get_frame_id (get_prev_frame (get_current_frame ())), + if (frame_id_eq (frame_unwind_id (get_current_frame ()), step_frame_id)) { /* It's a subroutine call. */
2004-05-132004-05-13 Andrew Cagney <cagney@redhat.com>Andrew Cagney5-84/+190
* gdb.base/signull.exp, gdb.base/signull.c: New files. * gdb.base/gdb1476.c, gdb.base/gdb1476.exp: Delete files.
2004-05-132004-05-13 Bryce McKinlay <mckinlay@redhat.com>Bryce McKinlay2-1/+9
* dwarf2loc.c (find_location_expression): Use ANOFFSET to adjust base_address for shared libraries.
2004-05-132004-05-13 Bryce McKinlay <mckinlay@redhat.com>Bryce McKinlay2-0/+5
* MAINTAINERS (write after approval): Add myself.
2004-05-13 * breakpoint.c (bpstat_stop_status): Add new argumentUlrich Weigand4-8/+22
STOPPED_BY_WATCHPOINT. Use it instead of testing target_stopped_data_address agaist 0 to check whether or not we stopped due to a hardware watchpoint. * breakpoint.h (bpstat_stop_status): Adapt prototype. * infrun.c (handle_inferior_event): Call bpstat_stop_status with new argument.
2004-05-12* configure.in: When checking whether we should use the -bbigtocJim Blandy3-61/+69
option, don't forget to restore the original value of LDFLAGS. * configure: Regenerated.
2004-05-122004-05-12 Andrew Cagney <cagney@redhat.com>Andrew Cagney6-23/+15
* thread.c (load_infrun_state): Delete step_sp. * infrun.c (context_switch): Ditto. * inferior.h (step_sp): Ditto. * infcmd.c (step_sp, step_1, step_once, until_next_command): Ditto. * gdbthread.h (struct thread_info, save_infrun_state) (restore_infrun_state): Ditto.
2004-05-12 * MAINTAINERS (write after approval): Add myself.Ulrich Weigand2-0/+5
2004-05-122004-05-12 Andrew Cagney <cagney@redhat.com>Andrew Cagney3-47/+59
* infrun.c (adjust_pc_after_break): Rewrite decr logic, eliminate reference to step_sp. (struct execution_control_state, init_execution_control_state) (handle_inferior_event, keep_going): Delete update_step_sp and step_sp. * infcmd.c (step_sp): Note that variable is unused.
2004-05-112004-05-11 Andrew Cagney <cagney@redhat.com>Andrew Cagney2-83/+19
* infrun.c (step_over_function): Delete function. (handle_step_into_function): Use insert_step_resume_breakpoint. (insert_step_resume_breakpoint): Fix assertion.
2004-05-11(defaulted_query): Just use the normal query input type when printing theNick Roberts1-3/+3
annotations.
2004-05-11*** empty log message ***Nick Roberts1-0/+5
2004-05-112004-05-11 Andrew Cagney <cagney@redhat.com>Andrew Cagney4-76/+32
* infrun.c (handle_inferior_event): Simplify code handling step-into or return-from a signal trampoline. Index: testsuite/ChangeLog 2004-05-11 Andrew Cagney <cagney@redhat.com> * gdb.base/sigstep.exp (advancei): Update KFAILs. gdb/1613 is fixed but revealed gdb/1639.
2004-05-112004-05-11 Andrew Cagney <cagney@redhat.com>Andrew Cagney3-2/+7
* ppcnbsd-tdep.c: Include "gdb_assert.h". * Makefile.in (ppcnbsd-tdep.o): Update dependencies.
2004-05-11* ppc-bdm.c (bdm_ppc_fetch_registers): Replace utterly broken codeJim Blandy2-26/+8
with a call to internal_error.
2004-05-11* ppc-tdep.h (struct gdbarch_tdep): Change definition ofJim Blandy12-65/+285
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this processor variant lacks those registers. (ppc_floating_point_unit_p): Change description to make it clear that this returns info about the ISA, not the ABI. * rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to return true or false by checking tdep->ppc_fp0_regnum and tdep->ppc_fpscr_regnum. The original code replicated the BFD arch/mach switching done in rs6000_gdbarch_init; it's better to keep that logic there, and just check the results here. (rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and tdep->ppc_fpscr_regnum to -1 to indicate that we have no floating-point registers. (ppc_supply_fpregset, ppc_collect_fpregset) (rs6000_push_dummy_call, rs6000_extract_return_value) (rs6000_store_return_value): Assert that we have floating-point registers. (rs6000_dwarf2_stab_reg_to_regnum): Add FIXME. (rs6000_frame_cache): Don't note the locations at which floating-point registers were saved if we have no fprs. * aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP registers. (fetch_regs_user_thread, fetch_regs_kernel_thread) (store_regs_user_thread, store_regs_kernel_thread): Only call supply_fprs / fill_fprs if we actually have floating-point registers. (special_register_p): Check ppc_fpscr_regnum before matching against it. (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't supply / collect fpscr if we don't have it. * ppc-bdm.c: #include "gdb_assert.h". (bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we have floating-point registers, since I can't test this code on FP-free systems to adapt it. * ppc-linux-nat.c (ppc_register_u_addr): Don't match against the fpscr and floating point register numbers if they don't exist. (fetch_register): Assert that we have floating-point registers before we reach the code that handles them. (store_register): Same. And use tdep instead of calling gdbarch_tdep again. (fill_fpregset): Don't try to collect FP registers and fpscr if we don't have them. (ppc_linux_sigtramp_cache): Don't record the saved locations of fprs and fpscr if we don't have them. (ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we don't have them. * ppcnbsd-nat.c: #include "gdb_assert.h". (getfpregs_supplies): Assert that we have floating-point registers. * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same. * ppcobsd-tdep.c: #include "gdb_assert.h". (ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we have floating-point registers. * rs6000-nat.c (regmap): Don't match against the fpscr and floating point register numbers if they don't exist. (fetch_inferior_registers, store_inferior_registers, fetch_core_registers): Only fetch / store / supply the floating-point registers and the fpscr if we have them. * Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o) (ppcobsd-tdep.o): Update dependencies.
2004-05-102004-05-10 Andrew Cagney <cagney@redhat.com>Andrew Cagney4-12/+11
* infrun.c (through_sigtramp_breakpoint): Delete variable. (context_switch): Do not switch through_sigtramp_breakpoint. * gdbthread.h (save_infrun_state, load_infrun_state) (struct thread_info): Delete through_sigtramp_breakpoint parameter and structure member. * thread.c (load_infrun_state, save_infrun_state): Update.
2004-05-10* m68kbsd-tdep.c (m68kbsd_elf_init_abi): Call m68k_svr4_init_abi.Mark Kettenis2-0/+6
2004-05-10 * acinclude.m4: Quote macro names being defined by AC_DEFUNDaniel Jacobowitz3-32/+38
throughout. * aclocal.m4: Regenerate.
2004-05-10Back out change. The NetBSD changes need Jason Thorpe's approval, butJim Blandy12-263/+65
he hasn't reviewed it yet.
2004-05-10* alphanbsd-tdep.c: Fix include of "gdb_string.h".Nathan J. Williams2-1/+5
2004-05-102004-05-10 Andrew Cagney <cagney@redhat.com>Andrew Cagney4-260/+126
* infrun.c (check_sigtramp2): Delete function. (handle_inferior_event): When single stepping, and taking a signal, set a breakpoint at the signal return address. Delete redundant calls to check_sigtramp2. (insert_step_resume_breakpoint): New function. (through_sigtramp_breakpoint, handle_inferior_event) (follow_exec, wait_for_inferior, fetch_inferior_event) (currently_stepping, keep_going): Delete most uses of through_sigtramp_breakpoint, not that it should be deleted. (delete_breakpoint_current_contents): Delete function. Index: testsuite/ChangeLog 2004-05-10 Andrew Cagney <cagney@redhat.com> * gdb.base/signals.exp (signal_tests_1): Simplify "continue to func1" and "next to 2nd alarm", kernel bug avoided.
2004-05-102004-05-10 Randolph Chung <tausq@debian.org>Randolph Chung3-1/+34
* config/pa/linux.mt (TM_FILE): Use new tm-linux.h for hppa-linux target. * config/pa/tm-linux.h: New file.
2004-05-10 * cli/cli-setshow.c (cmd_show_list): Check for "show" in the middleDaniel Jacobowitz2-2/+9
of prefixes. Don't print the prefix twice in the CLI.
2004-05-10* ppc-tdep.h (struct gdbarch_tdep): Change definition ofJim Blandy12-65/+263
ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this processor variant lacks those registers. (ppc_floating_point_unit_p): Change description to make it clear that this returns info about the ISA, not the ABI. * rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to return true or false by checking tdep->ppc_fp0_regnum and tdep->ppc_fpscr_regnum. The original code replicated the BFD arch/mach switching done in rs6000_gdbarch_init; it's better to keep that logic there, and just check the results here. (rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and tdep->ppc_fpscr_regnum to -1 to indicate that we have no floating-point registers. (ppc_supply_fpregset, ppc_collect_fpregset) (rs6000_push_dummy_call, rs6000_extract_return_value) (rs6000_store_return_value): Assert that we have floating-point registers. (rs6000_dwarf2_stab_reg_to_regnum): Add FIXME. (rs6000_frame_cache): Don't note the locations at which floating-point registers were saved if we have no fprs. * aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP registers. (fetch_regs_user_thread, fetch_regs_kernel_thread) (store_regs_user_thread, store_regs_kernel_thread): Only call supply_fprs / fill_fprs if we actually have floating-point registers. (special_register_p): Check ppc_fpscr_regnum before matching against it. (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't supply / collect fpscr if we don't have it. * ppc-bdm.c: #include "gdb_assert.h". (bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we have floating-point registers, since I can't test this code on FP-free systems to adapt it. * ppc-linux-nat.c (ppc_register_u_addr): Don't match against the fpscr and floating point register numbers if they don't exist. (fetch_register): Assert that we have floating-point registers before we reach the code that handles them. (store_register): Same. And use tdep instead of calling gdbarch_tdep again. (fill_fpregset): Don't try to collect FP registers and fpscr if we don't have them. (ppc_linux_sigtramp_cache): Don't record the saved locations of fprs and fpscr if we don't have them. (ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we don't have them. * ppcnbsd-nat.c: #include "gdb_assert.h". (getfpregs_supplies): Assert that we have floating-point registers. * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same. * ppcobsd-tdep.c: #include "gdb_assert.h". (ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we have floating-point registers. * rs6000-nat.c (regmap): Don't match against the fpscr and floating point register numbers if they don't exist. (fetch_inferior_registers, store_inferior_registers, fetch_core_registers): Only fetch / store / supply the floating-point registers and the fpscr if we have them. * Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o) (ppcobsd-tdep.o): Update dependencies.
2004-05-10* rs6000-tdep.c (ppc_collect_gregset): When regnum == -1, doJim Blandy2-1/+4
collect all the gprs.
2004-05-10* rs6000-tdep.c (ppc_collect_gregset): Correct off-by-one error inJim Blandy2-1/+6
loop collecting gprs.
2004-05-10 PR external/1568Daniel Jacobowitz3-8/+37
* gdb.base/bigcore.exp: Check the size of the dumped core file. XFAIL if it is smaller than bytes_allocated. * gdb.base/bigcore.c (bytes_allocated): Make static and unsigned. (main): Make chunks_allocated unsigned. Correct comment.
2004-05-102004-05-09 Andrew Cagney <cagney@redhat.com>Andrew Cagney3-127/+12
* remote-vx.c (net_step): Delete step-range code. * remote.c (remote_resume, init_all_packet_configs) (set_remote_protocol_E_packet_cmd) (show_remote_protocol_E_packet_cmd) (remote_protocol_E, show_remote_cmd, _initialize_remote) (remote_protocol_e, set_remote_protocol_e_packet_cmd) (show_remote_protocol_e_packet_cmd): Ditto.
2004-05-09* hppa-tdep.h (enum hppa_regnum): Name enum, add HPPA_R1_REGNUM.Mark Kettenis2-1/+5
2004-05-09* hppa-tdep.h: Update copyright year.Mark Kettenis2-1/+6
(struct trad_frame_saved_reg): Add opaque declaration.
2004-05-09* amd64-tdep.c (amd64_return_value): ImplementMark Kettenis2-4/+24
RETURN_VALUE_ABI_RETURNS_ADDRESS.
2004-05-09* m68k-tdep.c (m68k_convert_register_p, m68k_register_to_value)Mark Kettenis2-0/+64
(m68k_value_to_register): New functions. (m68k_gdbarch_init): Set convert_register_p, register_to_value and value_to_register.
2004-05-08* defs.h (enum return_value_convention): AddMark Kettenis5-55/+118
RETURN_VALUE_ABI_RETURNS_ADDRESS and RETURN_VALUE_ABI_PRESERVES_ADDRESS. * infcmd.c (legacy_return_value): New function. (print_return_value): Rwerite to implement RETURN_VALUE_ABI_RETURNS_ADDRESS. * values.c (using_struct_return): Check for inequality to RETURN_VALUE_REGISTER_CONVENTION instead of equality to RETURN_VALUE_STRUCT_CONVENTION. * i386-tdep.c (i386_return_value): Implement RETURN_VALUE_ABI_RETURNS_ADDRESS.
2004-05-08* vax-tdep.c: Tweak comments. Reorder include files. Don'tMark Kettenis3-26/+36
include "symtab.h", "opcode/vax.h" and "inferior.h". (vax_skip_prologue): Replace calls to read_memory_integer by calls to read_memory_unsigned_integer. (vax_gdbarch_init): Reorder. (_initialize_vax_tdep): Spell out prototype. * Makefile.in (vax-tdep.o): Update dependencies.
2004-05-082004-05-08 Andrew Cagney <cagney@redhat.com>Andrew Cagney5-22/+6
* infrun.c (resume): Delete call to DO_DEFERRED_STORES. * target.c (target_detach, target_disconnect): Ditto. 2004-05-08 Andrew Cagney <cagney@redhat.com> * gdbint.texinfo (Target Architecture Definition): Delete description of DO_DEFERRED_STORES.
2004-05-082004-05-08 Andrew Cagney <cagney@redhat.com>Andrew Cagney5-11/+13
* infcall.c (call_function_by_hand): When no DEPRECATED_SAVE_DUMMY_FRAME_TOS call generic_save_dummy_frame_tos. * rs6000-tdep.c (rs6000_gdbarch_init): Do not set DEPRECATED_SAVE_DUMMY_FRAME_TOS. * mn10300-tdep.c (mn10300_gdbarch_init): Ditto. * mcore-tdep.c (mcore_gdbarch_init): Ditto.
2004-05-082004-05-08 Andrew Cagney <cagney@redhat.com>Andrew Cagney9-96/+12
* gdbint.texinfo (Target Architecture Definition): Delete references to DEPRECATED_FIX_CALL_DUMMY. 2004-05-08 Andrew Cagney <cagney@redhat.com> * gdbarch.sh (DEPRECATED_FIX_CALL_DUMMY): Delete. * gdbarch.h, gdbarch.c: Re-generate. * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated_fix_call_dummy. * v850-tdep.c (v850_gdbarch_init): Ditto. * infcall.c (call_function_by_hand): Do not call DEPRECATED_FIX_CALL_DUMMY.
2004-05-082004-05-08 Andrew Cagney <cagney@redhat.com>Andrew Cagney16-188/+24
* gdbarch.sh (DEPRECATED_CALL_DUMMY_WORDS) (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Delete. * gdbarch.h, gdbarch.c: Re-generate. * arm-linux-tdep.c (arm_linux_call_dummy_words) (arm_linux_init_abi): Do not set deprecated_call_dummy_words or deprecated_sizeof_call_dummy_words. * arm-tdep.c (arm_call_dummy_words, arm_gdbarch_init): Ditto. * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto. * v850-tdep.c (v850_gdbarch_init): Ditto. * sh64-tdep.c (sh64_gdbarch_init): Ditto. * ns32k-tdep.c (ns32k_call_dummy_words, ns32k_gdbarch_init): Ditto. * mn10300-tdep.c (mn10300_gdbarch_init): Ditto. * mcore-tdep.c (mcore_gdbarch_init): Ditto. * arch-utils.h (legacy_call_dummy_words) (legacy_sizeof_call_dummy_words): Delete declarations. * arch-utils.c (legacy_call_dummy_words) (legacy_sizeof_call_dummy_words): Delete variables. Index: doc/ChangeLog 2004-05-08 Andrew Cagney <cagney@redhat.com> * gdbint.texinfo (Target Architecture Definition): Delete description of DEPRECATED_CALL_DUMMY_WORDS, DEPRECATED_SIZEOF_CALL_DUMMY_WORDS, and CALL_DUMMY.
2004-05-082004-05-08 Andrew Cagney <cagney@redhat.com>Andrew Cagney9-128/+29
* gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Delete. * gdbarch.h, gdbarch.c: Re-generate. * inferior.h (PUSH_DUMMY_FRAME): Delete macro. * infcall.c (call_function_by_hand): Eliminate call to DEPRECATED_PUSH_DUMMY_FRAME. * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated push_dummy_frame. (ns32k_push_dummy_frame): Delete function.
2004-05-082004-05-08 Andrew Cagney <cagney@redhat.com>Andrew Cagney9-88/+16
* ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated_call_dummy_breakpoint_offset or deprecated_call_dummy_start_offset. * dummy-frame.c, arm-tdep.c: Update comments. * gdbarch.sh (DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET) (DEPRECATED_CALL_DUMMY_START_OFFSET): Delete. * gdbarch.h, gdbarch.c: Re-generate. Index: doc/ChangeLog 2004-05-08 Andrew Cagney <cagney@redhat.com> * gdbint.texinfo (Target Architecture Definition): Delete reference to DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET.
2004-05-082004-05-08 Andrew Cagney <cagney@redhat.com>Andrew Cagney2-84/+5
* infcall.c (legacy_push_dummy_code): Delete function. (push_dummy_code): Delete call.
2004-05-082004-05-08 Andrew Cagney <cagney@redhat.com>Andrew Cagney6-20/+16
* gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete. * gdbarch.h, gdbarch.c: Re-generate. * blockframe.c (legacy_frame_chain_valid): Simplify by eliminating DEPRECATED_USE_GENERIC_DUMMY_FRAMES. * infcall.c (legacy_push_dummy_code, call_function_by_hand): Ditto. * frame.c (frame_type_from_pc, legacy_get_prev_frame): Ditto.