1 ;;;; FIXME: This file and host-c-call.lisp are separate from the
2 ;;;; rest of the alien source code for historical reasons: CMU CL
3 ;;;; made a distinction between the stuff in the C-CALL package and
4 ;;;; stuff in the ALIEN package. There's no obvious boundary
5 ;;;; there, though, and SBCL doesn't try to make this distinction,
6 ;;;; so it might make sense to just merge these files in with the
7 ;;;; rest of the SB-ALIEN code.
9 ;;;; This software is part of the SBCL system. See the README file for
10 ;;;; more information.
12 ;;;; This software is derived from the CMU CL system, which was
13 ;;;; written at Carnegie Mellon University and released into the
14 ;;;; public domain. The software is in the public domain and is
15 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
16 ;;;; files for more information.
18 (in-package "SB!ALIEN")
22 (define-alien-type char (integer 8))
23 (define-alien-type short (integer 16))
24 (define-alien-type int (integer 32))
25 (define-alien-type long (integer #.sb!vm::n-machine-word-bits))
26 (define-alien-type long-long (integer 64))
28 (define-alien-type unsigned-char (unsigned 8))
29 (define-alien-type unsigned-short (unsigned 16))
30 (define-alien-type unsigned-int (unsigned 32))
31 (define-alien-type unsigned-long (unsigned #.sb!vm::n-machine-word-bits))
32 (define-alien-type unsigned-long-long (unsigned 64))
34 (define-alien-type float single-float)
35 (define-alien-type double double-float)
37 (define-alien-type-translator void ()
38 (parse-alien-type '(values) (sb!kernel:make-null-lexenv)))
40 ;;; FIXME: %NATURALIZE-C-STRING (and the UTF8 siblings below) would
41 ;;; appear to be vulnerable to the lisp string moving from underneath
42 ;;; them if the world undergoes a GC, possibly triggered by another
44 (defun %naturalize-c-string (sap)
45 (declare (type system-area-pointer sap))
47 (declare (optimize (speed 3) (safety 0)))
48 (let ((length (loop for offset of-type fixnum upfrom 0
49 until (zerop (sap-ref-8 sap offset))
50 finally (return offset))))
51 (let ((result (make-string length :element-type 'base-char)))
52 (sb!kernel:copy-ub8-from-system-area sap 0 result 0 length)
55 (defun %naturalize-utf8-string (sap)
56 (declare (type system-area-pointer sap))
58 (declare (optimize (speed 3) (safety 0)))
59 (let ((byte-length (do* ((offset 0 (1+ offset))
60 (byte #1=(sap-ref-8 sap offset) #1#))
61 ((zerop byte) offset))))
62 (handler-bind ((sb!impl::octet-decoding-error #'sb!impl::use-unicode-replacement-char))
63 (sb!impl::utf8->string-sap-ref-8 sap 0 byte-length)))))
65 (defun %deport-utf8-string (string)
66 (declare (type simple-string string))
67 (sb!impl::string->utf8 string 0 (length string) 1))