31d743df76
The 64-bit machine supported right now is amd64, but it's not too hard to add powerpc64. Obtained from: Juniper Networks, Inc.
67 lines
1.2 KiB
C
67 lines
1.2 KiB
C
/* $FreeBSD$ */
|
|
#ifndef __LP64__
|
|
#error "this file must be compiled for LP64."
|
|
#endif
|
|
|
|
#define __ELF_WORD_SIZE 32
|
|
#define _MACHINE_ELF_WANT_32BIT
|
|
|
|
#include <sys/procfs.h>
|
|
|
|
struct prpsinfo32 {
|
|
int pr_version;
|
|
u_int pr_psinfosz;
|
|
char pr_fname[PRFNAMESZ+1];
|
|
char pr_psargs[PRARGSZ+1];
|
|
};
|
|
|
|
struct prstatus32 {
|
|
int pr_version;
|
|
u_int pr_statussz;
|
|
u_int pr_gregsetsz;
|
|
u_int pr_fpregsetsz;
|
|
int pr_osreldate;
|
|
int pr_cursig;
|
|
pid_t pr_pid;
|
|
struct reg32 pr_reg;
|
|
};
|
|
|
|
#define ELFCORE_COMPAT_32 1
|
|
#include "elfcore.c"
|
|
|
|
static void
|
|
elf_convert_gregset(elfcore_gregset_t *rd, struct reg *rs)
|
|
{
|
|
#ifdef __amd64__
|
|
rd->r_gs = rs->r_gs;
|
|
rd->r_fs = rs->r_fs;
|
|
rd->r_es = rs->r_es;
|
|
rd->r_ds = rs->r_ds;
|
|
rd->r_edi = rs->r_rdi;
|
|
rd->r_esi = rs->r_rsi;
|
|
rd->r_ebp = rs->r_rbp;
|
|
rd->r_ebx = rs->r_rbx;
|
|
rd->r_edx = rs->r_rdx;
|
|
rd->r_ecx = rs->r_rcx;
|
|
rd->r_eax = rs->r_rax;
|
|
rd->r_eip = rs->r_rip;
|
|
rd->r_cs = rs->r_cs;
|
|
rd->r_eflags = rs->r_rflags;
|
|
rd->r_esp = rs->r_rsp;
|
|
rd->r_ss = rs->r_ss;
|
|
#else
|
|
#error Unsupported architecture
|
|
#endif
|
|
}
|
|
|
|
static void
|
|
elf_convert_fpregset(elfcore_fpregset_t *rd, struct fpreg *rs)
|
|
{
|
|
#ifdef __amd64__
|
|
/* XXX this is wrong... */
|
|
memcpy(rd, rs, sizeof(*rd));
|
|
#else
|
|
#error Unsupported architecture
|
|
#endif
|
|
}
|