X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fruntime.h;h=91e205c12044340bfe93e4d40cbe3565f8b64888;hb=a93dc34ed9e7f5c7162e9c18961e6cce23941b46;hp=f204cf157a247ee405183ee96c3236c1a17e590a;hpb=3c65762b927af861c9c8bc416e4cbac9a14ec0c3;p=sbcl.git diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h index f204cf1..91e205c 100644 --- a/src/runtime/runtime.h +++ b/src/runtime/runtime.h @@ -55,14 +55,12 @@ * that SBCL runs on as of 0.6.7. If we port to the Alpha or some * other non-32-bit machine we'll probably need real machine-dependent * and OS-dependent definitions again. */ -#if ((defined alpha) && !(defined __linux__)) -#error No u32,s32 definitions for this platform. Write some. -#else -/* int happens to be 4 bytes on linux/alpha. long is longer. */ +/* even on alpha, int happens to be 4 bytes. long is longer. */ typedef unsigned int u32; typedef signed int s32; #define LOW_WORD(c) ((long)(c) & 0xFFFFFFFFL) -#endif +/* this is an integral type the same length as a machine pointer */ +typedef unsigned long pointer_sized_uint_t ; typedef u32 lispobj; @@ -86,11 +84,15 @@ is_lisp_pointer(lispobj obj) /* Convert from a lispobj with type bits to a native (ordinary * C/assembly) pointer to the beginning of the object. */ -static inline lispobj +static inline lispobj * native_pointer(lispobj obj) { - return obj & ~LOWTAG_MASK; + return (lispobj *) ((pointer_sized_uint_t) (obj & ~LOWTAG_MASK)); } +/* inverse operation: create a suitably tagged lispobj from a native + * pointer or integer. Needs to be a macro due to the tedious C type + * system */ +#define make_lispobj(o,low_tag) ((lispobj)(LOW_WORD(o)|low_tag)) /* FIXME: There seems to be no reason that make_fixnum and fixnum_value * can't be implemented as (possibly inline) functions. */ @@ -100,19 +102,15 @@ native_pointer(lispobj obj) /* Too bad ANSI C doesn't define "bool" as C++ does.. */ typedef int boolean; -/* FIXME: There seems to be no reason that SymbolValue, SetSymbolValue, - * and SymbolFunction can't be defined as (possibly inline) functions - * instead of macros. */ - -#define SymbolValue(sym) \ - (((struct symbol *)((sym)-OTHER_POINTER_LOWTAG))->value) -#define SetSymbolValue(sym,val) \ - (((struct symbol *)((sym)-OTHER_POINTER_LOWTAG))->value = (val)) +/* FIXME: There seems to be no reason that SymbolFunction can't be + * defined as (possibly inline) functions instead of macros. */ +static inline lispobj SymbolValue(u32 sym, void *thread); +static inline void SetSymbolValue(u32 sym, lispobj val, void *thread); /* This only works for static symbols. */ /* FIXME: should be called StaticSymbolFunction, right? */ #define SymbolFunction(sym) \ - (((struct fdefn *)(SymbolValue(sym)-OTHER_POINTER_LOWTAG))->fun) + (((struct fdefn *)(native_pointer(SymbolValue(sym,0))))->fun) /* KLUDGE: As far as I can tell there's no ANSI C way of saying * "this function never returns". This is the way that you do it