X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fsearch.c;h=12e1c61220c458aed634d05854b79763ecea8272;hb=4ba392170e98744f0ef0b8e08a5d42b988f1d0c9;hp=030d1838fd429c4d475bb3bb657779828c37c4c6;hpb=6fb6e66f531dfb6140ec3e0cc8f84f6ecd1927ca;p=sbcl.git diff --git a/src/runtime/search.c b/src/runtime/search.c index 030d183..12e1c61 100644 --- a/src/runtime/search.c +++ b/src/runtime/search.c @@ -9,23 +9,26 @@ * files for more information. */ -#include "runtime.h" +#include + #include "sbcl.h" +#include "runtime.h" #include "os.h" #include "search.h" +#include "thread.h" +#include "genesis/primitive-objects.h" boolean search_for_type(int type, lispobj **start, int *count) { - lispobj obj, *addr; + lispobj obj; while ((*count == -1 || (*count > 0)) && - is_valid_lisp_addr((os_vm_address_t)*start)) { + is_valid_lisp_addr((os_vm_address_t)*start)) { obj = **start; - addr = *start; if (*count != -1) *count -= 2; - if (TypeOf(obj) == type) + if (widetag_of(obj) == type) return 1; (*start) += 2; @@ -38,15 +41,17 @@ boolean search_for_symbol(char *name, lispobj **start, int *count) struct symbol *symbol; struct vector *symbol_name; - while (search_for_type(type_SymbolHeader, start, count)) { + while (search_for_type(SYMBOL_HEADER_WIDETAG, start, count)) { symbol = (struct symbol *)native_pointer((lispobj)*start); - if (lowtagof(symbol->name) == OTHER_POINTER_LOWTAG) { + if (lowtag_of(symbol->name) == OTHER_POINTER_LOWTAG) { symbol_name = (struct vector *)native_pointer(symbol->name); if (is_valid_lisp_addr((os_vm_address_t)symbol_name) && - TypeOf(symbol_name->header) == type_SimpleString && - strcmp((char *)symbol_name->data, name) == 0) + /* FIXME: Broken with more than one type of string + (i.e. even broken given (VECTOR NIL) */ + widetag_of(symbol_name->header) == SIMPLE_BASE_STRING_WIDETAG && + strcmp((char *)symbol_name->data, name) == 0) return 1; - } + } (*start) += 2; } return 0;