X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fgc-internal.h;h=78aeaa08249c5e0d393253512036f85cf6e6d616;hb=15d6e7c9a2c3234f95dfe278046fa2fee1b0c007;hp=8928f2bbc7e81b9380e306cdda0f6edf881dc9e0;hpb=cf4cb9554515c59eddbde38d1cf236339c37f55f;p=sbcl.git diff --git a/src/runtime/gc-internal.h b/src/runtime/gc-internal.h index 8928f2b..78aeaa0 100644 --- a/src/runtime/gc-internal.h +++ b/src/runtime/gc-internal.h @@ -33,9 +33,18 @@ static inline unsigned int NWORDS(unsigned int x, unsigned int n_bits) { - unsigned int elements_per_word = N_WORD_BITS/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; + 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? */ @@ -71,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 * @@ -82,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;