0.7.2.17:
[sbcl.git] / src / code / target-c-call.lisp
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.
8
9 ;;;; This software is part of the SBCL system. See the README file for
10 ;;;; more information.
11 ;;;;
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.
17
18 (in-package "SB!ALIEN")
19 \f
20 ;;;; extra types
21
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 #!-alpha 32 #!+alpha 64))
26
27 (define-alien-type unsigned-char (unsigned 8))
28 (define-alien-type unsigned-short (unsigned 16))
29 (define-alien-type unsigned-int (unsigned 32))
30 (define-alien-type unsigned-long (unsigned #!-alpha 32 #!+alpha 64))
31
32 (define-alien-type float single-float)
33 (define-alien-type double double-float)
34
35 (define-alien-type-translator void ()
36   (parse-alien-type '(values) (sb!kernel:make-null-lexenv)))
37 \f
38 (defun %naturalize-c-string (sap)
39   (declare (type system-area-pointer sap))
40   (with-alien ((ptr (* char) sap))
41     (let* ((length (alien-funcall (extern-alien "strlen"
42                                                 (function integer (* char)))
43                                   ptr))
44            (result (make-string length)))
45       (declare (optimize (speed 3) (safety 0)))
46       (sb!kernel:%byte-blt sap 0 result 0 length)
47       result)))