OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /openrisc/trunk/gnu-old/gdb-6.8/gdb/config
    from Rev 827 to Rev 840
    Reverse comparison

Rev 827 → Rev 840

/arm/nbsdelf.mh
0,0 → 1,2
# Host: NetBSD/arm
NATDEPFILES= fork-child.o inf-ptrace.o corelow.o armnbsd-nat.o
/arm/linux.mh
0,0 → 1,7
# Host: ARM based machine running GNU/Linux
 
NAT_FILE= config/nm-linux.h
NATDEPFILES= inf-ptrace.o fork-child.o arm-linux-nat.o gcore.o \
proc-service.o linux-thread-db.o linux-nat.o linux-fork.o
 
LOADLIBES= -ldl -rdynamic
/arm/nbsdaout.mh
0,0 → 1,3
# Host: NetBSD/arm
NATDEPFILES= fork-child.o inf-ptrace.o corelow.o armnbsd-nat.o \
solib-sunos.o
/powerpc/linux.mh
0,0 → 1,10
# Host: PowerPC, running Linux
 
XM_CLIBS=
 
NAT_FILE= config/nm-linux.h
NATDEPFILES= inf-ptrace.o fork-child.o \
ppc-linux-nat.o proc-service.o linux-thread-db.o \
gcore.o linux-nat.o linux-fork.o
 
LOADLIBES = -ldl -rdynamic
/powerpc/aix.mh
0,0 → 1,11
# Host: IBM PowerPC running AIX
 
NAT_FILE= config/rs6000/nm-rs6000.h
 
# aix-thread.o is not listed in NATDEPFILES as it is pulled in by configure.
NATDEPFILES= fork-child.o inf-ptrace.o corelow.o rs6000-nat.o \
xcoffread.o xcoffsolib.o
 
# When compiled with cc, for debugging, this argument should be passed.
# We have no idea who our current compiler is though, so we skip it.
# MH_CFLAGS = -bnodelcsect
/powerpc/spu-linux.mh
0,0 → 1,7
# Target: Cell BE (PowerPC64 + SPU)
 
# This implements a 'pseudo-native' GDB running on the
# PPU side of the Cell BE and debugging the SPU side.
 
NATDEPFILES = spu-linux-nat.o fork-child.o inf-ptrace.o
 
/powerpc/nbsd.mh
0,0 → 1,4
# Host: NetBSD/powerpc
NATDEPFILES= fork-child.o inf-ptrace.o ppcnbsd-nat.o bsd-kvm.o
 
LOADLIBES= -lkvm
/powerpc/obsd.mh
0,0 → 1,4
# Host: OpenBSD/powerpc
NATDEPFILES= fork-child.o inf-ptrace.o ppcobsd-nat.o bsd-kvm.o
 
LOADLIBES= -lkvm
/powerpc/ppc64-linux.mh
0,0 → 1,18
# Host: PowerPC64, running Linux
 
XM_CLIBS=
 
NAT_FILE= config/nm-linux.h
NATDEPFILES= inf-ptrace.o fork-child.o \
ppc-linux-nat.o proc-service.o linux-thread-db.o \
gcore.o linux-nat.o linux-fork.o
 
# The PowerPC has severe limitations on TOC size, and uses them even
# for non-PIC code. GDB overflows those tables when compiling with
# -mfull-toc (the default), so we need to ask GCC to use as few TOC
# entries as possible.
MH_CFLAGS= -mminimal-toc
 
# The dynamically loaded libthread_db needs access to symbols in the
# gdb executable.
LOADLIBES= -ldl -rdynamic
/m32r/linux.mh
0,0 → 1,8
# Host: M32R based machine running GNU/Linux
 
NAT_FILE= config/nm-linux.h
NATDEPFILES= inf-ptrace.o fork-child.o corelow.o \
m32r-linux-nat.o gcore.o proc-service.o linux-thread-db.o \
linux-nat.o linux-fork.o
 
LOADLIBES= -ldl -rdynamic
/alpha/alpha-osf3.mh
0,0 → 1,5
# Host: Little-endian Alpha running OSF/1-3.x and higher using procfs
NAT_FILE= nm-osf3.h
NATDEPFILES= corelow.o alpha-nat.o fork-child.o \
solib-osf.o solib.o procfs.o proc-api.o proc-events.o proc-flags.o \
proc-why.o
/alpha/fbsd.mh
0,0 → 1,6
# Host: FreeBSD/alpha
NATDEPFILES= fork-child.o inf-ptrace.o \
fbsd-nat.o alphabsd-nat.o bsd-kvm.o \
gcore.o corelow.o core-regset.o
 
LOADLIBES= -lkvm
/alpha/alpha-linux.mh
0,0 → 1,13
# Host: Little-endian Alpha running Linux
NAT_FILE= config/nm-linux.h
NATDEPFILES= inf-ptrace.o corelow.o alpha-linux-nat.o \
fork-child.o proc-service.o linux-thread-db.o gcore.o \
linux-nat.o linux-fork.o
 
# The dynamically loaded libthread_db needs access to symbols in the
# gdb executable.
LOADLIBES = -ldl -rdynamic
 
# doublest.c currently assumes some properties of FP arithmetic
# on the host which require this.
MH_CFLAGS = -mieee
/alpha/nm-osf3.h
0,0 → 1,34
/* Native definitions for alpha running OSF/1-3.x and higher, using procfs.
Copyright 1995, 2007, 2008 Free Software Foundation, Inc.
 
This file is part of GDB.
 
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
 
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
 
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
 
/* Number of traps that happen between exec'ing the shell
to run an inferior, and when we finally get to
the inferior code. This is 2 on most implementations. */
#define START_INFERIOR_TRAPS_EXPECTED 3
 
/* Don't trace faults under OSF/1, rely on the posting of the appropriate
signal if fault tracing is disabled.
Tracing T_IFAULT under Alpha OSF/1 causes a `floating point enable'
fault from which we cannot continue (except by disabling the
tracing).
And as OSF/1 doesn't provide the standard fault definitions, the
mapping of faults to appropriate signals in procfs_wait is difficult. */
#define PROCFS_DONT_TRACE_FAULTS
 
