1 /* FIXME: Aren't preprocessor symbols with underscore prefixes
2 * reserved for the system libraries? If so, it would be tidy to
3 * rename flags like _X86_ARCH_H so their names are in a part of the
4 * namespace that we control. */
8 #ifndef SBCL_GENESIS_CONFIG
9 #error genesis/config.h (or sbcl.h) must be included before this file
12 #include "interr.h" /* for declaration of lose() */
14 #define ARCH_HAS_STACK_POINTER
16 /* FIXME: Do we also want
17 * #define ARCH_HAS_FLOAT_REGISTERS
18 * here? (The answer wasn't obvious to me when merging the
19 * architecture-abstracting patches for CSR's SPARC port. -- WHN 2002-02-15) */
24 get_spinlock(volatile lispobj *word,long value)
26 #ifdef LISP_FEATURE_SB_THREAD
29 lose("recursive get_spinlock: 0x%x,%ld\n",word,value);
31 #if defined(LISP_FEATURE_DARWIN)
35 : "r" (value), "m" (*word)
41 : "r" (value), "m" (*word)
51 release_spinlock(volatile lispobj *word)
57 swap_lispobjs(volatile lispobj *dest, lispobj value)
60 asm ("lock xchg %0,(%1)"
62 : "r" (dest), "0" (value)
67 #endif /* _X86_64_ARCH_H */