X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fgc-internal.h;h=78aeaa08249c5e0d393253512036f85cf6e6d616;hb=15d6e7c9a2c3234f95dfe278046fa2fee1b0c007;hp=ac8d5bdeb79c9fce14e3b8adadb94649acf9b265;hpb=8b64d57b865fec6ba082dda965146b5e8aa877b3;p=sbcl.git diff --git a/src/runtime/gc-internal.h b/src/runtime/gc-internal.h index ac8d5bd..78aeaa0 100644 --- a/src/runtime/gc-internal.h +++ b/src/runtime/gc-internal.h @@ -29,7 +29,23 @@ __FILE__, __LINE__) #define CEILING(x,y) (((x) + ((y) - 1)) & (~((y) - 1))) -#define NWORDS(x,y) (CEILING((x),(y)) / (y)) + +static inline unsigned int +NWORDS(unsigned int x, unsigned int n_bits) +{ + /* A good compiler should be able to constant-fold this whole thing, + even with the conditional. */ + if(n_bits <= N_WORD_BITS) { + unsigned int elements_per_word = N_WORD_BITS/n_bits; + + return CEILING(x, elements_per_word)/elements_per_word; + } + else { + /* FIXME: should have some sort of assertion that N_WORD_BITS + evenly divides n_bits */ + return x * (n_bits/N_WORD_BITS); + } +} /* FIXME: Shouldn't this be defined in sbcl.h? */ #define FUN_RAW_ADDR_OFFSET (6*sizeof(lispobj) - FUN_POINTER_LOWTAG) @@ -64,6 +80,8 @@ lispobj *search_read_only_space(void *pointer); lispobj *search_static_space(void *pointer); lispobj *search_dynamic_space(void *pointer); +#include "fixnump.h" + /* Scan an area looking for an object which encloses the given pointer. * Return the object start on success or NULL on failure. */ static lispobj * @@ -75,7 +93,7 @@ search_space(lispobj *start, size_t words, lispobj *pointer) /* If thing is an immediate then this is a cons. */ if (is_lisp_pointer(thing) - || ((thing & 3) == 0) /* fixnum */ + || (fixnump(thing)) || (widetag_of(thing) == BASE_CHAR_WIDETAG) || (widetag_of(thing) == UNBOUND_MARKER_WIDETAG)) count = 2;