summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2004-05-15 Randolph Chung <tausq@debian.org>Randolph Chung2004-05-163-2/+9
| | | | | | | * hppa-tdep.h (hppa_frame_prev_register_helper): Pass save_regs as pointer instead of array reference since HPUX compiler does not accept unsized array arguments. * somsolib.c (dld_flags_buffer): Use constant array size.
* daily updateAlan Modra2004-05-161-1/+1
|
* * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Replace hexadecimalMark Kettenis2004-05-152-3/+24
| | | | | | offset with decimal offset. (amd64obsd_sigcontext_addr): Return correct address for entire signal trampoline.
* * elfxx-mips.c (MINUS_TWO): Define.Thiemo Seufer2004-05-152-10/+17
| | | | | | | (mips_elf_higher, mips_elf_highest, mips_elf_create_dynamic_relocation): Use MINUS_ONE and MINUS_TWO for some bfd_vma values. (_bfd_mips_elf_finish_dynamic_symbol): Likewise. Code cleanup.
* * vax-tdep.c (vax_frame_num_args): Use get_frame_base_addressMark Kettenis2004-05-152-1/+4
| | | | instead of get_frame_base.
* * i386bsd-nat.c (supply_gregset): Use regcache_raw_supply.Mark Kettenis2004-05-152-6/+11
| | | | (fill_gregset): Use regcache_raw_collect.
* * config/djgpp/fnchange.lst: Add entries for ppcobsd-nat.c andMark Kettenis2004-05-152-0/+5
| | | | ppcobsd-tdep.c.
* *** empty log message ***Mark Kettenis2004-05-151-0/+5
|
* * config/sparc/tm-nbsd64.h: Remove file.Mark Kettenis2004-05-152-59/+0
| | | | * config/tm-sunos.h: Remove file.
* Cope with ARM mapping symbolsNick Clifton2004-05-152-1/+7
|
* Make 'insn' argument of iq2000_cgen_insn_supported be const.Nick Clifton2004-05-152-3/+7
|
* * rs6000-tdep.c (store_param_on_stack_p): New function,Joel Brobecker2004-05-152-20/+95
| | | | | | | | | an improved version of some code extracted from skip_prologue(). (skip_prologue): Use store_param_on_stack_p() to detect instructions saving a parameter on the stack. Detect when r0 is used to save a parameter. Do not mark "li rx, SIMM" instructions as part of the prologue, unless the following instruction is also part of the prologue.
* daily updateAlan Modra2004-05-151-1/+1
|
* 2004-05-14 Andrew Cagney <cagney@redhat.com>Andrew Cagney2004-05-142-64/+10
| | | | | * infrun.c (handle_inferior_event): Simplify STEP_OVER_UNDEBUGGABLE.
* * som.c (log2): Rename to exact_log2. Adjust all callers.Dave Anglin2004-05-142-6/+10
|
* 2004-05-14 Andrew Cagney <cagney@redhat.com>Andrew Cagney2004-05-142-83/+150
| | | | | | * infrun.c (handle_step_into_function): Delete function. (handle_inferior_event): Inline calls to handle_step_into_function.
* * rs6000-nat.c: Fix a comment.Jerome Guitton2004-05-142-1/+5
|
* Committed by Jim Blandy <jimb@redhat.com>:Jim Blandy2004-05-142-2/+7
| | | | * regcache.c (struct regcache_descr): fix comment spelling.
* daily updateAlan Modra2004-05-141-1/+1
|
* * aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.Joel Brobecker2004-05-132-4/+9
| | | | Fixes a link link failure.
* * aix-thread.c (store_regs_kernel_thread): Fix a little obviousJoel Brobecker2004-05-132-1/+5
| | | | error that was causing the build to fail.
* * aix-thread.c: #include "gdb_string.h". Needed for memset and memcopy.Joel Brobecker2004-05-133-1/+7
| | | | * Makefile.in (aix-thread.o): Add dependency on gdb_string.h.
* * aix-thread.c (pdc_read_regs, supply_gprs64, supply_fprs)Jim Blandy2004-05-137-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-13 Andrew Cagney <cagney@redhat.com>Andrew Cagney2004-05-132-12/+22
| | | | | | * infrun.c (handle_inferior_event): Check for STEP_OVER_UNDEBUGGABLE after signal trampolines and function calls. Update comments.
* * aix-thread.c (supply_gprs64, fetch_regs_user_thread)Jim Blandy2004-05-138-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-07 Michael Snyder <msnyder@redhat.com>Michael Snyder2004-05-132-7/+27
| | | | | * tracepoint.c (scope_info): Add handling for LOC_COMPUTED, LOC_COMPUTED_ARG, and LOC_INDIRECT.
* 2004-05-13 Andrew Cagney <cagney@redhat.com>Andrew Cagney2004-05-132-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. */
* merge from gccDJ Delorie2004-05-138-95/+1909
|
* 2004-05-13 Andrew Cagney <cagney@redhat.com>Andrew Cagney2004-05-135-84/+190
| | | | | * gdb.base/signull.exp, gdb.base/signull.c: New files. * gdb.base/gdb1476.c, gdb.base/gdb1476.exp: Delete files.
* 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>Bryce McKinlay2004-05-132-1/+9
| | | | | * dwarf2loc.c (find_location_expression): Use ANOFFSET to adjust base_address for shared libraries.
* 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>Bryce McKinlay2004-05-132-0/+5
| | | | * MAINTAINERS (write after approval): Add myself.
* * breakpoint.c (bpstat_stop_status): Add new argumentUlrich Weigand2004-05-134-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.
* Remove comment rendered obsolete by previous deltaNick Clifton2004-05-132-6/+2
|
* fix typo in file nameNick Clifton2004-05-131-2/+2
|
* Handle dwarf3 format CIE entries.Nick Clifton2004-05-136-8/+49
|
* Change or32-rtems target from COFF to ELF formatNick Clifton2004-05-137-67/+39
|
* Updated French translationsNick Clifton2004-05-1312-494/+448
|
* daily updateAlan Modra2004-05-131-1/+1
|
* * configure.in: When checking whether we should use the -bbigtocJim Blandy2004-05-123-61/+69
| | | | | option, don't forget to restore the original value of LDFLAGS. * configure: Regenerated.
* 2004-05-12 Andrew Cagney <cagney@redhat.com>Andrew Cagney2004-05-126-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.
* * MAINTAINERS (write after approval): Add myself.Ulrich Weigand2004-05-122-0/+5
|
* 2004-05-12 Andrew Cagney <cagney@redhat.com>Andrew Cagney2004-05-123-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.
* * ld-sh/tlsbin-2.d: Adjust for section reordering changesKaz Kojima2004-05-124-56/+50
| | | | | | and removal of unneeded STT_SECTION symbols from .dynsym. * ld-sh/tlsbin-3.d: Likewise. * ld-sh/tlspic-2.d: Likewise.
* * lib/sim-defs.exp: Remove stray semicolons.Ben Elliston2004-05-122-1/+5
|
* * binutils-all/ar.exp: Remove stray semicolons.Ben Elliston2004-05-127-59/+68
| | | | | | | | * binutils-all/dlltool.exp: Likewise. * binutils-all/objcopy.exp: Likewise. * binutils-all/readelf.exp: Likewise. * binutils-all/windres/windres.exp: Likewise. * lib/utils-lib.exp: Likewise.
* * ld-sh/sh64/relax.exp: Remove stray semicolons.Ben Elliston2004-05-124-6/+12
| | | | | * ld-sh/sh64/relfail.exp: Likewise. * lib/ld-lib.exp: Likewise.
* * gas/h8300/t03_add.exp: Remove stray semicolons.Ben Elliston2004-05-1214-20/+36
| | | | | | | | | | | | | | | * gas/h8300/t04_sub.exp: Likewise. * gas/h8300/t05_cmp.exp: Likewise. * gas/h8300/t08_or.exp: Likewise. * gas/h8300/t09_xor.exp: Likewise. * gas/h8300/t10_and.exp: Likewise. * gas/hppa/reloc/reloc.exp: Likewise. * gas/hppa/unsorted/unsorted.exp: Likewise. * gas/i386/i386.exp: Likewise. * gas/m68hc11/m68hc11.exp: Likewise. * gas/mips/mips.exp: Likewise. * gas/sparc/sparc.exp: Likewise. * lib/gas-defs.exp: Likewise.
* 2004-05-11 Maciej W. Rozycki <macro@ds2.pg.gda.pl>Chris Demetriou2004-05-123-2/+8
| | | | | | * mips/interp.c (decode_coproc): Sign-extend the address retrieved from COP0_BADVADDR. * mips/sim-main.h (COP0_BADVADDR): Remove a cast.
* 2004-05-11 Andrew Cagney <cagney@redhat.com>Andrew Cagney2004-05-112-83/+19
| | | | | | * infrun.c (step_over_function): Delete function. (handle_step_into_function): Use insert_step_resume_breakpoint. (insert_step_resume_breakpoint): Fix assertion.
* (defaulted_query): Just use the normal query input type when printing theNick Roberts2004-05-111-3/+3
| | | | annotations.