mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
* config/linux.mh (NATDEPFILES): Remove sparc-sol2-nat.o
* config/linux64.h (NATDEPFILES): Likewise * sparc-linux-nat.c (supply_gregset, supply_fpregset, fill_gregset, fill_fpregset): New. * sparc64-linux-nat.c (supply_gregset, supply_fpregset, fill_gregset, fill_fpregset): New.
This commit is contained in:
parent
dbcd679b17
commit
75e192e668
@ -1,3 +1,12 @@
|
||||
2006-04-04 David S. Miller <davem@davemloft.net>
|
||||
|
||||
* config/linux.mh (NATDEPFILES): Remove sparc-sol2-nat.o
|
||||
* config/linux64.h (NATDEPFILES): Likewise
|
||||
* sparc-linux-nat.c (supply_gregset, supply_fpregset, fill_gregset,
|
||||
fill_fpregset): New.
|
||||
* sparc64-linux-nat.c (supply_gregset, supply_fpregset, fill_gregset,
|
||||
fill_fpregset): New.
|
||||
|
||||
2006-04-04 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* Makefile.in (elf_common_h): Define.
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Host: GNU/Linux SPARC
|
||||
NAT_FILE= nm-linux.h
|
||||
NATDEPFILES= sparc-nat.o sparc-sol2-nat.o sparc-linux-nat.o \
|
||||
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
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Host: GNU/Linux UltraSPARC
|
||||
NAT_FILE= nm-linux.h
|
||||
NATDEPFILES= sparc-nat.o sparc64-nat.o sparc-sol2-nat.o sparc64-linux-nat.o \
|
||||
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 \
|
||||
|
@ -20,10 +20,41 @@
|
||||
Boston, MA 02110-1301, USA. */
|
||||
|
||||
#include "defs.h"
|
||||
#include "regcache.h"
|
||||
|
||||
#include <sys/procfs.h>
|
||||
#include "gregset.h"
|
||||
|
||||
#include "sparc-tdep.h"
|
||||
#include "sparc-nat.h"
|
||||
#include "inferior.h"
|
||||
#include "target.h"
|
||||
#include "linux-nat.h"
|
||||
|
||||
void
|
||||
supply_gregset (prgregset_t *gregs)
|
||||
{
|
||||
sparc32_supply_gregset (sparc_gregset, current_regcache, -1, gregs);
|
||||
}
|
||||
|
||||
void
|
||||
supply_fpregset (prfpregset_t *fpregs)
|
||||
{
|
||||
sparc32_supply_fpregset (current_regcache, -1, fpregs);
|
||||
}
|
||||
|
||||
void
|
||||
fill_gregset (prgregset_t *gregs, int regnum)
|
||||
{
|
||||
sparc32_collect_gregset (sparc_gregset, current_regcache, regnum, gregs);
|
||||
}
|
||||
|
||||
void
|
||||
fill_fpregset (prfpregset_t *fpregs, int regnum)
|
||||
{
|
||||
sparc32_collect_fpregset (current_regcache, regnum, fpregs);
|
||||
}
|
||||
|
||||
void _initialialize_sparc_linux_nat (void);
|
||||
|
||||
void
|
||||
|
@ -20,8 +20,13 @@
|
||||
Boston, MA 02110-1301, USA. */
|
||||
|
||||
#include "defs.h"
|
||||
#include "regcache.h"
|
||||
|
||||
#include <sys/procfs.h>
|
||||
#include "gregset.h"
|
||||
|
||||
#include "sparc64-tdep.h"
|
||||
#include "sparc-tdep.h"
|
||||
#include "sparc-nat.h"
|
||||
#include "inferior.h"
|
||||
#include "target.h"
|
||||
@ -41,6 +46,30 @@ static const struct sparc_gregset sparc64_linux_ptrace_gregset =
|
||||
};
|
||||
|
||||
|
||||
void
|
||||
supply_gregset (prgregset_t *gregs)
|
||||
{
|
||||
sparc64_supply_gregset (sparc_gregset, current_regcache, -1, gregs);
|
||||
}
|
||||
|
||||
void
|
||||
supply_fpregset (prfpregset_t *fpregs)
|
||||
{
|
||||
sparc64_supply_fpregset (current_regcache, -1, fpregs);
|
||||
}
|
||||
|
||||
void
|
||||
fill_gregset (prgregset_t *gregs, int regnum)
|
||||
{
|
||||
sparc64_collect_gregset (sparc_gregset, current_regcache, regnum, gregs);
|
||||
}
|
||||
|
||||
void
|
||||
fill_fpregset (prfpregset_t *fpregs, int regnum)
|
||||
{
|
||||
sparc64_collect_fpregset (current_regcache, regnum, fpregs);
|
||||
}
|
||||
|
||||
/* Provide a prototype to silence -Wmissing-prototypes. */
|
||||
void _initialize_sparc64_linux_nat (void);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user