From 010270ec07d1bf9d9238317b9d3c2a6af64a9a30 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Thu, 13 Sep 2007 04:11:45 +0000 Subject: [PATCH] Untracing of flet/labels functions wasn't working and neither was retracing flet/labels functions. This was caused by the hash-table in *TRACE-FUNCTIONS* using an EQ test. This doesn't work well when the functions are lists like (FLET INNER OUTER). code/ntrace.lisp: o Change *TRACED-FUNCTIONS* to use an EQUAL table so lists can match. pcl/braid.lisp: o Move LISP::SXHASH-INSTANCE to low.lisp because we need it defined earlier because of the change to tracing. Can't build PCL without this change. pcl/low.lisp: o LISP::SXHASH-INSTANCE moved here. --- code/ntrace.lisp | 4 ++-- pcl/braid.lisp | 3 ++- pcl/low.lisp | 5 ++++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/code/ntrace.lisp b/code/ntrace.lisp index a401656db..e481afa0d 100644 --- a/code/ntrace.lisp +++ b/code/ntrace.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/ntrace.lisp,v 1.38 2007/08/02 21:30:07 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/ntrace.lisp,v 1.39 2007/09/13 04:11:44 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -60,7 +60,7 @@ ;;; A hash-table that maps each traced function to the TRACE-INFO. The entry ;;; for a closure is the shared function-entry object. ;;; -(defvar *traced-functions* (make-hash-table :test #'eq)) +(defvar *traced-functions* (make-hash-table :test #'equal)) ;;; The TRACE-INFO structure represents all the information we need to trace a ;;; given function. diff --git a/pcl/braid.lisp b/pcl/braid.lisp index e3596c0e4..4b1021773 100644 --- a/pcl/braid.lisp +++ b/pcl/braid.lisp @@ -25,7 +25,7 @@ ;;; ************************************************************************* (file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/braid.lisp,v 1.48 2003/08/25 20:10:41 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/braid.lisp,v 1.49 2007/09/13 04:11:45 rtoy Exp $") ;;; ;;; Bootstrapping the meta-braid. @@ -631,6 +631,7 @@ (setf (kernel::find-class name) kernel-class (kernel:%class-name kernel-class) name))))) +#+nil (defun lisp::sxhash-instance (instance) (get-hash instance)) diff --git a/pcl/low.lisp b/pcl/low.lisp index 0126029be..507693cde 100644 --- a/pcl/low.lisp +++ b/pcl/low.lisp @@ -26,7 +26,7 @@ ;;; (file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/low.lisp,v 1.33 2005/08/18 16:55:01 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/low.lisp,v 1.34 2007/09/13 04:11:45 rtoy Exp $") ;;; ;;; This file contains optimized low-level constructs for PCL. @@ -319,6 +319,9 @@ the compiler as completely as possible. Currently this means that ((fsc-instance-p ,instance) (fsc-instance-hash ,instance)) (t (internal-error "What kind of instance is this?")))) +(defun lisp::sxhash-instance (instance) + (get-hash instance)) + (defmacro get-slots (inst) `(cond ((std-instance-p ,inst) (std-instance-slots ,inst)) ((fsc-instance-p ,inst) (fsc-instance-slots ,inst)) -- GitLab