1.0.19.33: Improved interrupt handling on darwin/x86[-64]
[sbcl/eslaughter.git] / src / code / alien-type.lisp
blobb0aeb651a86207b97687ec878930d54cec761d4e
1 ;;;; ALIEN-related type system stuff, done later
2 ;;;; than other type system stuff because it depends on the definition
3 ;;;; of the ALIEN-VALUE target structure type
5 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; more information.
7 ;;;;
8 ;;;; This software is derived from the CMU CL system, which was
9 ;;;; written at Carnegie Mellon University and released into the
10 ;;;; public domain. The software is in the public domain and is
11 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
12 ;;;; files for more information.
14 (in-package "SB!KERNEL")
16 (/show0 "code/alien-type.lisp 16")
18 (!begin-collecting-cold-init-forms)
20 (defstruct (alien-type-type
21 (:include ctype
22 (class-info (type-class-or-lose 'alien)))
23 (:constructor %make-alien-type-type (alien-type))
24 (:copier nil))
25 (alien-type nil :type alien-type))
27 (!define-type-class alien)
29 (!define-type-method (alien :negate) (type)
30 (make-negation-type :type type))
32 (!define-type-method (alien :unparse) (type)
33 `(alien ,(unparse-alien-type (alien-type-type-alien-type type))))
35 (!define-type-method (alien :simple-subtypep) (type1 type2)
36 (values (alien-subtype-p (alien-type-type-alien-type type1)
37 (alien-type-type-alien-type type2))
38 t))
40 ;;; KLUDGE: This !DEFINE-SUPERCLASSES gets executed much later than the
41 ;;; others (toplevel form time instead of cold load init time) because
42 ;;; ALIEN-VALUE itself is a structure which isn't defined until fairly
43 ;;; late.
44 (!define-superclasses alien ((alien-value)) progn)
46 (!define-type-method (alien :simple-=) (type1 type2)
47 (let ((alien-type-1 (alien-type-type-alien-type type1))
48 (alien-type-2 (alien-type-type-alien-type type2)))
49 (values (or (eq alien-type-1 alien-type-2)
50 (alien-type-= alien-type-1 alien-type-2))
51 t)))
53 (!def-type-translator alien (&optional (alien-type nil))
54 (typecase alien-type
55 (null
56 (make-alien-type-type))
57 (alien-type
58 (make-alien-type-type alien-type))
60 (make-alien-type-type (parse-alien-type alien-type (make-null-lexenv))))))
62 (defun make-alien-type-type (&optional alien-type)
63 (if alien-type
64 (let ((lisp-rep-type (compute-lisp-rep-type alien-type)))
65 (if lisp-rep-type
66 (single-value-specifier-type lisp-rep-type)
67 (%make-alien-type-type alien-type)))
68 *universal-type*))
70 (!defun-from-collected-cold-init-forms !alien-type-cold-init)
72 (/show0 "code/alien-type.lisp end of file")