From aefdc91fb7834f191bbd52155a89fd4f75efa982 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Thu, 25 Nov 1999 17:50:48 +0000 Subject: [PATCH] For support of compiler reentry and thread safety, avoid the use of the global *adjustable-vectors* resource, rather allocate an new vector for each use in emit-error-break. These vectors are small and in most cases the required length is less than 8 bytes which is the new lower default. --- compiler/x86/macros.lisp | 39 ++++++++++++--------------------------- 1 file changed, 12 insertions(+), 27 deletions(-) diff --git a/compiler/x86/macros.lisp b/compiler/x86/macros.lisp index f35a121b8..4f758ce4e 100644 --- a/compiler/x86/macros.lisp +++ b/compiler/x86/macros.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/macros.lisp,v 1.11 1999/03/04 11:54:48 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/macros.lisp,v 1.12 1999/11/25 17:50:48 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -253,46 +253,31 @@ ;;;; Error Code -(defvar *adjustable-vectors* nil) - -(defmacro with-adjustable-vector ((var) &rest body) - `(let ((,var (or (pop *adjustable-vectors*) - (make-array 16 - :element-type '(unsigned-byte 8) - :fill-pointer 0 - :adjustable t)))) - (setf (fill-pointer ,var) 0) - (unwind-protect - (progn - ,@body) - (push ,var *adjustable-vectors*)))) - (eval-when (compile load eval) (defun emit-error-break (vop kind code values) - (let ((vector (gensym))) + (let ((vector (gensym)) + (length (gensym))) `((inst int 3) ; i386 breakpoint instruction ;; The return PC points here; note the location for the debugger. (let ((vop ,vop)) (when vop (note-this-location vop :internal-error))) (inst byte ,kind) ; eg trap_Xyyy - (with-adjustable-vector (,vector) ; interr arguments + (let ((,vector (make-array 8 :element-type '(unsigned-byte 8) + :fill-pointer 0 :adjustable t))) (write-var-integer (error-number-or-lose ',code) ,vector) ,@(mapcar #'(lambda (tn) `(let ((tn ,tn)) (write-var-integer - (make-sc-offset (sc-number - (tn-sc tn)) - ;; zzzzz jrd here. tn-offset - ;; is zero for constant tns. - ;; (tn-offset tn) - (or (tn-offset tn) 0) - ) + (make-sc-offset (sc-number (tn-sc tn)) + ;; tn-offset is zero for constant tns. + (or (tn-offset tn) 0)) ,vector))) values) - (inst byte (length ,vector)) - (dotimes (i (length ,vector)) - (inst byte (aref ,vector i)))))))) + (let ((,length (length ,vector))) + (inst byte ,length) + (dotimes (i ,length) + (inst byte (aref ,vector i))))))))) (defmacro error-call (vop error-code &rest values) "Cause an error. ERROR-CODE is the error to cause." -- GitLab