2 * This software is part of the SBCL system. See the README file for
5 * This software is derived from the CMU CL system, which was
6 * written at Carnegie Mellon University and released into the
7 * public domain. The software is in the public domain and is
8 * provided with absolutely no warranty. See the COPYING and CREDITS
9 * files for more information.
12 /* FIXME: Aren't symbols with underscore prefixes supposed to be
13 * reserved for system libraries? Perhaps rename stuff like this
14 * to names like INCLUDED_SBCL_RUNTIME_H. */
15 #ifndef _SBCL_RUNTIME_H_
16 #define _SBCL_RUNTIME_H_
18 #if defined(LISP_FEATURE_SB_THREAD)
19 #define thread_self() pthread_self()
20 #define thread_kill pthread_kill
21 #define thread_sigmask pthread_sigmask
22 #define thread_mutex_lock(l) pthread_mutex_lock(l)
23 #define thread_mutex_unlock(l) pthread_mutex_unlock(l)
25 #define thread_self() 0
26 #define thread_kill kill_safely
27 #define thread_sigmask sigprocmask
28 #define thread_mutex_lock(l) 0
29 #define thread_mutex_unlock(l) 0
32 /* Block blockable interrupts for each SHOW, if not 0. */
33 #define QSHOW_SIGNAL_SAFE 1
34 /* Enable extra-verbose low-level debugging output for signals? (You
35 * probably don't want this unless you're trying to debug very early
36 * cold boot on a new machine, or one where you've just messed up
39 * Note: It may be that doing this is fundamentally unsound, since it
40 * causes output from signal handlers, and the i/o libraries aren't
41 * necessarily reentrant. But it can still be very convenient for
42 * figuring out what's going on when you have a signal handling
44 #define QSHOW_SIGNALS 0
45 /* Enable low-level debugging output, if not zero. Defaults to enabled
46 * if QSHOW_SIGNALS, disabled otherwise. Change it to 1 if you want
47 * low-level debugging output but not the whole signal mess. */
48 #define QSHOW QSHOW_SIGNALS
52 #if QSHOW_SIGNAL_SAFE == 1 && !defined(LISP_FEATURE_WIN32)
55 extern sigset_t blockable_sigset;
59 thread_sigmask(SIG_BLOCK, &blockable_sigset, &oldset);
60 #define QSHOW_UNBLOCK thread_sigmask(SIG_SETMASK,&oldset,0);
66 #ifdef LISP_FEATURE_SB_THREAD
67 #define QSHOW_PREFIX fprintf(stderr, "%lu ", pthread_self());
79 #define SHOW(string) FSHOW((stderr, "/%s\n", string))
89 #define FSHOW_SIGNAL FSHOW
91 #define FSHOW_SIGNAL(args)
94 /* KLUDGE: These are in theory machine-dependent and OS-dependent, but
95 * in practice the "foo int" definitions work for all the machines
96 * that SBCL runs on as of 0.6.7. If we port to the Alpha or some
97 * other non-32-bit machine we'll probably need real machine-dependent
98 * and OS-dependent definitions again. */
99 /* even on alpha, int happens to be 4 bytes. long is longer. */
100 /* FIXME: these names really shouldn't reflect their length and this
101 is not quite right for some of the FFI stuff */
102 typedef unsigned long u64;
103 typedef signed long s64;
104 typedef unsigned int u32;
105 typedef signed int s32;
107 /* this is an integral type the same length as a machine pointer */
108 typedef unsigned long pointer_sized_uint_t ;
110 #include <sys/types.h>
112 #if defined(LISP_FEATURE_SB_THREAD)
114 typedef pthread_t os_thread_t;
116 typedef pid_t os_thread_t;
119 /* FIXME: we do things this way because of the alpha32 port. once
120 alpha64 has arrived, all this nastiness can go away */
121 #if 64 == N_WORD_BITS
122 #define LOW_WORD(c) ((pointer_sized_uint_t)c)
123 typedef unsigned long lispobj;
125 #define LOW_WORD(c) ((long)(c) & 0xFFFFFFFFL)
126 /* fake it on alpha32 */
127 typedef unsigned int lispobj;
131 lowtag_of(lispobj obj)
133 return obj & LOWTAG_MASK;
137 widetag_of(lispobj obj)
139 return obj & WIDETAG_MASK;
142 static inline unsigned long
143 HeaderValue(lispobj obj)
145 return obj >> N_WIDETAG_BITS;
148 static inline struct cons *
151 return (struct cons *)(obj - LIST_POINTER_LOWTAG);
154 static inline struct symbol *
157 return (struct symbol *)(obj - OTHER_POINTER_LOWTAG);
160 static inline struct fdefn *
163 return (struct fdefn *)(obj - OTHER_POINTER_LOWTAG);
166 /* Is the Lisp object obj something with pointer nature (as opposed to
167 * e.g. a fixnum or character or unbound marker)? */
169 is_lisp_pointer(lispobj obj)
171 #if N_WORD_BITS == 64
172 return (obj & 3) == 3;
180 /* Is the Lisp object obj something with immediate nature (e.g. a
181 * fixnum or character or unbound marker)? */
183 is_lisp_immediate(lispobj obj)
186 || (widetag_of(obj) == CHARACTER_WIDETAG)
187 #if N_WORD_BITS == 64
188 || (widetag_of(obj) == SINGLE_FLOAT_WIDETAG)
190 || (widetag_of(obj) == UNBOUND_MARKER_WIDETAG));
193 /* Convert from a lispobj with type bits to a native (ordinary
194 * C/assembly) pointer to the beginning of the object. */
195 static inline lispobj *
196 native_pointer(lispobj obj)
198 return (lispobj *) ((pointer_sized_uint_t) (obj & ~LOWTAG_MASK));
201 /* inverse operation: create a suitably tagged lispobj from a native
202 * pointer or integer.*/
203 static inline lispobj
204 make_lispobj(void *o, int low_tag)
206 return LOW_WORD(o) | low_tag;
209 static inline lispobj
212 return n << N_FIXNUM_TAG_BITS;
216 fixnum_value(lispobj n)
218 return n >> N_FIXNUM_TAG_BITS;
221 #if defined(LISP_FEATURE_WIN32)
222 /* KLUDGE: Avoid double definition of boolean by rpcndr.h included via
225 * FIXME: We should probably arrange to use the rpcndr.h boolean on Windows,
226 * or get rid of our own boolean type. If the boolean type is only used in
227 * the runtime, and never passed to Lisp, then it doesn't matter which one
230 #define boolean rpcndr_boolean
236 static inline boolean
237 other_immediate_lowtag_p(lispobj header)
239 /* These lowtags are spaced 4 apart throughout the lowtag space. */
240 return (lowtag_of(header) & 3) == OTHER_IMMEDIATE_0_LOWTAG;
243 /* KLUDGE: As far as I can tell there's no ANSI C way of saying
244 * "this function never returns". This is the way that you do it
245 * in GCC later than version 2.5 or so. */
246 #if defined(__GNUC__)
247 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5)
248 #define never_returns __attribute__ ((noreturn))
250 #define never_returns
253 #define never_returns
256 extern void *successful_malloc (size_t size);
257 extern char *copied_string (char *string);
259 #endif /* _SBCL_RUNTIME_H_ */