From acb3686e5c253a3e178ae436cf4ffaec554cbadc Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Wed, 6 Nov 1991 15:47:51 +0000
Subject: [PATCH] Added DEFTYPE for PERQ-STRING and NULL-TERMINATED-STRING. 
 FIxed VECTOR-SAP to be a function call rather than %PRIMITIVE.

---
 code/alieneval.lisp | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/code/alieneval.lisp b/code/alieneval.lisp
index eb52b8c57..87ccb5f2b 100644
--- a/code/alieneval.lisp
+++ b/code/alieneval.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.11 1991/05/21 22:18:05 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.12 1991/11/06 15:47:51 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1161,6 +1161,12 @@ don't know that it is supposed to be used for.  I suspect it is a PERQ crock.
 
 ;;;; Strings accesses:
 
+;;; Can't use length, because it may be less than the limit.
+;;;
+(deftype perq-string (&optional length)
+  (declare (ignore length))
+  'simple-base-string)
+
 ;;; Alien-Access expert for String  --  Internal
 ;;;
 ;;;    Read a Perq-String into a string or write a string out into
@@ -1190,6 +1196,12 @@ don't know that it is supposed to be used for.  I suspect it is a PERQ crock.
 			 (+ ,1+off ,len)))))))
 
 
+;;; Can't use length, because it may be less than the limit.
+;;;
+(deftype null-terminated-string (&optional length)
+  (declare (ignore length))
+  'simple-base-string)
+
 ;;; Alien-Access expert for null terminated string  --  Internal
 ;;;
 ;;;    Read a null terminated string into a string or write a string out into
@@ -1275,6 +1287,7 @@ don't know that it is supposed to be used for.  I suspect it is a PERQ crock.
 	`(setf (sap-ref-sap ,sap ,offset)
 	       (alien-value-sap ,value)))))))
 
+
 ;;; Alien-Access expert for (Pointer xxx)  --  Internal
 ;;;
 ;;;    We can't read pointers, and can only store pointers to unboxed
@@ -1298,7 +1311,7 @@ don't know that it is supposed to be used for.  I suspect it is a PERQ crock.
 		     ((or simple-string
 			  simple-bit-vector
 			  (simple-array unsigned-byte (*)))
-		      (%primitive c::vector-sap ,n-value)))))))))
+		      (vector-sap ,n-value)))))))))
 
 
 ;;;; Enumeration Alien access:
-- 
GitLab