/* Work around some peculiarities in the OSF/1 procfs implementation. */
#define PROCFS_NEED_CLEAR_CURSIG_FOR_KILL
alpha/nm-osf3.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: alpha/nbsd.mh =================================================================== --- alpha/nbsd.mh (nonexistent) +++ alpha/nbsd.mh (revision 840) @@ -0,0 +1,4 @@ +# Host: NetBSD/alpha +NATDEPFILES= fork-child.o inf-ptrace.o alphabsd-nat.o bsd-kvm.o + +LOADLIBES= -lkvm Index: m68k/nbsdelf.mh =================================================================== --- m68k/nbsdelf.mh (nonexistent) +++ m68k/nbsdelf.mh (revision 840) @@ -0,0 +1,4 @@ +# Host: NetBSD/m68k ELF +NATDEPFILES= m68kbsd-nat.o bsd-kvm.o fork-child.o inf-ptrace.o + +LOADLIBES= -lkvm Index: m68k/linux.mh =================================================================== --- m68k/linux.mh (nonexistent) +++ m68k/linux.mh (revision 840) @@ -0,0 +1,10 @@ +# Host: Motorola m68k running GNU/Linux. + +NAT_FILE= config/nm-linux.h +NATDEPFILES= inf-ptrace.o fork-child.o \ + corelow.o m68klinux-nat.o gcore.o \ + proc-service.o linux-thread-db.o linux-nat.o linux-fork.o + +# The dynamically loaded libthread_db needs access to symbols in the +# gdb executable. +LOADLIBES = -ldl -rdynamic Index: m68k/nbsdaout.mh =================================================================== --- m68k/nbsdaout.mh (nonexistent) +++ m68k/nbsdaout.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: NetBSD/m68k a.out +NATDEPFILES= m68kbsd-nat.o fork-child.o inf-ptrace.o \ + solib.o solib-sunos.o + +LOADLIBES= -lkvm Index: m68k/obsd.mh =================================================================== --- m68k/obsd.mh (nonexistent) +++ m68k/obsd.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: OpenBSD/m68k +NATDEPFILES= m68kbsd-nat.o bsd-kvm.o fork-child.o inf-ptrace.o \ + solib.o solib-sunos.o + +LOADLIBES= -lkvm Index: m88k/obsd.mh =================================================================== --- m88k/obsd.mh (nonexistent) +++ m88k/obsd.mh (revision 840) @@ -0,0 +1,2 @@ +# Host: OpenBSD/m88k +NATDEPFILES= fork-child.o inf-ptrace.o m88kbsd-nat.o Index: i386/nbsdelf.mh =================================================================== --- i386/nbsdelf.mh (nonexistent) +++ i386/nbsdelf.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: NetBSD/i386 ELF +NATDEPFILES= fork-child.o inf-ptrace.o \ + nbsd-nat.o i386bsd-nat.o i386nbsd-nat.o bsd-kvm.o + +LOADLIBES= -lkvm Index: i386/fbsd.mh =================================================================== --- i386/fbsd.mh (nonexistent) +++ i386/fbsd.mh (revision 840) @@ -0,0 +1,7 @@ +# Host: FreeBSD/i386 +NATDEPFILES= fork-child.o inf-ptrace.o \ + fbsd-nat.o i386-nat.o i386bsd-nat.o i386fbsd-nat.o \ + gcore.o bsd-kvm.o +NAT_FILE= nm-fbsd.h + +LOADLIBES= -lkvm Index: i386/nbsdaout.mh =================================================================== --- i386/nbsdaout.mh (nonexistent) +++ i386/nbsdaout.mh (revision 840) @@ -0,0 +1,6 @@ +# Host: NetBSD/i386 a.out +NATDEPFILES= fork-child.o inf-ptrace.o \ + nbsd-nat.o i386bsd-nat.o i386nbsd-nat.o bsd-kvm.o \ + solib.o solib-sunos.o + +LOADLIBES= -lkvm Index: i386/obsdaout.mh =================================================================== --- i386/obsdaout.mh (nonexistent) +++ i386/obsdaout.mh (revision 840) @@ -0,0 +1,6 @@ +# Host: OpenBSD/i386 a.out +NATDEPFILES= fork-child.o inf-ptrace.o \ + i386bsd-nat.o i386nbsd-nat.o i386obsd-nat.o bsd-kvm.o \ + solib.o solib-sunos.o + +LOADLIBES= -lkvm Index: i386/mingw.mh =================================================================== --- i386/mingw.mh (nonexistent) +++ i386/mingw.mh (revision 840) @@ -0,0 +1,4 @@ +MH_CFLAGS= +NATDEPFILES= i386-nat.o win32-nat.o +NAT_FILE=nm-cygwin.h +XM_CLIBS= Index: i386/nm-i386sol2.h =================================================================== --- i386/nm-i386sol2.h (nonexistent) +++ i386/nm-i386sol2.h (revision 840) @@ -0,0 +1,57 @@ +/* Native support for i386 running Solaris 2. + Copyright 1998, 1999, 2000, 2007, 2008 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#ifdef NEW_PROC_API /* Solaris 6 and above can do HW watchpoints */ + +#define TARGET_HAS_HARDWARE_WATCHPOINTS + +/* The man page for proc4 on solaris 6 and 7 says that the system + can support "thousands" of hardware watchpoints, but gives no + method for finding out how many. So just tell GDB 'yes'. */ +#define TARGET_CAN_USE_HARDWARE_WATCHPOINT(TYPE, CNT, OT) 1 +#define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(SIZE) 1 + +/* When a hardware watchpoint fires off the PC will be left at the + instruction following the one which caused the watchpoint. + It will *NOT* be necessary for GDB to step over the watchpoint. */ +#define HAVE_CONTINUABLE_WATCHPOINT 1 + +/* Solaris x86 2.6 and 2.7 targets have a kernel bug when stepping + over an instruction that causes a page fault without triggering + a hardware watchpoint. The kernel properly notices that it shouldn't + stop, because the hardware watchpoint is not triggered, but it forgets + the step request and continues the program normally. + Work around the problem by removing hardware watchpoints if a step is + requested, GDB will check for a hardware watchpoint trigger after the + step anyway. */ +#define CANNOT_STEP_HW_WATCHPOINTS + +extern int procfs_stopped_by_watchpoint (ptid_t); +#define STOPPED_BY_WATCHPOINT(W) \ + procfs_stopped_by_watchpoint(inferior_ptid) + +/* Use these macros for watchpoint insertion/deletion. */ +/* type can be 0: write watch, 1: read watch, 2: access watch (read/write) */ + +extern int procfs_set_watchpoint (ptid_t, CORE_ADDR, int, int, int); +#define target_insert_watchpoint(ADDR, LEN, TYPE) \ + procfs_set_watchpoint (inferior_ptid, ADDR, LEN, TYPE, 1) +#define target_remove_watchpoint(ADDR, LEN, TYPE) \ + procfs_set_watchpoint (inferior_ptid, ADDR, 0, 0, 0) + +#endif /* NEW_PROC_API */
i386/nm-i386sol2.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: i386/nm-i386.h =================================================================== --- i386/nm-i386.h (nonexistent) +++ i386/nm-i386.h (revision 840) @@ -0,0 +1,115 @@ +/* Native macro definitions for GDB on an Intel i[3456]86. + Copyright 2001, 2004, 2007, 2008 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#ifndef NM_I386_H +#define NM_I386_H 1 + +/* Hardware-assisted breakpoints and watchpoints. */ + +/* Targets should define this to use the generic x86 watchpoint support. */ +#ifdef I386_USE_GENERIC_WATCHPOINTS + +/* Clear the reference counts and forget everything we knew about DRi. */ +extern void i386_cleanup_dregs (void); + +/* Insert a watchpoint to watch a memory region which starts at + address ADDR and whose length is LEN bytes. Watch memory accesses + of the type TYPE. Return 0 on success, -1 on failure. */ +extern int i386_insert_watchpoint (CORE_ADDR addr, int len, int type); + +/* Remove a watchpoint that watched the memory region which starts at + address ADDR, whose length is LEN bytes, and for accesses of the + type TYPE. Return 0 on success, -1 on failure. */ +extern int i386_remove_watchpoint (CORE_ADDR addr, int len, int type); + +/* Return non-zero if we can watch a memory region that starts at + address ADDR and whose length is LEN bytes. */ +extern int i386_region_ok_for_watchpoint (CORE_ADDR addr, int len); + +/* Return non-zero if the inferior has some break/watchpoint that + triggered. */ +extern int i386_stopped_by_hwbp (void); + +/* If the inferior has some break/watchpoint that triggered, set + the address associated with that break/watchpoint and return + true. Otherwise, return false. */ +extern int i386_stopped_data_address (CORE_ADDR *); + +/* Insert a hardware-assisted breakpoint at BP_TGT->placed_address. + Return 0 on success, EBUSY on failure. */ +struct bp_target_info; +extern int i386_insert_hw_breakpoint (struct bp_target_info *bp_tgt); + +/* Remove a hardware-assisted breakpoint at BP_TGT->placed_address. + Return 0 on success, -1 on failure. */ +extern int i386_remove_hw_breakpoint (struct bp_target_info *bp_tgt); + +/* Returns the number of hardware watchpoints of type TYPE that we can + set. Value is positive if we can set CNT watchpoints, zero if + setting watchpoints of type TYPE is not supported, and negative if + CNT is more than the maximum number of watchpoints of type TYPE + that we can support. TYPE is one of bp_hardware_watchpoint, + bp_read_watchpoint, bp_write_watchpoint, or bp_hardware_breakpoint. + CNT is the number of such watchpoints used so far (including this + one). OTHERTYPE is non-zero if other types of watchpoints are + currently enabled. + + We always return 1 here because we don't have enough information + about possible overlap of addresses that they want to watch. As an + extreme example, consider the case where all the watchpoints watch + the same address and the same region length: then we can handle a + virtually unlimited number of watchpoints, due to debug register + sharing implemented via reference counts in i386-nat.c. */ + +#define TARGET_CAN_USE_HARDWARE_WATCHPOINT(type, cnt, ot) 1 + +/* Returns non-zero if we can use hardware watchpoints to watch a + region whose address is ADDR and whose length is LEN. */ + +#define TARGET_REGION_OK_FOR_HW_WATCHPOINT(addr, len) \ + i386_region_ok_for_watchpoint (addr, len) + +/* After a watchpoint trap, the PC points to the instruction after the + one that caused the trap. Therefore we don't need to step over it. + But we do need to reset the status register to avoid another trap. */ + +#define HAVE_CONTINUABLE_WATCHPOINT 1 + +extern int i386_stopped_by_watchpoint (void); + +#define STOPPED_BY_WATCHPOINT(W) (i386_stopped_by_watchpoint () != 0) + +#define target_stopped_data_address(target, x) i386_stopped_data_address(x) + +/* Use these macros for watchpoint insertion/removal. */ + +#define target_insert_watchpoint(addr, len, type) \ + i386_insert_watchpoint (addr, len, type) + +#define target_remove_watchpoint(addr, len, type) \ + i386_remove_watchpoint (addr, len, type) + +#define target_insert_hw_breakpoint(bp_tgt) \ + i386_insert_hw_breakpoint (bp_tgt) + +#define target_remove_hw_breakpoint(bp_tgt) \ + i386_remove_hw_breakpoint (bp_tgt) + +#endif /* I386_USE_GENERIC_WATCHPOINTS */ + +#endif /* NM_I386_H */
i386/nm-i386.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: i386/obsd.mh =================================================================== --- i386/obsd.mh (nonexistent) +++ i386/obsd.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: OpenBSD/i386 ELF +NATDEPFILES= fork-child.o inf-ptrace.o \ + i386bsd-nat.o i386obsd-nat.o bsd-kvm.o + +LOADLIBES= -lkvm Index: i386/fbsd64.mh =================================================================== --- i386/fbsd64.mh (nonexistent) +++ i386/fbsd64.mh (revision 840) @@ -0,0 +1,6 @@ +# Host: FreeBSD/amd64 +NATDEPFILES= fork-child.o inf-ptrace.o \ + fbsd-nat.o amd64-nat.o amd64bsd-nat.o amd64fbsd-nat.o \ + gcore.o bsd-kvm.o + +LOADLIBES= -lkvm Index: i386/i386sol2.mh =================================================================== --- i386/i386sol2.mh (nonexistent) +++ i386/i386sol2.mh (revision 840) @@ -0,0 +1,4 @@ +# Host: Solaris x86 +NATDEPFILES= fork-child.o i386v4-nat.o i386-sol2-nat.o \ + procfs.o proc-api.o proc-events.o proc-flags.o proc-why.o gcore.o +NAT_FILE= nm-i386sol2.h Index: i386/nm-linux.h =================================================================== --- i386/nm-linux.h (nonexistent) +++ i386/nm-linux.h (revision 840) @@ -0,0 +1,54 @@ +/* Native support for GNU/Linux x86. + + Copyright 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, + 2000, 2001, 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#ifndef NM_LINUX_H +#define NM_LINUX_H + +/* GNU/Linux supports the i386 hardware debugging registers. */ +#define I386_USE_GENERIC_WATCHPOINTS + +#include "i386/nm-i386.h" +#include "config/nm-linux.h" + +/* Provide access to the i386 hardware debugging registers. */ + +extern void i386_linux_dr_set_control (unsigned long control); +#define I386_DR_LOW_SET_CONTROL(control) \ + i386_linux_dr_set_control (control) + +extern void i386_linux_dr_set_addr (int regnum, CORE_ADDR addr); +#define I386_DR_LOW_SET_ADDR(regnum, addr) \ + i386_linux_dr_set_addr (regnum, addr) + +extern void i386_linux_dr_reset_addr (int regnum); +#define I386_DR_LOW_RESET_ADDR(regnum) \ + i386_linux_dr_reset_addr (regnum) + +extern unsigned long i386_linux_dr_get_status (void); +#define I386_DR_LOW_GET_STATUS() \ + i386_linux_dr_get_status () + + +#ifdef HAVE_PTRACE_GETFPXREGS +/* Include register set support for the SSE registers. */ +#define FILL_FPXREGSET +#endif + +#endif /* nm-linux.h */
i386/nm-linux.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: i386/nm-cygwin.h =================================================================== --- i386/nm-cygwin.h (nonexistent) +++ i386/nm-cygwin.h (revision 840) @@ -0,0 +1,38 @@ +/* Native definitions for Intel x86 running CYGWIN. + Copyright 2002, 2006, 2007, 2008 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#define ATTACH_NO_WAIT +#define ADD_SHARED_SYMBOL_FILES dll_symbol_command +void dll_symbol_command (char *, int); + +#define I386_USE_GENERIC_WATCHPOINTS + +#include "i386/nm-i386.h" + +/* Support for hardware-assisted breakpoints and watchpoints. */ + +#define I386_DR_LOW_SET_CONTROL(VAL) cygwin_set_dr7 (VAL) +extern void cygwin_set_dr7 (unsigned); + +#define I386_DR_LOW_SET_ADDR(N,ADDR) cygwin_set_dr (N,ADDR) +extern void cygwin_set_dr (int, CORE_ADDR); + +#define I386_DR_LOW_RESET_ADDR(N) + +#define I386_DR_LOW_GET_STATUS() cygwin_get_dr6 () +extern unsigned cygwin_get_dr6 (void);
i386/nm-cygwin.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: i386/nm-i386gnu.h =================================================================== --- i386/nm-i386gnu.h (nonexistent) +++ i386/nm-i386gnu.h (revision 840) @@ -0,0 +1,40 @@ +/* Native-dependent definitions for Intel 386 running the GNU Hurd + Copyright 1994, 1995, 1996, 2002, 2007, 2008 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#ifndef NM_I386GNU_H +#define NM_I386GNU_H + +#include +#include +#include +#include "regcache.h" + +extern char *gnu_target_pid_to_str (int pid); + +/* Don't do wait_for_inferior on attach. */ +#define ATTACH_NO_WAIT + +/* Thread flavors used in re-setting the T bit. */ +#define THREAD_STATE_FLAVOR i386_REGS_SEGS_STATE +#define THREAD_STATE_SIZE i386_THREAD_STATE_COUNT +#define THREAD_STATE_SET_TRACED(state) \ + ((struct i386_thread_state *) (state))->efl |= 0x100 +#define THREAD_STATE_CLEAR_TRACED(state) \ + ((((struct i386_thread_state *) (state))->efl &= ~0x100), 1) + +#endif /* nm-i386gnu.h */
i386/nm-i386gnu.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: i386/linux.mh =================================================================== --- i386/linux.mh (nonexistent) +++ i386/linux.mh (revision 840) @@ -0,0 +1,11 @@ +# Host: Intel 386 running GNU/Linux. + +NAT_FILE= nm-linux.h +NATDEPFILES= inf-ptrace.o fork-child.o \ + i386-nat.o i386-linux-nat.o \ + proc-service.o linux-thread-db.o gcore.o \ + linux-nat.o linux-fork.o + +# The dynamically loaded libthread_db needs access to symbols in the +# gdb executable. +LOADLIBES = -ldl -rdynamic Index: i386/cygwin.mh =================================================================== --- i386/cygwin.mh (nonexistent) +++ i386/cygwin.mh (revision 840) @@ -0,0 +1,4 @@ +MH_CFLAGS= +NATDEPFILES= i386-nat.o win32-nat.o +NAT_FILE=nm-cygwin.h +XM_CLIBS= Index: i386/nbsd64.mh =================================================================== --- i386/nbsd64.mh (nonexistent) +++ i386/nbsd64.mh (revision 840) @@ -0,0 +1,3 @@ +# Host: NetBSD/amd64 +NATDEPFILES= fork-child.o inf-ptrace.o \ + nbsd-nat.o amd64-nat.o amd64bsd-nat.o amd64nbsd-nat.o Index: i386/nto.mh =================================================================== --- i386/nto.mh (nonexistent) +++ i386/nto.mh (revision 840) @@ -0,0 +1,4 @@ +# Host: Intel 386 running QNX. + +NATDEPFILES= nto-procfs.o +NAT_FILE= config/nm-nto.h Index: i386/obsd64.mh =================================================================== --- i386/obsd64.mh (nonexistent) +++ i386/obsd64.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: OpenBSD/amd64 +NATDEPFILES= fork-child.o inf-ptrace.o \ + amd64-nat.o amd64bsd-nat.o amd64obsd-nat.o bsd-kvm.o + +LOADLIBES= -lkvm Index: i386/i386gnu.mh =================================================================== --- i386/i386gnu.mh (nonexistent) +++ i386/i386gnu.mh (revision 840) @@ -0,0 +1,31 @@ +# Host: Intel 386 running the GNU Hurd +NATDEPFILES= i386gnu-nat.o gnu-nat.o corelow.o core-regset.o fork-child.o \ + notify_S.o process_reply_S.o msg_reply_S.o \ + msg_U.o exc_request_U.o exc_request_S.o + +NAT_FILE= nm-i386gnu.h +MH_CFLAGS = -D_GNU_SOURCE + +XM_CLIBS = -lshouldbeinlibc + +# Use our own user stubs for the msg rpcs, so we can make them time out, in +# case the program is fucked, or we guess the wrong signal thread. +msg-MIGUFLAGS = -D'MSG_IMPORTS=waittime 1000;' + +# ick +MIGCOM = $(MIG) -cc cat - /dev/null + +# Reply servers need special massaging of the code mig generates, to make +# them work correctly for error returns in some cases. +%_reply_S.h %_reply_S.c: %_reply.defs + $(CPP) $(CPPFLAGS) -DSERVERPREFIX=S_ -x c $< \ + | $(MIGCOM) -sheader $*_reply_S.h -server $*_reply_S.raw -user /dev/null -header /dev/null \ + && $(AWK) -f $(srcdir)/reply_mig_hack.awk < $*_reply_S.raw > $*_reply_S.c +# Normal servers +%_S.h %_S.c: %.defs + $(CPP) $(CPPFLAGS) -DSERVERPREFIX=S_ -x c $< \ + | $(MIGCOM) -sheader $*_S.h -server $*_S.c -user /dev/null -header /dev/null +# User rpc stubs +%_U.h %_U.c: %.defs + $(CPP) $(CPPFLAGS) $($*-MIGUFLAGS) -x c $< \ + | $(MIGCOM) -sheader /dev/null -server /dev/null -user $*_U.c -header $*_U.h Index: i386/nm-linux64.h =================================================================== --- i386/nm-linux64.h (nonexistent) +++ i386/nm-linux64.h (revision 840) @@ -0,0 +1,53 @@ +/* Native support for GNU/Linux x86-64. + + Copyright 2001, 2002, 2003, 2004, 2005, 2007, 2008 + Free Software Foundation, Inc. + + Contributed by Jiri Smid, SuSE Labs. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#ifndef NM_LINUX64_H +#define NM_LINUX64_H + +/* GNU/Linux supports the i386 hardware debugging registers. */ +#define I386_USE_GENERIC_WATCHPOINTS + +#include "i386/nm-i386.h" +#include "config/nm-linux.h" + +/* Support for 8-byte wide hardware watchpoints. */ +#define TARGET_HAS_DR_LEN_8 1 + +/* Provide access to the i386 hardware debugging registers. */ + +extern void amd64_linux_dr_set_control (unsigned long control); +#define I386_DR_LOW_SET_CONTROL(control) \ + amd64_linux_dr_set_control (control) + +extern void amd64_linux_dr_set_addr (int regnum, CORE_ADDR addr); +#define I386_DR_LOW_SET_ADDR(regnum, addr) \ + amd64_linux_dr_set_addr (regnum, addr) + +extern void amd64_linux_dr_reset_addr (int regnum); +#define I386_DR_LOW_RESET_ADDR(regnum) \ + amd64_linux_dr_reset_addr (regnum) + +extern unsigned long amd64_linux_dr_get_status (void); +#define I386_DR_LOW_GET_STATUS() \ + amd64_linux_dr_get_status () + +#endif /* nm-linux64.h */
i386/nm-linux64.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: i386/nm-go32.h =================================================================== --- i386/nm-go32.h (nonexistent) +++ i386/nm-go32.h (revision 840) @@ -0,0 +1,35 @@ +/* Native definitions for Intel x86 running DJGPP. + Copyright 1997, 1998, 1999, 2001, 2002, 2007, 2008 + Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#define I386_USE_GENERIC_WATCHPOINTS + +#include "i386/nm-i386.h" + +/* Support for hardware-assisted breakpoints and watchpoints. */ + +#define I386_DR_LOW_SET_CONTROL(VAL) go32_set_dr7 (VAL) +extern void go32_set_dr7 (unsigned); + +#define I386_DR_LOW_SET_ADDR(N,ADDR) go32_set_dr (N,ADDR) +extern void go32_set_dr (int, CORE_ADDR); + +#define I386_DR_LOW_RESET_ADDR(N) + +#define I386_DR_LOW_GET_STATUS() go32_get_dr6 () +extern unsigned go32_get_dr6 (void);
i386/nm-go32.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: i386/sol2-64.mh =================================================================== --- i386/sol2-64.mh (nonexistent) +++ i386/sol2-64.mh (revision 840) @@ -0,0 +1,4 @@ +# Host: Solaris x86_64 +NATDEPFILES= fork-child.o amd64-nat.o i386v4-nat.o i386-sol2-nat.o \ + procfs.o proc-api.o proc-events.o proc-flags.o proc-why.o gcore.o +NAT_FILE= nm-i386sol2.h Index: i386/nm-fbsd.h =================================================================== --- i386/nm-fbsd.h (nonexistent) +++ i386/nm-fbsd.h (revision 840) @@ -0,0 +1,53 @@ +/* Native-dependent definitions for FreeBSD/i386. + + Copyright 1986, 1987, 1989, 1992, 1994, 1996, 1997, 2000, 2001, 2004, 2005, + 2007, 2008 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#ifndef NM_FBSD_H +#define NM_FBSD_H + +#ifdef HAVE_PT_GETDBREGS +#define I386_USE_GENERIC_WATCHPOINTS +#endif + +#include "i386/nm-i386.h" + +#ifdef HAVE_SYS_PARAM_H +#include +#endif + +/* Provide access to the i386 hardware debugging registers. */ + +#define I386_DR_LOW_SET_CONTROL(control) \ + i386bsd_dr_set_control (control) +extern void i386bsd_dr_set_control (unsigned long control); + +#define I386_DR_LOW_SET_ADDR(regnum, addr) \ + i386bsd_dr_set_addr (regnum, addr) +extern void i386bsd_dr_set_addr (int regnum, CORE_ADDR addr); + +#define I386_DR_LOW_RESET_ADDR(regnum) \ + i386bsd_dr_reset_addr (regnum) +extern void i386bsd_dr_reset_addr (int regnum); + +#define I386_DR_LOW_GET_STATUS() \ + i386bsd_dr_get_status () +extern unsigned long i386bsd_dr_get_status (void); + + +#endif /* nm-fbsd.h */
i386/nm-fbsd.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: i386/linux64.mh =================================================================== --- i386/linux64.mh (nonexistent) +++ i386/linux64.mh (revision 840) @@ -0,0 +1,9 @@ +# Host: GNU/Linux x86-64 +NATDEPFILES= inf-ptrace.o fork-child.o \ + i386-nat.o amd64-nat.o amd64-linux-nat.o linux-nat.o \ + proc-service.o linux-thread-db.o gcore.o linux-fork.o +NAT_FILE= nm-linux64.h + +# The dynamically loaded libthread_db needs access to symbols in the +# gdb executable. +LOADLIBES = -ldl -rdynamic Index: i386/go32.mh =================================================================== --- i386/go32.mh (nonexistent) +++ i386/go32.mh (revision 840) @@ -0,0 +1,11 @@ +# Host: Intel x86 running DJGPP +MH_CFLAGS= + +NAT_FILE= nm-go32.h +NATDEPFILES= go32-nat.o i386-nat.o + +HOST_IPC= +CC= gcc +XM_CLIBS= -ldbg + + Index: rs6000/nm-rs6000.h =================================================================== --- rs6000/nm-rs6000.h (nonexistent) +++ rs6000/nm-rs6000.h (revision 840) @@ -0,0 +1,51 @@ +/* IBM RS/6000 native-dependent macros for GDB, the GNU debugger. + Copyright 1986, 1987, 1989, 1991, 1992, 1994, 1996, 1999, 2000, 2001, 2007, + 2008 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +/* When a child process is just starting, we sneak in and relocate + the symbol table (and other stuff) after the dynamic linker has + figured out where they go. */ + +#define SOLIB_CREATE_INFERIOR_HOOK(PID) \ + do { \ + xcoff_relocate_symtab (PID); \ + } while (0) + +/* When a target process or core-file has been attached, we sneak in + and figure out where the shared libraries have got to. */ + +#define SOLIB_ADD(a, b, c, d) \ + if (PIDGET (inferior_ptid)) \ + /* Attach to process. */ \ + xcoff_relocate_symtab (PIDGET (inferior_ptid)); \ + else \ + /* Core file. */ \ + xcoff_relocate_core (c); + +extern void xcoff_relocate_symtab (unsigned int); +struct target_ops; +extern void xcoff_relocate_core (struct target_ops *); + +/* If ADDR lies in a shared library, return its name. */ + +#define PC_SOLIB(PC) xcoff_solib_address(PC) +extern char *xcoff_solib_address (CORE_ADDR); + +/* Flag for machine-specific stuff in shared files. FIXME */ +#define DEPRECATED_IBM6000_TARGET +
rs6000/nm-rs6000.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: nm-linux.h =================================================================== --- nm-linux.h (nonexistent) +++ nm-linux.h (revision 840) @@ -0,0 +1,30 @@ +/* Native support for GNU/Linux. + + Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 + Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +struct target_ops; + +extern void lin_thread_get_thread_signals (sigset_t *mask); +#define GET_THREAD_SIGNALS(mask) lin_thread_get_thread_signals (mask) + +/* Use elf_gregset_t and elf_fpregset_t, rather than + gregset_t and fpregset_t. */ + +#define GDB_GREGSET_T elf_gregset_t +#define GDB_FPREGSET_T elf_fpregset_t
nm-linux.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: vax/nbsdelf.mh =================================================================== --- vax/nbsdelf.mh (nonexistent) +++ vax/nbsdelf.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: NetBSD/vax ELF +NATDEPFILES= fork-child.o inf-ptrace.o \ + vaxbsd-nat.o bsd-kvm.o + +LOADLIBES= -lkvm Index: vax/vax.mh =================================================================== --- vax/vax.mh (nonexistent) +++ vax/vax.mh (revision 840) @@ -0,0 +1,2 @@ +# Host: VAX running 4.2BSD or Ultrix +NATDEPFILES= vax-nat.o fork-child.o inf-ptrace.o corelow.o Index: vax/nbsdaout.mh =================================================================== --- vax/nbsdaout.mh (nonexistent) +++ vax/nbsdaout.mh (revision 840) @@ -0,0 +1,6 @@ +# Host: NetBSD/vax a.out +NATDEPFILES= fork-child.o inf-ptrace.o \ + vaxbsd-nat.o bsd-kvm.o \ + solib.o solib-sunos.o + +LOADLIBES= -lkvm Index: vax/obsd.mh =================================================================== --- vax/obsd.mh (nonexistent) +++ vax/obsd.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: OpenBSD/vax +NATDEPFILES= fork-child.o inf-ptrace.o \ + vaxbsd-nat.o bsd-kvm.o + +LOADLIBES= -lkvm Index: nm-nto.h =================================================================== --- nm-nto.h (nonexistent) +++ nm-nto.h (revision 840) @@ -0,0 +1,29 @@ +/* Native support for QNX Neutrino version 6. + + Copyright 2003,2006,2007,2008 Free Software Foundation, Inc. + + This code was donated by QNX Software Systems Ltd. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#ifndef NM_NTO_H +#define NM_NTO_H + +/* Setup the valid realtime signal range. */ +#define REALTIME_LO 41 +#define REALTIME_HI 56 + +#endif /* NM_NTO_H */
nm-nto.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: s390/s390.mh =================================================================== --- s390/s390.mh (nonexistent) +++ s390/s390.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: S390, running Linux +NAT_FILE= config/nm-linux.h +NATDEPFILES= inf-ptrace.o fork-child.o corelow.o s390-nat.o \ + gcore.o linux-thread-db.o proc-service.o linux-nat.o linux-fork.o +LOADLIBES = -ldl -rdynamic Index: pa/linux.mh =================================================================== --- pa/linux.mh (nonexistent) +++ pa/linux.mh (revision 840) @@ -0,0 +1,8 @@ +# Host: Hewlett-Packard PA-RISC machine, running Linux +XDEPFILES= +NAT_FILE= config/nm-linux.h +NATDEPFILES= inf-ptrace.o fork-child.o corelow.o gcore.o \ + hppa-linux-nat.o proc-service.o linux-thread-db.o linux-nat.o \ + linux-fork.o + +LOADLIBES = -ldl -rdynamic Index: pa/hpux.mh =================================================================== --- pa/hpux.mh (nonexistent) +++ pa/hpux.mh (revision 840) @@ -0,0 +1,3 @@ +# Host: PA-RISC HP-UX +NATDEPFILES= fork-child.o inf-ptrace.o inf-ttrace.o \ + hppa-hpux-nat.o corelow.o somread.o Index: pa/nbsd.mh =================================================================== --- pa/nbsd.mh (nonexistent) +++ pa/nbsd.mh (revision 840) @@ -0,0 +1,2 @@ +# Host: NetBSD/hppa +NATDEPFILES= fork-child.o inf-ptrace.o nbsd-nat.o hppanbsd-nat.o Index: pa/obsd.mh =================================================================== --- pa/obsd.mh (nonexistent) +++ pa/obsd.mh (revision 840) @@ -0,0 +1,2 @@ +# Host: OpenBSD/hppa +NATDEPFILES= fork-child.o inf-ptrace.o hppabsd-nat.o Index: xtensa/linux.mh =================================================================== --- xtensa/linux.mh (nonexistent) +++ xtensa/linux.mh (revision 840) @@ -0,0 +1,8 @@ +# Host: Xtensa, running GNU/Linux. + +NAT_FILE= config/nm-linux.h + +NATDEPFILES= inf-ptrace.o fork-child.o xtensa-linux-nat.o gcore.o \ + linux-thread-db.o proc-service.o linux-nat.o linux-fork.o + +LOADLIBES = -ldl -rdynamic Index: ia64/linux.mh =================================================================== --- ia64/linux.mh (nonexistent) +++ ia64/linux.mh (revision 840) @@ -0,0 +1,8 @@ +# Host: Intel IA-64 running GNU/Linux + +NAT_FILE= config/nm-linux.h +NATDEPFILES= inf-ptrace.o fork-child.o corelow.o gcore.o \ + core-regset.o ia64-linux-nat.o \ + proc-service.o linux-thread-db.o linux-nat.o linux-fork.o + +LOADLIBES = -ldl -rdynamic Index: djgpp/config.sed =================================================================== --- djgpp/config.sed (nonexistent) +++ djgpp/config.sed (revision 840) @@ -0,0 +1,53 @@ +s|po2tbl\.sed\.in|po2tblsed.in|g +s|gdb\.c++|gdb.cxx|g +/ac_rel_source/s|ln -s|cp -p| +s|\.gdbinit|gdb.ini|g + +# Edit Makefiles. This should go near the beginning of +# the substitutions script, before the branch command that +# skips any lines without @...@ in them. +# Any commands that can match again after substitution must +# do a conditional branch to next cycle (;t), or else Sed might hang. +/(echo[ ]*':t/a\ + s,\\([yp*]\\)\\.tab,\\1_tab,g\ + s,\\$@\\.tmp,\\$@_tmp,g\ + s,\\$@\\.new,\\$@_new,g\ + /^ @rm -f/s,\\$@-\\[0-9\\]\\[0-9\\],& *.i[1-9] *.i[1-9][0-9],;t\ + s,standards\\.info\\*,standard*.inf*,\ + s,configure\\.info\\*,configur*.inf*,\ + s,\\.info\\*,.inf* *.i[1-9] *.i[1-9][0-9],\ + s,\\.gdbinit,gdb.ini,g\ + s,@PATH_SEPARATOR@,";",\ + /TEXINPUTS=/s,:,";",g\ + /VPATH *=/s,\\([^A-z]\\):,\\1;,g\ + /\\$\\$file-\\[0-9\\]/s,echo,& *.i[1-9] *.i[1-9][0-9],;t\ + /\\$\\$file-\\[0-9\\]/s,rm -f \\$\\$file,& \\${PACKAGE}.i[1-9] \\${PACKAGE}.i[1-9][0-9],;t\ + s,config\\.h\\.in,config.h-in,g;t t\ + s,po2tbl\\.sed\\.in,po2tblsed.in,g;t t + +# Prevent splitting of config.status substitutions, because that +# might break multi-line sed commands. +/ac_max_sed_lines=[0-9]/s,=.*$,=`sed -n "$=" $tmp/subs.sed`, + +/^ac_given_srcdir=/,/^CEOF/ { + /^s%@TOPLEVEL_CONFIGURE_ARGUMENTS@%/a\ + /@test ! -f /s,\\(.\\)\$, export am_cv_exeext=.exe; export lt_cv_sys_max_cmd_len=12288; \\1,\ + /@test -f stage_last /s,\\(.\\)\$, export am_cv_exeext=.exe; export lt_cv_sys_max_cmd_len=12288; \\1, + +} + +/^CONFIG_FILES=/,/^EOF/ { + s|po/Makefile.in\([^-:a-z]\)|po/Makefile.in:po/Makefile.in-in\1| +} + +/^ *# *Handling of arguments/,/^done/ { + s| config.h"| config.h:config.h-in"| + s|config.h\([^-:"a-z]\)|config.h:config.h-in\1| +} + +/^[ ]*\/\*)/s,/\*,/*|[A-z]:/*, +/\$]\*) INSTALL=/s,\[/\$\]\*,&|[A-z]:/*, +/\$]\*) ac_rel_source=/s,\[/\$\]\*,&|[A-z]:/*, +/ac_file_inputs=/s,\( -e "s%\^%\$ac_given_srcdir/%"\)\( -e "s%:% $ac_given_srcdir/%g"\),\2\1, +/^[ ]*if test "x`echo /s,sed 's@/,sed -e 's@^[A-z]:@@' -e 's@/, +/^ *ac_config_headers=/s, config.h", config.h:config.h-in", Index: djgpp/djcheck.sh =================================================================== --- djgpp/djcheck.sh (nonexistent) +++ djgpp/djcheck.sh (revision 840) @@ -0,0 +1,33 @@ +#!/bin/sh + +# A shell script to run the test suite on the DJGPP version of GDB. + +ORIGDIR=`pwd` +GDB=${ORIGDIR}/../gdb.exe +SUBDIRS=`find $ORIGDIR -type d ! -ipath $ORIGDIR` + +for d in $SUBDIRS +do + cd $d + echo "Running tests in $d..." + for f in *.out + do + test -f $f || break + base=`basename $f .out` + if test "${base}" = "dbx" ; then + options=-dbx + else + options= + fi + $GDB ${options} < ${base}.in 2>&1 \ + | sed -e '/GNU gdb /s/ [.0-9][.0-9]*//' \ + -e '/^Copyright/s/[12][0-9][0-9][0-9]/XYZZY/g' \ + -e '/Starting program: /s|[A-z]:/.*/||' \ + -e '/main (/s/=0x[0-9a-f][0-9a-f]*/=XYZ/g' \ + > ${base}.tst + if diff --binary -u ${base}.out ${base}.tst ; then + rm -f ${base}.tst + fi + done +done +
djgpp/djcheck.sh Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: djgpp/fnchange.lst =================================================================== --- djgpp/fnchange.lst (nonexistent) +++ djgpp/fnchange.lst (revision 840) @@ -0,0 +1,455 @@ +@V@/COPYING.LIBGLOSS @V@/COPYING.GLOSS +@V@/bfd/ChangeLog-9193 @V@/bfd/ChangeLog.9193 +@V@/bfd/ChangeLog-9495 @V@/bfd/ChangeLog.9495 +@V@/bfd/ChangeLog-9697 @V@/bfd/ChangeLog.9697 +@V@/bfd/ChangeLog-9899 @V@/bfd/ChangeLog.9899 +@V@/bfd/ChangeLog-0001 @V@/bfd/ChangeLog.0001 +@V@/bfd/ChangeLog-0203 @V@/bfd/ChangeLog.0203 +@V@/bfd/ChangeLog-2004 @V@/bfd/ChangeLog.004 +@V@/bfd/ChangeLog-2005 @V@/bfd/ChangeLog.005 +@V@/bfd/ChangeLog-2006 @V@/bfd/ChangeLog.006 +@V@/bfd/doc/ChangeLog-9103 @V@/bfd/ChangeLog.9103 +@V@/bfd/coff-tic30.c @V@/bfd/cofftic30.c +@V@/bfd/coff-tic4x.c @V@/bfd/cofftic40.c +@V@/bfd/coff-tic54x.c @V@/bfd/cofftic54x.c +@V@/bfd/coff-tic80.c @V@/bfd/cofftic80.c +@V@/bfd/cpu-ia64-opc.c @V@/bfd/cpuia64-opc.c +@V@/bfd/cpu-m68hc11.c @V@/bfd/cm68hc11.c +@V@/bfd/cpu-m68hc12.c @V@/bfd/cm68hc12.c +@V@/bfd/efi-app-ia32.c @V@/bfd/efi-ia32-app.c +@V@/bfd/efi-app-ia64.c @V@/bfd/efi-ia64-app.c +@V@/bfd/elf32-arc.c @V@/bfd/elf32arc.c +@V@/bfd/elf32-crx.c @V@/bfd/elf32crx.c +@V@/bfd/elf32-cris.c @V@/bfd/elf32cris.c +@V@/bfd/elf32-cr16c.c @V@/bfd/elf32cr16c.c +@V@/bfd/elf32-fr30.c @V@/bfd/elf32f30.c +@V@/bfd/elf32-frv.c @V@/bfd/elf32fv.c +@V@/bfd/elf32-i370.c @V@/bfd/e32i370.c +@V@/bfd/elf32-i386.c @V@/bfd/e32i86.c +@V@/bfd/elf32-m32c.c @V@/bfd/em32c.c +@V@/bfd/elf32-m32r.c @V@/bfd/em32r.c +@V@/bfd/elf32-m68hc11.c @V@/bfd/em68hc11.c +@V@/bfd/elf32-m68hc12.c @V@/bfd/em68hc12.c +@V@/bfd/elf32-m68hc1x.c @V@/bfd/em68hc1x.c +@V@/bfd/elf32-m68k.c @V@/bfd/em68k.c +@V@/bfd/elf32-ppc.c @V@/bfd/e32ppc.c +@V@/bfd/elf32-sh.c @V@/bfd/e32sh.c +@V@/bfd/elf32-sh64.c @V@/bfd/e32sh64.c +@V@/bfd/elf32-sh-symbian.c @V@/bfd/e32sh-symbian.c +@V@/bfd/elf32-sh64-com.c @V@/bfd/e32sh64-com.c +@V@/bfd/elf64-alpha.c @V@/bfd/e64alphf.c +@V@/bfd/elf64-sh64.c @V@/bfd/e64sh64.c +@V@/config/inttypes-pri.m4 @V@/config/pri-inttypes.m4 +@V@/config/inttypes_h.m4 @V@/config/uintmax-inttypes.m4 +@V@/dejagnu/baseboards/mn10200-cygmon.exp @V@/dejagnu/baseboards/mn10200cygmon.exp +@V@/dejagnu/baseboards/mn10200-sim.exp @V@/dejagnu/baseboards/mn10200sim.exp +@V@/dejagnu/baseboards/mn10300-cygmon.exp @V@/dejagnu/baseboards/mn10300cygmon.exp +@V@/dejagnu/baseboards/mn10300-sim.exp @V@/dejagnu/baseboards/mn10300sim.exp +@V@/dejagnu/baseboards/powerpc-bug1.exp @V@/dejagnu/baseboards/powerpc1-bug.exp +@V@/dejagnu/baseboards/powerpc-sim.exp @V@/dejagnu/baseboards/powerpcsim.exp +@V@/dejagnu/baseboards/sparclite-coff.exp @V@/dejagnu/baseboards/sl-coff.exp +@V@/dejagnu/baseboards/sparclite-cygmon.exp @V@/dejagnu/baseboards/sl-cygmon.exp +@V@/dejagnu/baseboards/sparclite-sim-le.exp @V@/dejagnu/baseboards/sl-sim-le.exp +@V@/dejagnu/baseboards/sparclite-sim.exp @V@/dejagnu/baseboards/sl-sim.exp +@V@/dejagnu/contrib/test-g++ @V@/dejagnu/contrib/test-gxx +@V@/dejagnu/example/calc/calc.h.in @V@/dejagnu/example/calc/calc.h-in +@V@/expect/Dbg_cf.h.in @V@/expect/Dbg_cf.h-in +@V@/expect/example/beer.exp.out @V@/expect/example/beer_exp.out +@V@/expect/example/chesslib++.c @V@/expect/example/chesslibxx.c +@V@/expect/example/chesslib.c @V@/expect/example/chesslb.c +@V@/expect/example/chesslib2.c @V@/expect/example/chesslb2.c +@V@/expect/example/chesslibxx.c @V@/expect/example/chesslbxx.c +@V@/expect/exp_main_sub.c @V@/expect/exp_m_sub.c +@V@/expect/exp_main_tk.c @V@/expect/exp_m_tk.c +@V@/expect/expect_cf.h.in @V@/expect/expect_cf.h-in +@V@/gdb/ChangeLog-1990 @V@/gdb/ChangeLog.90 +@V@/gdb/ChangeLog-1991 @V@/gdb/ChangeLog.91 +@V@/gdb/ChangeLog-1992 @V@/gdb/ChangeLog.92 +@V@/gdb/ChangeLog-1993 @V@/gdb/ChangeLog.93 +@V@/gdb/ChangeLog-1994 @V@/gdb/ChangeLog.94 +@V@/gdb/ChangeLog-1995 @V@/gdb/ChangeLog.95 +@V@/gdb/ChangeLog-1996 @V@/gdb/ChangeLog.96 +@V@/gdb/ChangeLog-1997 @V@/gdb/ChangeLog.97 +@V@/gdb/ChangeLog-1998 @V@/gdb/ChangeLog.98 +@V@/gdb/ChangeLog-1999 @V@/gdb/ChangeLog.99 +@V@/gdb/ChangeLog-2000 @V@/gdb/ChangeLog.000 +@V@/gdb/ChangeLog-2001 @V@/gdb/ChangeLog.001 +@V@/gdb/ChangeLog-2002 @V@/gdb/ChangeLog.002 +@V@/gdb/ChangeLog-2003 @V@/gdb/ChangeLog.003 +@V@/gdb/ChangeLog-2004 @V@/gdb/ChangeLog.004 +@V@/gdb/ChangeLog-2005 @V@/gdb/ChangeLog.005 +@V@/gdb/ChangeLog-2006 @V@/gdb/ChangeLog.006 +@V@/gdb/ChangeLog-2007 @V@/gdb/ChangeLog.007 +@V@/gdb/ChangeLog-3.x @V@/gdb/ChangeLog.3-x +@V@/gdb/ada-exp.tab.c @V@/gdb/ada-exp_tab.c +@V@/gdb/amd64fbsd-nat.c @V@/gdb/a64fb-nat.c +@V@/gdb/amd64fbsd-tdep.c @V@/gdb/a64fb-tdep.c +@V@/gdb/amd64nbsd-nat.c @V@/gdb/a64nb-nat.c +@V@/gdb/amd64nbsd-tdep.c @V@/gdb/a64nb-tdep.c +@V@/gdb/amd64obsd-nat.c @V@/gdb/a64ob-nat.c +@V@/gdb/amd64obsd-tdep.c @V@/gdb/a64ob-tdep.c +@V@/gdb/alphabsd-nat.c @V@/gdb/alphb-nat.c +@V@/gdb/alphabsd-tdep.c @V@/gdb/alphb-tdep.c +@V@/gdb/alphanbsd-tdep.c @V@/gdb/alphnb-tdep.c +@V@/gdb/alpha-linux-nat.c @V@/gdb/alphl-nat.c +@V@/gdb/alpha-linux-tdep.c @V@/gdb/alphl-tdep.c +@V@/gdb/arm-linux-nat.c @V@/gdb/armlin-nat.c +@V@/gdb/arm-linux-tdep.c @V@/gdb/armlin-tdep.c +@V@/gdb/armnbsd-nat.c @V@/gdb/armnbd-nat.c +@V@/gdb/armnbsd-tdep.c @V@/gdb/armnbd-tdep.c +@V@/gdb/c-exp.tab.c @V@/gdb/c-exp_tab.c +@V@/gdb/config/alpha/alpha-osf1.mh @V@/gdb/config/alpha/alphosf1.mh +@V@/gdb/config/alpha/alpha-osf2.mh @V@/gdb/config/alpha/alphosf2.mh +@V@/gdb/config/alpha/alpha-osf3.mh @V@/gdb/config/alpha/alphosf3.mh +@V@/gdb/config/alpha/tm-alphalinux.h @V@/gdb/config/alpha/tm-alplinux.h +@V@/gdb/config/i386/nm-linux64.h @V@/gdb/config/i386/nm-lx64.h +@V@/gdb/config/i386/nm-i386sco4.h @V@/gdb/config/i386/nm-sco4.h +@V@/gdb/config/i386/nm-i386sco5.h @V@/gdb/config/i386/nm-sco5.h +@V@/gdb/config/i386/nm-i386sol2.h @V@/gdb/config/i386/nm-sol2.h +@V@/gdb/config/i386/nm-i386v4.h @V@/gdb/config/i386/nm-v4.h +@V@/gdb/config/i386/nm-i386v42mp.h @V@/gdb/config/i386/nm-v42mp.h +@V@/gdb/config/i386/tm-i386sol2.h @V@/gdb/config/i386/tm-sol2.h +@V@/gdb/config/i386/xm-i386v4.h @V@/gdb/config/i386/xm-v4.h +@V@/gdb/config/m88k/xm-delta88v4.h @V@/gdb/config/m88k/xm-d88v4.h +@V@/gdb/config/mips/tm-linux.h @V@/gdb/config/mips/tm-lx.h +@V@/gdb/config/pa/nm-hppah11.h @V@/gdb/config/pa/nm-hppa11.h +@V@/gdb/config/rs6000/tm-rs6000.h @V@/gdb/config/rs6000/tm-rs6k.h +@V@/gdb/config/rs6000/tm-rs6000ly.h @V@/gdb/config/rs6000/tm-rs6kly.h +@V@/gdb/config/sparc/tm-sparclynx.h @V@/gdb/config/sparc/tm-splynx.h +@V@/gdb/cp-names.c @V@/gdb/cpnames.c +@V@/gdb/f-exp.tab.c @V@/gdb/f-exp_tab.c +@V@/gdb/gdbserver/linux-cris-low.c @V@/gdb/gdbserver/lx-cris.c +@V@/gdb/gdbserver/linux-crisv32-low.c @V@/gdb/gdbserver/lx-cris32.c +@V@/gdb/gdbserver/linux-ppc-low.c @V@/gdb/gdbserver/lx-ppc-low.c +@V@/gdb/gdbserver/linux-ppc64-low.c @V@/gdb/gdbserver/lx-ppc64-low.c +@V@/gdb/gdbtk/ChangeLog-2001 @V@/gdb/gdbtk/ChangeLog.001 +@V@/gdb/gdbtk/ChangeLog-2002 @V@/gdb/gdbtk/ChangeLog.002 +@V@/gdb/gdbtk/ChangeLog-2003 @V@/gdb/gdbtk/ChangeLog.003 +@V@/gdb/gdbtk/generic/ChangeLog-1997 @V@/gdb/gdbtk/generic/ChangeLog.97 +@V@/gdb/gdbtk/generic/ChangeLog-1998 @V@/gdb/gdbtk/generic/ChangeLog.98 +@V@/gdb/gdbtk/generic/ChangeLog-1999 @V@/gdb/gdbtk/generic/ChangeLog.99 +@V@/gdb/gdbtk/generic/ChangeLog-2000 @V@/gdb/gdbtk/generic/ChangeLog.000 +@V@/gdb/gdbtk/generic/gdbtk-varobj.c @V@/gdb/gdbtk/generic/gdbtk-vobj.c +@V@/gdb/gdbtk/library/ChangeLog-1997 @V@/gdb/gdbtk/library/ChangeLog.97 +@V@/gdb/gdbtk/library/ChangeLog-1998 @V@/gdb/gdbtk/library/ChangeLog.98 +@V@/gdb/gdbtk/library/ChangeLog-1999 @V@/gdb/gdbtk/library/ChangeLog.99 +@V@/gdb/gdbtk/library/ChangeLog-2000 @V@/gdb/gdbtk/library/ChangeLog.000 +@V@/gdb/gdbtk/plugins/intel-pentium/intel-pentium.tcl.in @V@/gdb/gdbtk/plugins/intel-pentium/intel-pentium.t-in +@V@/gdb/gdbtk/plugins/rhabout/rhabout.tcl.in @V@/gdb/gdbtk/plugins/rhabout/rhabout.t-in +@V@/gdb/hppabsd-nat.c @V@/gdb/hppab-nat.c +@V@/gdb/hppabsd-tdep.c @V@/gdb/hppab-tdep.c +@V@/gdb/i386-interix-nat.c @V@/gdb/i386ix-nat.c +@V@/gdb/i386-interix-tdep.c @V@/gdb/i386ix-tdep.c +@V@/gdb/i386-linux-tdep.c @V@/gdb/i386lx-tdep.c +@V@/gdb/i386-linux-nat.c @V@/gdb/i386lx-nat.c +@V@/gdb/i386bsd-nat.c @V@/gdb/i3bsd-nat.c +@V@/gdb/i386bsd-tdep.c @V@/gdb/i3bsd-tdep.c +@V@/gdb/i386fbsd-nat.c @V@/gdb/i3fbsd-nat.c +@V@/gdb/i386fbsd-tdep.c @V@/gdb/i3fbsd-tdep.c +@V@/gdb/i386gnu-nat.c @V@/gdb/i3gnu-nat.c +@V@/gdb/i386gnu-tdep.c @V@/gdb/i3gnu-tdep.c +@V@/gdb/i386nbsd-tdep.c @V@/gdb/i3nbsd-tdep.c +@V@/gdb/i386obsd-nat.c @V@/gdb/i3obsd-nat.c +@V@/gdb/i386obsd-tdep.c @V@/gdb/i3obsd-tdep.c +@V@/gdb/i386-sol2-nat.c @V@/gdb/i3sol2-nat.c +@V@/gdb/i386-sol2-tdep.c @V@/gdb/i3sol2-tdep.c +@V@/gdb/ia64-aix-nat.c @V@/gdb/ia64ax-nat.c +@V@/gdb/ia64-aix-tdep.c @V@/gdb/ia64ax-tdep.c +@V@/gdb/ia64-linux-nat.c @V@/gdb/ia64lx-nat.c +@V@/gdb/ia64-linux-nat.c @V@/gdb/ia64lx-tdep.c +@V@/gdb/jv-exp.tab.c @V@/gdb/jv-exp_tab.c +@V@/gdb/m2-exp.tab.c @V@/gdb/m2-exp_tab.c +@V@/gdb/m32r-linux-nat.c @V@/gdb/m32rlnxnat.c +@V@/gdb/m32r-linux-tdep.c @V@/gdb/m32rlnxtdep.c +@V@/gdb/m68klinux-nat.c @V@/gdb/m68kl-nat.c +@V@/gdb/m68klinux-tdep.c @V@/gdb/m68kl-tdep.c +@V@/gdb/m68kbsd-nat.c @V@/gdb/m68bsd-nat.c +@V@/gdb/m68kbsd-tdep.c @V@/gdb/m68bsd-tdep.c +@V@/gdb/m68knbsd-nat.c @V@/gdb/m6nbsd-nat.c +@V@/gdb/m68knbsd-tdep.c @V@/gdb/m6nbsd-tdep.c +@V@/gdb/mips-linux-nat.c @V@/gdb/mipslnxnat.c +@V@/gdb/mips-linux-tdep.c @V@/gdb/mipslnxtdep.c +@V@/gdb/mipsnbsd-nat.c @V@/gdb/mipsnbnat.c +@V@/gdb/mipsnbsd-tdep.c @V@/gdb/mipsnbtdep.c +@V@/gdb/mips64obsd-nat.c @V@/gdb/mipsobnat.c +@V@/gdb/mips64obsd-tdep.c @V@/gdb/mipsobtdep.c +@V@/gdb/mn10300-linux-tdep.c @V@/gdb/mn10300linux-tdep.c +@V@/gdb/ns32knbsd-nat.c @V@/gdb/ns32nb-nat.c +@V@/gdb/ns32knbsd-tdep.c @V@/gdb/ns32nb-tdep.c +@V@/gdb/objc-exp.tab.c @V@/gdb/objc-exp_tab.c +@V@/gdb/osf-share/cma_stack_int.h @V@/gdb/osf-share/cma_stkint.h +@V@/gdb/p-exp.tab.c @V@/gdb/p-exp_tab.c +@V@/gdb/ppc-linux-tdep.c @V@/gdb/ppc-lx-tdep.c +@V@/gdb/ppc-linux-nat.c @V@/gdb/ppc-lx-nat.c +@V@/gdb/ppcnbsd-nat.c @V@/gdb/ppcnb-nat.c +@V@/gdb/ppcnbsd-tdep.c @V@/gdb/ppcnb-tdep.c +@V@/gdb/ppcobsd-nat.c @V@/gdb/ppcob-nat.c +@V@/gdb/ppcobsd-tdep.c @V@/gdb/ppcob-tdep.c +@V@/gdb/regformats/reg-i386-linux.dat @V@/gdb/regformats/r-i386-lnx.dat +@V@/gdb/regformats/reg-s390x.dat @V@/gdb/regformats/r-s390x.dat +@V@/gdb/regformats/reg-cris.dat @V@/gdb/regformats/r-cris.dat +@V@/gdb/regformats/reg-crisv32.dat @V@/gdb/regformats/r-crisv32.dat +@V@/gdb/remote-e7000.c @V@/gdb/rmt-e7000.c +@V@/gdb/remote-est.c @V@/gdb/rmt-est.c +@V@/gdb/remote-mips.c @V@/gdb/emt-mips.c +@V@/gdb/remote-rdi.c @V@/gdb/rmt-rdi.c +@V@/gdb/remote-rdp.c @V@/gdb/rmt-rdp.c +@V@/gdb/remote-sds.c @V@/gdb/rmt-sds.c +@V@/gdb/remote-sim.c @V@/gdb/rmt-sim.c +@V@/gdb/remote-st.c @V@/gdb/rmt-st.c +@V@/gdb/remote-vx.c @V@/gdb/rmt-vx.c +@V@/gdb/remote-vx68.c @V@/gdb/rmt-vx68.c +@V@/gdb/remote-vxmips.c @V@/gdb/rmt-vxmips.c +@V@/gdb/remote-vxsparc.c @V@/gdb/rmt-vxsparc.c +@V@/gdb/sparc64fbsd-nat.c @V@/gdb/sp64fb-nat.c +@V@/gdb/sparc64fbsd-tdep.c @V@/gdb/sp64fb-tdep.c +@V@/gdb/sparc64nbsd-nat.c @V@/gdb/sp64nb-nat.c +@V@/gdb/sparc64nbsd-tdep.c @V@/gdb/sp64nb-tdep.c +@V@/gdb/sparc64-linux-nat.c @V@/gdb/sp64lx-nat.c +@V@/gdb/sparc64-linux-tdep.c @V@/gdb/sp64lx-tdep.c +@V@/gdb/sparc64-nat.c @V@/gdb/sp64-nat.c +@V@/gdb/sparc64-tdep.c @V@/gdb/sp64-tdep.c +@V@/gdb/sparc64-sol2-tdep.c @V@/gdb/sp64s2-tdep.c +@V@/gdb/sparcnbsd-nat.c @V@/gdb/spnb-nat.c +@V@/gdb/sparcnbsd-tdep.c @V@/gdb/spnb-tdep.c +@V@/gdb/sparc-linux-nat.c @V@/gdb/splx-nat.c +@V@/gdb/sparc-linux-tdep.c @V@/gdb/splx-tdep.c +@V@/gdb/sparc-sol2-nat.c @V@/gdb/spsol2-nat.c +@V@/gdb/sparc-sol2-tdep.c @V@/gdb/spsol2-tdep.c +@V@/gdb/testsuite/.gdbinit @V@/gdb/testsuite/gdb.ini +@V@/gdb/testsuite/gdb.arch/altivec-abi.c @V@/gdb/testsuite/gdb.arch/av-abi.c +@V@/gdb/testsuite/gdb.arch/altivec-abi.exp @V@/gdb/testsuite/gdb.arch/av-abi.exp +@V@/gdb/testsuite/gdb.arch/altivec-regs.c @V@/gdb/testsuite/gdb.arch/av-regs.c +@V@/gdb/testsuite/gdb.arch/altivec-regs.exp @V@/gdb/testsuite/gdb.arch/av-regs.exp +@V@/gdb/testsuite/gdb.arch/powerpc-aix-prologue.exp @V@/gdb/testsuite/gdb.arch/ppcaprol.exp +@V@/gdb/testsuite/gdb.arch/powerpc-aix-prologue.c @V@/gdb/testsuite/gdb.arch/ppcaprol.c +@V@/gdb/testsuite/gdb.base/bitfields2.c @V@/gdb/testsuite/gdb.base/bitfiel2.c +@V@/gdb/testsuite/gdb.base/bitfields2.exp @V@/gdb/testsuite/gdb.base/bitfiel2.exp +@V@/gdb/testsuite/gdb.base/coremaker2.c @V@/gdb/testsuite/gdb.base/core2maker.c +@V@/gdb/testsuite/gdb.cp/m-static1.cc @V@/gdb/testsuite/gdb.cp/m-stat1.cc +@V@/gdb/testsuite/gdb.cp/namespace1.cc @V@/gdb/testsuite/gdb.cp/namesp1.cc +@V@/gdb/testsuite/gdb.dwarf2/dw2-intermix.exp @V@/gdb/testsuite/gdb.dwarf2/dw2-intmix.exp +@V@/gdb/testsuite/gdb.dwarf2/dw2-intermix.S @V@/gdb/testsuite/gdb.dwarf2/dw2-intmix.S +@V@/gdb/testsuite/gdb.gdbtk/ChangeLog @V@/gdb/testsuite/gdb.tk/ChangeLog +@V@/gdb/testsuite/gdb.gdbtk/Makefile.in @V@/gdb/testsuite/gdb.tk/Makefile.in +@V@/gdb/testsuite/gdb.gdbtk/browser.exp @V@/gdb/testsuite/gdb.tk/browser.exp +@V@/gdb/testsuite/gdb.gdbtk/browser.test @V@/gdb/testsuite/gdb.tk/browser.test +@V@/gdb/testsuite/gdb.gdbtk/c_variable.c @V@/gdb/testsuite/gdb.tk/c_variable.c +@V@/gdb/testsuite/gdb.gdbtk/c_variable.exp @V@/gdb/testsuite/gdb.tk/c_variable.exp +@V@/gdb/testsuite/gdb.gdbtk/c_variable.test @V@/gdb/testsuite/gdb.tk/c_variable.test +@V@/gdb/testsuite/gdb.gdbtk/configure @V@/gdb/testsuite/gdb.tk/configure +@V@/gdb/testsuite/gdb.gdbtk/configure.in @V@/gdb/testsuite/gdb.tk/configure.in +@V@/gdb/testsuite/gdb.gdbtk/console.exp @V@/gdb/testsuite/gdb.tk/console.exp +@V@/gdb/testsuite/gdb.gdbtk/console.test @V@/gdb/testsuite/gdb.tk/console.test +@V@/gdb/testsuite/gdb.gdbtk/cpp_variable.cc @V@/gdb/testsuite/gdb.tk/cpp_variable.cc +@V@/gdb/testsuite/gdb.gdbtk/cpp_variable.exp @V@/gdb/testsuite/gdb.tk/cpp_variable.exp +@V@/gdb/testsuite/gdb.gdbtk/cpp_variable.h @V@/gdb/testsuite/gdb.tk/cpp_variable.h +@V@/gdb/testsuite/gdb.gdbtk/cpp_variable.test @V@/gdb/testsuite/gdb.tk/cpp_variable.test +@V@/gdb/testsuite/gdb.gdbtk/defs @V@/gdb/testsuite/gdb.tk/defs +@V@/gdb/testsuite/gdb.gdbtk/list0.c @V@/gdb/testsuite/gdb.tk/list0.c +@V@/gdb/testsuite/gdb.gdbtk/list0.h @V@/gdb/testsuite/gdb.tk/list0.h +@V@/gdb/testsuite/gdb.gdbtk/list1.c @V@/gdb/testsuite/gdb.tk/list1.c +@V@/gdb/testsuite/gdb.gdbtk/README @V@/gdb/testsuite/gdb.tk/README +@V@/gdb/testsuite/gdb.gdbtk/simple.c @V@/gdb/testsuite/gdb.tk/simple.c +@V@/gdb/testsuite/gdb.gdbtk/srcwin.exp @V@/gdb/testsuite/gdb.tk/srcwin.exp +@V@/gdb/testsuite/gdb.gdbtk/srcwin.test @V@/gdb/testsuite/gdb.tk/srcwin.test +@V@/gdb/testsuite/gdb.gdbtk/srcwin2.test @V@/gdb/testsuite/gdb.tk/srcwin2.test +@V@/gdb/testsuite/gdb.gdbtk/srcwin3.test @V@/gdb/testsuite/gdb.tk/srcwin3.test +@V@/gdb/testsuite/gdb.gdbtk/stack1.c @V@/gdb/testsuite/gdb.tk/stack1.c +@V@/gdb/testsuite/gdb.gdbtk/stack2.c @V@/gdb/testsuite/gdb.tk/stack2.c +@V@/gdb/testsuite/gdb.gdbtk/windows.exp @V@/gdb/testsuite/gdb.tk/windows.exp +@V@/gdb/testsuite/gdb.gdbtk/windows.test @V@/gdb/testsuite/gdb.tk/windows.test +@V@/gdb/testsuite/gdb.mi/mi-var-cmd.exp @V@/gdb/testsuite/gdb.mi/mi-varcmd.exp +@V@/gdb/testsuite/gdb.mi/mi-var-child.exp @V@/gdb/testsuite/gdb.mi/mi-varchild.exp +@V@/gdb/testsuite/gdb.mi/mi1-var-block.exp @V@/gdb/testsuite/gdb.mi/mi1varblock.exp +@V@/gdb/testsuite/gdb.mi/mi1-var-child.exp @V@/gdb/testsuite/gdb.mi/mi1varchild.exp +@V@/gdb/testsuite/gdb.mi/mi1-var-cmd.exp @V@/gdb/testsuite/gdb.mi/mi1varcmd.exp +@V@/gdb/testsuite/gdb.mi/mi1-var-display.exp @V@/gdb/testsuite/gdb.mi/mi1vardisplay.exp +@V@/gdb/testsuite/gdb.mi/mi2-var-block.exp @V@/gdb/testsuite/gdb.mi/mi2varblock.exp +@V@/gdb/testsuite/gdb.mi/mi2-var-child.exp @V@/gdb/testsuite/gdb.mi/mi2varchild.exp +@V@/gdb/testsuite/gdb.mi/mi2-var-cmd.exp @V@/gdb/testsuite/gdb.mi/mi2varcmd.exp +@V@/gdb/testsuite/gdb.mi/mi2-var-display.exp @V@/gdb/testsuite/gdb.mi/mi2vardisplay.exp +@V@/gdb/amd64-linux-tdep.c @V@/gdb/amd64-ltdep.c +@V@/gdb/amd64-linux-nat.c @V@/gdb/amd64-lnat.c +@V@/gdb/hppa-linux-tdep.c @V@/gdb/palnxtdep.c +@V@/gdb/hppa-linux-nat.c @V@/gdb/palnxnat.c +@V@/gdb/hppa-hpux-nat.c @V@/gdb/pahpuxnat.c +@V@/gdb/hppa-hpux-tdep.c @V@/gdb/pahpuxtdep.c +@V@/include/ChangeLog-9103 @V@/include/ChangeLog.9103 +@V@/include/coff/ChangeLog-9103 @V@/include/coff/ChangeLog.9103 +@V@/include/elf/ChangeLog-9103 @V@/include/elf/ChangeLog.9103 +@V@/include/opcode/ChangeLog-9103 @V@/include/opcode/ChangeLog.9103 +@V@/include/xtensa-isa-internal.h @V@/include/xt-internal.h +@V@/include/xtensa-isa.h @V@/include/xt-isa.h +@V@/intl/intlh.inst.in @V@/intl/intlh_inst.in +@V@/intl/po2tbl.sed.in @V@/intl/po2tblsed.in +@V@/itcl/itcl/itclConfig.sh.in @V@/itcl/itcl/itclConfig.sh-in +@V@/itcl/itcl/unix/pkgIndex.tcl.in @V@/itcl/itcl/unix/pkgIndex.t-in +@V@/itcl/itk/itkConfig.sh.in @V@/itcl/itk/itkConfig.sh-in +@V@/itcl/itk/unix/pkgIndex.tcl.in @V@/itcl/itk/unix/pkgIndex.t-in +@V@/itcl/iwidgets3.0.0 @V@/itcl/iwidgets3.0-0 +@V@/libgui/config.h.in @V@/libgui/config.h-in +@V@/libgui/src/tkTableCell.c @V@/libgui/src/tkTabCell.c +@V@/libgui/src/tkTableCmd.c @V@/libgui/src/tkTabCmd.c +@V@/libgui/src/tkWinPrintCanvas.c @V@/libgui/src/tkWPrtCanvas.c +@V@/libgui/src/tkWinPrintText.c @V@/libgui/src/tkWPrtText.c +@V@/opcodes/ChangeLog-9297 @V@/opcodes/ChangeLog.9297 +@V@/opcodes/ChangeLog-9899 @V@/opcodes/ChangeLog.9899 +@V@/opcodes/ChangeLog-0001 @V@/opcodes/ChangeLog.0001 +@V@/opcodes/ChangeLog-0203 @V@/opcodes/ChangeLog.0203 +@V@/opcodes/ChangeLog-2004 @V@/opcodes/ChangeLog.004 +@V@/opcodes/ChangeLog-2005 @V@/opcodes/ChangeLog.005 +@V@/opcodes/ia64-opc-a.c @V@/opcodes/ia64opca.c +@V@/opcodes/ia64-opc-b.c @V@/opcodes/ia64opcb.c +@V@/opcodes/ia64-opc-d.c @V@/opcodes/ia64opcd.c +@V@/opcodes/ia64-opc-f.c @V@/opcodes/ia64opcf.c +@V@/opcodes/ia64-opc-i.c @V@/opcodes/ia64opci.c +@V@/opcodes/ia64-opc-m.c @V@/opcodes/ia64opcm.c +@V@/opcodes/ia64-opc-x.c @V@/opcodes/ia64opcx.c +@V@/opcodes/ia64-opc.c @V@/opcodes/ia64-opc.c +@V@/opcodes/iq2000-desc.c @V@/opcodes/iq2000desc.c +@V@/opcodes/iq2000-dis.c @V@/opcodes/iq2000dis.c +@V@/opcodes/m68hc11-dis.c @V@/opcodes/m68hc11dis.c +@V@/opcodes/m68hc11-opc.c @V@/opcodes/m68hc11opc.c +@V@/opcodes/openrisc-asm.c @V@/opcodes/orisc-asm.c +@V@/opcodes/openrisc-desc.c @V@/opcodes/orisc-desc.c +@V@/opcodes/openrisc-dis.c @V@/opcodes/orisc-dis.c +@V@/opcodes/openrisc-ibld.c @V@/opcodes/orisc-ibld.c +@V@/opcodes/openrisc-opc.c @V@/opcodes/orisc-opc.c +@V@/opcodes/openrisc-opc.h @V@/opcodes/orisc-opc.h +@V@/opcodes/openrisc-desc.h @V@/opcodes/orisc-desc.h +@V@/opcodes/xstormy16-asm.c @V@/opcodes/xst16asm.c +@V@/opcodes/xstormy16-desc.c @V@/opcodes/xst16dsc.c +@V@/opcodes/xstormy16-desc.h @V@/opcodes/xst16dsc.h +@V@/opcodes/xstormy16-dis.c @V@/opcodes/xst16dis.c +@V@/opcodes/xstormy16-ibld.c @V@/opcodes/xst16ibd.c +@V@/opcodes/xstormy16-opc.c @V@/opcodes/xst16opc.c +@V@/opcodes/xstormy16-opc.h @V@/opcodes/xst16opc.h +@V@/readline/config.h.bot @V@/readline/config.h-bot +@V@/readline/config.h.in @V@/readline/config.h-in +@V@/sim/frv/profile-fr400.c @V@/sim/frv/fr400-profile.c +@V@/sim/cris/semcrisv10f-switch.c @V@/sim/cris/scrisv10f.c +@V@/sim/cris/semcrisv32f-switch.c @V@/sim/cris/scrisv32f.c +@V@/sim/frv/profile-fr400.h @V@/sim/frv/fr400-profile.h +@V@/sim/frv/profile-fr500.c @V@/sim/frv/fr500-profile.c +@V@/sim/frv/profile-fr500.h @V@/sim/frv/fr500-profile.h +@V@/sim/frv/profile-fr550.c @V@/sim/frv/fr550-profile.c +@V@/sim/frv/profile-fr550.h @V@/sim/frv/fr550-profile.h +@V@/sim/m68hc11/dv-m68hc11eepr.c @V@/sim/m68hc11/dv-eepr.c +@V@/sim/m68hc11/dv-m68hc11sio.c @V@/sim/m68hc11/dv-sio.c +@V@/sim/m68hc11/dv-m68hc11spi.c @V@/sim/m68hc11/dv-spi.c +@V@/sim/m68hc11/dv-m68hc11tim.c @V@/sim/m68hc11/dv-tim.c +@V@/sim/mips/dv-tx3904irc.c @V@/sim/mips/dv-tx3irc.c +@V@/sim/mips/dv-tx3904sio.c @V@/sim/mips/dv-tx3sio.c +@V@/sim/mips/dv-tx3904tmr.c @V@/sim/mips/dv-tx3tmr.c +@V@/sim/mn10300/dv-mn103int.c @V@/sim/mn10300/dv-mn1int.c +@V@/sim/mn10300/dv-mn103iop.c @V@/sim/mn10300/dv-mn1iop.c +@V@/sim/mn10300/dv-mn103ser.c @V@/sim/mn10300/dv-mn1ser.c +@V@/sim/mn10300/dv-mn103tim.c @V@/sim/mn10300/dv-mn1tim.c +@V@/sim/ppc/.gdbinit @V@/sim/ppc/gdb.ini +@V@/sim/ppc/corefile-n.h @V@/sim/ppc/corefle-n.h +@V@/sim/ppc/altivec_expression.h @V@/sim/ppc/av_expression.h +@V@/sim/ppc/altivec_registers.h @V@/sim/ppc/av_registers.h +@V@/sim/ppc/idecode_branch.h @V@/sim/ppc/idec_branch.h +@V@/sim/ppc/idecode_expression.h @V@/sim/ppc/idec_expression.h +@V@/sim/ppc/idecode_fields.h @V@/sim/ppc/idec_fields.h +@V@/sim/ppc/sim-endian-n.h @V@/sim/ppc/sim-endn.h +@V@/sim/sh64/sem-compact-switch.c @V@/sim/sh64/sem-cswitch.c +@V@/sim/sh64/sem-media-switch.c @V@/sim/sh64/sem-mswitch.c +@V@/sim/testsuite/d10v-elf/t-ae-ld-d.s @V@/sim/testsuite/d10v-elf/t-ld-d.s +@V@/sim/testsuite/d10v-elf/t-ae-ld-i.s @V@/sim/testsuite/d10v-elf/t-ld-i.s +@V@/sim/testsuite/d10v-elf/t-ae-ld-id.s @V@/sim/testsuite/d10v-elf/t-ld-id.s +@V@/sim/testsuite/d10v-elf/t-ae-ld-im.s @V@/sim/testsuite/d10v-elf/t-ld-im.s +@V@/sim/testsuite/d10v-elf/t-ae-ld-ip.s @V@/sim/testsuite/d10v-elf/t-ld-ip.s +@V@/sim/testsuite/d10v-elf/t-ae-ld2w-d.s @V@/sim/testsuite/d10v-elf/t-ld2-d.s +@V@/sim/testsuite/d10v-elf/t-ae-ld2w-i.s @V@/sim/testsuite/d10v-elf/t-ld2-i.s +@V@/sim/testsuite/d10v-elf/t-ae-ld2w-id.s @V@/sim/testsuite/d10v-elf/t-ld2-id.s +@V@/sim/testsuite/d10v-elf/t-ae-ld2w-im.s @V@/sim/testsuite/d10v-elf/t-ld2-im.s +@V@/sim/testsuite/d10v-elf/t-ae-ld2w-ip.s @V@/sim/testsuite/d10v-elf/t-ld2-ip.s +@V@/sim/testsuite/d10v-elf/t-ae-st-d.s @V@/sim/testsuite/d10v-elf/t-st-d.s +@V@/sim/testsuite/d10v-elf/t-ae-st-i.s @V@/sim/testsuite/d10v-elf/t-st-i.s +@V@/sim/testsuite/d10v-elf/t-ae-st-id.s @V@/sim/testsuite/d10v-elf/t-st-id.s +@V@/sim/testsuite/d10v-elf/t-ae-st-im.s @V@/sim/testsuite/d10v-elf/t-st-im.s +@V@/sim/testsuite/d10v-elf/t-ae-st-ip.s @V@/sim/testsuite/d10v-elf/t-st-ip.s +@V@/sim/testsuite/d10v-elf/t-ae-st-is.s @V@/sim/testsuite/d10v-elf/t-st-is.s +@V@/sim/testsuite/d10v-elf/t-ae-st2w-d.s @V@/sim/testsuite/d10v-elf/t-st2-d.s +@V@/sim/testsuite/d10v-elf/t-ae-st2w-i.s @V@/sim/testsuite/d10v-elf/t-st2-i.s +@V@/sim/testsuite/d10v-elf/t-ae-st2w-id.s @V@/sim/testsuite/d10v-elf/t-st2-id.s +@V@/sim/testsuite/d10v-elf/t-ae-st2w-im.s @V@/sim/testsuite/d10v-elf/t-st2-im.s +@V@/sim/testsuite/d10v-elf/t-ae-st2w-ip.s @V@/sim/testsuite/d10v-elf/t-st2-ip.s +@V@/sim/testsuite/d10v-elf/t-ae-st2w-is.s @V@/sim/testsuite/d10v-elf/t-st2-is.s +@V@/sim/testsuite/d30v-elf/ls-ld4bhu.S @V@/sim/testsuite/d30v-elf/ls-ld4bu.S +@V@/sim/testsuite/sim/arm/misaligned1.ms @V@/sim/testsuite/sim/arm/mis1.ms +@V@/sim/testsuite/sim/arm/misaligned2.ms @V@/sim/testsuite/sim/arm/mis2.ms +@V@/sim/testsuite/sim/arm/misaligned3.ms @V@/sim/testsuite/sim/arm/mis3.ms +@V@/sim/testsuite/sim/cris/asm/tjmpsrv32-2.ms @V@/sim/testsuite/sim/cris/tjmp32-2.ms +@V@/sim/testsuite/sim/cris/asm/tjmpsrv32.ms @V@/sim/testsuite/sim/cris/tjmp32.ms +@V@/sim/testsuite/sim/cris/c/ftruncate1.c @V@/sim/testsuite/sim/cris/ftrunc1.c +@V@/sim/testsuite/sim/cris/c/ftruncate2.c @V@/sim/testsuite/sim/cris/ftrunc2.c +@V@/sim/testsuite/sim/cris/c/readlink1.c @V@/sim/testsuite/sim/cris/rdlink1.c +@V@/sim/testsuite/sim/cris/c/readlink2.c @V@/sim/testsuite/sim/cris/rdlink2.c +@V@/sim/testsuite/sim/cris/c/readlink3.c @V@/sim/testsuite/sim/cris/rdlink3.c +@V@/sim/testsuite/sim/cris/c/readlink4.c @V@/sim/testsuite/sim/cris/rdlink4.c +@V@/sim/testsuite/sim/cris/c/readlink5.c @V@/sim/testsuite/sim/cris/rdlink5.c +@V@/sim/testsuite/sim/cris/c/readlink6.c @V@/sim/testsuite/sim/cris/rdlink6.c +@V@/sim/testsuite/sim/cris/c/readlink7.c @V@/sim/testsuite/sim/cris/rdlink7.c +@V@/sim/testsuite/sim/cris/c/readlink8.c @V@/sim/testsuite/sim/cris/rdlink8.c +@V@/sim/testsuite/sim/cris/c/readlink9.c @V@/sim/testsuite/sim/cris/rdlink9.c +@V@/sim/testsuite/sim/cris/c/readlink10.c @V@/sim/testsuite/sim/cris/rdlink10.c +@V@/sim/testsuite/sim/cris/c/sigreturn1.c @V@/sim/testsuite/sim/cris/sigret1.c +@V@/sim/testsuite/sim/cris/c/sigreturn2.c @V@/sim/testsuite/sim/cris/sigret2.c +@V@/sim/testsuite/sim/cris/c/truncate1.c @V@/sim/testsuite/sim/cris/trunc1.c +@V@/sim/testsuite/sim/cris/c/truncate2.c @V@/sim/testsuite/sim/cris/trunc2.c +@V@/sim/testsuite/sim/mips/fpu64-ps-sb1.s @V@/sim/testsuite/sim/mips/fpu64ps-sb1.s +@V@/sim/testsuite/sim/frv/interrupts/Ipipe-fr400.cgs @V@/sim/testsuite/sim/frv/interrupts/Ip-fr400.cgs +@V@/sim/testsuite/sim/frv/interrupts/Ipipe-fr500.cgs @V@/sim/testsuite/sim/frv/interrupts/Ip-fr500.cgs +@V@/sim/testsuite/sim/frv/interrupts/badalign-fr550.cgs @V@/sim/testsuite/sim/frv/interrupts/fr550-badalign.cgs +@V@/sim/testsuite/sim/frv/interrupts/compound-fr550.cgs @V@/sim/testsuite/sim/frv/interrupts/fr550-compound.cgs +@V@/sim/testsuite/sim/frv/interrupts/data_store_error-fr550.cgs @V@/sim/testsuite/sim/frv/interrupts/fr550-data_store_error.cgs +@V@/sim/testsuite/sim/frv/interrupts/fp_exception-fr550.cgs @V@/sim/testsuite/sim/frv/interrupts/fr550-fp_exception.cgs +@V@/sim/testsuite/sim/frv/interrupts/insn_access_error-fr550.cgs @V@/sim/testsuite/sim/frv/interrupts/fr550-insn_access_error.cgs +@V@/sim/testsuite/sim/mips/hilo-hazard-1.s @V@/sim/testsuite/sim/mips/hilo-hz1.s +@V@/sim/testsuite/sim/mips/hilo-hazard-2.s @V@/sim/testsuite/sim/mips/hilo-hz2.s +@V@/sim/testsuite/sim/mips/hilo-hazard-3.s @V@/sim/testsuite/sim/mips/hilo-hz3.s +@V@/sim/testsuite/sim/sh64/compact/ldsl-mach.cgs @V@/sim/testsuite/sim/sh64/compact/mach-ldsl.cgs +@V@/sim/testsuite/sim/sh64/compact/ldsl-macl.cgs @V@/sim/testsuite/sim/sh64/compact/macl-ldsl.cgs +@V@/sim/testsuite/sim/sh64/compact/stsl-mach.cgs @V@/sim/testsuite/sim/sh64/compact/mach-stsl.cgs +@V@/sim/testsuite/sim/sh64/compact/stsl-macl.cgs @V@/sim/testsuite/sim/sh64/compact/macl-stsl.cgs +@V@/tcl/cygwin/tclConfig.sh.in @V@/tcl/cygwin/tclConfig.sh-in +@V@/tcl/doc/ExprLongObj.3 @V@/tcl/doc/ExprLObj.3 +@V@/tcl/mac/tclMacBOAAppInit.c @V@/tcl/mac/tclBOAAppInit.c +@V@/tcl/mac/tclMacBOAMain.c @V@/tcl/mac/tclBOAMain.c +@V@/tcl/mac/tclMacInit.c @V@/tcl/mac/tclInit.c +@V@/tcl/mac/tclMacInterupt.c @V@/tcl/mac/tclInterupt.c +@V@/tcl/mac/tclMacProjects.sea.hqx @V@/tcl/mac/tclMacProjects.shqx +@V@/tcl/tests/namespace-old.test @V@/tcl/tests/namespace.otest +@V@/tcl/unix/tclConfig.sh.in @V@/tcl/unix/tclConfig.sh-in +@V@/tcl/unix/tclLoadAix.c @V@/tcl/unix/tclLdAix.c +@V@/tcl/unix/tclLoadAout.c @V@/tcl/unix/tclLdAout.c +@V@/tcl/unix/tclLoadDl.c @V@/tcl/unix/tclLdDl.c +@V@/tcl/unix/tclLoadDld.c @V@/tcl/unix/tclLdDld.c +@V@/tcl/unix/tclUnixFCmd.c @V@/tcl/unix/tclFCmd.c +@V@/tcl/unix/tclUnixFile.c @V@/tcl/unix/tclFile.c +@V@/tcl/unix/tclUnixTest.c @V@/tcl/unix/tclTest.c +@V@/tcl/unix/tclUnixTime.c @V@/tcl/unix/tclTime.c +@V@/tk/doc/ConfigWidg.3 @V@/tk/doc/CfgWidg.3 +@V@/tk/doc/ConfigWind.3 @V@/tk/doc/CfgWind.3 +@V@/tk/library/images/pwrdLogo100.gif @V@/tk/library/images/pwLogo100.gif +@V@/tk/library/images/pwrdLogo150.gif @V@/tk/library/images/pwLogo150.gif +@V@/tk/library/images/pwrdLogo175.gif @V@/tk/library/images/pwLogo175.gif +@V@/tk/library/images/pwrdLogo200.gif @V@/tk/library/images/pwLogo200.gif +@V@/tk/library/images/pwrdLogo75.gif @V@/tk/library/images/pwLogo75.gif +@V@/tk/mac/tkMacMenu.c @V@/tk/mac/tkMenu.c +@V@/tk/mac/tkMacMenubutton.c @V@/tk/mac/tkMenubutton.c +@V@/tk/mac/tkMacMenus.c @V@/tk/mac/tkMenus.c +@V@/tk/tests/option.file1 @V@/tk/tests/option1.file +@V@/tk/tests/option.file2 @V@/tk/tests/option2.file +@V@/tk/unix/tkConfig.sh.in @V@/tk/unix/tkConfig.sh-in +@V@/tk/unix/tkUnixFocus.c @V@/tk/unix/tkFocus.c +@V@/tk/unix/tkUnixFont.c @V@/tk/unix/tkFont.c +@V@/tk/unix/tkUnixMenu.c @V@/tk/unix/tkMenu.c +@V@/tk/unix/tkUnixMenubu.c @V@/tk/unix/tkMenubu.c +@V@/tk/unix/tkUnixScale.c @V@/tk/unix/tkScale.c +@V@/tk/unix/tkUnixScrlbr.c @V@/tk/unix/tkScrlbr.c +@V@/tk/unix/tkUnixSelect.c @V@/tk/unix/tkSelect.c +@V@/tk/unix/tkUnixSend.c @V@/tk/unix/tkSend.c Index: djgpp/djconfig.sh =================================================================== --- djgpp/djconfig.sh (nonexistent) +++ djgpp/djconfig.sh (revision 840) @@ -0,0 +1,180 @@ +#!/bin/sh +# +# This shell script is a wrapper to the main configure script when +# configuring GDB for DJGPP. 99% of it can also be used when +# configuring other GNU programs for DJGPP. +# +#===================================================================== +# Copyright 1997,1999,2000,2001,2002,2003,2005,2007,2008 +# Free Software Foundation, Inc. +# +# Originally written by Robert Hoehne, revised by Eli Zaretskii. +# This file is part of GDB. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +#===================================================================== +# +# Call this script like the main configure script with one exception. If you +# want to pass parameters to configure, you have to pass as the first +# argument the srcdir, even when it is `.' !!!!! +# +# First, undo any CDPATH settings; they will get in our way when we +# chdir to directories. +unset CDPATH + +# Where are the sources? If you are used to having the sources +# in a separate directory and the objects in another, then set +# here the full path to the source directory and run this script +# in the directory where you want to build gdb!! +# You might give the source directory on commandline, but use +# then only forward slashes (/) in the directories. It should be +# an absolute path. + +if [ x$1 = x ]; then + srcdir=`pwd` +else + srcdir=`cd $1 && pwd` + shift +fi + +# Make sure they don't have some file names mangled by untarring. +echo -n "Checking the unpacked distribution..." +if ( ! test -f ${srcdir}/bfd/ChangeLog.0203 || \ + ! test -f ${srcdir}/gdb/ChangeLog.002 || \ + ! test -f ${srcdir}/opcodes/ChangeLog.0203 || \ + ! test -f ${srcdir}/readline/config.h-in ) ; then + if ( ! test -f ${srcdir}/bfd/ChangeLog.0203 ) ; then + notfound=${srcdir}/bfd/ChangeLog.0203 + else + if ( ! test -f ${srcdir}/gdb/ChangeLog.002) ; then + notfound=${srcdir}/gdb/ChangeLog.002 + else + if ( ! test -f ${srcdir}/readline/config.h-in ) ; then + notfound=${srcdir}/readline/config.h-in + else + if ( ! test -f ${srcdir}/opcodes/ChangeLog.0203 ) ; then + notfound=${srcdir}/opcodes/ChangeLog.0203 + fi + fi + fi + fi + echo " FAILED." + echo "(File $notfound was not found.)" + echo "" + echo "You MUST unpack the sources with the DJTAR command, like this:" + echo "" + echo " djtar -x -n fnchange.lst gdb-X.YZ.tar.gz" + echo "" + echo "where X.YZ is the GDB version, and fnchange.lst can be found" + echo "in the gdb/config/djgpp/ directory in the GDB distribution." + echo "" + echo "configure FAILED!" + exit 1 +else + echo " ok." +fi + +# Where is the directory with DJGPP-specific scripts? +DJGPPDIR=${srcdir}/gdb/config/djgpp + +echo "Editing configure scripts for DJGPP..." +TMPFILE="${TMPDIR-.}/cfg.tmp" + +# We need to skip the build directory if it is a subdirectory of $srcdir, +# otherwise we will have an infinite recursion on our hands... +if test "`pwd`" == "${srcdir}" ; then + SKIPDIR="" + SKIPFILES="" +else + SKIPDIR=`pwd | sed -e "s|${srcdir}|.|"` + SKIPFILES="${SKIPDIR}/*" +fi + +# We use explicit /dev/env/DJDIR/bin/find to avoid catching +# an incompatible DOS/Windows version that might be on their PATH. +for fix_dir in \ + `cd $srcdir && /dev/env/DJDIR/bin/find . -type d ! -ipath "${SKIPDIR}" ! -ipath "${SKIPFILES}"` +do + if test ! -f ${fix_dir}/configure.orig ; then + if test -f ${srcdir}/${fix_dir}/configure ; then + mkdir -p ${fix_dir} + cp -p ${srcdir}/${fix_dir}/configure ${fix_dir}/configure.orig + fi + fi + if test -f ${fix_dir}/configure.orig ; then + sed -f ${DJGPPDIR}/config.sed ${fix_dir}/configure.orig > $TMPFILE + update $TMPFILE ${fix_dir}/configure + touch ./${fix_dir}/configure -r ${fix_dir}/configure.orig + rm -f $TMPFILE + fi + if test -f ${fix_dir}/INSTALL ; then + mv ${fix_dir}/INSTALL ${fix_dir}/INSTALL.txt + fi +done + +# Now set the config shell. It is really needed, that the shell +# points to a shell with full path and also it must conatain the +# .exe suffix. I assume here, that bash is installed. If not, +# install it. Additionally, the pathname must not contain a +# drive letter, so use the /dev/x/foo format supported by versions +# of Bash 2.03 and later, and by all DJGPP programs compiled with +# v2.03 (or later) library. +export CONFIG_SHELL=/dev/env/DJDIR/bin/sh.exe + +# force to have the ltmain.sh script to be in DOS text format, +# otherwise the resulting ltconfig script will have mixed +# (UNIX/DOS) format and is unusable with Bash ports before v2.03. +utod $srcdir/ltmain.sh + +# Give the configure script some hints: +export LD=ld +export NM=nm +export CC=gcc +export CFLAGS="-O2 -g" +export RANLIB=ranlib +export DEFAULT_YACC="bison -y" +export YACC="bison -y" +export DEFAULT_LEX=flex +# Define explicitly the .exe extension because on W95 with LFN=y +# the check might fail +export am_cv_exeext=.exe +# ltconfig wants to compute the maximum command-line length, but +# Bash 2.04 doesn't like that (it doesn't have any limit ;-), and +# reboots the system. We know our limit in advance, so we don't +# need all that crap. Assuming that the environment size is less +# than 4KB, we can afford 12KB of command-line arguments. +export lt_cv_sys_max_cmd_len=12288 + +# The configure script needs to see the `install-sh' script, otherwise +# it decides the source installation is broken. But "make install" will +# fail on 8+3 filesystems if it finds a file `install-', since there +# are numerous "install-foo" targets in Makefile's. So we rename the +# offending file after the configure step is done. +if test ! -f ${srcdir}/install-sh ; then + if test -f ${srcdir}/install-.sh ; then + mv ${srcdir}/install-.sh ${srcdir}/install-sh + fi +fi + +# Now run the configure script while disabling some things like the NLS +# support, which is nearly impossible to be supported in the current way, +# since it relies on file names which will never work on DOS. +echo "Running the configure script..." +$srcdir/configure --srcdir="$srcdir" --prefix='${DJDIR}' \ + --disable-shared --disable-nls --verbose --enable-build-warnings=\ +-Wimplicit,-Wcomment,-Wformat,-Wparentheses,-Wpointer-arith,-Wuninitialized $* + +if test -f ${srcdir}/install- ; then + mv ${srcdir}/install- ${srcdir}/install-.sh +fi
djgpp/djconfig.sh Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: djgpp/README =================================================================== --- djgpp/README (nonexistent) +++ djgpp/README (revision 840) @@ -0,0 +1,189 @@ + + How to build and install the DJGPP native version of GDB + ******************************************************** + +General +======= + +GDB built with DJGPP supports native DJGPP debugging, whereby you run +gdb.exe and the program being debugged on the same machine. In +addition, this version supports remote debugging via a serial port, +provided that the target machine has a GDB-compatible debugging stub +which can be linked with the target program (see the section "Remote +Serial" in the GDB manual for more details). + + +Installation of the binary distribution +======================================= + +Simply unzip the gdbNNNb.zip file (where NNN is the version number) +from the top DJGPP installation directory. Be sure to preserve the +directory structure while you unzip (use -d switch if you do this with +PKUNZIP). On Windows 9X and Windows 2000, use an unzip program which +supports long file names; one such program is unzip32.exe, available +from the DJGPP sites. + +If you need the libraries which are built as part of GDB, install the +companion file gdbNNNa.zip. This allows to develop applications which +use the same functions as GDB. For example, you can build your own +front end to the debugger. + + +Rebuilding GDB from sources +=========================== + +1. Prerequisites + ------------- +To build the package, you will need the DJGPP development environment +(GCC, header files, and the libraries), and also DJGPP ports of the +following tools: + + - GNU Make 3.79.1 or later + - Bash 2.03 or later + - GNU Sed + - GNU Fileutils + - GNU Textutils 2.0 or later + - GNU Sh-utils + - GNU Grep 2.4 or later + - GNU Findutils + - GNU Awk 3.04 or later + - GNU Bison (only if you change one of the gdb/*.y files) + - Groff (only if you need to format the man pages) + - GNU Diffutils (only if you run the test suite) + +These programs should be available from the DJGPP sites, in the v2gnu +directory. In addition, the configuration script invokes the `update' +and `utod' utilities which are part of the basic DJGPP development kit +(djdevNNN.zip). + + +2. Unpacking the sources + --------------------- +If you download the source distribution from one of the DJGPP sites, +just unzip it while preserving the directory structure (I suggest to +use unzip32.exe available with the rest of DJGPP), and proceed to the +section "How to build", below. + +Source distributions downloaded from one of the GNU FTP sites need +some more work to unpack. First, you MUST use the `djunpack' batch +file to unzip the package. That's because some file names in the +official distributions need to be changed to avoid problems on the +various platforms supported by DJGPP. `djunpack' invokes the `djtar' +program (that is part of the basic DJGPP development kit) to rename +these files on the fly given a file with name mappings; the +distribution includes a file `gdb/config/djgpp/fnchange.lst' with the +necessary mappings. So you need first to retrieve that batch file, +and then invoke it to unpack the distribution. Here's how: + + djtar -x -p -o gdb-5.2/djunpack.bat gdb-5.2.tar.gz > djunpack.bat + djunpack gdb-5.2.tar.gz + +(The name of the distribution archive and the leading directory of the +path to `djunpack.bat' in the distribution will be different for +versions of GDB other than 5.2.) + +If the argument to `djunpack.bat' include leading directories, it MUST +be given with the DOS-style backslashes; Unix-style forward slashes +will NOT work. + +If the distribution comes as a .tar.bz2 archive, and your version of +`djtar' doesn't support bzip2 decompression, you need to unpack it as +follows: + + bunzip2 gdb-6.4.tar.bz2 + djtar -x -p -o gdb-6.4/djunpack.bat gdb-6.4.tar > djunpack.bat + djunpack gdb-6.4.tar + + +3. How to build + ------------ + +If the source distribution available from DJGPP archives is already +configured for DJGPP v2.x (if it is, you will find files named +`Makefile' in each subdirectory), then just invoke Make: + + make + +To build a package that is not yet configured, or if you downloaded +GDB from a GNU FTP site, you will need to configure it first. You +will also need to configure it if you want to change the configuration +options (e.g., compile without support for the GDBMI interface). To +configure GDB, type this command: + + sh ./gdb/config/djgpp/djconfig.sh + +This script checks the unpacked distribution, then edits the configure +scripts in the various subdirectories, to make them suitable for +DJGPP, and finally invokes the top-level configure script, which +recursively configures all the subdirectories. + +You may pass optional switches to djconfig.sh. It accepts all the +switches accepted by the original GDB configure script. These +switches are described in the file gdb/README, and their full list can +be displayed by running the following command: + + sh ./gdb/configure --help + +NOTE: if you *do* use optional command-line switches, you MUST pass +to the script the name of the directory where GDB sources are +unpacked--even if you are building GDB in-place! For example: + + sh ./gdb/config/djgpp/djconfig.sh . --disable-gdbmi + +It is also possible to build GDB in a directory that is different from +the one where the sources were unpacked. In that case, you have to +pass the source directory as the first argument to the script: + + sh ./gdb/config/djgpp/djconfig.sh d:/gnu/gdb-6.4 + +You MUST use forward slashes in the first argument. + +After the configure script finishes, run Make: + + make + +If you want to produce the documentation (for example, if you changed +some of the Texinfo sources), type this: + + make info + +When Make finishes, you can install the package: + + make install prefix='${DJDIR}' INSTALL='ginstall -c' + +The above doesn't install the docs; for that you will need to say +this: + + make install-info prefix='${DJDIR}' INSTALL='ginstall -c' + +The test suite has been made to work with DJGPP. If you make a change +in some of the programs, or want to be sure you have a fully +functional GDB executable, it is a good idea to run the test suite. +You cannot use "make check" for that, since it will want to run the +`dejagnu' utility which DJGPP doesn't support. Instead, use the special +script gdb/config/djgpp/djcheck.sh, like this: + + cd gdb/testsuite + sh ../config/djgpp/djcheck.sh + +This will run for a while and should not print anything, except the +messages "Running tests in DIR", where DIR is one of the +subdirectories of the testsuite. Any test that fails to produce the +expected output will cause the diffs between the expected and the +actual output be printed, and in addition will leave behind a file +SOMETHING.tst (where SOMETHING is the name of the failed test). You +should compare each of the *.tst files with the corresponding *.out +file and convince yourself that the differences do not indicate a real +problem. Examples of differences you can disregard are changes in the +copyright blurb printed by GDB, values of unitialized variables, +addresses of global variables like argv[] and envp[] (which depend on +the size of your environment), etc. + +Note that djcheck.sh only recurses into those of the subdirectories of +the test suite which test features supported by the DJGPP port of GDB. +For example, the tests in the gdb.gdbtk, gdb.threads, and gdb.hp +directories are not run. + + +Enjoy, + Eli Zaretskii
djgpp/README Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: mips/linux.mh =================================================================== --- mips/linux.mh (nonexistent) +++ mips/linux.mh (revision 840) @@ -0,0 +1,7 @@ +# Host: Linux/MIPS +NAT_FILE= config/nm-linux.h +NATDEPFILES= inf-ptrace.o fork-child.o mips-linux-nat.o \ + linux-thread-db.o proc-service.o gcore.o \ + linux-nat.o linux-fork.o + +LOADLIBES = -ldl -rdynamic Index: mips/irix5.mh =================================================================== --- mips/irix5.mh (nonexistent) +++ mips/irix5.mh (revision 840) @@ -0,0 +1,4 @@ +# Host: SGI Iris running irix 5.x +NAT_FILE= nm-irix5.h +NATDEPFILES= fork-child.o irix5-nat.o corelow.o procfs.o \ + proc-api.o proc-events.o proc-flags.o proc-why.o Index: mips/irix6.mh =================================================================== --- mips/irix6.mh (nonexistent) +++ mips/irix6.mh (revision 840) @@ -0,0 +1,4 @@ +# Host: SGI Iris running irix 6.x +NAT_FILE= nm-irix5.h +NATDEPFILES= fork-child.o irix5-nat.o corelow.o procfs.o \ + proc-api.o proc-events.o proc-flags.o proc-why.o Index: mips/obsd64.mh =================================================================== --- mips/obsd64.mh (nonexistent) +++ mips/obsd64.mh (revision 840) @@ -0,0 +1,2 @@ +# Host: OpenBSD/mips64 +NATDEPFILES= fork-child.o inf-ptrace.o mips64obsd-nat.o Index: mips/nbsd.mh =================================================================== --- mips/nbsd.mh (nonexistent) +++ mips/nbsd.mh (revision 840) @@ -0,0 +1,2 @@ +# Host: NetBSD/mips +NATDEPFILES= fork-child.o inf-ptrace.o mipsnbsd-nat.o Index: mips/nm-irix5.h =================================================================== --- mips/nm-irix5.h (nonexistent) +++ mips/nm-irix5.h (revision 840) @@ -0,0 +1,46 @@ +/* Definitions for native support of irix5. + + Copyright 1993, 1996, 1998, 1999, 2000, 2007, 2008 + Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#undef IN_SOLIB_DYNSYM_RESOLVE_CODE + +#define TARGET_HAS_HARDWARE_WATCHPOINTS + +/* TARGET_CAN_USE_HARDWARE_WATCHPOINT is now defined to go through + the target vector. For Irix5, procfs_can_use_hw_watchpoint() + should be invoked. */ + +/* When a hardware watchpoint fires off the PC will be left at the + instruction which caused the watchpoint. It will be necessary for + GDB to step over the watchpoint. */ + +#define STOPPED_BY_WATCHPOINT(W) \ + procfs_stopped_by_watchpoint(inferior_ptid) +extern int procfs_stopped_by_watchpoint (ptid_t); + +/* Use these macros for watchpoint insertion/deletion. */ +/* type can be 0: write watch, 1: read watch, 2: access watch (read/write) */ +#define target_insert_watchpoint(ADDR, LEN, TYPE) \ + procfs_set_watchpoint (inferior_ptid, ADDR, LEN, TYPE, 0) +#define target_remove_watchpoint(ADDR, LEN, TYPE) \ + procfs_set_watchpoint (inferior_ptid, ADDR, 0, 0, 0) +extern int procfs_set_watchpoint (ptid_t, CORE_ADDR, int, int, int); + +#define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(SIZE) 1 +
mips/nm-irix5.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: sparc/nbsdelf.mh =================================================================== --- sparc/nbsdelf.mh (nonexistent) +++ sparc/nbsdelf.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: NetBSD/sparc ELF +NATDEPFILES= fork-child.o inf-ptrace.o \ + sparc-nat.o sparcnbsd-nat.o bsd-kvm.o + +LOADLIBES= -lkvm Index: sparc/fbsd.mh =================================================================== --- sparc/fbsd.mh (nonexistent) +++ sparc/fbsd.mh (revision 840) @@ -0,0 +1,6 @@ +# Host: FreeBSD/sparc64 +NATDEPFILES= fork-child.o inf-ptrace.o \ + fbsd-nat.o sparc-nat.o sparc64-nat.o sparc64fbsd-nat.o \ + gcore.o bsd-kvm.o + +LOADLIBES= -lkvm Index: sparc/linux.mh =================================================================== --- sparc/linux.mh (nonexistent) +++ sparc/linux.mh (revision 840) @@ -0,0 +1,10 @@ +# Host: GNU/Linux SPARC +NAT_FILE= config/nm-linux.h +NATDEPFILES= sparc-nat.o sparc-linux-nat.o \ + corelow.o core-regset.o fork-child.o inf-ptrace.o \ + proc-service.o linux-thread-db.o \ + gcore.o linux-nat.o linux-fork.o + +# The dynamically loaded libthread_db needs access to symbols in the +# gdb executable. +LOADLIBES = -ldl -rdynamic Index: sparc/nbsdaout.mh =================================================================== --- sparc/nbsdaout.mh (nonexistent) +++ sparc/nbsdaout.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: NetBSD/sparc a.out +NATDEPFILES= fork-child.o inf-ptrace.o \ + sparc-nat.o sparcnbsd-nat.o bsd-kvm.o solib-sunos.o + +LOADLIBES= -lkvm Index: sparc/sol2.mh =================================================================== --- sparc/sol2.mh (nonexistent) +++ sparc/sol2.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: Solaris SPARC & UltraSPARC +NAT_FILE= nm-sol2.h +NATDEPFILES= sparc-sol2-nat.o \ + corelow.o core-regset.o fork-child.o gcore.o \ + procfs.o proc-api.o proc-events.o proc-flags.o proc-why.o Index: sparc/nbsd64.mh =================================================================== --- sparc/nbsd64.mh (nonexistent) +++ sparc/nbsd64.mh (revision 840) @@ -0,0 +1,5 @@ +# Host: NetBSD/sparc64 +NATDEPFILES= fork-child.o inf-ptrace.o \ + sparc64nbsd-nat.o sparc-nat.o bsd-kvm.o + +LOADLIBES= -lkvm Index: sparc/linux64.mh =================================================================== --- sparc/linux64.mh (nonexistent) +++ sparc/linux64.mh (revision 840) @@ -0,0 +1,11 @@ +# Host: GNU/Linux UltraSPARC +NAT_FILE= config/nm-linux.h +NATDEPFILES= sparc-nat.o sparc64-nat.o sparc64-linux-nat.o \ + corelow.o core-regset.o \ + fork-child.o inf-ptrace.o \ + proc-service.o linux-thread-db.o \ + gcore.o linux-nat.o linux-fork.o + +# The dynamically loaded libthread_db needs access to symbols in the +# gdb executable. +LOADLIBES = -ldl -rdynamic Index: sparc/nm-sol2.h =================================================================== --- sparc/nm-sol2.h (nonexistent) +++ sparc/nm-sol2.h (revision 840) @@ -0,0 +1,60 @@ +/* Native-dependent definitions for Solaris SPARC. + + Copyright 2003, 2007, 2008 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#ifndef NM_SOL2_H +#define NM_SOL2_H + +#define GDB_GREGSET_T prgregset_t +#define GDB_FPREGSET_T prfpregset_t + +/* Hardware wactchpoints. */ + +/* Solaris 2.6 and above can do HW watchpoints. */ +#ifdef NEW_PROC_API + +#define TARGET_HAS_HARDWARE_WATCHPOINTS + +/* The man page for proc(4) on Solaris 2.6 and up says that the system + can support "thousands" of hardware watchpoints, but gives no + method for finding out how many; It doesn't say anything about the + allowed size for the watched area either. So we just tell GDB + 'yes'. */ +#define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(SIZE) 1 + +/* When a hardware watchpoint fires off the PC will be left at the + instruction following the one which caused the watchpoint. It will + *NOT* be necessary for GDB to step over the watchpoint. */ +#define HAVE_CONTINUABLE_WATCHPOINT 1 + +extern int procfs_stopped_by_watchpoint (ptid_t); +#define STOPPED_BY_WATCHPOINT(W) \ + procfs_stopped_by_watchpoint(inferior_ptid) + +/* Use these macros for watchpoint insertion/deletion. TYPE can be 0 + (write watch), 1 (read watch), 2 (access watch (read/write). */ + +extern int procfs_set_watchpoint (ptid_t, CORE_ADDR, int, int, int); +#define target_insert_watchpoint(ADDR, LEN, TYPE) \ + procfs_set_watchpoint (inferior_ptid, ADDR, LEN, TYPE, 1) +#define target_remove_watchpoint(ADDR, LEN, TYPE) \ + procfs_set_watchpoint (inferior_ptid, ADDR, 0, 0, 0) + +#endif /* NEW_PROC_API */ + +#endif /* nm-sol2.h */
sparc/nm-sol2.h Property changes : Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Index: sh/nbsd.mh =================================================================== --- sh/nbsd.mh (nonexistent) +++ sh/nbsd.mh (revision 840) @@ -0,0 +1,2 @@ +# Host: NetBSD/sh +NATDEPFILES= fork-child.o inf-ptrace.o shnbsd-nat.o

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.