X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fprimitives.lisp;h=73027ef4c37798c83656dcd536f437f8b2a160b4;hb=b2a3a6e6f3e5adf857ba4e2c80b8e4f8a3124a33;hp=1b210fd86e553eaf4073128fa0f1980de868a2ae;hpb=c28c2fe540ec9dac832390a74c4fb7a29cf806a8;p=uffi.git diff --git a/src/primitives.lisp b/src/primitives.lisp index 1b210fd..73027ef 100644 --- a/src/primitives.lisp +++ b/src/primitives.lisp @@ -2,12 +2,12 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: primitives.cl +;;;; Name: primitives.lisp ;;;; Purpose: UFFI source to handle immediate types ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: primitives.lisp,v 1.4 2002/10/14 04:15:02 kevin Exp $ +;;;; $Id: primitives.lisp,v 1.12 2003/08/15 02:34:34 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,8 +16,7 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) -(in-package :uffi) +(in-package #:uffi) #+mcl (defvar *keyword-package* (find-package "KEYWORD")) @@ -56,7 +55,7 @@ supports takes advantage of this optimization." #+(or lispworks allegro mcl cormanlisp) (declare (ignore type)) #+(or lispworks allegro mcl cormanlisp) `(deftype ,name () t) - #+cmu + #+(or cmu scl) `(deftype ,name () '(alien:alien ,(convert-from-uffi-type type :declare))) #+sbcl `(deftype ,name () '(sb-alien:alien ,(convert-from-uffi-type type :declare))) @@ -69,7 +68,7 @@ supports takes advantage of this optimization." (defmacro def-foreign-type (name type) #+lispworks `(fli:define-c-typedef ,name ,(convert-from-uffi-type type :type)) #+allegro `(ff:def-foreign-type ,name ,(convert-from-uffi-type type :type)) - #+cmu `(alien:def-alien-type ,name ,(convert-from-uffi-type type :type)) + #+(or cmu scl) `(alien:def-alien-type ,name ,(convert-from-uffi-type type :type)) #+sbcl `(sb-alien:define-alien-type ,name ,(convert-from-uffi-type type :type)) #+cormanlisp `(ct:defctype ,name ,(convert-from-uffi-type type :type)) #+mcl @@ -83,15 +82,16 @@ supports takes advantage of this optimization." ) (eval-when (:compile-toplevel :load-toplevel :execute) - (defvar +type-conversion-hash+ (make-hash-table :size 20)) - #+(or cmu sbcl) (defvar *cmu-def-type-hash* (make-hash-table :size 20)) + (defvar +type-conversion-hash+ (make-hash-table :size 20 :test #'eq)) + #+(or cmu sbcl scl) (defvar *cmu-def-type-hash* + (make-hash-table :size 20 :test #'eq)) ) -#+(or cmu sbcl) -(defparameter *cmu-sbcl-def-type-list* nil) +#+(or cmu sbcl scl) +(defvar *cmu-sbcl-def-type-list* nil) -#+cmu -(defparameter *cmu-sbcl-def-type-list* +#+(or cmu scl) +(defvar *cmu-sbcl-def-type-list* '((:char . (alien:signed 8)) (:unsigned-char . (alien:unsigned 8)) (:byte . (alien:signed 8)) @@ -107,7 +107,7 @@ supports takes advantage of this optimization." ) "Conversions in CMUCL for def-foreign-type are different than in def-function") #+sbcl -(defparameter *cmu-sbcl-def-type-list* +(defvar *cmu-sbcl-def-type-list* '((:char . (sb-alien:signed 8)) (:unsigned-char . (sb-alien:unsigned 8)) (:byte . (sb-alien:signed 8)) @@ -123,19 +123,18 @@ supports takes advantage of this optimization." ) "Conversions in SBCL for def-foreign-type are different than in def-function") -(defparameter *type-conversion-list* nil) +(defvar *type-conversion-list* nil) -#+cmu +#+(or cmu scl) (setq *type-conversion-list* '((* . *) (:void . c-call:void) - (:short . c-call:short) (:pointer-void . (* t)) (:cstring . c-call:c-string) (:char . c-call:char) (:unsigned-char . (alien:unsigned 8)) (:byte . (alien:signed 8)) (:unsigned-byte . (alien:unsigned 8)) - (:short . c-call:unsigned-short) + (:short . c-call:short) (:unsigned-short . c-call:unsigned-short) (:int . alien:integer) (:unsigned-int . c-call:unsigned-int) (:long . c-call:long) (:unsigned-long . c-call:unsigned-long) @@ -145,14 +144,13 @@ supports takes advantage of this optimization." #+sbcl (setq *type-conversion-list* '((* . *) (:void . sb-alien:void) - (:short . sb-alien:short) (:pointer-void . (* t)) (:cstring . sb-alien:c-string) (:char . sb-alien:char) (:unsigned-char . (sb-alien:unsigned 8)) (:byte . (sb-alien:signed 8)) (:unsigned-byte . (sb-alien:unsigned 8)) - (:short . sb-alien:unsigned-short) + (:short . sb-alien:short) (:unsigned-short . sb-alien:unsigned-short) (:int . sb-alien:integer) (:unsigned-int . sb-alien:unsigned-int) (:long . sb-alien:long) (:unsigned-long . sb-alien:unsigned-long) @@ -166,7 +164,7 @@ supports takes advantage of this optimization." (:pointer-void . (* :void)) (:cstring . (* :unsigned-char)) (:byte . :char) - (:unsigned-byte . :unsigned-byte) + (:unsigned-byte . :unsigned-char) (:char . :char) (:unsigned-char . :unsigned-char) (:int . :int) (:unsigned-int . :unsigned-int) @@ -179,9 +177,12 @@ supports takes advantage of this optimization." '((* . :pointer) (:void . :void) (:short . :short) (:pointer-void . (:pointer :void)) - (:cstring . (:reference-pass (:ef-mb-string :external-format :latin-1) - :allow-null t)) - (:cstring-returning . (:reference (:ef-mb-string :external-format :latin-1) :allow-null t)) + (:cstring . (:reference-pass (:ef-mb-string :external-format + (:latin-1 :eol-style :lf)) + :allow-null t)) + (:cstring-returning . (:reference (:ef-mb-string :external-format + (:latin-1 :eol-style :lf)) + :allow-null t)) (:byte . :byte) (:unsigned-byte . (:unsigned :byte)) (:char . :char) @@ -223,7 +224,7 @@ supports takes advantage of this optimization." (dolist (type *type-conversion-list*) (setf (gethash (car type) +type-conversion-hash+) (cdr type))) -#+(or cmu sbcl) +#+(or cmu sbcl scl) (dolist (type *cmu-sbcl-def-type-list*) (setf (gethash (car type) *cmu-def-type-hash*) (cdr type))) @@ -242,7 +243,7 @@ supports takes advantage of this optimization." ((and (or (eq context :routine) (eq context :return)) (eq type :cstring)) (setq type '((* :char) integer))) - #+(or cmu sbcl) + #+(or cmu sbcl scl) ((eq context :type) (let ((cmu-type (gethash type *cmu-def-type-hash*))) (if cmu-type