From 70ac7f138ac6217b36ec8bc9e13a3aca9421c9f3 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Mon, 17 May 2004 18:05:33 +0000 Subject: [PATCH] Implement lazy computation of the symbol hash. The hash is set to zero on creation, and is computed when sxhash is called, which is then cached. --- code/hash-new.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/hash-new.lisp b/code/hash-new.lisp index 13c9e997e..b44fe4c17 100644 --- a/code/hash-new.lisp +++ b/code/hash-new.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash-new.lisp,v 1.30 2004/05/15 18:30:46 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash-new.lisp,v 1.31 2004/05/17 18:05:33 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -930,7 +930,7 @@ ;; Other-pointer types. (simple-string (sxhash-simple-string s-expr)) (symbol #-(or sparc x86) (sxhash-simple-string (symbol-name s-expr)) - #+(or sparc x86) (kernel:symbol-hash s-expr)) + #+(or sparc x86) (sxhash s-expr)) (number (etypecase s-expr (integer (ldb sxhash-bits-byte s-expr)) -- GitLab