7a4152edab5777a63c180613c7e73ed58fed6b23
[sbcl.git] / src / code / cross-misc.lisp
1 ;;;; cross-compile-time-only replacements for miscellaneous unportable
2 ;;;; stuff
3
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
12
13 (in-package "SB!IMPL")
14
15 ;;; In correct code, TRULY-THE has only a performance impact and can
16 ;;; be safely degraded to ordinary THE.
17 (defmacro truly-the (type expr)
18   `(the ,type ,expr))
19
20 ;;; MAYBE-INLINE and FREEZE-TYPE declarations can be safely ignored
21 ;;; (possibly at some cost in efficiency).
22 (declaim (declaration freeze-type maybe-inline))
23
24 ;;; INHIBIT-WARNINGS declarations can be safely ignored (although we
25 ;;; may then have to wade through some irrelevant warnings).
26 (declaim (declaration inhibit-warnings))
27
28 ;;; Interrupt control isn't an issue in the cross-compiler: we don't
29 ;;; use address-dependent (and thus GC-dependent) hashes, and we only
30 ;;; have a single thread of control.
31 (defmacro without-interrupts (&rest forms)
32   `(progn ,@forms))
33
34 ;;; When we're running as a cross-compiler in an arbitrary host ANSI
35 ;;; Lisp, we shouldn't be doing anything which is sensitive to GC.
36 ;;; KLUDGE: I (WHN 19990131) think the proper long-term solution would
37 ;;; be to remove any operations from cross-compiler source files
38 ;;; (putting them in target-only source files) if they refer to these
39 ;;; hooks. This is a short-term hack.
40 (defvar *before-gc-hooks* nil)
41 (defvar *after-gc-hooks* nil)
42
43 ;;; The GENESIS function works with fasl code which would, in the
44 ;;; target SBCL, work on ANSI-STREAMs (streams which aren't extended
45 ;;; Gray streams). In ANSI Common Lisp, an ANSI-STREAM is just a
46 ;;; CL:STREAM.
47 (deftype ansi-stream () 'stream)
48
49 ;;; In the target SBCL, the INSTANCE type refers to a base
50 ;;; implementation for compound types. There's no way to express
51 ;;; exactly that concept portably, but we can get essentially the same
52 ;;; effect by testing for any of the standard types which would, in
53 ;;; the target SBCL, be derived from INSTANCE:
54 (deftype sb!kernel:instance ()
55   '(or condition standard-object structure-object))
56
57 ;;; There aren't any FUNCALLABLE-INSTANCEs in the cross-compilation
58 ;;; host Common Lisp.
59 (defun funcallable-instance-p (x)
60   (if (typep x 'generic-function)
61     ;; In the target SBCL, FUNCALLABLE-INSTANCEs are used to implement
62     ;; generic functions, so any case which tests for this might in
63     ;; fact be trying to test for generic functions. My (WHN 19990313)
64     ;; expectation is that this case won't arise in the
65     ;; cross-compiler, but if it does, it deserves a little thought,
66     ;; rather than reflexively returning NIL.
67     (error "not clear how to handle GENERIC-FUNCTION")
68     nil))
69
70 ;;; This seems to be the portable Common Lisp type test which
71 ;;; corresponds to the effect of the target SBCL implementation test..
72 (defun sb!kernel:array-header-p (x)
73   (and (typep x 'simple-array)
74        (= 1 (array-rank x))))
75
76 ;;; GENESIS needs these at cross-compile time. The target
77 ;;; implementation of these is reasonably efficient by virtue of its
78 ;;; ability to peek into the internals of the package implementation;
79 ;;; this reimplementation is portable but slow.
80 (defun package-internal-symbol-count (package)
81   (let ((result 0))
82     (declare (type fixnum result))
83     (do-symbols (i package)
84       ;; KLUDGE: The ANSI Common Lisp specification warns that
85       ;; DO-SYMBOLS may execute its body more than once for symbols
86       ;; that are inherited from multiple packages, and we currently
87       ;; make no attempt to correct for that here. (The current uses
88       ;; of this function at cross-compile time don't really care if
89       ;; the count is a little too high.) -- WHN 19990826
90       (multiple-value-bind (symbol status)
91           (find-symbol (symbol-name i) package)
92         (declare (ignore symbol))
93         (when (member status '(:internal :inherited))
94           (incf result))))
95     result))
96 (defun package-external-symbol-count (package)
97   (let ((result 0))
98     (declare (type fixnum result))
99     (do-external-symbols (i package)
100       (declare (ignore i))
101       (incf result))
102     result))
103
104 ;;; In the target Lisp, INTERN* is the primitive and INTERN is
105 ;;; implemented in terms of it. This increases efficiency by letting
106 ;;; us reuse a fixed-size buffer; the alternative would be
107 ;;; particularly painful because we don't implement DYNAMIC-EXTENT. In
108 ;;; the host Lisp, this is only used at cold load time, and we don't
109 ;;; care as much about efficiency, so it's fine to treat the host
110 ;;; Lisp's INTERN as primitive and implement INTERN* in terms of it.
111 (defun intern* (nameoid length package)
112   (intern (replace (make-string length) nameoid :end2 length) package))
113
114 ;;; In the target Lisp this is implemented by reading a fixed slot in
115 ;;; the symbol. In portable ANSI Common Lisp the same criteria can be
116 ;;; met (more slowly, and with the extra property of repeatability
117 ;;; between runs) by just calling SXHASH.
118 (defun symbol-hash (symbol)
119   (declare (type symbol symbol))
120   (sxhash symbol))