X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fcross-sap.lisp;h=739fa1160deac405bc78e780906be94015cdd402;hb=15d6e7c9a2c3234f95dfe278046fa2fee1b0c007;hp=cc48ea08bf154cb36af3cd33c1ecdca7724b1fb9;hpb=e02c32bd4d07a7d30c9a9d78be54f1f9f84f9877;p=sbcl.git diff --git a/src/code/cross-sap.lisp b/src/code/cross-sap.lisp index cc48ea0..739fa11 100644 --- a/src/code/cross-sap.lisp +++ b/src/code/cross-sap.lisp @@ -15,15 +15,16 @@ ;;; SYSTEM-AREA-POINTER is not a primitive type in ANSI Common Lisp, ;;; so we need a compound type to represent it in the host Common Lisp ;;; at cross-compile time: -(defstruct (system-area-pointer (:constructor make-sap) (:conc-name "SAP-")) +(defstruct (system-area-pointer (:constructor make-sap) + (:conc-name "SAP-")) ;; the integer representation of the address - (int (error "missing SAP-INT argument") :type sap-int-type :read-only t)) + (int (error "missing SAP-INT argument") :type sap-int :read-only t)) ;;; cross-compilation-host analogues of target-CMU CL primitive SAP operations (defun int-sap (int) (make-sap :int int)) (defun sap+ (sap offset) - (declare (type system-area-pointer sap) (type sap-int-type offset)) + (declare (type system-area-pointer sap) (type sap-int offset)) (make-sap :int (+ (sap-int sap) offset))) #.`(progn ,@(mapcar (lambda (info) @@ -45,7 +46,7 @@ (defun ,name (sap offset) (declare (ignore sap offset)) (sap-ref-stub ',name)) - ,@(let ((setter-stub (gensym "SAP-SETTER-STUB-"))) + ,@(let ((setter-stub (gensym "SETTER-STUB-"))) `((defun ,setter-stub (foo sap offset) (declare (ignore foo sap offset)) (sap-ref-stub '(setf ,name)))