/* Copyright (C) 2010 Clozure Associates Copyright (C) 1994-2001 Digitool, Inc This file is part of Clozure CL. Clozure CL is licensed under the terms of the Lisp Lesser GNU Public License , known as the LLGPL and distributed with Clozure CL as the file "LICENSE". The LLGPL consists of a preamble and the LGPL, which is distributed with Clozure CL as the file "LGPL". Where these conflict, the preamble takes precedence. Clozure CL is referenced in the preamble as the "LIBRARY." The LLGPL is also available online at http://opensource.franz.com/preamble.html */ #define WORD_SIZE 64 #define PLATFORM_OS PLATFORM_OS_FREEBSD #define PLATFORM_CPU PLATFORM_CPU_X86 #define PLATFORM_WORD_SIZE PLATFORM_WORD_SIZE_64 typedef struct __ucontext ExceptionInformation; #include "standard-inttypes.h" #define MAXIMUM_MAPPABLE_MEMORY (512L<<30L) #define IMAGE_BASE_ADDRESS 0x300000000000L #include "lisptypes.h" #include "x86-constants64.h" #define REG_RDI 1 #define REG_RSI 2 #define REG_RDX 3 #define REG_RCX 4 #define REG_R8 5 #define REG_R9 6 #define REG_RAX 7 #define REG_RBX 8 #define REG_RBP 9 #define REG_R10 10 #define REG_R11 11 #define REG_R12 12 #define REG_R13 13 #define REG_R14 14 #define REG_R15 15 #define REG_RIP 20 #define REG_RFL 22 #define REG_RSP 23 #include #define xpGPRvector(x) ((natural *)(&((x)->uc_mcontext))) #define xpGPR(x,gprno) (xpGPRvector(x)[gprno]) #define set_xpGPR(x,gpr,new) xpGPR((x),(gpr)) = (natural)(new) #define eflags_register(xp) xpGPR(xp,Iflags) #define xpPC(x) xpGPR(x,Iip) #define xpMMXreg(x,n) *((natural *)(&(((struct savefpu *)(&(x)->uc_mcontext.mc_fpstate))->sv_fp[n]))) #define xpXMMregs(x)(&(((struct savefpu *)(&(x)->uc_mcontext.mc_fpstate))->sv_xmm[0])) #define xpMXCSR(x) (((struct savefpu *)(&(x)->uc_mcontext.mc_fpstate))->sv_env.en_mxcsr) extern void freebsd_sigreturn(ExceptionInformation *); #define SIGNUM_FOR_INTN_TRAP SIGBUS #define IS_MAYBE_INT_TRAP(info,xp) ((xp->uc_mcontext.mc_trapno == T_PROTFLT) && ((xp->uc_mcontext.mc_err & 7) == 2)) #define IS_PAGE_FAULT(info,xp) (xp->uc_mcontext.mc_trapno == T_PAGEFLT) #define SIGRETURN(context) freebsd_sigreturn(context) #include "os-freebsd.h"