0.pre7.14:
[sbcl.git] / src / pcl / early-low.lisp
1 ;;;; some code pulled out of CMU CL's low.lisp to solve build order problems,
2 ;;;; and some other stuff that just plain needs to be done early
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 software originally released by Xerox
8 ;;;; Corporation. Copyright and release statements follow. Later modifications
9 ;;;; to the software are in the public domain and are provided with
10 ;;;; absolutely no warranty. See the COPYING and CREDITS files for more
11 ;;;; information.
12
13 ;;;; copyright information from original PCL sources:
14 ;;;;
15 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
16 ;;;; All rights reserved.
17 ;;;;
18 ;;;; Use and copying of this software and preparation of derivative works based
19 ;;;; upon this software are permitted. Any distribution of this software or
20 ;;;; derivative works must comply with all applicable United States export
21 ;;;; control laws.
22 ;;;;
23 ;;;; This software is made available AS IS, and Xerox Corporation makes no
24 ;;;; warranty about the software, its performance or its conformity to any
25 ;;;; specification.
26
27 (in-package "SB-PCL")
28 \f
29 ;;; FIXME: The PCL package is internal and is used by code in potential
30 ;;; bottlenecks. Access to it might be faster through #.(find-package "SB-PCL")
31 ;;; than through *PCL-PACKAGE*. And since it's internal, no one should be
32 ;;; doing things like deleting and recreating it in a running target Lisp.
33 ;;; So perhaps we should replace it uses of *PCL-PACKAGE* with uses of
34 ;;; (PCL-PACKAGE), and make PCL-PACKAGE a macro which expands into
35 ;;; the SB-PCL package itself. Maybe we should even use this trick for
36 ;;; COMMON-LISP and KEYWORD, too. (And the definition of PCL-PACKAGE etc.
37 ;;; could be made less viciously brittle when SB-FLUID.)
38 ;;; (Or perhaps just define a macro
39 ;;;   (DEFMACRO PKG (NAME)
40 ;;;     #-SB-FLUID (FIND-PACKAGE NAME)
41 ;;;     #+SB-FLUID `(FIND-PACKAGE ,NAME))
42 ;;; and use that to replace all three variables.)
43 (defvar *pcl-package*                (find-package "SB-PCL"))
44 (defvar *slot-accessor-name-package* (find-package "SB-SLOT-ACCESSOR-NAME"))
45
46 ;;; This excludes structure types created with the :TYPE option to
47 ;;; DEFSTRUCT. It also doesn't try to deal with types created by
48 ;;; hairy DEFTYPEs, e.g.
49 ;;;   (DEFTYPE CACHE-STRUCTURE (SIZE)
50 ;;;     (IF (> SIZE 11) 'BIG-CS 'SMALL-CS)).
51 ;;; KLUDGE: In fact, it doesn't seem to deal with DEFTYPEs at all. Perhaps
52 ;;; it needs a more mnemonic name. -- WHN 19991204
53 (defun structure-type-p (type)
54   (and (symbolp type)
55        (let ((class  (cl:find-class type nil)))
56          (and class
57               (typep (sb-kernel:layout-info (sb-kernel:class-layout class))
58                      'sb-kernel:defstruct-description)))))