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
15 #define ALIEN_STACK_GROWS_DOWNWARD
17 /* FIXME: Do we also want
18 * #define ARCH_HAS_FLOAT_REGISTERS
19 * here? (The answer wasn't obvious to me when merging the
20 * architecture-abstracting patches for CSR's SPARC port. -- WHN 2002-02-15) */
22 #define COMPILER_BARRIER \
23 do { __asm__ __volatile__ ( "" : : : "memory"); } while (0)
25 #ifdef LISP_FEATURE_WIN32
26 extern int os_number_of_processors
;
27 #define yield_on_uniprocessor() \
28 do { if (os_number_of_processors<=1) SwitchToThread(); } while(0)
30 /* Stubs are better than ifdef EVERYWHERE. */
31 #define yield_on_uniprocessor() \
37 get_spinlock(volatile lispobj
*word
, unsigned long value
)
39 #ifdef LISP_FEATURE_SB_THREAD
42 lose("recursive get_spinlock: 0x%x,%ld\n",word
,value
);
44 #if defined(LISP_FEATURE_DARWIN)
45 asm volatile ("xor %0,%0;\n\
48 : "r" (value
), "m" (*word
)
52 asm volatile("rep; nop");
54 asm volatile ("xor %0,%0\n\
57 : "r" (value
), "m" (*word
)
60 yield_on_uniprocessor();
68 release_spinlock(volatile lispobj
*word
)
70 /* See comment in RELEASE-SPINLOCK in target-thread.lisp. */
77 swap_lispobjs(volatile lispobj
*dest
, lispobj value
)
80 #if defined(LISP_FEATURE_DARWIN)
81 asm volatile ("lock/xchg %0,(%1)"
83 : "r" (dest
), "0" (value
)
86 asm volatile ("lock xchg %0,(%1)"
88 : "r" (dest
), "0" (value
)
94 extern void fast_bzero_detect(void *, size_t);
95 extern void (*fast_bzero_pointer
)(void *, size_t);
97 /* When single stepping, single_stepping holds the original instruction
99 extern unsigned int *single_stepping
;
101 #endif /* _X86_ARCH_H */