#|
(defun method-info (m) (list (METHOD-QUALIFIERS m)(closer-mop:METHOD-LAMBDA-LIST m) (closer-mop:METHOD-SPECIALIZERS m)(closer-mop:METHOD-FUNCTION m) ;; (closer-mop:ACCESSOR-METHOD-SLOT-DEFINITION m) (DOCUMENTATION 'STANDARD-METHOD m)))
(closer-mop:METHOD-LAMBDA-LIST m) (closer-mop:METHOD-SPECIALIZERS m)(closer-mop:METHOD-FUNCTION m) ;; (closer-mop:ACCESSOR-METHOD-SLOT-DEFINITION m) (DOCUMENTATION 'STANDARD-METHOD m)))
|#
;;(quicklisp-quickstart:install)
#+clisp
(progn
(load "asdf/build/asdf.lisp")
(load "~/quicklisp/setup.lisp")
(load "quicklisp.lisp"))
(ql:quickload "closer-mop")
(defun set-last-cdr (list ele) (let ((tail (cdr list))) (if (null tail) (rplacd list ele) (set-last-cdr tail ele))))
(defun push-non-nil (info default prop value) (unless (equal value default) (set-last-cdr info (list (list prop value)))))
(defun slot-info (m) (let ((def (list (list :name (closer-mop:slot-definition-name m)))))
(incf *slotno*)
(push-non-nil def :always :ordinal *slotno*)
(push-non-nil def :instance :allocation (closer-mop:slot-definition-allocation m))
(push-non-nil def () :initform (closer-mop:slot-definition-initform m))
'(push-non-nil def () :initfunction (closer-mop:slot-definition-initfunction m))
(push-non-nil def 't :type (closer-mop:slot-definition-type m))
(push-non-nil def () :initargs (closer-mop:slot-definition-initargs m))
(push-non-nil def () :readers (closer-mop:slot-definition-readers m))
#+sbcl (push-non-nil def () :writers (closer-mop:slot-definition-writers m))
;;(push-non-nil def () :documentation (closer-mop:slot-definition-documentation m))
def))
(defun print-psv-maybe (skip str a b) (unless (equal b skip) (print-psv str a b)))
(defun print-psv (str a b) (unless (eq a b)(let ((*print-case* :downcase)(*print-readably* nil)(*package* (find-package :keyword))) (pprint (list :mop-direct a str b )))))
(defun print-subclasses (root &optional pre-print) (let ((class (typecase root (class root) (symbol (find-class root)) (t (class-of root)))))
(handler-case (unless (closer-mop:class-finalized-p class) (closer-mop:finalize-inheritance class)) (t ()))
(handler-case (print-psv-maybe () :default-initargs (class-name class) (closer-mop:COMPUTE-DEFAULT-INITARGS class)) (t ()))
(when ()
(dolist (item (mapcar #'class-name (closer-mop:class-direct-superclasses class))) (print-psv :superclass (class-name class) item))
(dolist (item (mapcar #'class-name (closer-mop:class-direct-subclasses class))) (print-psv :superclass item (class-name class) ))
(print-psv :package-name (class-name class) (package-name (symbol-package (class-name class))))
#+sbcl (print-psv-maybe '(t) :precedance (class-name class) (mapcar #'class-name (cdr (closer-mop:compute-class-precedence-list class))))
(print-psv :CLASSOF (class-name class) (class-name (CLASS-OF class)))
(print-psv :TYPEOF (class-name class) (TYPE-OF class))
;(print-psv :documentation (class-name class) (closer-mop:class-documentation class))
(when (equal (TYPE-OF class) 'cl:structure-class) )
(setq *slotno* 0)
(when pre-print (print-psv :superclass (class-name class) (class-name pre-print) ))
(dolist (item (mapcar #'slot-info (closer-mop:class-direct-slots class))) (print-psv :slot (class-name class) item))
'(dolist (item (closer-mop:specializer-direct-methods class)) (print-psv :method (class-name class) item ))
'(dolist (item (mapcar #'method-info (closer-mop:specializer-direct-methods class))) (print-psv :method (class-name class) item ))
(handler-case (let ((b (closer-mop:CLASS-PROTOTYPE class)))(print-psv :PROTOTYPE (class-name class) b ) )(t () ))
)
(dolist (item (closer-mop:class-direct-subclasses class)) (print-subclasses item class))
))
(print-subclasses t)
(force-output)
(terpri)
#|
Strct props:
cl:length
cl:type
sb-kernel::alternate-metaclass
sb-kernel::conc-name
sb-kernel::constructors
sb-kernel::copier-name
sb-kernel::doc
sb-kernel::element-type
sb-kernel::include
sb-kernel::inherited-accessor-alist
sb-kernel::name
sb-kernel::named
sb-kernel::null-lexenv-p
sb-kernel::offset
sb-kernel::predicate-name
sb-kernel::print-option
sb-kernel::printer-fname
sb-kernel::pure
sb-kernel::slots
This is SBCL 1.3.1.debian, an implementation of ANSI Common Lisp.
More information about SBCL is available at .
SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses. See the CREDITS and COPYING files in the
distribution for more information.
To load "closer-mop":
Load 1 ASDF system:
closer-mop
; Loading "closer-mop"
; file: /home/dmiles/logicmoo_workspace/packs_usr/wam_common_lisp/t/reference/sbcl.info
; in: DEFUN SLOT-INFO
; (INCF *SLOTNO*)
; ==>
; (SETQ *SLOTNO* (+ 1 *SLOTNO*))
;
; caught WARNING:
; undefined variable: *SLOTNO*
;
; compilation unit finished
; Undefined variable:
; *SLOTNO*
; caught 1 WARNING condition
; in: DEFUN PRINT-PSV-MAYBE
; (PRINT-PSV STR A B)
;
; caught STYLE-WARNING:
; undefined function: PRINT-PSV
;
; compilation unit finished
; Undefined function:
; PRINT-PSV
; caught 1 STYLE-WARNING condition
; in: DEFUN PRINT-SUBCLASSES
; (SETQ *SLOTNO* 0)
;
; caught WARNING:
; undefined variable: *SLOTNO*
;
; compilation unit finished
; Undefined variable:
; *SLOTNO*
; caught 1 WARNING condition
(:mop-direct common-lisp:array :superclass common-lisp:t)
(:mop-direct sb-ext:simd-pack :superclass common-lisp:t)
(:mop-direct common-lisp:number :superclass common-lisp:t)
(:mop-direct sb-kernel::random-class :superclass common-lisp:t)
(:mop-direct sb-kernel:fdefn :superclass common-lisp:t)
(:mop-direct sb-kernel:lra :superclass common-lisp:t)
(:mop-direct sb-kernel:code-component :superclass common-lisp:t)
(:mop-direct sb-ext:weak-pointer :superclass common-lisp:t)
(:mop-direct sb-sys:system-area-pointer :superclass common-lisp:t)
(:mop-direct common-lisp:symbol :superclass common-lisp:t)
(:mop-direct common-lisp:character :superclass common-lisp:t)
(:mop-direct sb-pcl::slot-object :superclass common-lisp:t)
(:mop-direct common-lisp:sequence :superclass common-lisp:t)
(:mop-direct common-lisp:stream :superclass common-lisp:t)
(:mop-direct common-lisp:function :superclass common-lisp:t)
(:mop-direct common-lisp:t :package-name "COMMON-LISP")
(:mop-direct common-lisp:t :precedance common-lisp:nil)
(:mop-direct common-lisp:t :classof sb-pcl:system-class)
(:mop-direct common-lisp:t :typeof sb-pcl:system-class)
(:mop-direct common-lisp:array :superclass common-lisp:t)
(:mop-direct common-lisp:simple-array :superclass common-lisp:array)
(:mop-direct common-lisp:vector :superclass common-lisp:array)
(:mop-direct common-lisp:array :package-name "COMMON-LISP")
(:mop-direct common-lisp:array :classof common-lisp:built-in-class)
(:mop-direct common-lisp:array :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:array :superclass common-lisp:t)
(:mop-direct common-lisp:simple-array :superclass common-lisp:array)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-fixnum :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-single-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-double-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
common-lisp:simple-array)
(:mop-direct common-lisp:simple-string :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-array :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-array :precedance
(common-lisp:array common-lisp:t))
(:mop-direct common-lisp:simple-array :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-array :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-array :superclass common-lisp:array)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-vector :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-vector :prototype #())
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-bit-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-bit-vector :precedance
(common-lisp:bit-vector common-lisp:vector common-lisp:simple-array
common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-bit-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-bit-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-bit-vector :prototype #*)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-8 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-8 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-16 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-16 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :prototype #())
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-fixnum :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-fixnum :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-fixnum :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-fixnum :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-fixnum :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-fixnum :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-32 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-32 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-64 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-64 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :prototype #())
(:mop-direct sb-kernel::simple-array-single-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-single-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-single-float :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-single-float :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-single-float :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-single-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-single-float :prototype #())
(:mop-direct sb-kernel::simple-array-double-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-double-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-double-float :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-double-float :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-double-float :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-double-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-double-float :prototype #())
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-single-float :package-name
"SB-KERNEL")
(:mop-direct sb-kernel::simple-array-complex-single-float :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-complex-single-float :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-single-float :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-single-float :prototype #())
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-double-float :package-name
"SB-KERNEL")
(:mop-direct sb-kernel::simple-array-complex-double-float :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-complex-double-float :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-double-float :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-double-float :prototype #())
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-string :superclass common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :superclass
common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :superclass
common-lisp:simple-string)
(:mop-direct common-lisp:simple-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-string :precedance
(common-lisp:string common-lisp:vector common-lisp:simple-array
common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-string :superclass common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-nil :precedance
(sb-kernel::vector-nil common-lisp:simple-string common-lisp:string
common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :prototype "")
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :superclass
common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-base-string :precedance
(common-lisp:base-string common-lisp:simple-string common-lisp:string
common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :superclass
common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :prototype "")
(:mop-direct sb-kernel::simple-character-string :superclass
sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :superclass
common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-character-string :precedance
(sb-kernel::character-string common-lisp:simple-string common-lisp:string
common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-character-string :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :superclass
common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :prototype "")
(:mop-direct common-lisp:simple-string :prototype 42)
(:mop-direct common-lisp:simple-array :prototype #0A0)
(:mop-direct common-lisp:vector :superclass common-lisp:array)
(:mop-direct common-lisp:vector :superclass common-lisp:sequence)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:bit-vector :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
common-lisp:vector)
(:mop-direct common-lisp:string :superclass common-lisp:vector)
(:mop-direct common-lisp:vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:vector :precedance
(common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:vector :superclass common-lisp:array)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-vector :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-vector :prototype #())
(:mop-direct common-lisp:bit-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:bit-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:bit-vector :precedance
(common-lisp:vector common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:bit-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:bit-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:bit-vector :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:simple-array)
(:mop-direct common-lisp:simple-bit-vector :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-bit-vector :precedance
(common-lisp:bit-vector common-lisp:vector common-lisp:simple-array
common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-bit-vector :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-bit-vector :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-bit-vector :superclass common-lisp:bit-vector)
(:mop-direct common-lisp:simple-bit-vector :prototype #*)
(:mop-direct common-lisp:bit-vector :prototype #*)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-2 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-4 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-7 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-8 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-15 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-16 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-fixnum :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-31 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-32 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-63 :prototype #())
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-unsigned-byte-64 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-8 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-8 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-8 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-16 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-16 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-16 :prototype #())
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-fixnum :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-fixnum :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-fixnum :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-fixnum :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-fixnum :superclass common-lisp:vector)
(:mop-direct sb-kernel::simple-array-fixnum :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-32 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-32 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-32 :prototype #())
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-signed-byte-64 :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-signed-byte-64 :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-signed-byte-64 :prototype #())
(:mop-direct sb-kernel::simple-array-single-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-single-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-single-float :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-single-float :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-single-float :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-single-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-single-float :prototype #())
(:mop-direct sb-kernel::simple-array-double-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-double-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-double-float :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-double-float :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-double-float :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-double-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-double-float :prototype #())
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-single-float :package-name
"SB-KERNEL")
(:mop-direct sb-kernel::simple-array-complex-single-float :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-complex-single-float :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-single-float :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-single-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-single-float :prototype #())
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-complex-double-float :package-name
"SB-KERNEL")
(:mop-direct sb-kernel::simple-array-complex-double-float :precedance
(common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-complex-double-float :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-double-float :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-complex-double-float :superclass
common-lisp:vector)
(:mop-direct sb-kernel::simple-array-complex-double-float :prototype #())
(:mop-direct common-lisp:string :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct sb-kernel::vector-nil :superclass common-lisp:string)
(:mop-direct common-lisp:base-string :superclass common-lisp:string)
(:mop-direct sb-kernel::character-string :superclass common-lisp:string)
(:mop-direct common-lisp:string :package-name "COMMON-LISP")
(:mop-direct common-lisp:string :precedance
(common-lisp:vector common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:string :superclass common-lisp:vector)
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-string :superclass common-lisp:simple-array)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :superclass
common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :superclass
common-lisp:simple-string)
(:mop-direct common-lisp:simple-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-string :precedance
(common-lisp:string common-lisp:vector common-lisp:simple-array
common-lisp:array common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-string :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-nil :precedance
(sb-kernel::vector-nil common-lisp:simple-string common-lisp:string
common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :prototype "")
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :superclass
common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-base-string :precedance
(common-lisp:base-string common-lisp:simple-string common-lisp:string
common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :superclass
common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :prototype "")
(:mop-direct sb-kernel::simple-character-string :superclass
sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :superclass
common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-character-string :precedance
(sb-kernel::character-string common-lisp:simple-string common-lisp:string
common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-character-string :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :superclass
common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :prototype "")
(:mop-direct common-lisp:simple-string :prototype 42)
(:mop-direct sb-kernel::vector-nil :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::vector-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::vector-nil :precedance
(common-lisp:string common-lisp:vector common-lisp:array common-lisp:sequence
common-lisp:t))
(:mop-direct sb-kernel::vector-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::vector-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::vector-nil :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :superclass common-lisp:simple-string)
(:mop-direct sb-kernel::simple-array-nil :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-array-nil :precedance
(sb-kernel::vector-nil common-lisp:simple-string common-lisp:string
common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-array-nil :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-array-nil :superclass sb-kernel::vector-nil)
(:mop-direct sb-kernel::simple-array-nil :prototype "")
(:mop-direct sb-kernel::vector-nil :prototype "")
(:mop-direct common-lisp:base-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:base-string :precedance
(common-lisp:string common-lisp:vector common-lisp:array common-lisp:sequence
common-lisp:t))
(:mop-direct common-lisp:base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:base-string :superclass common-lisp:string)
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :superclass
common-lisp:simple-string)
(:mop-direct common-lisp:simple-base-string :package-name "COMMON-LISP")
(:mop-direct common-lisp:simple-base-string :precedance
(common-lisp:base-string common-lisp:simple-string common-lisp:string
common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:simple-base-string :classof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:simple-base-string :superclass common-lisp:base-string)
(:mop-direct common-lisp:simple-base-string :prototype "")
(:mop-direct common-lisp:base-string :prototype "")
(:mop-direct sb-kernel::character-string :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-character-string :superclass
sb-kernel::character-string)
(:mop-direct sb-kernel::character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::character-string :precedance
(common-lisp:string common-lisp:vector common-lisp:array common-lisp:sequence
common-lisp:t))
(:mop-direct sb-kernel::character-string :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::character-string :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::character-string :superclass common-lisp:string)
(:mop-direct sb-kernel::simple-character-string :superclass
sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :superclass
common-lisp:simple-string)
(:mop-direct sb-kernel::simple-character-string :package-name "SB-KERNEL")
(:mop-direct sb-kernel::simple-character-string :precedance
(sb-kernel::character-string common-lisp:simple-string common-lisp:string
common-lisp:vector common-lisp:simple-array common-lisp:array
common-lisp:sequence common-lisp:t))
(:mop-direct sb-kernel::simple-character-string :classof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :typeof
common-lisp:built-in-class)
(:mop-direct sb-kernel::simple-character-string :superclass
sb-kernel::character-string)
(:mop-direct sb-kernel::simple-character-string :prototype "")
(:mop-direct sb-kernel::character-string :prototype "")
(:mop-direct common-lisp:string :prototype 42)
(:mop-direct common-lisp:vector :prototype 42)
(:mop-direct common-lisp:array :prototype #0A0)
(:mop-direct sb-ext:simd-pack :superclass common-lisp:t)
(:mop-direct sb-ext:simd-pack :package-name "SB-EXT")
(:mop-direct sb-ext:simd-pack :classof common-lisp:built-in-class)
(:mop-direct sb-ext:simd-pack :typeof common-lisp:built-in-class)
(:mop-direct sb-ext:simd-pack :superclass common-lisp:t)
(:mop-direct sb-ext:simd-pack :prototype
#)
(:mop-direct common-lisp:number :superclass common-lisp:t)
(:mop-direct common-lisp:complex :superclass common-lisp:number)
(:mop-direct common-lisp:real :superclass common-lisp:number)
(:mop-direct common-lisp:number :package-name "COMMON-LISP")
(:mop-direct common-lisp:number :classof common-lisp:built-in-class)
(:mop-direct common-lisp:number :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:number :superclass common-lisp:t)
(:mop-direct common-lisp:complex :superclass common-lisp:number)
(:mop-direct sb-kernel:complex-single-float :superclass common-lisp:complex)
(:mop-direct sb-kernel:complex-double-float :superclass common-lisp:complex)
(:mop-direct common-lisp:complex :package-name "COMMON-LISP")
(:mop-direct common-lisp:complex :precedance (common-lisp:number common-lisp:t))
(:mop-direct common-lisp:complex :classof common-lisp:built-in-class)
(:mop-direct common-lisp:complex :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:complex :superclass common-lisp:number)
(:mop-direct sb-kernel:complex-single-float :superclass common-lisp:complex)
(:mop-direct sb-kernel:complex-single-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel:complex-single-float :precedance
(common-lisp:complex common-lisp:number common-lisp:t))
(:mop-direct sb-kernel:complex-single-float :classof common-lisp:built-in-class)
(:mop-direct sb-kernel:complex-single-float :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel:complex-single-float :superclass common-lisp:complex)
(:mop-direct sb-kernel:complex-single-float :prototype #C(42.0 42.0))
(:mop-direct sb-kernel:complex-double-float :superclass common-lisp:complex)
(:mop-direct sb-kernel:complex-double-float :package-name "SB-KERNEL")
(:mop-direct sb-kernel:complex-double-float :precedance
(common-lisp:complex common-lisp:number common-lisp:t))
(:mop-direct sb-kernel:complex-double-float :classof common-lisp:built-in-class)
(:mop-direct sb-kernel:complex-double-float :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel:complex-double-float :superclass common-lisp:complex)
(:mop-direct sb-kernel:complex-double-float :prototype #C(42.0d0 42.0d0))
(:mop-direct common-lisp:complex :prototype #C(42 42))
(:mop-direct common-lisp:real :superclass common-lisp:number)
(:mop-direct common-lisp:float :superclass common-lisp:real)
(:mop-direct common-lisp:rational :superclass common-lisp:real)
(:mop-direct common-lisp:real :package-name "COMMON-LISP")
(:mop-direct common-lisp:real :precedance (common-lisp:number common-lisp:t))
(:mop-direct common-lisp:real :classof common-lisp:built-in-class)
(:mop-direct common-lisp:real :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:real :superclass common-lisp:number)
(:mop-direct common-lisp:float :superclass common-lisp:real)
(:mop-direct common-lisp:single-float :superclass common-lisp:float)
(:mop-direct common-lisp:double-float :superclass common-lisp:float)
(:mop-direct common-lisp:float :package-name "COMMON-LISP")
(:mop-direct common-lisp:float :precedance
(common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:float :classof common-lisp:built-in-class)
(:mop-direct common-lisp:float :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:float :superclass common-lisp:real)
(:mop-direct common-lisp:single-float :superclass common-lisp:float)
(:mop-direct common-lisp:single-float :package-name "COMMON-LISP")
(:mop-direct common-lisp:single-float :precedance
(common-lisp:float common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:single-float :classof common-lisp:built-in-class)
(:mop-direct common-lisp:single-float :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:single-float :superclass common-lisp:float)
(:mop-direct common-lisp:single-float :prototype 42.0)
(:mop-direct common-lisp:double-float :superclass common-lisp:float)
(:mop-direct common-lisp:double-float :package-name "COMMON-LISP")
(:mop-direct common-lisp:double-float :precedance
(common-lisp:float common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:double-float :classof common-lisp:built-in-class)
(:mop-direct common-lisp:double-float :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:double-float :superclass common-lisp:float)
(:mop-direct common-lisp:double-float :prototype 42.0d0)
(:mop-direct common-lisp:float :prototype 42)
(:mop-direct common-lisp:rational :superclass common-lisp:real)
(:mop-direct common-lisp:ratio :superclass common-lisp:rational)
(:mop-direct common-lisp:integer :superclass common-lisp:rational)
(:mop-direct common-lisp:rational :package-name "COMMON-LISP")
(:mop-direct common-lisp:rational :precedance
(common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:rational :classof common-lisp:built-in-class)
(:mop-direct common-lisp:rational :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:rational :superclass common-lisp:real)
(:mop-direct common-lisp:ratio :superclass common-lisp:rational)
(:mop-direct common-lisp:ratio :package-name "COMMON-LISP")
(:mop-direct common-lisp:ratio :precedance
(common-lisp:rational common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:ratio :classof common-lisp:built-in-class)
(:mop-direct common-lisp:ratio :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:ratio :superclass common-lisp:rational)
(:mop-direct common-lisp:ratio :prototype 1/42)
(:mop-direct common-lisp:integer :superclass common-lisp:rational)
(:mop-direct common-lisp:fixnum :superclass common-lisp:integer)
(:mop-direct common-lisp:bignum :superclass common-lisp:integer)
(:mop-direct common-lisp:integer :package-name "COMMON-LISP")
(:mop-direct common-lisp:integer :precedance
(common-lisp:rational common-lisp:real common-lisp:number common-lisp:t))
(:mop-direct common-lisp:integer :classof common-lisp:built-in-class)
(:mop-direct common-lisp:integer :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:integer :superclass common-lisp:rational)
(:mop-direct common-lisp:fixnum :superclass common-lisp:integer)
(:mop-direct common-lisp:fixnum :package-name "COMMON-LISP")
(:mop-direct common-lisp:fixnum :precedance
(common-lisp:integer common-lisp:rational common-lisp:real common-lisp:number
common-lisp:t))
(:mop-direct common-lisp:fixnum :classof common-lisp:built-in-class)
(:mop-direct common-lisp:fixnum :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:fixnum :superclass common-lisp:integer)
(:mop-direct common-lisp:fixnum :prototype 42)
(:mop-direct common-lisp:bignum :superclass common-lisp:integer)
(:mop-direct common-lisp:bignum :package-name "COMMON-LISP")
(:mop-direct common-lisp:bignum :precedance
(common-lisp:integer common-lisp:rational common-lisp:real common-lisp:number
common-lisp:t))
(:mop-direct common-lisp:bignum :classof common-lisp:built-in-class)
(:mop-direct common-lisp:bignum :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:bignum :superclass common-lisp:integer)
(:mop-direct common-lisp:bignum :prototype 79228162514264337593543950336)
(:mop-direct common-lisp:integer :prototype 42)
(:mop-direct common-lisp:rational :prototype 42)
(:mop-direct common-lisp:real :prototype 42)
(:mop-direct common-lisp:number :prototype 42)
(:mop-direct sb-kernel::random-class :superclass common-lisp:t)
(:mop-direct sb-kernel::random-class :package-name "SB-KERNEL")
(:mop-direct sb-kernel::random-class :classof common-lisp:built-in-class)
(:mop-direct sb-kernel::random-class :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel::random-class :superclass common-lisp:t)
(:mop-direct sb-kernel::random-class :prototype 42)
(:mop-direct sb-kernel:fdefn :superclass common-lisp:t)
(:mop-direct sb-kernel:fdefn :package-name "SB-KERNEL")
(:mop-direct sb-kernel:fdefn :classof common-lisp:built-in-class)
(:mop-direct sb-kernel:fdefn :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel:fdefn :superclass common-lisp:t)
(:mop-direct sb-kernel:fdefn :prototype #)
(:mop-direct sb-kernel:lra :superclass common-lisp:t)
(:mop-direct sb-kernel:lra :package-name "SB-KERNEL")
(:mop-direct sb-kernel:lra :classof common-lisp:built-in-class)
(:mop-direct sb-kernel:lra :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel:lra :superclass common-lisp:t)
(:mop-direct sb-kernel:lra :prototype 42)
(:mop-direct sb-kernel:code-component :superclass common-lisp:t)
(:mop-direct sb-kernel:code-component :package-name "SB-KERNEL")
(:mop-direct sb-kernel:code-component :classof common-lisp:built-in-class)
(:mop-direct sb-kernel:code-component :typeof common-lisp:built-in-class)
(:mop-direct sb-kernel:code-component :superclass common-lisp:t)
(:mop-direct sb-kernel:code-component :prototype 42)
(:mop-direct sb-ext:weak-pointer :superclass common-lisp:t)
(:mop-direct sb-ext:weak-pointer :package-name "SB-EXT")
(:mop-direct sb-ext:weak-pointer :classof common-lisp:built-in-class)
(:mop-direct sb-ext:weak-pointer :typeof common-lisp:built-in-class)
(:mop-direct sb-ext:weak-pointer :superclass common-lisp:t)
(:mop-direct sb-ext:weak-pointer :prototype
#>)
(:mop-direct sb-sys:system-area-pointer :superclass common-lisp:t)
(:mop-direct sb-sys:system-area-pointer :package-name "SB-SYS")
(:mop-direct sb-sys:system-area-pointer :classof common-lisp:built-in-class)
(:mop-direct sb-sys:system-area-pointer :typeof common-lisp:built-in-class)
(:mop-direct sb-sys:system-area-pointer :superclass common-lisp:t)
(:mop-direct sb-sys:system-area-pointer :prototype
#.(sb-sys:int-sap #X0000002A))
(:mop-direct common-lisp:symbol :superclass common-lisp:t)
(:mop-direct common-lisp:null :superclass common-lisp:symbol)
(:mop-direct common-lisp:symbol :package-name "COMMON-LISP")
(:mop-direct common-lisp:symbol :classof common-lisp:built-in-class)
(:mop-direct common-lisp:symbol :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:symbol :superclass common-lisp:t)
(:mop-direct common-lisp:null :superclass common-lisp:symbol)
(:mop-direct common-lisp:null :superclass common-lisp:list)
(:mop-direct common-lisp:null :package-name "COMMON-LISP")
(:mop-direct common-lisp:null :precedance
(common-lisp:symbol common-lisp:list common-lisp:sequence common-lisp:t))
(:mop-direct common-lisp:null :classof common-lisp:built-in-class)
(:mop-direct common-lisp:null :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:null :superclass common-lisp:symbol)
(:mop-direct common-lisp:null :prototype common-lisp:nil)
(:mop-direct common-lisp:symbol :prototype #:mu)
(:mop-direct common-lisp:character :superclass common-lisp:t)
(:mop-direct common-lisp:character :package-name "COMMON-LISP")
(:mop-direct common-lisp:character :classof common-lisp:built-in-class)
(:mop-direct common-lisp:character :typeof common-lisp:built-in-class)
(:mop-direct common-lisp:character :superclass common-lisp:t)
(:mop-direct common-lisp:character :prototype #\*)
(:mop-direct sb-pcl::slot-object :superclass common-lisp:t)
(:mop-direct common-lisp:standard-object :superclass sb-pcl::slot-object)
(:mop-direct common-lisp:structure-object :superclass sb-pcl::slot-object)
(:mop-direct common-lisp:condition :superclass sb-pcl::slot-object)
(:mop-direct sb-pcl::slot-object :package-name "SB-PCL")
(:mop-direct sb-pcl::slot-object :classof sb-pcl::slot-class)
(:mop-direct sb-pcl::slot-object :typeof sb-pcl::slot-class)
(:mop-direct sb-pcl::slot-object :superclass common-lisp:t)
(:mop-direct common-lisp:standard-object :superclass sb-pcl::slot-object)
(:mop-direct ql-bundle:bundle :superclass common-lisp:standard-object)
(:mop-direct quicklisp-client::client-info :superclass
common-lisp:standard-object)
(:mop-direct quicklisp-client::client-file-info :superclass
common-lisp:standard-object)
(:mop-direct quicklisp-client::load-strategy :superclass
common-lisp:standard-object)
(:mop-direct ql-dist::preference-mixin :superclass common-lisp:standard-object)
(:mop-direct ql-dist:dist :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::cdb-writer :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::hash-table-bucket :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::record-pointer :superclass common-lisp:standard-object)
(:mop-direct ql-http:url :superclass common-lisp:standard-object)
(:mop-direct ql-http::header :superclass common-lisp:standard-object)
(:mop-direct ql-http::octet-sink :superclass common-lisp:standard-object)
(:mop-direct ql-http::cbuf :superclass common-lisp:standard-object)
(:mop-direct ql-http::matcher :superclass common-lisp:standard-object)
(:mop-direct ql-progress::progress-bar :superclass common-lisp:standard-object)
(:mop-direct ql-impl:sbcl :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:host-ent :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:socket :superclass common-lisp:standard-object)
(:mop-direct sb-posix:termios :superclass common-lisp:standard-object)
(:mop-direct sb-posix:stat :superclass common-lisp:standard-object)
(:mop-direct sb-posix:timeval :superclass common-lisp:standard-object)
(:mop-direct sb-posix:group :superclass common-lisp:standard-object)
(:mop-direct sb-posix:passwd :superclass common-lisp:standard-object)
(:mop-direct sb-posix:flock :superclass common-lisp:standard-object)
(:mop-direct ql-impl:mkcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ecl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lispworks :superclass common-lisp:standard-object)
(:mop-direct ql-impl:scl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:cmucl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:clisp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:clasp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ccl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:abcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:allegro :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lisp :superclass common-lisp:standard-object)
(:mop-direct asdf/plan:plan :superclass common-lisp:standard-object)
(:mop-direct asdf/action:action-status :superclass common-lisp:standard-object)
(:mop-direct asdf/operation:operation :superclass common-lisp:standard-object)
(:mop-direct asdf/system:proto-system :superclass common-lisp:standard-object)
(:mop-direct asdf/component:component :superclass common-lisp:standard-object)
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:standard-object)
(:mop-direct sb-pcl::plist-mixin :superclass common-lisp:standard-object)
(:mop-direct sb-pcl::definition-source-mixin :superclass
common-lisp:standard-object)
(:mop-direct sb-mop:metaobject :superclass common-lisp:standard-object)
(:mop-direct sb-mop:funcallable-standard-object :superclass
common-lisp:standard-object)
(:mop-direct common-lisp:standard-object :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-object :precedance
(sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-object :classof common-lisp:standard-class)
(:mop-direct common-lisp:standard-object :typeof common-lisp:standard-class)
(:mop-direct common-lisp:standard-object :superclass sb-pcl::slot-object)
(:mop-direct ql-bundle:bundle :superclass common-lisp:standard-object)
(:mop-direct ql-bundle:bundle :package-name "QL-BUNDLE")
(:mop-direct ql-bundle:bundle :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-bundle:bundle :classof common-lisp:standard-class)
(:mop-direct ql-bundle:bundle :typeof common-lisp:standard-class)
(:mop-direct ql-bundle:bundle :superclass common-lisp:standard-object)
(:mop-direct ql-bundle:bundle :slot
((:name ql-bundle:requested-systems) (:ordinal 1)
(:initargs (:requested-systems)) (:readers (ql-bundle:requested-systems))))
(:mop-direct ql-bundle:bundle :slot
((:name ql-bundle::creation-time) (:ordinal 2) (:initargs (:creation-time))
(:readers (ql-bundle::creation-time))))
(:mop-direct ql-bundle:bundle :slot
((:name ql-bundle::release-table) (:ordinal 3) (:initargs (:release-table))
(:readers (ql-bundle::release-table))))
(:mop-direct ql-bundle:bundle :slot
((:name ql-bundle::system-table) (:ordinal 4) (:initargs (:system-table))
(:readers (ql-bundle::system-table))))
(:mop-direct quicklisp-client::client-info :superclass
common-lisp:standard-object)
(:mop-direct quicklisp-client::client-info :package-name "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::client-info :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::client-info :classof common-lisp:standard-class)
(:mop-direct quicklisp-client::client-info :typeof common-lisp:standard-class)
(:mop-direct quicklisp-client::client-info :superclass
common-lisp:standard-object)
(:mop-direct quicklisp-client::client-info :slot
((:name quicklisp-client::setup-info) (:ordinal 1) (:initargs (:setup-info))
(:readers (quicklisp-client::setup-info))))
(:mop-direct quicklisp-client::client-info :slot
((:name quicklisp-client::asdf-info) (:ordinal 2) (:initargs (:asdf-info))
(:readers (quicklisp-client::asdf-info))))
(:mop-direct quicklisp-client::client-info :slot
((:name quicklisp-client::client-tar-info) (:ordinal 3)
(:initargs (:client-tar-info))
(:readers (quicklisp-client::client-tar-info))))
(:mop-direct quicklisp-client::client-info :slot
((:name quicklisp-client::canonical-client-info-url) (:ordinal 4)
(:initargs (:canonical-client-info-url))
(:readers (quicklisp-client::canonical-client-info-url))))
(:mop-direct quicklisp-client::client-info :slot
((:name ql-dist:version) (:ordinal 5) (:initargs (:version))
(:readers (ql-dist:version))))
(:mop-direct quicklisp-client::client-info :slot
((:name ql-dist:subscription-url) (:ordinal 6) (:initargs (:subscription-url))
(:readers (ql-dist:subscription-url))))
(:mop-direct quicklisp-client::client-info :slot
((:name quicklisp-client::plist) (:ordinal 7) (:initargs (:plist))
(:readers (quicklisp-client::plist))))
(:mop-direct quicklisp-client::client-info :slot
((:name quicklisp-client::source-file) (:ordinal 8) (:initargs (:source-file))
(:readers (quicklisp-client::source-file))))
(:mop-direct quicklisp-client::client-file-info :superclass
common-lisp:standard-object)
(:mop-direct quicklisp-client::client-tar-file-info :superclass
quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::setup-file-info :superclass
quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::asdf-file-info :superclass
quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::client-file-info :package-name
"QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::client-file-info :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::client-file-info :classof
common-lisp:standard-class)
(:mop-direct quicklisp-client::client-file-info :typeof
common-lisp:standard-class)
(:mop-direct quicklisp-client::client-file-info :superclass
common-lisp:standard-object)
(:mop-direct quicklisp-client::client-file-info :slot
((:name quicklisp-client::plist-key) (:ordinal 1) (:initargs (:plist-key))
(:readers (quicklisp-client::plist-key))))
(:mop-direct quicklisp-client::client-file-info :slot
((:name quicklisp-client::file-url) (:ordinal 2) (:initargs (:url))
(:readers (quicklisp-client::file-url))))
(:mop-direct quicklisp-client::client-file-info :slot
((:name ql-dist:name) (:ordinal 3) (:initargs (:name))
(:readers (ql-dist:name))))
(:mop-direct quicklisp-client::client-file-info :slot
((:name quicklisp-client::size) (:ordinal 4) (:initargs (:size))
(:readers (quicklisp-client::size))))
(:mop-direct quicklisp-client::client-file-info :slot
((:name quicklisp-client::md5) (:ordinal 5) (:initargs (:md5))
(:readers (quicklisp-client::md5))))
(:mop-direct quicklisp-client::client-file-info :slot
((:name quicklisp-client::sha256) (:ordinal 6) (:initargs (:sha256))
(:readers (quicklisp-client::sha256))))
(:mop-direct quicklisp-client::client-file-info :slot
((:name quicklisp-client::plist) (:ordinal 7) (:initargs (:plist))
(:readers (quicklisp-client::plist))))
(:mop-direct quicklisp-client::client-tar-file-info :superclass
quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::client-tar-file-info :package-name
"QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::client-tar-file-info :precedance
(quicklisp-client::client-file-info common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::client-tar-file-info :classof
common-lisp:standard-class)
(:mop-direct quicklisp-client::client-tar-file-info :typeof
common-lisp:standard-class)
(:mop-direct quicklisp-client::client-tar-file-info :superclass
quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::setup-file-info :superclass
quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::setup-file-info :package-name "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::setup-file-info :precedance
(quicklisp-client::client-file-info common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::setup-file-info :classof
common-lisp:standard-class)
(:mop-direct quicklisp-client::setup-file-info :typeof
common-lisp:standard-class)
(:mop-direct quicklisp-client::setup-file-info :superclass
quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::asdf-file-info :superclass
quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::asdf-file-info :package-name "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::asdf-file-info :precedance
(quicklisp-client::client-file-info common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::asdf-file-info :classof
common-lisp:standard-class)
(:mop-direct quicklisp-client::asdf-file-info :typeof
common-lisp:standard-class)
(:mop-direct quicklisp-client::asdf-file-info :superclass
quicklisp-client::client-file-info)
(:mop-direct quicklisp-client::load-strategy :superclass
common-lisp:standard-object)
(:mop-direct quicklisp-client::load-strategy :package-name "QUICKLISP-CLIENT")
(:mop-direct quicklisp-client::load-strategy :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct quicklisp-client::load-strategy :classof
common-lisp:standard-class)
(:mop-direct quicklisp-client::load-strategy :typeof common-lisp:standard-class)
(:mop-direct quicklisp-client::load-strategy :superclass
common-lisp:standard-object)
(:mop-direct quicklisp-client::load-strategy :slot
((:name ql-dist:name) (:ordinal 1) (:initargs (:name))
(:readers (ql-dist:name)) (:writers ((common-lisp:setf ql-dist:name)))))
(:mop-direct quicklisp-client::load-strategy :slot
((:name quicklisp-client::asdf-systems) (:ordinal 2)
(:initargs (:asdf-systems)) (:readers (quicklisp-client::asdf-systems))
(:writers ((common-lisp:setf quicklisp-client::asdf-systems)))))
(:mop-direct quicklisp-client::load-strategy :slot
((:name quicklisp-client::quicklisp-systems) (:ordinal 3)
(:initargs (:quicklisp-systems))
(:readers (quicklisp-client::quicklisp-systems))
(:writers ((common-lisp:setf quicklisp-client::quicklisp-systems)))))
(:mop-direct quicklisp-client::load-strategy :prototype
(:mop-direct ql-dist::preference-mixin :superclass common-lisp:standard-object)
(:mop-direct ql-dist:system :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist:release :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist::preference-mixin :package-name "QL-DIST")
(:mop-direct ql-dist::preference-mixin :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-dist::preference-mixin :classof common-lisp:standard-class)
(:mop-direct ql-dist::preference-mixin :typeof common-lisp:standard-class)
(:mop-direct ql-dist::preference-mixin :superclass common-lisp:standard-object)
(:mop-direct ql-dist:system :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist:system :default-initargs
((:metadata-name "systems"
#)))
(:mop-direct ql-dist:system :package-name "QL-DIST")
(:mop-direct ql-dist:system :precedance
(ql-dist::preference-mixin common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct ql-dist:system :classof common-lisp:standard-class)
(:mop-direct ql-dist:system :typeof common-lisp:standard-class)
(:mop-direct ql-dist:system :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist:system :slot
((:name ql-dist:name) (:ordinal 1) (:initargs (:name))
(:readers (ql-dist:short-description ql-dist:name))
(:writers ((common-lisp:setf ql-dist:name)))))
(:mop-direct ql-dist:system :slot
((:name ql-dist:system-file-name) (:ordinal 2) (:initargs (:system-file-name))
(:readers (ql-dist:system-file-name))
(:writers ((common-lisp:setf ql-dist:system-file-name)))))
(:mop-direct ql-dist:system :slot
((:name ql-dist:release) (:ordinal 3) (:initargs (:release))
(:readers (ql-dist:preference-parent ql-dist:release))
(:writers ((common-lisp:setf ql-dist:release)))))
(:mop-direct ql-dist:system :slot
((:name ql-dist:dist) (:ordinal 4) (:initargs (:dist))
(:readers (ql-dist:dist)) (:writers ((common-lisp:setf ql-dist:dist)))))
(:mop-direct ql-dist:system :slot
((:name ql-dist:required-systems) (:ordinal 5) (:initargs (:required-systems))
(:readers (ql-dist:required-systems))
(:writers ((common-lisp:setf ql-dist:required-systems)))))
(:mop-direct ql-dist:system :slot
((:name ql-dist:metadata-name) (:ordinal 6) (:initargs (:metadata-name))
(:readers (ql-dist:metadata-name))
(:writers ((common-lisp:setf ql-dist:metadata-name)))))
(:mop-direct ql-dist:release :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist:release :default-initargs
((:metadata-name "releases"
#)))
(:mop-direct ql-dist:release :package-name "QL-DIST")
(:mop-direct ql-dist:release :precedance
(ql-dist::preference-mixin common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct ql-dist:release :classof common-lisp:standard-class)
(:mop-direct ql-dist:release :typeof common-lisp:standard-class)
(:mop-direct ql-dist:release :superclass ql-dist::preference-mixin)
(:mop-direct ql-dist:release :slot
((:name ql-dist:project-name) (:ordinal 1) (:initargs (:project-name))
(:readers (ql-dist:project-name ql-dist:name))
(:writers
((common-lisp:setf ql-dist:project-name) (common-lisp:setf ql-dist:name)))))
(:mop-direct ql-dist:release :slot
((:name ql-dist:dist) (:ordinal 2) (:initargs (:dist))
(:readers (ql-dist:preference-parent ql-dist:dist))
(:writers ((common-lisp:setf ql-dist:dist)))))
(:mop-direct ql-dist:release :slot
((:name ql-dist:provided-systems) (:ordinal 3) (:initargs (:provided-systems))
(:readers (ql-dist:provided-systems))
(:writers ((common-lisp:setf ql-dist:provided-systems)))))
(:mop-direct ql-dist:release :slot
((:name ql-dist:archive-url) (:ordinal 4) (:initargs (:archive-url))
(:readers (ql-dist:archive-url))
(:writers ((common-lisp:setf ql-dist:archive-url)))))
(:mop-direct ql-dist:release :slot
((:name ql-dist:archive-size) (:ordinal 5) (:initargs (:archive-size))
(:readers (ql-dist:archive-size))
(:writers ((common-lisp:setf ql-dist:archive-size)))))
(:mop-direct ql-dist:release :slot
((:name ql-dist:archive-md5) (:ordinal 6) (:initargs (:archive-md5))
(:readers (ql-dist:archive-md5))
(:writers ((common-lisp:setf ql-dist:archive-md5)))))
(:mop-direct ql-dist:release :slot
((:name ql-dist:archive-content-sha1) (:ordinal 7)
(:initargs (:archive-content-sha1)) (:readers (ql-dist:archive-content-sha1))
(:writers ((common-lisp:setf ql-dist:archive-content-sha1)))))
(:mop-direct ql-dist:release :slot
((:name ql-dist:prefix) (:ordinal 8) (:initargs (:prefix))
(:readers (ql-dist:short-description ql-dist:prefix))
(:writers ((common-lisp:setf ql-dist:prefix)))))
(:mop-direct ql-dist:release :slot
((:name ql-dist:system-files) (:ordinal 9) (:initargs (:system-files))
(:readers (ql-dist:system-files))
(:writers ((common-lisp:setf ql-dist:system-files)))))
(:mop-direct ql-dist:release :slot
((:name ql-dist:metadata-name) (:ordinal 10) (:initargs (:metadata-name))
(:readers (ql-dist:metadata-name))
(:writers ((common-lisp:setf ql-dist:metadata-name)))))
(:mop-direct ql-dist:dist :superclass common-lisp:standard-object)
(:mop-direct ql-dist:dist :default-initargs
((:name "unnamed"
#)
(:version "unknown"
#)
(:distinfo-subscription-url common-lisp:nil
#)))
(:mop-direct ql-dist:dist :package-name "QL-DIST")
(:mop-direct ql-dist:dist :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-dist:dist :classof common-lisp:standard-class)
(:mop-direct ql-dist:dist :typeof common-lisp:standard-class)
(:mop-direct ql-dist:dist :superclass common-lisp:standard-object)
(:mop-direct ql-dist:dist :slot
((:name ql-dist:base-directory) (:ordinal 1) (:initargs (:base-directory))
(:readers (ql-dist:base-directory))
(:writers ((common-lisp:setf ql-dist:base-directory)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist:name) (:ordinal 2) (:initargs (:name))
(:readers (ql-dist:name)) (:writers ((common-lisp:setf ql-dist:name)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist:version) (:ordinal 3) (:initargs (:version))
(:readers (ql-dist:version)) (:writers ((common-lisp:setf ql-dist:version)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist:system-index-url) (:ordinal 4) (:initargs (:system-index-url))
(:readers (ql-dist:system-index-url))
(:writers ((common-lisp:setf ql-dist:system-index-url)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist:release-index-url) (:ordinal 5)
(:initargs (:release-index-url)) (:readers (ql-dist:release-index-url))
(:writers ((common-lisp:setf ql-dist:release-index-url)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist:available-versions-url) (:ordinal 6)
(:initargs (:available-versions-url))
(:readers (ql-dist:available-versions-url))
(:writers ((common-lisp:setf ql-dist:available-versions-url)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist::archive-base-url) (:ordinal 7)
(:initargs (:archive-base-url)) (:readers (ql-dist::archive-base-url))
(:writers ((common-lisp:setf ql-dist::archive-base-url)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist:canonical-distinfo-url) (:ordinal 8)
(:initargs (:canonical-distinfo-url))
(:readers (ql-dist:canonical-distinfo-url))
(:writers ((common-lisp:setf ql-dist:canonical-distinfo-url)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist::distinfo-subscription-url) (:ordinal 9)
(:initargs (:distinfo-subscription-url))
(:readers (ql-dist::distinfo-subscription-url))
(:writers ((common-lisp:setf ql-dist::distinfo-subscription-url)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist::system-index) (:ordinal 10) (:initargs (:system-index))
(:readers (ql-dist::system-index))
(:writers ((common-lisp:setf ql-dist::system-index)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist::release-index) (:ordinal 11) (:initargs (:release-index))
(:readers (ql-dist::release-index))
(:writers ((common-lisp:setf ql-dist::release-index)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist:provided-systems) (:ordinal 12)
(:initargs (:provided-systems)) (:readers (ql-dist:provided-systems))
(:writers ((common-lisp:setf ql-dist:provided-systems)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist:provided-releases) (:ordinal 13)
(:initargs (:provided-releases)) (:readers (ql-dist:provided-releases))
(:writers ((common-lisp:setf ql-dist:provided-releases)))))
(:mop-direct ql-dist:dist :slot
((:name ql-dist::local-distinfo-file) (:ordinal 14)
(:initargs (:local-distinfo-file)) (:readers (ql-dist::local-distinfo-file))
(:writers ((common-lisp:setf ql-dist::local-distinfo-file)))))
(:mop-direct ql-cdb::cdb-writer :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::cdb-writer :package-name "QL-CDB")
(:mop-direct ql-cdb::cdb-writer :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-cdb::cdb-writer :classof common-lisp:standard-class)
(:mop-direct ql-cdb::cdb-writer :typeof common-lisp:standard-class)
(:mop-direct ql-cdb::cdb-writer :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::cdb-writer :slot
((:name ql-cdb::buckets) (:ordinal 1) (:initargs (:buckets))
(:readers (ql-cdb::buckets)) (:writers ((common-lisp:setf ql-cdb::buckets)))))
(:mop-direct ql-cdb::cdb-writer :slot
((:name ql-cdb::end-of-records-position) (:ordinal 2)
(:initargs (:end-of-records-position))
(:readers (ql-cdb::end-of-records-position))
(:writers ((common-lisp:setf ql-cdb::end-of-records-position)))))
(:mop-direct ql-cdb::cdb-writer :slot
((:name ql-cdb::output) (:ordinal 3) (:initargs (:output))
(:readers (ql-cdb::output)) (:writers ((common-lisp:setf ql-cdb::output)))))
(:mop-direct ql-cdb::hash-table-bucket :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::hash-table-bucket :package-name "QL-CDB")
(:mop-direct ql-cdb::hash-table-bucket :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-cdb::hash-table-bucket :classof common-lisp:standard-class)
(:mop-direct ql-cdb::hash-table-bucket :typeof common-lisp:standard-class)
(:mop-direct ql-cdb::hash-table-bucket :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::hash-table-bucket :slot
((:name ql-cdb::table-position) (:ordinal 1) (:initargs (:table-position))
(:readers (ql-cdb::table-position))
(:writers ((common-lisp:setf ql-cdb::table-position)))))
(:mop-direct ql-cdb::hash-table-bucket :slot
((:name ql-cdb::entries) (:ordinal 2) (:initargs (:entries))
(:readers (ql-cdb::entries)) (:writers ((common-lisp:setf ql-cdb::entries)))))
(:mop-direct ql-cdb::record-pointer :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::record-pointer :default-initargs
((:hash-value 0
#)
(:record-position 0
#)))
(:mop-direct ql-cdb::record-pointer :package-name "QL-CDB")
(:mop-direct ql-cdb::record-pointer :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-cdb::record-pointer :classof common-lisp:standard-class)
(:mop-direct ql-cdb::record-pointer :typeof common-lisp:standard-class)
(:mop-direct ql-cdb::record-pointer :superclass common-lisp:standard-object)
(:mop-direct ql-cdb::record-pointer :slot
((:name ql-cdb::hash-value) (:ordinal 1) (:initargs (:hash-value))
(:readers (ql-cdb::hash-value))
(:writers ((common-lisp:setf ql-cdb::hash-value)))))
(:mop-direct ql-cdb::record-pointer :slot
((:name ql-cdb::record-position) (:ordinal 2) (:initargs (:record-position))
(:readers (ql-cdb::record-position))
(:writers ((common-lisp:setf ql-cdb::record-position)))))
(:mop-direct ql-http:url :superclass common-lisp:standard-object)
(:mop-direct ql-http:url :package-name "QL-HTTP")
(:mop-direct ql-http:url :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http:url :classof common-lisp:standard-class)
(:mop-direct ql-http:url :typeof common-lisp:standard-class)
(:mop-direct ql-http:url :superclass common-lisp:standard-object)
(:mop-direct ql-http:url :slot
((:name ql-http:scheme) (:ordinal 1) (:initargs (:scheme))
(:readers (ql-http:scheme)) (:writers ((common-lisp:setf ql-http:scheme)))))
(:mop-direct ql-http:url :slot
((:name ql-http:hostname) (:ordinal 2) (:initargs (:hostname))
(:readers (ql-http:hostname))
(:writers ((common-lisp:setf ql-http:hostname)))))
(:mop-direct ql-http:url :slot
((:name ql-http:port) (:ordinal 3) (:initargs (:port))
(:readers (ql-http:port)) (:writers ((common-lisp:setf ql-http:port)))))
(:mop-direct ql-http:url :slot
((:name ql-http:path) (:ordinal 4) (:initform "/") (:initargs (:path))
(:readers (ql-http:path)) (:writers ((common-lisp:setf ql-http:path)))))
(:mop-direct ql-http::header :superclass common-lisp:standard-object)
(:mop-direct ql-http::header :package-name "QL-HTTP")
(:mop-direct ql-http::header :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::header :classof common-lisp:standard-class)
(:mop-direct ql-http::header :typeof common-lisp:standard-class)
(:mop-direct ql-http::header :superclass common-lisp:standard-object)
(:mop-direct ql-http::header :slot
((:name ql-http::data) (:ordinal 1) (:initargs (:data))
(:readers (ql-http::data)) (:writers ((common-lisp:setf ql-http::data)))))
(:mop-direct ql-http::header :slot
((:name ql-http::status) (:ordinal 2) (:initargs (:status))
(:readers (ql-http::status)) (:writers ((common-lisp:setf ql-http::status)))))
(:mop-direct ql-http::header :slot
((:name ql-http::name-starts) (:ordinal 3) (:initargs (:name-starts))
(:readers (ql-http::name-starts))
(:writers ((common-lisp:setf ql-http::name-starts)))))
(:mop-direct ql-http::header :slot
((:name ql-http::name-ends) (:ordinal 4) (:initargs (:name-ends))
(:readers (ql-http::name-ends))
(:writers ((common-lisp:setf ql-http::name-ends)))))
(:mop-direct ql-http::header :slot
((:name ql-http::value-starts) (:ordinal 5) (:initargs (:value-starts))
(:readers (ql-http::value-starts))
(:writers ((common-lisp:setf ql-http::value-starts)))))
(:mop-direct ql-http::header :slot
((:name ql-http::value-ends) (:ordinal 6) (:initargs (:value-ends))
(:readers (ql-http::value-ends))
(:writers ((common-lisp:setf ql-http::value-ends)))))
(:mop-direct ql-http::octet-sink :superclass common-lisp:standard-object)
(:mop-direct ql-http::octet-sink :package-name "QL-HTTP")
(:mop-direct ql-http::octet-sink :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::octet-sink :classof common-lisp:standard-class)
(:mop-direct ql-http::octet-sink :typeof common-lisp:standard-class)
(:mop-direct ql-http::octet-sink :superclass common-lisp:standard-object)
(:mop-direct ql-http::octet-sink :slot
((:name ql-http::storage) (:ordinal 1) (:initargs (:storage))
(:readers (ql-http::storage))
(:writers ((common-lisp:setf ql-http::storage)))))
(:mop-direct ql-http::cbuf :superclass common-lisp:standard-object)
(:mop-direct ql-http::cbuf :package-name "QL-HTTP")
(:mop-direct ql-http::cbuf :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::cbuf :classof common-lisp:standard-class)
(:mop-direct ql-http::cbuf :typeof common-lisp:standard-class)
(:mop-direct ql-http::cbuf :superclass common-lisp:standard-object)
(:mop-direct ql-http::cbuf :slot
((:name ql-http::data) (:ordinal 1) (:initargs (:data))
(:readers (ql-http::data)) (:writers ((common-lisp:setf ql-http::data)))))
(:mop-direct ql-http::cbuf :slot
((:name ql-http::connection) (:ordinal 2) (:initargs (:connection))
(:readers (ql-http::connection))
(:writers ((common-lisp:setf ql-http::connection)))))
(:mop-direct ql-http::cbuf :slot
((:name ql-http::start) (:ordinal 3) (:initargs (:start))
(:readers (ql-http::start)) (:writers ((common-lisp:setf ql-http::start)))))
(:mop-direct ql-http::cbuf :slot
((:name ql-http::end) (:ordinal 4) (:initargs (:end))
(:readers (ql-http::end)) (:writers ((common-lisp:setf ql-http::end)))))
(:mop-direct ql-http::cbuf :slot
((:name ql-http::eofp) (:ordinal 5) (:initargs (:eofp))
(:readers (ql-http::eofp)) (:writers ((common-lisp:setf ql-http::eofp)))))
(:mop-direct ql-http::matcher :superclass common-lisp:standard-object)
(:mop-direct ql-http::matcher :package-name "QL-HTTP")
(:mop-direct ql-http::matcher :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-http::matcher :classof common-lisp:standard-class)
(:mop-direct ql-http::matcher :typeof common-lisp:standard-class)
(:mop-direct ql-http::matcher :superclass common-lisp:standard-object)
(:mop-direct ql-http::matcher :slot
((:name ql-http::pattern) (:ordinal 1) (:initargs (:pattern))
(:readers (ql-http::pattern))))
(:mop-direct ql-http::matcher :slot
((:name ql-http::pos) (:ordinal 2) (:initform 0)
(:readers (ql-http::match-pos))
(:writers ((common-lisp:setf ql-http::match-pos)))))
(:mop-direct ql-http::matcher :slot
((:name ql-http::matchedp) (:ordinal 3) (:readers (ql-http::matchedp))
(:writers ((common-lisp:setf ql-http::matchedp)))))
(:mop-direct ql-progress::progress-bar :superclass common-lisp:standard-object)
(:mop-direct ql-progress::uncertain-size-progress-bar :superclass
ql-progress::progress-bar)
(:mop-direct ql-progress::progress-bar :package-name "QL-PROGRESS")
(:mop-direct ql-progress::progress-bar :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-progress::progress-bar :classof common-lisp:standard-class)
(:mop-direct ql-progress::progress-bar :typeof common-lisp:standard-class)
(:mop-direct ql-progress::progress-bar :superclass common-lisp:standard-object)
(:mop-direct ql-progress::progress-bar :slot
((:name ql-progress::start-time) (:ordinal 1) (:initargs (:start-time))
(:readers (ql-progress::start-time))
(:writers ((common-lisp:setf ql-progress::start-time)))))
(:mop-direct ql-progress::progress-bar :slot
((:name ql-progress::end-time) (:ordinal 2) (:initargs (:end-time))
(:readers (ql-progress::end-time))
(:writers ((common-lisp:setf ql-progress::end-time)))))
(:mop-direct ql-progress::progress-bar :slot
((:name ql-progress::progress-character) (:ordinal 3)
(:initargs (:progress-character))
(:readers (ql-progress::progress-character))
(:writers ((common-lisp:setf ql-progress::progress-character)))))
(:mop-direct ql-progress::progress-bar :slot
((:name ql-progress::character-count) (:ordinal 4)
(:initargs (:character-count)) (:readers (ql-progress::character-count))
(:writers ((common-lisp:setf ql-progress::character-count)))))
(:mop-direct ql-progress::progress-bar :slot
((:name ql-progress::characters-so-far) (:ordinal 5)
(:initargs (:characters-so-far)) (:readers (ql-progress::characters-so-far))
(:writers ((common-lisp:setf ql-progress::characters-so-far)))))
(:mop-direct ql-progress::progress-bar :slot
((:name ql-progress::update-interval) (:ordinal 6)
(:initargs (:update-interval)) (:readers (ql-progress::update-interval))
(:writers ((common-lisp:setf ql-progress::update-interval)))))
(:mop-direct ql-progress::progress-bar :slot
((:name ql-progress::last-update-time) (:ordinal 7)
(:initargs (:last-update-time)) (:readers (ql-progress::last-update-time))
(:writers ((common-lisp:setf ql-progress::last-update-time)))))
(:mop-direct ql-progress::progress-bar :slot
((:name ql-progress::total) (:ordinal 8) (:initargs (:total))
(:readers (ql-progress::total))
(:writers ((common-lisp:setf ql-progress::total)))))
(:mop-direct ql-progress::progress-bar :slot
((:name ql-progress::progress) (:ordinal 9) (:initargs (:progress))
(:readers (ql-progress::progress))
(:writers ((common-lisp:setf ql-progress::progress)))))
(:mop-direct ql-progress::progress-bar :slot
((:name ql-progress::pending) (:ordinal 10) (:initargs (:pending))
(:readers (ql-progress::pending))
(:writers ((common-lisp:setf ql-progress::pending)))))
(:mop-direct ql-progress::uncertain-size-progress-bar :superclass
ql-progress::progress-bar)
(:mop-direct ql-progress::uncertain-size-progress-bar :package-name
"QL-PROGRESS")
(:mop-direct ql-progress::uncertain-size-progress-bar :precedance
(ql-progress::progress-bar common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct ql-progress::uncertain-size-progress-bar :classof
common-lisp:standard-class)
(:mop-direct ql-progress::uncertain-size-progress-bar :typeof
common-lisp:standard-class)
(:mop-direct ql-progress::uncertain-size-progress-bar :superclass
ql-progress::progress-bar)
(:mop-direct ql-progress::uncertain-size-progress-bar :slot
((:name ql-progress::progress-char-index) (:ordinal 1)
(:initargs (:progress-char-index))
(:readers (ql-progress::progress-char-index))
(:writers ((common-lisp:setf ql-progress::progress-char-index)))))
(:mop-direct ql-progress::uncertain-size-progress-bar :slot
((:name ql-progress::units-per-char) (:ordinal 2)
(:initargs (:units-per-char)) (:readers (ql-progress::units-per-char))
(:writers ((common-lisp:setf ql-progress::units-per-char)))))
(:mop-direct ql-impl:sbcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:sbcl :package-name "QL-IMPL")
(:mop-direct ql-impl:sbcl :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:sbcl :classof common-lisp:standard-class)
(:mop-direct ql-impl:sbcl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:sbcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:sbcl :prototype #)
(:mop-direct sb-bsd-sockets:host-ent :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:host-ent :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:host-ent :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-bsd-sockets:host-ent :classof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:host-ent :typeof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:host-ent :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:host-ent :slot
((:name sb-bsd-sockets::name) (:ordinal 1) (:initargs (:name))
(:readers (sb-bsd-sockets:host-ent-name))))
(:mop-direct sb-bsd-sockets:host-ent :slot
((:name sb-bsd-sockets::aliases) (:ordinal 2) (:initargs (:aliases))
(:readers (sb-bsd-sockets:host-ent-aliases))))
(:mop-direct sb-bsd-sockets:host-ent :slot
((:name sb-bsd-sockets::address-type) (:ordinal 3) (:initargs (:type))
(:readers (sb-bsd-sockets:host-ent-address-type))))
(:mop-direct sb-bsd-sockets:host-ent :slot
((:name sb-bsd-sockets::addresses) (:ordinal 4) (:initargs (:addresses))
(:readers (sb-bsd-sockets:host-ent-addresses))))
(:mop-direct sb-bsd-sockets:socket :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:inet-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:inet6-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:local-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:socket :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:socket :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-bsd-sockets:socket :classof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:socket :typeof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:socket :superclass common-lisp:standard-object)
(:mop-direct sb-bsd-sockets:socket :slot
((:name sb-bsd-sockets::file-descriptor) (:ordinal 1)
(:initargs (:descriptor)) (:readers (sb-bsd-sockets:socket-file-descriptor))))
(:mop-direct sb-bsd-sockets:socket :slot
((:name sb-bsd-sockets::family) (:ordinal 2)
(:initform (common-lisp:error "No socket family"))
(:readers (sb-bsd-sockets:socket-family))))
(:mop-direct sb-bsd-sockets:socket :slot
((:name sb-bsd-sockets::protocol) (:ordinal 3) (:initargs (:protocol))
(:readers (sb-bsd-sockets:socket-protocol))))
(:mop-direct sb-bsd-sockets:socket :slot
((:name common-lisp:type) (:ordinal 4) (:initargs (:type))
(:readers (sb-bsd-sockets:socket-type))))
(:mop-direct sb-bsd-sockets:socket :slot
((:name common-lisp:stream) (:ordinal 5)))
(:mop-direct sb-bsd-sockets:inet-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:inet-socket :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:inet-socket :precedance
(sb-bsd-sockets:socket common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-bsd-sockets:inet-socket :classof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:inet-socket :typeof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:inet-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:inet-socket :slot
((:name sb-bsd-sockets::family) (:ordinal 1)
(:initform sb-bsd-sockets-internal::af-inet)))
(:mop-direct sb-bsd-sockets:inet6-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:inet6-socket :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:inet6-socket :precedance
(sb-bsd-sockets:socket common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-bsd-sockets:inet6-socket :classof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:inet6-socket :typeof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:inet6-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:inet6-socket :slot
((:name sb-bsd-sockets::family) (:ordinal 1)
(:initform sb-bsd-sockets-internal::af-inet6)))
(:mop-direct sb-bsd-sockets:local-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:local-abstract-socket :superclass
sb-bsd-sockets:local-socket)
(:mop-direct sb-bsd-sockets:local-socket :package-name "SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:local-socket :precedance
(sb-bsd-sockets:socket common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-bsd-sockets:local-socket :classof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:local-socket :typeof common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:local-socket :superclass sb-bsd-sockets:socket)
(:mop-direct sb-bsd-sockets:local-socket :slot
((:name sb-bsd-sockets::family) (:ordinal 1)
(:initform sb-bsd-sockets-internal::af-local)))
(:mop-direct sb-bsd-sockets:local-abstract-socket :superclass
sb-bsd-sockets:local-socket)
(:mop-direct sb-bsd-sockets:local-abstract-socket :package-name
"SB-BSD-SOCKETS")
(:mop-direct sb-bsd-sockets:local-abstract-socket :precedance
(sb-bsd-sockets:local-socket sb-bsd-sockets:socket common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-bsd-sockets:local-abstract-socket :classof
common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:local-abstract-socket :typeof
common-lisp:standard-class)
(:mop-direct sb-bsd-sockets:local-abstract-socket :superclass
sb-bsd-sockets:local-socket)
(:mop-direct sb-posix:termios :superclass common-lisp:standard-object)
(:mop-direct sb-posix:termios :package-name "SB-POSIX")
(:mop-direct sb-posix:termios :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:termios :classof common-lisp:standard-class)
(:mop-direct sb-posix:termios :typeof common-lisp:standard-class)
(:mop-direct sb-posix:termios :superclass common-lisp:standard-object)
(:mop-direct sb-posix:termios :slot
((:name sb-posix::iflag) (:ordinal 1) (:initargs (:iflag))
(:readers (sb-posix:termios-iflag))
(:writers ((common-lisp:setf sb-posix:termios-iflag)))))
(:mop-direct sb-posix:termios :slot
((:name sb-posix::oflag) (:ordinal 2) (:initargs (:oflag))
(:readers (sb-posix:termios-oflag))
(:writers ((common-lisp:setf sb-posix:termios-oflag)))))
(:mop-direct sb-posix:termios :slot
((:name sb-posix::cflag) (:ordinal 3) (:initargs (:cflag))
(:readers (sb-posix:termios-cflag))
(:writers ((common-lisp:setf sb-posix:termios-cflag)))))
(:mop-direct sb-posix:termios :slot
((:name sb-posix::lflag) (:ordinal 4) (:initargs (:lflag))
(:readers (sb-posix:termios-lflag))
(:writers ((common-lisp:setf sb-posix:termios-lflag)))))
(:mop-direct sb-posix:termios :slot
((:name sb-posix::cc) (:ordinal 5) (:initargs (:cc))
(:readers (sb-posix:termios-cc))
(:writers ((common-lisp:setf sb-posix:termios-cc)))))
(:mop-direct sb-posix:stat :superclass common-lisp:standard-object)
(:mop-direct sb-posix:stat :package-name "SB-POSIX")
(:mop-direct sb-posix:stat :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:stat :classof common-lisp:standard-class)
(:mop-direct sb-posix:stat :typeof common-lisp:standard-class)
(:mop-direct sb-posix:stat :superclass common-lisp:standard-object)
(:mop-direct sb-posix:stat :slot
((:name sb-posix::mode) (:ordinal 1) (:initargs (:mode))
(:readers (sb-posix:stat-mode))))
(:mop-direct sb-posix:stat :slot
((:name sb-posix::ino) (:ordinal 2) (:initargs (:ino))
(:readers (sb-posix:stat-ino))))
(:mop-direct sb-posix:stat :slot
((:name sb-posix::dev) (:ordinal 3) (:initargs (:dev))
(:readers (sb-posix:stat-dev))))
(:mop-direct sb-posix:stat :slot
((:name sb-posix::nlink) (:ordinal 4) (:initargs (:nlink))
(:readers (sb-posix:stat-nlink))))
(:mop-direct sb-posix:stat :slot
((:name sb-posix::uid) (:ordinal 5) (:initargs (:uid))
(:readers (sb-posix:stat-uid))))
(:mop-direct sb-posix:stat :slot
((:name sb-posix::gid) (:ordinal 6) (:initargs (:gid))
(:readers (sb-posix:stat-gid))))
(:mop-direct sb-posix:stat :slot
((:name sb-posix::size) (:ordinal 7) (:initargs (:size))
(:readers (sb-posix:stat-size))))
(:mop-direct sb-posix:stat :slot
((:name sb-posix::rdev) (:ordinal 8) (:initargs (:rdev))
(:readers (sb-posix:stat-rdev))))
(:mop-direct sb-posix:stat :slot
((:name sb-posix::atime) (:ordinal 9) (:initargs (:atime))
(:readers (sb-posix:stat-atime))))
(:mop-direct sb-posix:stat :slot
((:name sb-posix::mtime) (:ordinal 10) (:initargs (:mtime))
(:readers (sb-posix:stat-mtime))))
(:mop-direct sb-posix:stat :slot
((:name sb-posix::ctime) (:ordinal 11) (:initargs (:ctime))
(:readers (sb-posix:stat-ctime))))
(:mop-direct sb-posix:timeval :superclass common-lisp:standard-object)
(:mop-direct sb-posix:timeval :package-name "SB-POSIX")
(:mop-direct sb-posix:timeval :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:timeval :classof common-lisp:standard-class)
(:mop-direct sb-posix:timeval :typeof common-lisp:standard-class)
(:mop-direct sb-posix:timeval :superclass common-lisp:standard-object)
(:mop-direct sb-posix:timeval :slot
((:name sb-posix::sec) (:ordinal 1) (:initargs (:tv-sec))
(:readers (sb-posix:timeval-sec))
(:writers ((common-lisp:setf sb-posix:timeval-sec)))))
(:mop-direct sb-posix:timeval :slot
((:name sb-posix::usec) (:ordinal 2) (:initargs (:tv-usec))
(:readers (sb-posix:timeval-usec))
(:writers ((common-lisp:setf sb-posix:timeval-usec)))))
(:mop-direct sb-posix:group :superclass common-lisp:standard-object)
(:mop-direct sb-posix:group :package-name "SB-POSIX")
(:mop-direct sb-posix:group :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:group :classof common-lisp:standard-class)
(:mop-direct sb-posix:group :typeof common-lisp:standard-class)
(:mop-direct sb-posix:group :superclass common-lisp:standard-object)
(:mop-direct sb-posix:group :slot
((:name sb-posix::name) (:ordinal 1) (:initargs (:name))
(:readers (sb-posix:group-name))
(:writers ((common-lisp:setf sb-posix:group-name)))))
(:mop-direct sb-posix:group :slot
((:name sb-posix:passwd) (:ordinal 2) (:initargs (:passwd))
(:readers (sb-posix:group-passwd))
(:writers ((common-lisp:setf sb-posix:group-passwd)))))
(:mop-direct sb-posix:group :slot
((:name sb-posix::gid) (:ordinal 3) (:initargs (:gid))
(:readers (sb-posix:group-gid))
(:writers ((common-lisp:setf sb-posix:group-gid)))))
(:mop-direct sb-posix:passwd :superclass common-lisp:standard-object)
(:mop-direct sb-posix:passwd :package-name "SB-POSIX")
(:mop-direct sb-posix:passwd :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:passwd :classof common-lisp:standard-class)
(:mop-direct sb-posix:passwd :typeof common-lisp:standard-class)
(:mop-direct sb-posix:passwd :superclass common-lisp:standard-object)
(:mop-direct sb-posix:passwd :slot
((:name sb-posix::name) (:ordinal 1) (:initargs (:name))
(:readers (sb-posix:passwd-name))
(:writers ((common-lisp:setf sb-posix:passwd-name)))))
(:mop-direct sb-posix:passwd :slot
((:name sb-posix:passwd) (:ordinal 2) (:initargs (:passwd))
(:readers (sb-posix:passwd-passwd))
(:writers ((common-lisp:setf sb-posix:passwd-passwd)))))
(:mop-direct sb-posix:passwd :slot
((:name sb-posix::uid) (:ordinal 3) (:initargs (:uid))
(:readers (sb-posix:passwd-uid))
(:writers ((common-lisp:setf sb-posix:passwd-uid)))))
(:mop-direct sb-posix:passwd :slot
((:name sb-posix::gid) (:ordinal 4) (:initargs (:gid))
(:readers (sb-posix:passwd-gid))
(:writers ((common-lisp:setf sb-posix:passwd-gid)))))
(:mop-direct sb-posix:passwd :slot
((:name sb-posix::gecos) (:ordinal 5) (:initargs (:gecos))
(:readers (sb-posix:passwd-gecos))
(:writers ((common-lisp:setf sb-posix:passwd-gecos)))))
(:mop-direct sb-posix:passwd :slot
((:name sb-posix::dir) (:ordinal 6) (:initargs (:dir))
(:readers (sb-posix:passwd-dir))
(:writers ((common-lisp:setf sb-posix:passwd-dir)))))
(:mop-direct sb-posix:passwd :slot
((:name sb-posix::shell) (:ordinal 7) (:initargs (:shell))
(:readers (sb-posix:passwd-shell))
(:writers ((common-lisp:setf sb-posix:passwd-shell)))))
(:mop-direct sb-posix:flock :superclass common-lisp:standard-object)
(:mop-direct sb-posix:flock :package-name "SB-POSIX")
(:mop-direct sb-posix:flock :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-posix:flock :classof common-lisp:standard-class)
(:mop-direct sb-posix:flock :typeof common-lisp:standard-class)
(:mop-direct sb-posix:flock :superclass common-lisp:standard-object)
(:mop-direct sb-posix:flock :slot
((:name common-lisp:type) (:ordinal 1) (:initargs (:type))
(:readers (sb-posix:flock-type))
(:writers ((common-lisp:setf sb-posix:flock-type)))))
(:mop-direct sb-posix:flock :slot
((:name sb-posix::whence) (:ordinal 2) (:initargs (:whence))
(:readers (sb-posix:flock-whence))
(:writers ((common-lisp:setf sb-posix:flock-whence)))))
(:mop-direct sb-posix:flock :slot
((:name sb-posix::start) (:ordinal 3) (:initargs (:start))
(:readers (sb-posix:flock-start))
(:writers ((common-lisp:setf sb-posix:flock-start)))))
(:mop-direct sb-posix:flock :slot
((:name sb-posix::len) (:ordinal 4) (:initargs (:len))
(:readers (sb-posix:flock-len))
(:writers ((common-lisp:setf sb-posix:flock-len)))))
(:mop-direct sb-posix:flock :slot
((:name sb-posix::pid) (:ordinal 5) (:initform 0)
(:readers (sb-posix:flock-pid))))
(:mop-direct ql-impl:mkcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:mkcl :package-name "QL-IMPL")
(:mop-direct ql-impl:mkcl :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:mkcl :classof common-lisp:standard-class)
(:mop-direct ql-impl:mkcl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:mkcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ecl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ecl :package-name "QL-IMPL")
(:mop-direct ql-impl:ecl :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:ecl :classof common-lisp:standard-class)
(:mop-direct ql-impl:ecl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:ecl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lispworks :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lispworks :package-name "QL-IMPL")
(:mop-direct ql-impl:lispworks :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:lispworks :classof common-lisp:standard-class)
(:mop-direct ql-impl:lispworks :typeof common-lisp:standard-class)
(:mop-direct ql-impl:lispworks :superclass common-lisp:standard-object)
(:mop-direct ql-impl:scl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:scl :package-name "QL-IMPL")
(:mop-direct ql-impl:scl :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:scl :classof common-lisp:standard-class)
(:mop-direct ql-impl:scl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:scl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:cmucl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:cmucl :package-name "QL-IMPL")
(:mop-direct ql-impl:cmucl :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:cmucl :classof common-lisp:standard-class)
(:mop-direct ql-impl:cmucl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:cmucl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:cmucl :prototype #)
(:mop-direct ql-impl:clisp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:clisp :package-name "QL-IMPL")
(:mop-direct ql-impl:clisp :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:clisp :classof common-lisp:standard-class)
(:mop-direct ql-impl:clisp :typeof common-lisp:standard-class)
(:mop-direct ql-impl:clisp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:clasp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:clasp :package-name "QL-IMPL")
(:mop-direct ql-impl:clasp :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:clasp :classof common-lisp:standard-class)
(:mop-direct ql-impl:clasp :typeof common-lisp:standard-class)
(:mop-direct ql-impl:clasp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ccl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:ccl :package-name "QL-IMPL")
(:mop-direct ql-impl:ccl :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:ccl :classof common-lisp:standard-class)
(:mop-direct ql-impl:ccl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:ccl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:abcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:abcl :package-name "QL-IMPL")
(:mop-direct ql-impl:abcl :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:abcl :classof common-lisp:standard-class)
(:mop-direct ql-impl:abcl :typeof common-lisp:standard-class)
(:mop-direct ql-impl:abcl :superclass common-lisp:standard-object)
(:mop-direct ql-impl:allegro :superclass common-lisp:standard-object)
(:mop-direct ql-impl:allegro :package-name "QL-IMPL")
(:mop-direct ql-impl:allegro :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:allegro :classof common-lisp:standard-class)
(:mop-direct ql-impl:allegro :typeof common-lisp:standard-class)
(:mop-direct ql-impl:allegro :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lisp :superclass common-lisp:standard-object)
(:mop-direct ql-impl:lisp :package-name "QL-IMPL")
(:mop-direct ql-impl:lisp :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-impl:lisp :classof common-lisp:standard-class)
(:mop-direct ql-impl:lisp :typeof common-lisp:standard-class)
(:mop-direct ql-impl:lisp :superclass common-lisp:standard-object)
(:mop-direct asdf/plan:plan :superclass common-lisp:standard-object)
(:mop-direct asdf/plan:plan-traversal :superclass asdf/plan:plan)
(:mop-direct asdf/plan:plan :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:plan :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/plan:plan :classof common-lisp:standard-class)
(:mop-direct asdf/plan:plan :typeof common-lisp:standard-class)
(:mop-direct asdf/plan:plan :superclass common-lisp:standard-object)
(:mop-direct asdf/plan:plan-traversal :superclass asdf/plan:plan)
(:mop-direct asdf/plan:sequential-plan :superclass asdf/plan:plan-traversal)
(:mop-direct asdf/plan:plan-traversal :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:plan-traversal :precedance
(asdf/plan:plan common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/plan:plan-traversal :classof common-lisp:standard-class)
(:mop-direct asdf/plan:plan-traversal :typeof common-lisp:standard-class)
(:mop-direct asdf/plan:plan-traversal :superclass asdf/plan:plan)
(:mop-direct asdf/plan:plan-traversal :slot
((:name asdf/system:system) (:ordinal 1) (:initargs (:system))
(:readers (asdf/plan:plan-system))
(:writers ((common-lisp:setf asdf/plan:plan-system)))))
(:mop-direct asdf/plan:plan-traversal :slot
((:name asdf/plan:forced) (:ordinal 2) (:initargs (:force))
(:readers (asdf/plan::plan-forced))
(:writers ((common-lisp:setf asdf/plan::plan-forced)))))
(:mop-direct asdf/plan:plan-traversal :slot
((:name asdf/plan:forced-not) (:ordinal 3) (:initargs (:force-not))
(:readers (asdf/plan::plan-forced-not))
(:writers ((common-lisp:setf asdf/plan::plan-forced-not)))))
(:mop-direct asdf/plan:plan-traversal :slot
((:name asdf/plan:total-action-count) (:ordinal 4) (:initform 0)
(:readers (asdf/plan::plan-total-action-count))
(:writers ((common-lisp:setf asdf/plan::plan-total-action-count)))))
(:mop-direct asdf/plan:plan-traversal :slot
((:name asdf/plan:planned-action-count) (:ordinal 5) (:initform 0)
(:readers (asdf/plan::plan-planned-action-count))
(:writers ((common-lisp:setf asdf/plan::plan-planned-action-count)))))
(:mop-direct asdf/plan:plan-traversal :slot
((:name asdf/plan:planned-output-action-count) (:ordinal 6) (:initform 0)
(:readers (asdf/plan::plan-planned-output-action-count))
(:writers ((common-lisp:setf asdf/plan::plan-planned-output-action-count)))))
(:mop-direct asdf/plan:plan-traversal :slot
((:name asdf/plan:visited-actions) (:ordinal 7)
(:initform (common-lisp:make-hash-table :test 'common-lisp:equal))
(:readers (asdf/plan::plan-visited-actions))
(:writers ((common-lisp:setf asdf/plan::plan-visited-actions)))))
(:mop-direct asdf/plan:plan-traversal :slot
((:name asdf/plan:visiting-action-set) (:ordinal 8)
(:initform (common-lisp:make-hash-table :test 'common-lisp:equal))
(:readers (asdf/plan::plan-visiting-action-set))
(:writers ((common-lisp:setf asdf/plan::plan-visiting-action-set)))))
(:mop-direct asdf/plan:plan-traversal :slot
((:name asdf/plan:visiting-action-list) (:ordinal 9)
(:readers (asdf/plan::plan-visiting-action-list))
(:writers ((common-lisp:setf asdf/plan::plan-visiting-action-list)))))
(:mop-direct asdf/plan:sequential-plan :superclass asdf/plan:plan-traversal)
(:mop-direct asdf/plan:filtered-sequential-plan :superclass
asdf/plan:sequential-plan)
(:mop-direct asdf/plan:sequential-plan :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:sequential-plan :precedance
(asdf/plan:plan-traversal asdf/plan:plan common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/plan:sequential-plan :classof common-lisp:standard-class)
(:mop-direct asdf/plan:sequential-plan :typeof common-lisp:standard-class)
(:mop-direct asdf/plan:sequential-plan :superclass asdf/plan:plan-traversal)
(:mop-direct asdf/plan:sequential-plan :slot
((:name asdf/plan::actions-r) (:ordinal 1)
(:readers (asdf/plan:plan-actions-r))
(:writers ((common-lisp:setf asdf/plan:plan-actions-r)))))
(:mop-direct asdf/plan:filtered-sequential-plan :superclass
asdf/plan:sequential-plan)
(:mop-direct asdf/plan:filtered-sequential-plan :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:filtered-sequential-plan :precedance
(asdf/plan:sequential-plan asdf/plan:plan-traversal asdf/plan:plan
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/plan:filtered-sequential-plan :classof
common-lisp:standard-class)
(:mop-direct asdf/plan:filtered-sequential-plan :typeof
common-lisp:standard-class)
(:mop-direct asdf/plan:filtered-sequential-plan :superclass
asdf/plan:sequential-plan)
(:mop-direct asdf/plan:filtered-sequential-plan :slot
((:name asdf/plan::action-filter) (:ordinal 1) (:initform common-lisp:t)
(:initargs (:action-filter)) (:readers (asdf/plan:plan-action-filter))))
(:mop-direct asdf/plan:filtered-sequential-plan :slot
((:name asdf/plan::component-type) (:ordinal 2) (:initform common-lisp:t)
(:initargs (:component-type)) (:readers (asdf/plan:plan-component-type))))
(:mop-direct asdf/plan:filtered-sequential-plan :slot
((:name asdf/plan::keep-operation) (:ordinal 3) (:initform common-lisp:t)
(:initargs (:keep-operation)) (:readers (asdf/plan:plan-keep-operation))))
(:mop-direct asdf/plan:filtered-sequential-plan :slot
((:name asdf/plan::keep-component) (:ordinal 4) (:initform common-lisp:t)
(:initargs (:keep-component)) (:readers (asdf/plan:plan-keep-component))))
(:mop-direct asdf/plan:filtered-sequential-plan :prototype
#)
(:mop-direct asdf/plan:sequential-plan :prototype
#)
(:mop-direct asdf/plan:plan-traversal :prototype
#)
(:mop-direct asdf/action:action-status :superclass common-lisp:standard-object)
(:mop-direct asdf/plan:planned-action-status :superclass
asdf/action:action-status)
(:mop-direct asdf/action:action-status :package-name "ASDF/ACTION")
(:mop-direct asdf/action:action-status :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/action:action-status :classof common-lisp:standard-class)
(:mop-direct asdf/action:action-status :typeof common-lisp:standard-class)
(:mop-direct asdf/action:action-status :superclass common-lisp:standard-object)
(:mop-direct asdf/action:action-status :slot
((:name asdf/action:stamp) (:ordinal 1) (:initargs (:stamp))
(:readers (asdf/action:action-stamp))))
(:mop-direct asdf/action:action-status :slot
((:name asdf/action:done-p) (:ordinal 2) (:initargs (:done-p))
(:readers (asdf/action:action-done-p))))
(:mop-direct asdf/plan:planned-action-status :superclass
asdf/action:action-status)
(:mop-direct asdf/plan:planned-action-status :package-name "ASDF/PLAN")
(:mop-direct asdf/plan:planned-action-status :precedance
(asdf/action:action-status common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/plan:planned-action-status :classof
common-lisp:standard-class)
(:mop-direct asdf/plan:planned-action-status :typeof common-lisp:standard-class)
(:mop-direct asdf/plan:planned-action-status :superclass
asdf/action:action-status)
(:mop-direct asdf/plan:planned-action-status :slot
((:name asdf/plan:planned-p) (:ordinal 1) (:initargs (:planned-p))
(:readers (asdf/plan:action-planned-p))))
(:mop-direct asdf/plan:planned-action-status :slot
((:name asdf/plan:index) (:ordinal 2) (:initargs (:index))
(:readers (asdf/plan:action-index))))
(:mop-direct asdf/plan:planned-action-status :prototype
(:mop-direct asdf/operation:operation :superclass common-lisp:standard-object)
(:mop-direct asdf/bundle:monolithic-op :superclass asdf/operation:operation)
(:mop-direct asdf/lisp-action:basic-compile-op :superclass
asdf/operation:operation)
(:mop-direct asdf/lisp-action:basic-load-op :superclass
asdf/operation:operation)
(:mop-direct asdf/action:non-propagating-operation :superclass
asdf/operation:operation)
(:mop-direct asdf/action:selfward-operation :superclass
asdf/operation:operation)
(:mop-direct asdf/action:sideway-operation :superclass asdf/operation:operation)
(:mop-direct asdf/action:upward-operation :superclass asdf/operation:operation)
(:mop-direct asdf/action:downward-operation :superclass
asdf/operation:operation)
(:mop-direct asdf/operation:operation :package-name "ASDF/OPERATION")
(:mop-direct asdf/operation:operation :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/operation:operation :classof common-lisp:standard-class)
(:mop-direct asdf/operation:operation :typeof common-lisp:standard-class)
(:mop-direct asdf/operation:operation :superclass common-lisp:standard-object)
(:mop-direct asdf/operation:operation :slot
((:name asdf/operation:original-initargs) (:ordinal 1)
(:initargs (:original-initargs))
(:readers (asdf/operation:operation-original-initargs))
(:writers ((common-lisp:setf asdf/operation:operation-original-initargs)))))
(:mop-direct asdf/bundle:monolithic-op :superclass asdf/operation:operation)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass
asdf/bundle:monolithic-op)
(:mop-direct asdf/bundle:monolithic-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-op :precedance
(asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-op :superclass asdf/operation:operation)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass
asdf/bundle:monolithic-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-bundle-op :precedance
(asdf/bundle:monolithic-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass
asdf/bundle:monolithic-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :slot
((:name asdf/bundle:prologue-code) (:ordinal 1)
(:readers (asdf/bundle:prologue-code))
(:writers ((common-lisp:setf asdf/bundle:prologue-code)))))
(:mop-direct asdf/bundle:monolithic-bundle-op :slot
((:name asdf/bundle:epilogue-code) (:ordinal 2)
(:readers (asdf/bundle:epilogue-code))
(:writers ((common-lisp:setf asdf/bundle:epilogue-code)))))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:precedance
(asdf/concatenate-source::basic-concatenate-source-op
asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:non-propagating-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:image-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:image-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:image-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :image)))
(:mop-direct asdf/bundle:image-op :slot
((:name asdf/action:selfward-operation) (:ordinal 2) (:allocation :class)
(:initform '(asdf/lisp-action:load-op))))
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-op :precedance
(asdf/bundle:image-op asdf/bundle:monolithic-bundle-op
asdf/bundle:monolithic-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:program-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :program)))
(:mop-direct asdf/bundle:program-op :prototype #)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-load-bundle-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/bundle:load-bundle-op asdf/lisp-action:basic-load-op
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/bundle:monolithic-compile-bundle-op)))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :package-name
"ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:basic-compile-bundle-op asdf/bundle::gather-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:non-propagating-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :slot
((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
(:initform 'asdf/bundle:compile-bundle-op)))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/bundle:deliver-asd-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:monolithic-compile-bundle-op))))
(:mop-direct asdf/lisp-action:basic-compile-op :superclass
asdf/operation:operation)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:superclass asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:bundle-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:basic-compile-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:basic-compile-op :precedance
(asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/lisp-action:basic-compile-op :classof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:basic-compile-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:basic-compile-op :superclass
asdf/operation:operation)
(:mop-direct asdf/lisp-action:basic-compile-op :slot
((:name asdf/lisp-action::proclamations) (:ordinal 1)
(:initargs (:proclamations))
(:readers (asdf/lisp-action:compile-op-proclamations))
(:writers ((common-lisp:setf asdf/lisp-action:compile-op-proclamations)))))
(:mop-direct asdf/lisp-action:basic-compile-op :slot
((:name asdf/lisp-action:flags) (:ordinal 2) (:initargs (:flags))
(:readers (asdf/lisp-action:compile-op-flags))
(:writers ((common-lisp:setf asdf/lisp-action:compile-op-flags)))))
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:superclass asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:precedance
(asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:superclass asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:precedance
(asdf/concatenate-source::basic-compile-concatenated-source-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/concatenate-source:monolithic-concatenate-source-op)))
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :precedance
(asdf/concatenate-source::basic-compile-concatenated-source-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform
'(asdf/lisp-action:prepare-op
asdf/concatenate-source:concatenate-source-op))))
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:prototype #)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:deliver-asd-op :precedance
(asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:deliver-asd-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:deliver-asd-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:deliver-asd-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:compile-bundle-op))))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/bundle:deliver-asd-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:monolithic-compile-bundle-op))))
(:mop-direct asdf/bundle:deliver-asd-op :prototype
#)
(:mop-direct asdf/bundle:bundle-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :superclass
asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:basic-compile-bundle-op :superclass
asdf/bundle:bundle-op)
(:mop-direct asdf/bundle::gather-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle::link-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:bundle-op :precedance
(asdf/lisp-action:basic-compile-op asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:bundle-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:bundle-op :slot
((:name asdf/bundle:build-args) (:ordinal 1) (:initargs (:args))
(:readers (asdf/bundle::extra-build-args))
(:writers ((common-lisp:setf asdf/bundle::extra-build-args)))))
(:mop-direct asdf/bundle:bundle-op :slot
((:name asdf/bundle:name-suffix) (:ordinal 2) (:initargs (:name-suffix))))
(:mop-direct asdf/bundle:bundle-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 3) (:initform :no-output-file)
(:readers (asdf/bundle:bundle-type))))
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :superclass
asdf/bundle:bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :package-name
"ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :precedance
(asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :superclass
asdf/bundle:bundle-op)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform "lisp")))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:precedance
(asdf/concatenate-source::basic-concatenate-source-op
asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:non-propagating-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:concatenate-source-op :package-name
"ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:concatenate-source-op :precedance
(asdf/concatenate-source::basic-concatenate-source-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:concatenate-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:concatenate-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source::basic-concatenate-source-op :prototype
#)
(:mop-direct asdf/bundle:basic-compile-bundle-op :superclass
asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:basic-compile-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:basic-compile-bundle-op :precedance
(asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:basic-compile-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:basic-compile-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:basic-compile-bundle-op :superclass
asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:basic-compile-bundle-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :fasl)))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :package-name
"ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:basic-compile-bundle-op asdf/bundle::gather-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:non-propagating-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :slot
((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
(:initform 'asdf/bundle:compile-bundle-op)))
(:mop-direct asdf/bundle:compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:compile-bundle-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:compile-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:compile-bundle-op :precedance
(asdf/bundle:basic-compile-bundle-op asdf/action:selfward-operation
asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:compile-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:compile-bundle-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:prepare-bundle-op))))
(:mop-direct asdf/bundle:basic-compile-bundle-op :prototype
#)
(:mop-direct asdf/bundle::gather-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle::gather-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:compile-bundle-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle::gather-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle::gather-op :precedance
(asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle::gather-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle::gather-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle::gather-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle::gather-op :slot
((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
(:readers (asdf/bundle::gather-op))))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :package-name
"ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:basic-compile-bundle-op asdf/bundle::gather-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:non-propagating-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :slot
((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
(:initform 'asdf/bundle:compile-bundle-op)))
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:dll-op :precedance
(asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:dll-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:dll-op :prototype #)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:compile-bundle-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:compile-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:compile-bundle-op :precedance
(asdf/bundle:basic-compile-bundle-op asdf/action:selfward-operation
asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:compile-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:compile-bundle-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:prepare-bundle-op))))
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:lib-op :precedance
(asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:lib-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :lib)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :prototype #)
(:mop-direct asdf/bundle::gather-op :prototype #)
(:mop-direct asdf/bundle::link-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle::link-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle::link-op :precedance
(asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle::link-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle::link-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle::link-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:dll-op :precedance
(asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:dll-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:dll-op :prototype #)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:lib-op :precedance
(asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:lib-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :lib)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :prototype #)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass
asdf/bundle:monolithic-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-bundle-op :precedance
(asdf/bundle:monolithic-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-bundle-op :superclass asdf/bundle:bundle-op)
(:mop-direct asdf/bundle:monolithic-bundle-op :slot
((:name asdf/bundle:prologue-code) (:ordinal 1)
(:readers (asdf/bundle:prologue-code))
(:writers ((common-lisp:setf asdf/bundle:prologue-code)))))
(:mop-direct asdf/bundle:monolithic-bundle-op :slot
((:name asdf/bundle:epilogue-code) (:ordinal 2)
(:readers (asdf/bundle:epilogue-code))
(:writers ((common-lisp:setf asdf/bundle:epilogue-code)))))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:precedance
(asdf/concatenate-source::basic-concatenate-source-op
asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:non-propagating-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:image-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:image-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:image-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :image)))
(:mop-direct asdf/bundle:image-op :slot
((:name asdf/action:selfward-operation) (:ordinal 2) (:allocation :class)
(:initform '(asdf/lisp-action:load-op))))
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-op :precedance
(asdf/bundle:image-op asdf/bundle:monolithic-bundle-op
asdf/bundle:monolithic-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:program-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :program)))
(:mop-direct asdf/bundle:program-op :prototype #)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-load-bundle-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/bundle:load-bundle-op asdf/lisp-action:basic-load-op
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/bundle:monolithic-compile-bundle-op)))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :package-name
"ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:basic-compile-bundle-op asdf/bundle::gather-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:non-propagating-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :slot
((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
(:initform 'asdf/bundle:compile-bundle-op)))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/bundle:deliver-asd-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:monolithic-compile-bundle-op))))
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:compile-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:compile-op :precedance
(asdf/lisp-action:basic-compile-op asdf/action:downward-operation
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:compile-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:compile-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:prepare-op)))
(:mop-direct asdf/lisp-action:compile-op :prototype
#)
(:mop-direct asdf/lisp-action:basic-load-op :superclass
asdf/operation:operation)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:superclass asdf/lisp-action:basic-load-op)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:superclass asdf/lisp-action:basic-load-op)
(:mop-direct asdf/bundle:load-bundle-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:basic-load-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:basic-load-op :precedance
(asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/lisp-action:basic-load-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:basic-load-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:basic-load-op :superclass
asdf/operation:operation)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:superclass asdf/lisp-action:basic-load-op)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:precedance
(asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op :classof
common-lisp:standard-class)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op :typeof
common-lisp:standard-class)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:superclass asdf/lisp-action:basic-load-op)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:precedance
(asdf/concatenate-source::basic-load-compiled-concatenated-source-op
asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:typeof common-lisp:standard-class)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform
'asdf/concatenate-source:monolithic-compile-concatenated-source-op)))
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:precedance
(asdf/concatenate-source::basic-load-compiled-concatenated-source-op
asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform
'(asdf/lisp-action:prepare-op
asdf/concatenate-source:compile-concatenated-source-op))))
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op :prototype
#)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:superclass asdf/lisp-action:basic-load-op)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:precedance
(asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:superclass asdf/lisp-action:basic-load-op)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:precedance
(asdf/concatenate-source::basic-load-concatenated-source-op
asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/concatenate-source:monolithic-concatenate-source-op)))
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :package-name
"ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :precedance
(asdf/concatenate-source::basic-load-concatenated-source-op
asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform
'(asdf/lisp-action:prepare-op
asdf/concatenate-source:concatenate-source-op))))
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:prototype #)
(:mop-direct asdf/bundle:load-bundle-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/bundle:load-bundle-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:load-bundle-op :precedance
(asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:load-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:load-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:load-bundle-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/bundle:load-bundle-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:prepare-bundle-op asdf/bundle:compile-bundle-op))))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-load-bundle-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/bundle:load-bundle-op asdf/lisp-action:basic-load-op
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/bundle:monolithic-compile-bundle-op)))
(:mop-direct asdf/bundle:load-bundle-op :prototype
#)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-source-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-source-op :precedance
(asdf/lisp-action:basic-load-op asdf/action:downward-operation
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:prepare-source-op)))
(:mop-direct asdf/lisp-action:load-source-op :prototype
#)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-op :precedance
(asdf/lisp-action:basic-load-op asdf/action:downward-operation
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/lisp-action:prepare-op asdf/lisp-action:compile-op))))
(:mop-direct asdf/lisp-action:load-op :prototype #)
(:mop-direct asdf/action:non-propagating-operation :superclass
asdf/operation:operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/operate:build-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/action:non-propagating-operation :package-name "ASDF/ACTION")
(:mop-direct asdf/action:non-propagating-operation :precedance
(asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/action:non-propagating-operation :classof
common-lisp:standard-class)
(:mop-direct asdf/action:non-propagating-operation :typeof
common-lisp:standard-class)
(:mop-direct asdf/action:non-propagating-operation :superclass
asdf/operation:operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:precedance
(asdf/concatenate-source::basic-concatenate-source-op
asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:non-propagating-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-concatenate-source-op
:superclass asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
asdf/concatenate-source::basic-concatenate-source-op)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/concatenate-source:concatenate-source-op :package-name
"ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:concatenate-source-op :precedance
(asdf/concatenate-source::basic-concatenate-source-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:concatenate-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:concatenate-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:concatenate-source-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/bundle::gather-op)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :package-name
"ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:basic-compile-bundle-op asdf/bundle::gather-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:non-propagating-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-compile-bundle-op :slot
((:name asdf/bundle::gather-op) (:ordinal 1) (:allocation :class)
(:initform 'asdf/bundle:compile-bundle-op)))
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:dll-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:dll-op :precedance
(asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:dll-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-dll-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-dll-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:dll-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-dll-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-dll-op :superclass asdf/bundle:dll-op)
(:mop-direct asdf/bundle:monolithic-dll-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :dll)))
(:mop-direct asdf/bundle:dll-op :prototype #)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::link-op)
(:mop-direct asdf/bundle:lib-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:lib-op :precedance
(asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:lib-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :lib)))
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/bundle:monolithic-lib-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-lib-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op asdf/bundle:lib-op
asdf/bundle::link-op asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:non-propagating-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-lib-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-lib-op :superclass asdf/bundle:lib-op)
(:mop-direct asdf/bundle:lib-op :prototype #)
(:mop-direct asdf/operate:build-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/operate:build-op :package-name "ASDF/OPERATE")
(:mop-direct asdf/operate:build-op :precedance
(asdf/action:non-propagating-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/operate:build-op :classof common-lisp:standard-class)
(:mop-direct asdf/operate:build-op :typeof common-lisp:standard-class)
(:mop-direct asdf/operate:build-op :superclass
asdf/action:non-propagating-operation)
(:mop-direct asdf/operate:build-op :prototype #)
(:mop-direct asdf/action:selfward-operation :superclass
asdf/operation:operation)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:image-op :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:load-bundle-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:test-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/action:selfward-operation :package-name "ASDF/ACTION")
(:mop-direct asdf/action:selfward-operation :precedance
(asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/action:selfward-operation :classof common-lisp:standard-class)
(:mop-direct asdf/action:selfward-operation :typeof common-lisp:standard-class)
(:mop-direct asdf/action:selfward-operation :superclass
asdf/operation:operation)
(:mop-direct asdf/action:selfward-operation :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:type (common-lisp:or asdf/action::operation-designator common-lisp:list))
(:readers (asdf/action:selfward-operation))))
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:superclass asdf/lisp-action:basic-load-op)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:precedance
(asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op :classof
common-lisp:standard-class)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op :typeof
common-lisp:standard-class)
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:precedance
(asdf/concatenate-source::basic-load-compiled-concatenated-source-op
asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:typeof common-lisp:standard-class)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct
asdf/concatenate-source:monolithic-load-compiled-concatenated-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform
'asdf/concatenate-source:monolithic-compile-concatenated-source-op)))
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:precedance
(asdf/concatenate-source::basic-load-compiled-concatenated-source-op
asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op
:superclass
asdf/concatenate-source::basic-load-compiled-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-compiled-concatenated-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform
'(asdf/lisp-action:prepare-op
asdf/concatenate-source:compile-concatenated-source-op))))
(:mop-direct
asdf/concatenate-source::basic-load-compiled-concatenated-source-op :prototype
#)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:superclass asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:precedance
(asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:precedance
(asdf/concatenate-source::basic-compile-concatenated-source-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:superclass asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-compile-concatenated-source-op
:slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/concatenate-source:monolithic-concatenate-source-op)))
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :precedance
(asdf/concatenate-source::basic-compile-concatenated-source-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :superclass
asdf/concatenate-source::basic-compile-concatenated-source-op)
(:mop-direct asdf/concatenate-source:compile-concatenated-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform
'(asdf/lisp-action:prepare-op
asdf/concatenate-source:concatenate-source-op))))
(:mop-direct asdf/concatenate-source::basic-compile-concatenated-source-op
:prototype #)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:superclass asdf/lisp-action:basic-load-op)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:precedance
(asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:superclass asdf/action:selfward-operation)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:package-name "ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:precedance
(asdf/concatenate-source::basic-load-concatenated-source-op
asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:classof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:typeof common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:superclass asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:monolithic-load-concatenated-source-op
:slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/concatenate-source:monolithic-concatenate-source-op)))
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :package-name
"ASDF/CONCATENATE-SOURCE")
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :precedance
(asdf/concatenate-source::basic-load-concatenated-source-op
asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :superclass
asdf/concatenate-source::basic-load-concatenated-source-op)
(:mop-direct asdf/concatenate-source:load-concatenated-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform
'(asdf/lisp-action:prepare-op
asdf/concatenate-source:concatenate-source-op))))
(:mop-direct asdf/concatenate-source::basic-load-concatenated-source-op
:prototype #)
(:mop-direct asdf/bundle:image-op :superclass asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:image-op :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:image-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:image-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:image-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:image-op :superclass asdf/action:selfward-operation)
(:mop-direct asdf/bundle:image-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :image)))
(:mop-direct asdf/bundle:image-op :slot
((:name asdf/action:selfward-operation) (:ordinal 2) (:allocation :class)
(:initform '(asdf/lisp-action:load-op))))
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-op :precedance
(asdf/bundle:image-op asdf/bundle:monolithic-bundle-op
asdf/bundle:monolithic-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:program-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-op :superclass asdf/bundle:image-op)
(:mop-direct asdf/bundle:program-op :slot
((:name asdf/bundle:bundle-type) (:ordinal 1) (:initform :program)))
(:mop-direct asdf/bundle:program-op :prototype #)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:deliver-asd-op :precedance
(asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:deliver-asd-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:deliver-asd-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:deliver-asd-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:deliver-asd-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:compile-bundle-op))))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/bundle:deliver-asd-op
asdf/lisp-action:basic-compile-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :superclass
asdf/bundle:deliver-asd-op)
(:mop-direct asdf/bundle:monolithic-deliver-asd-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:monolithic-compile-bundle-op))))
(:mop-direct asdf/bundle:deliver-asd-op :prototype
#)
(:mop-direct asdf/bundle:load-bundle-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/bundle:load-bundle-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:load-bundle-op :precedance
(asdf/lisp-action:basic-load-op asdf/action:selfward-operation
asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:load-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:load-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:load-bundle-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:load-bundle-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:prepare-bundle-op asdf/bundle:compile-bundle-op))))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:monolithic-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:monolithic-load-bundle-op :precedance
(asdf/bundle:monolithic-bundle-op asdf/bundle:monolithic-op
asdf/bundle:bundle-op asdf/lisp-action:basic-compile-op
asdf/bundle:load-bundle-op asdf/lisp-action:basic-load-op
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:monolithic-load-bundle-op :classof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :superclass
asdf/bundle:load-bundle-op)
(:mop-direct asdf/bundle:monolithic-load-bundle-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/bundle:monolithic-compile-bundle-op)))
(:mop-direct asdf/bundle:load-bundle-op :prototype
#)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
asdf/bundle:basic-compile-bundle-op)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:compile-bundle-op :superclass asdf/bundle::gather-op)
(:mop-direct asdf/bundle:compile-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:compile-bundle-op :precedance
(asdf/bundle:basic-compile-bundle-op asdf/action:selfward-operation
asdf/bundle::gather-op asdf/bundle:bundle-op
asdf/lisp-action:basic-compile-op asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/bundle:compile-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:compile-bundle-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/bundle:compile-bundle-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/bundle:prepare-bundle-op))))
(:mop-direct asdf/lisp-action:test-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:test-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:test-op :precedance
(asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:test-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:test-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:test-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:test-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:load-op)))
(:mop-direct asdf/lisp-action:test-op :prototype #)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-source-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-source-op :precedance
(asdf/lisp-action:basic-load-op asdf/action:downward-operation
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:prepare-source-op)))
(:mop-direct asdf/lisp-action:load-source-op :prototype
#)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:compile-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:compile-op :precedance
(asdf/lisp-action:basic-compile-op asdf/action:downward-operation
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:compile-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:compile-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:prepare-op)))
(:mop-direct asdf/lisp-action:compile-op :prototype
#)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-op :precedance
(asdf/lisp-action:basic-load-op asdf/action:downward-operation
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/lisp-action:prepare-op asdf/lisp-action:compile-op))))
(:mop-direct asdf/lisp-action:load-op :prototype #)
(:mop-direct asdf/action:selfward-operation :prototype
#)
(:mop-direct asdf/action:sideway-operation :superclass asdf/operation:operation)
(:mop-direct asdf/bundle:prepare-bundle-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/action:sideway-operation :package-name "ASDF/ACTION")
(:mop-direct asdf/action:sideway-operation :precedance
(asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/action:sideway-operation :classof common-lisp:standard-class)
(:mop-direct asdf/action:sideway-operation :typeof common-lisp:standard-class)
(:mop-direct asdf/action:sideway-operation :superclass asdf/operation:operation)
(:mop-direct asdf/action:sideway-operation :slot
((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
(:type asdf/action::operation-designator)
(:readers (asdf/action:sideway-operation))))
(:mop-direct asdf/bundle:prepare-bundle-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/bundle:prepare-bundle-op :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:prepare-bundle-op :precedance
(asdf/action:sideway-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:prepare-bundle-op :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:prepare-bundle-op :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:prepare-bundle-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/bundle:prepare-bundle-op :slot
((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:load-op)))
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :package-name
"ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:prepare-source-op :precedance
(asdf/action:upward-operation asdf/action:sideway-operation
asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/lisp-action:prepare-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :slot
((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:load-source-op)))
(:mop-direct asdf/lisp-action:prepare-source-op :prototype
#)
(:mop-direct asdf/lisp-action:prepare-op :superclass
asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:prepare-op :precedance
(asdf/action:upward-operation asdf/action:sideway-operation
asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/lisp-action:prepare-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-op :slot
((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:load-op)))
(:mop-direct asdf/lisp-action:prepare-op :prototype
#)
(:mop-direct asdf/action:upward-operation :superclass asdf/operation:operation)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-op :superclass
asdf/action:upward-operation)
(:mop-direct asdf/action:upward-operation :package-name "ASDF/ACTION")
(:mop-direct asdf/action:upward-operation :precedance
(asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/action:upward-operation :classof common-lisp:standard-class)
(:mop-direct asdf/action:upward-operation :typeof common-lisp:standard-class)
(:mop-direct asdf/action:upward-operation :superclass asdf/operation:operation)
(:mop-direct asdf/action:upward-operation :slot
((:name asdf/action:upward-operation) (:ordinal 1) (:allocation :class)
(:type asdf/action::operation-designator)
(:readers (asdf/action:upward-operation))))
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :package-name
"ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:prepare-source-op :precedance
(asdf/action:upward-operation asdf/action:sideway-operation
asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/lisp-action:prepare-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-source-op :typeof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-source-op :superclass
asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-source-op :slot
((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:load-source-op)))
(:mop-direct asdf/lisp-action:prepare-source-op :prototype
#)
(:mop-direct asdf/lisp-action:prepare-op :superclass
asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-op :superclass
asdf/action:sideway-operation)
(:mop-direct asdf/lisp-action:prepare-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:prepare-op :precedance
(asdf/action:upward-operation asdf/action:sideway-operation
asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/lisp-action:prepare-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:prepare-op :superclass
asdf/action:upward-operation)
(:mop-direct asdf/lisp-action:prepare-op :slot
((:name asdf/action:sideway-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:load-op)))
(:mop-direct asdf/lisp-action:prepare-op :prototype
#)
(:mop-direct asdf/action:upward-operation :prototype
#)
(:mop-direct asdf/action:downward-operation :superclass
asdf/operation:operation)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/action:downward-operation :package-name "ASDF/ACTION")
(:mop-direct asdf/action:downward-operation :precedance
(asdf/operation:operation common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/action:downward-operation :classof common-lisp:standard-class)
(:mop-direct asdf/action:downward-operation :typeof common-lisp:standard-class)
(:mop-direct asdf/action:downward-operation :superclass
asdf/operation:operation)
(:mop-direct asdf/action:downward-operation :slot
((:name asdf/action:downward-operation) (:ordinal 1) (:allocation :class)
(:type asdf/action::operation-designator)
(:readers (asdf/action:downward-operation))))
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-source-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-source-op :precedance
(asdf/lisp-action:basic-load-op asdf/action:downward-operation
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-source-op :classof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-source-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-source-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:prepare-source-op)))
(:mop-direct asdf/lisp-action:load-source-op :prototype
#)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/lisp-action:basic-compile-op)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:compile-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:compile-op :precedance
(asdf/lisp-action:basic-compile-op asdf/action:downward-operation
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:compile-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:compile-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:compile-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform 'asdf/lisp-action:prepare-op)))
(:mop-direct asdf/lisp-action:compile-op :prototype
#)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/lisp-action:basic-load-op)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/action:selfward-operation)
(:mop-direct asdf/lisp-action:load-op :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:load-op :precedance
(asdf/lisp-action:basic-load-op asdf/action:downward-operation
asdf/action:selfward-operation asdf/operation:operation
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:load-op :classof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:load-op :superclass
asdf/action:downward-operation)
(:mop-direct asdf/lisp-action:load-op :slot
((:name asdf/action:selfward-operation) (:ordinal 1) (:allocation :class)
(:initform '(asdf/lisp-action:prepare-op asdf/lisp-action:compile-op))))
(:mop-direct asdf/lisp-action:load-op :prototype #)
(:mop-direct asdf/action:downward-operation :prototype
#)
(:mop-direct asdf/operation:operation :prototype #)
(:mop-direct asdf/system:proto-system :superclass common-lisp:standard-object)
(:mop-direct asdf/system:system :superclass asdf/system:proto-system)
(:mop-direct asdf/system:proto-system :package-name "ASDF/SYSTEM")
(:mop-direct asdf/system:proto-system :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/system:proto-system :classof common-lisp:standard-class)
(:mop-direct asdf/system:proto-system :typeof common-lisp:standard-class)
(:mop-direct asdf/system:proto-system :superclass common-lisp:standard-object)
(:mop-direct asdf/system:proto-system :slot
((:name asdf/component:name) (:ordinal 1)))
(:mop-direct asdf/system:proto-system :slot
((:name asdf/component:source-file) (:ordinal 2)))
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/system:system :superclass asdf/system:proto-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/system:system :package-name "ASDF/SYSTEM")
(:mop-direct asdf/system:system :precedance
(asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/system:system :classof common-lisp:standard-class)
(:mop-direct asdf/system:system :typeof common-lisp:standard-class)
(:mop-direct asdf/system:system :superclass asdf/system:proto-system)
(:mop-direct asdf/system:system :slot
((:name asdf/component:description) (:ordinal 1)
(:readers (asdf/system:system-description))
(:writers ((common-lisp:setf asdf/system:system-description)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:long-description) (:ordinal 2)
(:readers (asdf/system:system-long-description))
(:writers ((common-lisp:setf asdf/system:system-long-description)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:author) (:ordinal 3) (:initargs (:author))
(:readers (asdf/system:system-author))
(:writers ((common-lisp:setf asdf/system:system-author)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:maintainer) (:ordinal 4) (:initargs (:maintainer))
(:readers (asdf/system:system-maintainer))
(:writers ((common-lisp:setf asdf/system:system-maintainer)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:licence) (:ordinal 5) (:initargs (:license :licence))
(:readers (asdf/system:system-license asdf/system:system-licence))
(:writers
((common-lisp:setf asdf/system:system-license)
(common-lisp:setf asdf/system:system-licence)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:homepage) (:ordinal 6) (:initargs (:homepage))
(:readers (asdf/system:system-homepage))
(:writers ((common-lisp:setf asdf/system:system-homepage)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:bug-tracker) (:ordinal 7) (:initargs (:bug-tracker))
(:readers (asdf/system:system-bug-tracker))
(:writers ((common-lisp:setf asdf/system:system-bug-tracker)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:mailto) (:ordinal 8) (:initargs (:mailto))
(:readers (asdf/system:system-mailto))
(:writers ((common-lisp:setf asdf/system:system-mailto)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:long-name) (:ordinal 9) (:initargs (:long-name))
(:readers (asdf/system:system-long-name))
(:writers ((common-lisp:setf asdf/system:system-long-name)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:source-control) (:ordinal 10)
(:initargs (:source-control)) (:readers (asdf/system:system-source-control))
(:writers ((common-lisp:setf asdf/system:system-source-control)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:builtin-system-p) (:ordinal 11)
(:initargs (:builtin-system-p)) (:readers (asdf/system:builtin-system-p))
(:writers ((common-lisp:setf asdf/system:builtin-system-p)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:build-pathname) (:ordinal 12)
(:initargs (:build-pathname))
(:readers (asdf/system:component-build-pathname))
(:writers ((common-lisp:setf asdf/system:component-build-pathname)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:entry-point) (:ordinal 13) (:initargs (:entry-point))
(:readers (asdf/system:component-entry-point))
(:writers ((common-lisp:setf asdf/system:component-entry-point)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:source-file) (:ordinal 14) (:initargs (:source-file))
(:readers (asdf/system:system-source-file))
(:writers ((common-lisp:setf asdf/system:system-source-file)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:defsystem-depends-on) (:ordinal 15)
(:initargs (:defsystem-depends-on))
(:readers (asdf/system:system-defsystem-depends-on))))
(:mop-direct asdf/system:system :slot
((:name asdf/system::depends-on) (:ordinal 16)
(:readers (asdf/system:system-depends-on))))
(:mop-direct asdf/system:system :slot
((:name asdf/system::weakly-depends-on) (:ordinal 17)
(:readers (asdf/system:system-weakly-depends-on))))
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :package-name
"ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-inferred-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-inferred-system :classof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :typeof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-system :package-name
"ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-system :precedance
(asdf/package-inferred-system:package-inferred-system asdf/system:system
asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-system :classof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :typeof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :superclass
asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:prebuilt-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:prebuilt-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :slot
((:name asdf/system:build-pathname) (:ordinal 1)
(:initargs (:lib :static-library))
(:readers (asdf/bundle::prebuilt-system-static-library))
(:writers ((common-lisp:setf asdf/bundle::prebuilt-system-static-library)))))
(:mop-direct asdf/bundle:prebuilt-system :prototype
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:precompiled-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:precompiled-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :slot
((:name asdf/system:build-pathname) (:ordinal 1) (:initargs (:fasl))))
(:mop-direct asdf/bundle:precompiled-system :prototype
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:program-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle:prologue-code) (:ordinal 1) (:initargs (:prologue-code))
(:readers (asdf/bundle:prologue-code))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle:epilogue-code) (:ordinal 2) (:initargs (:epilogue-code))
(:readers (asdf/bundle:epilogue-code))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::no-uiop) (:ordinal 3) (:initargs (:no-uiop))
(:readers (asdf/bundle::no-uiop))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::prefix-lisp-object-files) (:ordinal 4)
(:initargs (:prefix-lisp-object-files))
(:readers (asdf/bundle::prefix-lisp-object-files))
(:writers ((common-lisp:setf asdf/bundle::prefix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::postfix-lisp-object-files) (:ordinal 5)
(:initargs (:postfix-lisp-object-files))
(:readers (asdf/bundle::postfix-lisp-object-files))
(:writers ((common-lisp:setf asdf/bundle::postfix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::extra-object-files) (:ordinal 6)
(:initargs (:extra-object-files))
(:readers (asdf/bundle::extra-object-files))
(:writers ((common-lisp:setf asdf/bundle::extra-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::extra-build-args) (:ordinal 7)
(:initargs (:extra-build-args)) (:readers (asdf/bundle::extra-build-args))
(:writers ((common-lisp:setf asdf/bundle::extra-build-args)))))
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :package-name "ASDF/OPERATE")
(:mop-direct asdf/operate:require-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/operate:require-system :classof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :typeof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :slot
((:name asdf/component:module) (:ordinal 1) (:initargs (:module))
(:readers (asdf/operate::required-module))
(:writers ((common-lisp:setf asdf/operate::required-module)))))
(:mop-direct asdf/operate:require-system :prototype
(:mop-direct asdf/system:proto-system :prototype
#)
(:mop-direct asdf/component:component :superclass common-lisp:standard-object)
(:mop-direct asdf/component:parent-component :superclass
asdf/component:component)
(:mop-direct asdf/component:child-component :superclass
asdf/component:component)
(:mop-direct asdf/component:component :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:component :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:component :classof common-lisp:standard-class)
(:mop-direct asdf/component:component :typeof common-lisp:standard-class)
(:mop-direct asdf/component:component :superclass common-lisp:standard-object)
(:mop-direct asdf/component:component :slot
((:name asdf/component:name) (:ordinal 1) (:type common-lisp:string)
(:initargs (:name)) (:readers (asdf/component:component-name))
(:writers ((common-lisp:setf asdf/component:component-name)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:version) (:ordinal 2) (:initargs (:version))
(:readers (asdf/component:component-version))
(:writers ((common-lisp:setf asdf/component:component-version)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:description) (:ordinal 3) (:initargs (:description))
(:readers (asdf/component:component-description))
(:writers ((common-lisp:setf asdf/component:component-description)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:long-description) (:ordinal 4)
(:initargs (:long-description))
(:readers (asdf/component:component-long-description))
(:writers ((common-lisp:setf asdf/component:component-long-description)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:sideway-dependencies) (:ordinal 5)
(:readers (asdf/component:component-sideway-dependencies))
(:writers
((common-lisp:setf asdf/component:component-sideway-dependencies)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:if-feature) (:ordinal 6) (:initargs (:if-feature))
(:readers (asdf/component:component-if-feature))
(:writers ((common-lisp:setf asdf/component:component-if-feature)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:in-order-to) (:ordinal 7) (:initargs (:in-order-to))
(:readers (asdf/component:component-in-order-to))
(:writers ((common-lisp:setf asdf/component:component-in-order-to)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:inline-methods) (:ordinal 8)
(:readers (asdf/component:component-inline-methods))
(:writers ((common-lisp:setf asdf/component:component-inline-methods)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:relative-pathname) (:ordinal 9)
(:initargs (:pathname))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:absolute-pathname) (:ordinal 10)))
(:mop-direct asdf/component:component :slot
((:name asdf/component:operation-times) (:ordinal 11)
(:initform (common-lisp:make-hash-table))
(:readers (asdf/component:component-operation-times))
(:writers ((common-lisp:setf asdf/component:component-operation-times)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:around-compile) (:ordinal 12)
(:initargs (:around-compile))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:properties) (:ordinal 13) (:initargs (:properties))
(:readers (asdf/component:component-properties))
(:writers ((common-lisp:setf asdf/component:component-properties)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:%encoding) (:ordinal 14) (:initargs (:encoding))
(:readers (asdf/component::%component-encoding))
(:writers ((common-lisp:setf asdf/component::%component-encoding)))))
(:mop-direct asdf/component:component :slot
((:name asdf/component:parent) (:ordinal 15) (:initargs (:parent))
(:readers (asdf/component:component-parent))))
(:mop-direct asdf/component:component :slot
((:name asdf/component::build-operation) (:ordinal 16)
(:initargs (:build-operation))
(:readers (asdf/component:component-build-operation))))
(:mop-direct asdf/component:parent-component :superclass
asdf/component:component)
(:mop-direct asdf/component:module :superclass asdf/component:parent-component)
(:mop-direct asdf/component:parent-component :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:parent-component :precedance
(asdf/component:component common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/component:parent-component :classof
common-lisp:standard-class)
(:mop-direct asdf/component:parent-component :typeof common-lisp:standard-class)
(:mop-direct asdf/component:parent-component :superclass
asdf/component:component)
(:mop-direct asdf/component:parent-component :slot
((:name asdf/component:children) (:ordinal 1) (:initargs (:components))
(:readers
(asdf/component:component-children asdf/component:module-components))
(:writers ((common-lisp:setf asdf/component:component-children)))))
(:mop-direct asdf/component:parent-component :slot
((:name asdf/component:children-by-name) (:ordinal 2)
(:readers
(asdf/component:component-children-by-name
asdf/component::module-components-by-name))
(:writers ((common-lisp:setf asdf/component:component-children-by-name)))))
(:mop-direct asdf/component:parent-component :slot
((:name asdf/component:default-component-class) (:ordinal 3)
(:initargs (:default-component-class))
(:readers (asdf/component:module-default-component-class))
(:writers
((common-lisp:setf asdf/component:module-default-component-class)))))
(:mop-direct asdf/component:module :superclass asdf/component:child-component)
(:mop-direct asdf/component:module :superclass asdf/component:parent-component)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/component:module :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:module :precedance
(asdf/component:child-component asdf/component:parent-component
asdf/component:component common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/component:module :classof common-lisp:standard-class)
(:mop-direct asdf/component:module :typeof common-lisp:standard-class)
(:mop-direct asdf/component:module :superclass asdf/component:parent-component)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/system:system :superclass asdf/system:proto-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/system:system :package-name "ASDF/SYSTEM")
(:mop-direct asdf/system:system :precedance
(asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/system:system :classof common-lisp:standard-class)
(:mop-direct asdf/system:system :typeof common-lisp:standard-class)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/system:system :slot
((:name asdf/component:description) (:ordinal 1)
(:readers (asdf/system:system-description))
(:writers ((common-lisp:setf asdf/system:system-description)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:long-description) (:ordinal 2)
(:readers (asdf/system:system-long-description))
(:writers ((common-lisp:setf asdf/system:system-long-description)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:author) (:ordinal 3) (:initargs (:author))
(:readers (asdf/system:system-author))
(:writers ((common-lisp:setf asdf/system:system-author)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:maintainer) (:ordinal 4) (:initargs (:maintainer))
(:readers (asdf/system:system-maintainer))
(:writers ((common-lisp:setf asdf/system:system-maintainer)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:licence) (:ordinal 5) (:initargs (:license :licence))
(:readers (asdf/system:system-license asdf/system:system-licence))
(:writers
((common-lisp:setf asdf/system:system-license)
(common-lisp:setf asdf/system:system-licence)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:homepage) (:ordinal 6) (:initargs (:homepage))
(:readers (asdf/system:system-homepage))
(:writers ((common-lisp:setf asdf/system:system-homepage)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:bug-tracker) (:ordinal 7) (:initargs (:bug-tracker))
(:readers (asdf/system:system-bug-tracker))
(:writers ((common-lisp:setf asdf/system:system-bug-tracker)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:mailto) (:ordinal 8) (:initargs (:mailto))
(:readers (asdf/system:system-mailto))
(:writers ((common-lisp:setf asdf/system:system-mailto)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:long-name) (:ordinal 9) (:initargs (:long-name))
(:readers (asdf/system:system-long-name))
(:writers ((common-lisp:setf asdf/system:system-long-name)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:source-control) (:ordinal 10)
(:initargs (:source-control)) (:readers (asdf/system:system-source-control))
(:writers ((common-lisp:setf asdf/system:system-source-control)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:builtin-system-p) (:ordinal 11)
(:initargs (:builtin-system-p)) (:readers (asdf/system:builtin-system-p))
(:writers ((common-lisp:setf asdf/system:builtin-system-p)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:build-pathname) (:ordinal 12)
(:initargs (:build-pathname))
(:readers (asdf/system:component-build-pathname))
(:writers ((common-lisp:setf asdf/system:component-build-pathname)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:entry-point) (:ordinal 13) (:initargs (:entry-point))
(:readers (asdf/system:component-entry-point))
(:writers ((common-lisp:setf asdf/system:component-entry-point)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:source-file) (:ordinal 14) (:initargs (:source-file))
(:readers (asdf/system:system-source-file))
(:writers ((common-lisp:setf asdf/system:system-source-file)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:defsystem-depends-on) (:ordinal 15)
(:initargs (:defsystem-depends-on))
(:readers (asdf/system:system-defsystem-depends-on))))
(:mop-direct asdf/system:system :slot
((:name asdf/system::depends-on) (:ordinal 16)
(:readers (asdf/system:system-depends-on))))
(:mop-direct asdf/system:system :slot
((:name asdf/system::weakly-depends-on) (:ordinal 17)
(:readers (asdf/system:system-weakly-depends-on))))
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :package-name
"ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-inferred-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-inferred-system :classof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :typeof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-system :package-name
"ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-system :precedance
(asdf/package-inferred-system:package-inferred-system asdf/system:system
asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-system :classof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :typeof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :superclass
asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:prebuilt-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:prebuilt-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :slot
((:name asdf/system:build-pathname) (:ordinal 1)
(:initargs (:lib :static-library))
(:readers (asdf/bundle::prebuilt-system-static-library))
(:writers ((common-lisp:setf asdf/bundle::prebuilt-system-static-library)))))
(:mop-direct asdf/bundle:prebuilt-system :prototype
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:precompiled-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:precompiled-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :slot
((:name asdf/system:build-pathname) (:ordinal 1) (:initargs (:fasl))))
(:mop-direct asdf/bundle:precompiled-system :prototype
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:program-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle:prologue-code) (:ordinal 1) (:initargs (:prologue-code))
(:readers (asdf/bundle:prologue-code))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle:epilogue-code) (:ordinal 2) (:initargs (:epilogue-code))
(:readers (asdf/bundle:epilogue-code))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::no-uiop) (:ordinal 3) (:initargs (:no-uiop))
(:readers (asdf/bundle::no-uiop))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::prefix-lisp-object-files) (:ordinal 4)
(:initargs (:prefix-lisp-object-files))
(:readers (asdf/bundle::prefix-lisp-object-files))
(:writers ((common-lisp:setf asdf/bundle::prefix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::postfix-lisp-object-files) (:ordinal 5)
(:initargs (:postfix-lisp-object-files))
(:readers (asdf/bundle::postfix-lisp-object-files))
(:writers ((common-lisp:setf asdf/bundle::postfix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::extra-object-files) (:ordinal 6)
(:initargs (:extra-object-files))
(:readers (asdf/bundle::extra-object-files))
(:writers ((common-lisp:setf asdf/bundle::extra-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::extra-build-args) (:ordinal 7)
(:initargs (:extra-build-args)) (:readers (asdf/bundle::extra-build-args))
(:writers ((common-lisp:setf asdf/bundle::extra-build-args)))))
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :package-name "ASDF/OPERATE")
(:mop-direct asdf/operate:require-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/operate:require-system :classof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :typeof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :slot
((:name asdf/component:module) (:ordinal 1) (:initargs (:module))
(:readers (asdf/operate::required-module))
(:writers ((common-lisp:setf asdf/operate::required-module)))))
(:mop-direct asdf/operate:require-system :prototype
(:mop-direct asdf/component:parent-component :prototype
(:mop-direct asdf/component:child-component :superclass
asdf/component:component)
(:mop-direct asdf/component:module :superclass asdf/component:child-component)
(:mop-direct asdf/component:file-component :superclass
asdf/component:child-component)
(:mop-direct asdf/component:child-component :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:child-component :precedance
(asdf/component:component common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/component:child-component :classof common-lisp:standard-class)
(:mop-direct asdf/component:child-component :typeof common-lisp:standard-class)
(:mop-direct asdf/component:child-component :superclass
asdf/component:component)
(:mop-direct asdf/component:module :superclass asdf/component:child-component)
(:mop-direct asdf/component:module :superclass asdf/component:parent-component)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/component:module :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:module :precedance
(asdf/component:child-component asdf/component:parent-component
asdf/component:component common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/component:module :classof common-lisp:standard-class)
(:mop-direct asdf/component:module :typeof common-lisp:standard-class)
(:mop-direct asdf/component:module :superclass asdf/component:child-component)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/system:system :superclass asdf/system:proto-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/system:system :package-name "ASDF/SYSTEM")
(:mop-direct asdf/system:system :precedance
(asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/system:system :classof common-lisp:standard-class)
(:mop-direct asdf/system:system :typeof common-lisp:standard-class)
(:mop-direct asdf/system:system :superclass asdf/component:module)
(:mop-direct asdf/system:system :slot
((:name asdf/component:description) (:ordinal 1)
(:readers (asdf/system:system-description))
(:writers ((common-lisp:setf asdf/system:system-description)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:long-description) (:ordinal 2)
(:readers (asdf/system:system-long-description))
(:writers ((common-lisp:setf asdf/system:system-long-description)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:author) (:ordinal 3) (:initargs (:author))
(:readers (asdf/system:system-author))
(:writers ((common-lisp:setf asdf/system:system-author)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:maintainer) (:ordinal 4) (:initargs (:maintainer))
(:readers (asdf/system:system-maintainer))
(:writers ((common-lisp:setf asdf/system:system-maintainer)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:licence) (:ordinal 5) (:initargs (:license :licence))
(:readers (asdf/system:system-license asdf/system:system-licence))
(:writers
((common-lisp:setf asdf/system:system-license)
(common-lisp:setf asdf/system:system-licence)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:homepage) (:ordinal 6) (:initargs (:homepage))
(:readers (asdf/system:system-homepage))
(:writers ((common-lisp:setf asdf/system:system-homepage)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:bug-tracker) (:ordinal 7) (:initargs (:bug-tracker))
(:readers (asdf/system:system-bug-tracker))
(:writers ((common-lisp:setf asdf/system:system-bug-tracker)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:mailto) (:ordinal 8) (:initargs (:mailto))
(:readers (asdf/system:system-mailto))
(:writers ((common-lisp:setf asdf/system:system-mailto)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:long-name) (:ordinal 9) (:initargs (:long-name))
(:readers (asdf/system:system-long-name))
(:writers ((common-lisp:setf asdf/system:system-long-name)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:source-control) (:ordinal 10)
(:initargs (:source-control)) (:readers (asdf/system:system-source-control))
(:writers ((common-lisp:setf asdf/system:system-source-control)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:builtin-system-p) (:ordinal 11)
(:initargs (:builtin-system-p)) (:readers (asdf/system:builtin-system-p))
(:writers ((common-lisp:setf asdf/system:builtin-system-p)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:build-pathname) (:ordinal 12)
(:initargs (:build-pathname))
(:readers (asdf/system:component-build-pathname))
(:writers ((common-lisp:setf asdf/system:component-build-pathname)))))
(:mop-direct asdf/system:system :slot
((:name asdf/system:entry-point) (:ordinal 13) (:initargs (:entry-point))
(:readers (asdf/system:component-entry-point))
(:writers ((common-lisp:setf asdf/system:component-entry-point)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:source-file) (:ordinal 14) (:initargs (:source-file))
(:readers (asdf/system:system-source-file))
(:writers ((common-lisp:setf asdf/system:system-source-file)))))
(:mop-direct asdf/system:system :slot
((:name asdf/component:defsystem-depends-on) (:ordinal 15)
(:initargs (:defsystem-depends-on))
(:readers (asdf/system:system-defsystem-depends-on))))
(:mop-direct asdf/system:system :slot
((:name asdf/system::depends-on) (:ordinal 16)
(:readers (asdf/system:system-depends-on))))
(:mop-direct asdf/system:system :slot
((:name asdf/system::weakly-depends-on) (:ordinal 17)
(:readers (asdf/system:system-weakly-depends-on))))
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-inferred-system :package-name
"ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-inferred-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-inferred-system :classof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :typeof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-inferred-system :superclass
asdf/system:system)
(:mop-direct asdf/package-inferred-system:package-system :superclass
asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/package-inferred-system:package-system :package-name
"ASDF/PACKAGE-INFERRED-SYSTEM")
(:mop-direct asdf/package-inferred-system:package-system :precedance
(asdf/package-inferred-system:package-inferred-system asdf/system:system
asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/package-inferred-system:package-system :classof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :typeof
common-lisp:standard-class)
(:mop-direct asdf/package-inferred-system:package-system :superclass
asdf/package-inferred-system:package-inferred-system)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:prebuilt-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:prebuilt-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:prebuilt-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:prebuilt-system :slot
((:name asdf/system:build-pathname) (:ordinal 1)
(:initargs (:lib :static-library))
(:readers (asdf/bundle::prebuilt-system-static-library))
(:writers ((common-lisp:setf asdf/bundle::prebuilt-system-static-library)))))
(:mop-direct asdf/bundle:prebuilt-system :prototype
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:precompiled-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:precompiled-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:precompiled-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:precompiled-system :slot
((:name asdf/system:build-pathname) (:ordinal 1) (:initargs (:fasl))))
(:mop-direct asdf/bundle:precompiled-system :prototype
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:program-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:program-system :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:program-system :superclass asdf/system:system)
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle:prologue-code) (:ordinal 1) (:initargs (:prologue-code))
(:readers (asdf/bundle:prologue-code))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle:epilogue-code) (:ordinal 2) (:initargs (:epilogue-code))
(:readers (asdf/bundle:epilogue-code))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::no-uiop) (:ordinal 3) (:initargs (:no-uiop))
(:readers (asdf/bundle::no-uiop))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::prefix-lisp-object-files) (:ordinal 4)
(:initargs (:prefix-lisp-object-files))
(:readers (asdf/bundle::prefix-lisp-object-files))
(:writers ((common-lisp:setf asdf/bundle::prefix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::postfix-lisp-object-files) (:ordinal 5)
(:initargs (:postfix-lisp-object-files))
(:readers (asdf/bundle::postfix-lisp-object-files))
(:writers ((common-lisp:setf asdf/bundle::postfix-lisp-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::extra-object-files) (:ordinal 6)
(:initargs (:extra-object-files))
(:readers (asdf/bundle::extra-object-files))
(:writers ((common-lisp:setf asdf/bundle::extra-object-files)))))
(:mop-direct asdf/bundle:program-system :slot
((:name asdf/bundle::extra-build-args) (:ordinal 7)
(:initargs (:extra-build-args)) (:readers (asdf/bundle::extra-build-args))
(:writers ((common-lisp:setf asdf/bundle::extra-build-args)))))
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :package-name "ASDF/OPERATE")
(:mop-direct asdf/operate:require-system :precedance
(asdf/system:system asdf/component:module asdf/component:child-component
asdf/component:parent-component asdf/component:component
asdf/system:proto-system common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/operate:require-system :classof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :typeof common-lisp:standard-class)
(:mop-direct asdf/operate:require-system :superclass asdf/system:system)
(:mop-direct asdf/operate:require-system :slot
((:name asdf/component:module) (:ordinal 1) (:initargs (:module))
(:readers (asdf/operate::required-module))
(:writers ((common-lisp:setf asdf/operate::required-module)))))
(:mop-direct asdf/operate:require-system :prototype
(:mop-direct asdf/component:file-component :superclass
asdf/component:child-component)
(:mop-direct asdf/bundle:compiled-file :superclass
asdf/component:file-component)
(:mop-direct asdf/component:source-file :superclass
asdf/component:file-component)
(:mop-direct asdf/component:file-component :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:file-component :precedance
(asdf/component:child-component asdf/component:component
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:file-component :classof common-lisp:standard-class)
(:mop-direct asdf/component:file-component :typeof common-lisp:standard-class)
(:mop-direct asdf/component:file-component :superclass
asdf/component:child-component)
(:mop-direct asdf/component:file-component :slot
((:name common-lisp:type) (:ordinal 1) (:initargs (:type))
(:readers (asdf/component:file-type))
(:writers ((common-lisp:setf asdf/component:file-type)))))
(:mop-direct asdf/bundle:compiled-file :superclass
asdf/component:file-component)
(:mop-direct asdf/bundle:compiled-file :package-name "ASDF/BUNDLE")
(:mop-direct asdf/bundle:compiled-file :precedance
(asdf/component:file-component asdf/component:child-component
asdf/component:component common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/bundle:compiled-file :classof common-lisp:standard-class)
(:mop-direct asdf/bundle:compiled-file :typeof common-lisp:standard-class)
(:mop-direct asdf/bundle:compiled-file :superclass
asdf/component:file-component)
(:mop-direct asdf/bundle:compiled-file :slot
((:name common-lisp:type) (:ordinal 1)
(:initform (uiop/lisp-build:compile-file-type))))
(:mop-direct asdf/component:source-file :superclass
asdf/component:file-component)
(:mop-direct asdf/lisp-action:cl-source-file :superclass
asdf/component:source-file)
(:mop-direct asdf/component:static-file :superclass asdf/component:source-file)
(:mop-direct asdf/component:java-source-file :superclass
asdf/component:source-file)
(:mop-direct asdf/component:c-source-file :superclass
asdf/component:source-file)
(:mop-direct asdf/component:source-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:source-file :precedance
(asdf/component:file-component asdf/component:child-component
asdf/component:component common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/component:source-file :classof common-lisp:standard-class)
(:mop-direct asdf/component:source-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:source-file :superclass
asdf/component:file-component)
(:mop-direct asdf/component:source-file :slot
((:name common-lisp:type) (:ordinal 1)
(:readers (asdf/component:source-file-explicit-type))
(:writers ((common-lisp:setf asdf/component:source-file-explicit-type)))))
(:mop-direct asdf/lisp-action:cl-source-file :superclass
asdf/component:source-file)
(:mop-direct asdf/lisp-action:cl-source-file.lsp :superclass
asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file.cl :superclass
asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file :package-name "ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:cl-source-file :precedance
(asdf/component:source-file asdf/component:file-component
asdf/component:child-component asdf/component:component
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/lisp-action:cl-source-file :classof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file :typeof common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file :superclass
asdf/component:source-file)
(:mop-direct asdf/lisp-action:cl-source-file :slot
((:name common-lisp:type) (:ordinal 1) (:initform "lisp")))
(:mop-direct asdf/lisp-action:cl-source-file.lsp :superclass
asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file.lsp :package-name
"ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:cl-source-file.lsp :precedance
(asdf/lisp-action:cl-source-file asdf/component:source-file
asdf/component:file-component asdf/component:child-component
asdf/component:component common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/lisp-action:cl-source-file.lsp :classof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file.lsp :typeof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file.lsp :superclass
asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file.lsp :slot
((:name common-lisp:type) (:ordinal 1) (:initform "lsp")))
(:mop-direct asdf/lisp-action:cl-source-file.cl :superclass
asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file.cl :package-name
"ASDF/LISP-ACTION")
(:mop-direct asdf/lisp-action:cl-source-file.cl :precedance
(asdf/lisp-action:cl-source-file asdf/component:source-file
asdf/component:file-component asdf/component:child-component
asdf/component:component common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/lisp-action:cl-source-file.cl :classof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file.cl :typeof
common-lisp:standard-class)
(:mop-direct asdf/lisp-action:cl-source-file.cl :superclass
asdf/lisp-action:cl-source-file)
(:mop-direct asdf/lisp-action:cl-source-file.cl :slot
((:name common-lisp:type) (:ordinal 1) (:initform "cl")))
(:mop-direct asdf/lisp-action:cl-source-file :prototype
(:mop-direct asdf/component:static-file :superclass asdf/component:source-file)
(:mop-direct asdf/component:doc-file :superclass asdf/component:static-file)
(:mop-direct asdf/component:static-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:static-file :precedance
(asdf/component:source-file asdf/component:file-component
asdf/component:child-component asdf/component:component
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:static-file :classof common-lisp:standard-class)
(:mop-direct asdf/component:static-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:static-file :superclass asdf/component:source-file)
(:mop-direct asdf/component:static-file :slot
((:name common-lisp:type) (:ordinal 1)))
(:mop-direct asdf/component:doc-file :superclass asdf/component:static-file)
(:mop-direct asdf/component:html-file :superclass asdf/component:doc-file)
(:mop-direct asdf/component:doc-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:doc-file :precedance
(asdf/component:static-file asdf/component:source-file
asdf/component:file-component asdf/component:child-component
asdf/component:component common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/component:doc-file :classof common-lisp:standard-class)
(:mop-direct asdf/component:doc-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:doc-file :superclass asdf/component:static-file)
(:mop-direct asdf/component:html-file :superclass asdf/component:doc-file)
(:mop-direct asdf/component:html-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:html-file :precedance
(asdf/component:doc-file asdf/component:static-file asdf/component:source-file
asdf/component:file-component asdf/component:child-component
asdf/component:component common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct asdf/component:html-file :classof common-lisp:standard-class)
(:mop-direct asdf/component:html-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:html-file :superclass asdf/component:doc-file)
(:mop-direct asdf/component:html-file :slot
((:name common-lisp:type) (:ordinal 1) (:initform "html")))
(:mop-direct asdf/component:java-source-file :superclass
asdf/component:source-file)
(:mop-direct asdf/component:java-source-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:java-source-file :precedance
(asdf/component:source-file asdf/component:file-component
asdf/component:child-component asdf/component:component
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:java-source-file :classof
common-lisp:standard-class)
(:mop-direct asdf/component:java-source-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:java-source-file :superclass
asdf/component:source-file)
(:mop-direct asdf/component:java-source-file :slot
((:name common-lisp:type) (:ordinal 1) (:initform "java")))
(:mop-direct asdf/component:c-source-file :superclass
asdf/component:source-file)
(:mop-direct asdf/component:c-source-file :package-name "ASDF/COMPONENT")
(:mop-direct asdf/component:c-source-file :precedance
(asdf/component:source-file asdf/component:file-component
asdf/component:child-component asdf/component:component
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct asdf/component:c-source-file :classof common-lisp:standard-class)
(:mop-direct asdf/component:c-source-file :typeof common-lisp:standard-class)
(:mop-direct asdf/component:c-source-file :superclass
asdf/component:source-file)
(:mop-direct asdf/component:c-source-file :slot
((:name common-lisp:type) (:ordinal 1) (:initform "c")))
(:mop-direct asdf/component:file-component :prototype
(:mop-direct asdf/component:child-component :prototype
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:standard-object)
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:stream)
(:mop-direct sb-gray:fundamental-binary-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-character-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-output-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-input-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-stream :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:stream
common-lisp:t))
(:mop-direct sb-gray:fundamental-stream :classof common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-stream :typeof common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-stream :superclass common-lisp:standard-object)
(:mop-direct sb-gray:fundamental-stream :slot
((:name sb-gray::open-p) (:ordinal 1) (:initform common-lisp:t)
(:readers (sb-gray::stream-open-p))
(:writers ((common-lisp:setf sb-gray::stream-open-p)))))
(:mop-direct sb-gray:fundamental-binary-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-stream :precedance
(sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-output-stream :precedance
(sb-gray:fundamental-output-stream sb-gray:fundamental-binary-stream
sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-output-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-input-stream :precedance
(sb-gray:fundamental-input-stream sb-gray:fundamental-binary-stream
sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-input-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-character-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-stream :precedance
(sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :package-name
"SB-GRAY")
(:mop-direct sb-gray:fundamental-character-output-stream :precedance
(sb-gray:fundamental-output-stream sb-gray:fundamental-character-stream
sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-output-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-input-stream :precedance
(sb-gray:fundamental-input-stream sb-gray:fundamental-character-stream
sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-input-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-stream :prototype
#)
(:mop-direct sb-gray:fundamental-output-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-output-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-output-stream :precedance
(sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-output-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-output-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-output-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-output-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-output-stream :precedance
(sb-gray:fundamental-output-stream sb-gray:fundamental-binary-stream
sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-output-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-output-stream :superclass
sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-output-stream :package-name
"SB-GRAY")
(:mop-direct sb-gray:fundamental-character-output-stream :precedance
(sb-gray:fundamental-output-stream sb-gray:fundamental-character-stream
sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-output-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-output-stream :superclass
sb-gray:fundamental-output-stream)
(:mop-direct sb-gray:fundamental-output-stream :prototype
#)
(:mop-direct sb-gray:fundamental-input-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-input-stream :precedance
(sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-input-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-input-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-input-stream :superclass
sb-gray:fundamental-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
sb-gray:fundamental-binary-stream)
(:mop-direct sb-gray:fundamental-binary-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-binary-input-stream :precedance
(sb-gray:fundamental-input-stream sb-gray:fundamental-binary-stream
sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-binary-input-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-binary-input-stream :superclass
sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
sb-gray:fundamental-character-stream)
(:mop-direct sb-gray:fundamental-character-input-stream :package-name "SB-GRAY")
(:mop-direct sb-gray:fundamental-character-input-stream :precedance
(sb-gray:fundamental-input-stream sb-gray:fundamental-character-stream
sb-gray:fundamental-stream common-lisp:standard-object sb-pcl::slot-object
common-lisp:stream common-lisp:t))
(:mop-direct sb-gray:fundamental-character-input-stream :classof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :typeof
common-lisp:standard-class)
(:mop-direct sb-gray:fundamental-character-input-stream :superclass
sb-gray:fundamental-input-stream)
(:mop-direct sb-gray:fundamental-input-stream :prototype
#)
(:mop-direct sb-gray:fundamental-stream :prototype
#)
(:mop-direct sb-pcl::plist-mixin :superclass common-lisp:standard-object)
(:mop-direct sb-pcl::dependent-update-mixin :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:standard-method :superclass sb-pcl::plist-mixin)
(:mop-direct sb-pcl::plist-mixin :package-name "SB-PCL")
(:mop-direct sb-pcl::plist-mixin :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::plist-mixin :classof common-lisp:standard-class)
(:mop-direct sb-pcl::plist-mixin :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::plist-mixin :superclass common-lisp:standard-object)
(:mop-direct sb-pcl::plist-mixin :slot
((:name sb-pcl::plist) (:ordinal 1) (:initargs (sb-pcl::plist))
(:readers (sb-pcl::object-plist))
(:writers ((common-lisp:setf sb-pcl::object-plist)))))
(:mop-direct sb-pcl::dependent-update-mixin :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::dependent-update-mixin)
(:mop-direct sb-pcl::dependent-update-mixin :package-name "SB-PCL")
(:mop-direct sb-pcl::dependent-update-mixin :precedance
(sb-pcl::plist-mixin common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::dependent-update-mixin :classof common-lisp:standard-class)
(:mop-direct sb-pcl::dependent-update-mixin :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::dependent-update-mixin :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::standard-specializer)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct common-lisp:class :package-name "COMMON-LISP")
(:mop-direct common-lisp:class :precedance
(sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:class :classof common-lisp:standard-class)
(:mop-direct common-lisp:class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:class :superclass sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:class :slot
((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
(:readers (common-lisp:class-name))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::class-eq-specializer) (:ordinal 2)
(:readers (sb-pcl::class-eq-specializer))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::direct-superclasses) (:ordinal 3)
(:readers (sb-mop:class-direct-superclasses))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::direct-subclasses) (:ordinal 4)
(:readers (sb-mop:class-direct-subclasses))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::direct-methods) (:ordinal 5)
(:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::safe-p) (:ordinal 7) (:initargs (sb-pcl::safe-p))
(:readers (sb-pcl::safe-p)) (:writers ((common-lisp:setf sb-pcl::safe-p)))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::finalized-p) (:ordinal 8)
(:readers (sb-mop:class-finalized-p))))
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::pcl-class :package-name "SB-PCL")
(:mop-direct sb-pcl::pcl-class :precedance
(common-lisp:class sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::pcl-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::%class-precedence-list) (:ordinal 1)
(:readers (sb-mop:class-precedence-list))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::cpl-available-p) (:ordinal 2)
(:readers (sb-pcl::cpl-available-p))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::can-precede-list) (:ordinal 3)
(:readers (sb-pcl::class-can-precede-list))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::incompatible-superclass-list) (:ordinal 4)
(:readers (sb-pcl::class-incompatible-superclass-list))
(:writers ((common-lisp:setf sb-pcl::class-incompatible-superclass-list)))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::wrapper) (:ordinal 5) (:readers (sb-pcl::class-wrapper))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::prototype) (:ordinal 6) (:readers (sb-mop:class-prototype))))
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct sb-pcl:system-class :package-name "SB-PCL")
(:mop-direct sb-pcl:system-class :precedance
(sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin
sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl:system-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:built-in-class :precedance
(sb-pcl:system-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:built-in-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :prototype
#)
(:mop-direct sb-pcl:system-class :prototype #)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :package-name "SB-MOP")
(:mop-direct sb-mop:forward-referenced-class :precedance
(sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin
sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:forward-referenced-class :classof
common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :typeof common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :prototype
#)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::slot-class :package-name "SB-PCL")
(:mop-direct sb-pcl::slot-class :precedance
(sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin
sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slot-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :slot
((:name sb-pcl::direct-slots) (:ordinal 1)
(:readers (sb-mop:class-direct-slots))))
(:mop-direct sb-pcl::slot-class :slot
((:name sb-pcl::slots) (:ordinal 2) (:readers (sb-mop:class-slots))))
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:structure-class :precedance
(sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:structure-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :slot
((:name sb-pcl::defstruct-form) (:ordinal 1)
(:readers (sb-pcl::class-defstruct-form))
(:writers ((common-lisp:setf sb-pcl::class-defstruct-form)))))
(:mop-direct common-lisp:structure-class :slot
((:name sb-pcl::defstruct-constructor) (:ordinal 2)
(:readers (sb-pcl::class-defstruct-constructor))
(:writers ((common-lisp:setf sb-pcl::class-defstruct-constructor)))))
(:mop-direct common-lisp:structure-class :slot
((:name sb-pcl::from-defclass-p) (:ordinal 3) (:initargs (:from-defclass-p))))
(:mop-direct common-lisp:structure-class :prototype
#)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-class :precedance
(sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :prototype
#)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-pcl::std-class :package-name "SB-PCL")
(:mop-direct sb-pcl::std-class :precedance
(sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::std-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :default-initargs
((:direct-superclasses
(common-lisp:list sb-pcl::*the-class-funcallable-standard-object*)
#)))
(:mop-direct sb-mop:funcallable-standard-class :package-name "SB-MOP")
(:mop-direct sb-mop:funcallable-standard-class :precedance
(sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:funcallable-standard-class :classof
common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :typeof
common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :prototype
#)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :default-initargs
((:direct-superclasses (common-lisp:list sb-pcl::*the-class-standard-object*)
#)))
(:mop-direct common-lisp:standard-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-class :precedance
(sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :prototype
#)
(:mop-direct sb-pcl::std-class :prototype #)
(:mop-direct sb-pcl::slot-class :prototype #)
(:mop-direct sb-pcl::pcl-class :prototype #)
(:mop-direct common-lisp:class :prototype #)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass
sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct common-lisp:generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:generic-function :precedance
(sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::initial-methods) (:ordinal 2)
(:readers (sb-pcl::generic-function-initial-methods))
(:writers ((common-lisp:setf sb-pcl::generic-function-initial-methods)))))
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::encapsulations) (:ordinal 3)
(:readers (sb-pcl::generic-function-encapsulations))
(:writers ((common-lisp:setf sb-pcl::generic-function-encapsulations)))))
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct common-lisp:standard-generic-function :default-initargs
((:method-class sb-pcl::*the-class-standard-method*
#)
(:method-combination sb-pcl::*standard-method-combination*
#)))
(:mop-direct common-lisp:standard-generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-generic-function :precedance
(common-lisp:generic-function sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
(:readers (sb-mop:generic-function-name))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::methods) (:ordinal 2) (:type common-lisp:list)
(:readers (sb-mop:generic-function-methods))
(:writers ((common-lisp:setf sb-mop:generic-function-methods)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::method-class) (:ordinal 3) (:initargs (:method-class))
(:readers (sb-mop:generic-function-method-class))
(:writers ((common-lisp:setf sb-mop:generic-function-method-class)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::%method-combination) (:ordinal 4)
(:initargs (:method-combination))
(:readers (sb-mop:generic-function-method-combination))
(:writers ((common-lisp:setf sb-mop:generic-function-method-combination)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::declarations) (:ordinal 5)
(:initargs (:declare :declarations))
(:readers (sb-mop:generic-function-declarations))
(:writers ((common-lisp:setf sb-mop:generic-function-declarations)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::arg-info) (:ordinal 6) (:initform (sb-pcl::make-arg-info))
(:readers (sb-pcl::gf-arg-info))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::dfun-state) (:ordinal 7) (:readers (sb-pcl::gf-dfun-state))
(:writers ((common-lisp:setf sb-pcl::gf-dfun-state)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::%lock) (:ordinal 8)
(:initform (sb-thread:make-mutex :name "GF lock"))
(:readers (sb-pcl::gf-lock))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::info-needs-update) (:ordinal 9)
(:readers (sb-pcl::gf-info-needs-update))
(:writers ((common-lisp:setf sb-pcl::gf-info-needs-update)))))
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :default-initargs
((:method-class sb-pcl::*the-class-standard-method*
#)
(:method-combination sb-pcl::*standard-method-combination*
#)))
(:mop-direct closer-mop:standard-generic-function :package-name "CLOSER-MOP")
(:mop-direct closer-mop:standard-generic-function :precedance
(common-lisp:standard-generic-function common-lisp:generic-function
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct closer-mop:standard-generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :prototype
#)
(:mop-direct common-lisp:standard-generic-function :prototype
#)
(:mop-direct common-lisp:generic-function :prototype
#)
(:mop-direct sb-pcl::dependent-update-mixin :prototype
#)
(:mop-direct common-lisp:standard-method :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:standard-method :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:standard-method :superclass common-lisp:method)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct common-lisp:standard-method :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-method :precedance
(sb-pcl::plist-mixin sb-pcl::definition-source-mixin common-lisp:method
sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct common-lisp:standard-method :classof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :typeof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::%generic-function) (:ordinal 1)
(:readers (sb-mop:method-generic-function))
(:writers ((common-lisp:setf sb-mop:method-generic-function)))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::qualifiers) (:ordinal 2) (:initargs (:qualifiers))
(:readers (common-lisp:method-qualifiers))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::specializers) (:ordinal 3) (:initargs (:specializers))
(:readers (sb-mop:method-specializers))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::lambda-list) (:ordinal 4) (:initargs (:lambda-list))
(:readers (sb-mop:method-lambda-list))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::%function) (:ordinal 5) (:initargs (:function))
(:readers (sb-mop:method-function))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::simple-next-method-call) (:ordinal 7)
(:initargs (sb-pcl::simple-next-method-call))
(:readers (sb-pcl::simple-next-method-call-p))))
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :superclass
sb-pcl::accessor-method)
(:mop-direct sb-pcl::accessor-method :package-name "SB-PCL")
(:mop-direct sb-pcl::accessor-method :precedance
(common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::accessor-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::accessor-method :slot
((:name sb-pcl::slot-name) (:ordinal 1) (:initargs (:slot-name))
(:readers (sb-pcl::accessor-method-slot-name))))
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-boundp-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :prototype
#)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-writer-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :prototype
#)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-reader-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :prototype
#)
(:mop-direct sb-mop:standard-accessor-method :superclass
sb-pcl::accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-accessor-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-accessor-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-accessor-method :classof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :superclass
sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :slot
((:name sb-pcl::%slot-definition) (:ordinal 1) (:initargs (:slot-definition))
(:readers (sb-mop:accessor-method-slot-definition))))
(:mop-direct sb-pcl::standard-boundp-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-boundp-method :precedance
(sb-mop:standard-accessor-method sb-pcl::accessor-method
common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::standard-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :prototype
#)
(:mop-direct sb-mop:standard-writer-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-writer-method :precedance
(sb-mop:standard-accessor-method sb-pcl::accessor-method
common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :prototype
#)
(:mop-direct sb-mop:standard-reader-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-reader-method :precedance
(sb-mop:standard-accessor-method sb-pcl::accessor-method
common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :prototype
#)
(:mop-direct sb-mop:standard-accessor-method :prototype
#)
(:mop-direct sb-pcl::accessor-method :prototype
#)
(:mop-direct common-lisp:standard-method :prototype
#)
(:mop-direct sb-pcl::plist-mixin :prototype #)
(:mop-direct sb-pcl::definition-source-mixin :superclass
common-lisp:standard-object)
(:mop-direct common-lisp:class :superclass sb-pcl::definition-source-mixin)
(:mop-direct sb-pcl::standard-method-combination :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:standard-method :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::definition-source-mixin)
(:mop-direct sb-pcl::definition-source-mixin :package-name "SB-PCL")
(:mop-direct sb-pcl::definition-source-mixin :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::definition-source-mixin :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::definition-source-mixin :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::definition-source-mixin :superclass
common-lisp:standard-object)
(:mop-direct sb-pcl::definition-source-mixin :slot
((:name sb-pcl::source) (:ordinal 1) (:initargs (:definition-source))
(:readers (sb-pcl::definition-source))))
(:mop-direct common-lisp:class :superclass sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::standard-specializer)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct common-lisp:class :package-name "COMMON-LISP")
(:mop-direct common-lisp:class :precedance
(sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:class :classof common-lisp:standard-class)
(:mop-direct common-lisp:class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:class :superclass sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:class :slot
((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
(:readers (common-lisp:class-name))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::class-eq-specializer) (:ordinal 2)
(:readers (sb-pcl::class-eq-specializer))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::direct-superclasses) (:ordinal 3)
(:readers (sb-mop:class-direct-superclasses))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::direct-subclasses) (:ordinal 4)
(:readers (sb-mop:class-direct-subclasses))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::direct-methods) (:ordinal 5)
(:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::safe-p) (:ordinal 7) (:initargs (sb-pcl::safe-p))
(:readers (sb-pcl::safe-p)) (:writers ((common-lisp:setf sb-pcl::safe-p)))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::finalized-p) (:ordinal 8)
(:readers (sb-mop:class-finalized-p))))
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::pcl-class :package-name "SB-PCL")
(:mop-direct sb-pcl::pcl-class :precedance
(common-lisp:class sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::pcl-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::%class-precedence-list) (:ordinal 1)
(:readers (sb-mop:class-precedence-list))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::cpl-available-p) (:ordinal 2)
(:readers (sb-pcl::cpl-available-p))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::can-precede-list) (:ordinal 3)
(:readers (sb-pcl::class-can-precede-list))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::incompatible-superclass-list) (:ordinal 4)
(:readers (sb-pcl::class-incompatible-superclass-list))
(:writers ((common-lisp:setf sb-pcl::class-incompatible-superclass-list)))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::wrapper) (:ordinal 5) (:readers (sb-pcl::class-wrapper))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::prototype) (:ordinal 6) (:readers (sb-mop:class-prototype))))
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct sb-pcl:system-class :package-name "SB-PCL")
(:mop-direct sb-pcl:system-class :precedance
(sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin
sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl:system-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:built-in-class :precedance
(sb-pcl:system-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:built-in-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :prototype
#)
(:mop-direct sb-pcl:system-class :prototype #)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :package-name "SB-MOP")
(:mop-direct sb-mop:forward-referenced-class :precedance
(sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin
sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:forward-referenced-class :classof
common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :typeof common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :prototype
#)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::slot-class :package-name "SB-PCL")
(:mop-direct sb-pcl::slot-class :precedance
(sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin
sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slot-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :slot
((:name sb-pcl::direct-slots) (:ordinal 1)
(:readers (sb-mop:class-direct-slots))))
(:mop-direct sb-pcl::slot-class :slot
((:name sb-pcl::slots) (:ordinal 2) (:readers (sb-mop:class-slots))))
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:structure-class :precedance
(sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:structure-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :slot
((:name sb-pcl::defstruct-form) (:ordinal 1)
(:readers (sb-pcl::class-defstruct-form))
(:writers ((common-lisp:setf sb-pcl::class-defstruct-form)))))
(:mop-direct common-lisp:structure-class :slot
((:name sb-pcl::defstruct-constructor) (:ordinal 2)
(:readers (sb-pcl::class-defstruct-constructor))
(:writers ((common-lisp:setf sb-pcl::class-defstruct-constructor)))))
(:mop-direct common-lisp:structure-class :slot
((:name sb-pcl::from-defclass-p) (:ordinal 3) (:initargs (:from-defclass-p))))
(:mop-direct common-lisp:structure-class :prototype
#)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-class :precedance
(sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :prototype
#)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-pcl::std-class :package-name "SB-PCL")
(:mop-direct sb-pcl::std-class :precedance
(sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::std-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :default-initargs
((:direct-superclasses
(common-lisp:list sb-pcl::*the-class-funcallable-standard-object*)
#)))
(:mop-direct sb-mop:funcallable-standard-class :package-name "SB-MOP")
(:mop-direct sb-mop:funcallable-standard-class :precedance
(sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:funcallable-standard-class :classof
common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :typeof
common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :prototype
#)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :default-initargs
((:direct-superclasses (common-lisp:list sb-pcl::*the-class-standard-object*)
#)))
(:mop-direct common-lisp:standard-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-class :precedance
(sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :prototype
#)
(:mop-direct sb-pcl::std-class :prototype #)
(:mop-direct sb-pcl::slot-class :prototype #)
(:mop-direct sb-pcl::pcl-class :prototype #)
(:mop-direct common-lisp:class :prototype #)
(:mop-direct sb-pcl::standard-method-combination :superclass
sb-pcl::definition-source-mixin)
(:mop-direct sb-pcl::standard-method-combination :superclass
common-lisp:method-combination)
(:mop-direct sb-pcl::short-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::standard-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-method-combination :precedance
(sb-pcl::definition-source-mixin common-lisp:method-combination
sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::standard-method-combination :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::standard-method-combination :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::standard-method-combination :superclass
sb-pcl::definition-source-mixin)
(:mop-direct sb-pcl::standard-method-combination :slot
((:name sb-pcl::type-name) (:ordinal 1) (:initargs (:type-name))
(:readers (sb-pcl::method-combination-type-name))))
(:mop-direct sb-pcl::standard-method-combination :slot
((:name sb-pcl::options) (:ordinal 2) (:initargs (:options))
(:readers (sb-pcl::method-combination-options))))
(:mop-direct sb-pcl::short-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::short-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::short-method-combination :precedance
(sb-pcl::standard-method-combination sb-pcl::definition-source-mixin
common-lisp:method-combination sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::short-method-combination :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::short-method-combination :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::short-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::short-method-combination :slot
((:name sb-pcl::operator) (:ordinal 1) (:initargs (:operator))
(:readers (sb-pcl::short-combination-operator))))
(:mop-direct sb-pcl::short-method-combination :slot
((:name sb-pcl::identity-with-one-argument) (:ordinal 2)
(:initargs (:identity-with-one-argument))
(:readers (sb-pcl::short-combination-identity-with-one-argument))))
(:mop-direct sb-pcl::short-method-combination :prototype
# #
{1001269D93}>)
(:mop-direct sb-pcl::long-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::long-method-combination :precedance
(sb-pcl::standard-method-combination sb-pcl::definition-source-mixin
common-lisp:method-combination sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::long-method-combination :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::long-method-combination :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::long-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :slot
((:name common-lisp:function) (:ordinal 1) (:initargs (:function))
(:readers (sb-pcl::long-method-combination-function))))
(:mop-direct sb-pcl::long-method-combination :slot
((:name sb-pcl::args-lambda-list) (:ordinal 2) (:initargs (:args-lambda-list))
(:readers (sb-pcl::long-method-combination-args-lambda-list))))
(:mop-direct sb-pcl::long-method-combination :prototype
# #
{10012294C3}>)
(:mop-direct sb-pcl::standard-method-combination :prototype
# #
{10012BC723}>)
(:mop-direct common-lisp:standard-method :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:standard-method :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:standard-method :superclass common-lisp:method)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct common-lisp:standard-method :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-method :precedance
(sb-pcl::plist-mixin sb-pcl::definition-source-mixin common-lisp:method
sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct common-lisp:standard-method :classof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :typeof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::%generic-function) (:ordinal 1)
(:readers (sb-mop:method-generic-function))
(:writers ((common-lisp:setf sb-mop:method-generic-function)))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::qualifiers) (:ordinal 2) (:initargs (:qualifiers))
(:readers (common-lisp:method-qualifiers))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::specializers) (:ordinal 3) (:initargs (:specializers))
(:readers (sb-mop:method-specializers))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::lambda-list) (:ordinal 4) (:initargs (:lambda-list))
(:readers (sb-mop:method-lambda-list))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::%function) (:ordinal 5) (:initargs (:function))
(:readers (sb-mop:method-function))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::simple-next-method-call) (:ordinal 7)
(:initargs (sb-pcl::simple-next-method-call))
(:readers (sb-pcl::simple-next-method-call-p))))
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :superclass
sb-pcl::accessor-method)
(:mop-direct sb-pcl::accessor-method :package-name "SB-PCL")
(:mop-direct sb-pcl::accessor-method :precedance
(common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::accessor-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::accessor-method :slot
((:name sb-pcl::slot-name) (:ordinal 1) (:initargs (:slot-name))
(:readers (sb-pcl::accessor-method-slot-name))))
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-boundp-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :prototype
#)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-writer-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :prototype
#)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-reader-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :prototype
#)
(:mop-direct sb-mop:standard-accessor-method :superclass
sb-pcl::accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-accessor-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-accessor-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-accessor-method :classof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :superclass
sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :slot
((:name sb-pcl::%slot-definition) (:ordinal 1) (:initargs (:slot-definition))
(:readers (sb-mop:accessor-method-slot-definition))))
(:mop-direct sb-pcl::standard-boundp-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-boundp-method :precedance
(sb-mop:standard-accessor-method sb-pcl::accessor-method
common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::standard-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :prototype
#)
(:mop-direct sb-mop:standard-writer-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-writer-method :precedance
(sb-mop:standard-accessor-method sb-pcl::accessor-method
common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :prototype
#)
(:mop-direct sb-mop:standard-reader-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-reader-method :precedance
(sb-mop:standard-accessor-method sb-pcl::accessor-method
common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :prototype
#)
(:mop-direct sb-mop:standard-accessor-method :prototype
#)
(:mop-direct sb-pcl::accessor-method :prototype
#)
(:mop-direct common-lisp:standard-method :prototype
#)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass
sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct common-lisp:generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:generic-function :precedance
(sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::initial-methods) (:ordinal 2)
(:readers (sb-pcl::generic-function-initial-methods))
(:writers ((common-lisp:setf sb-pcl::generic-function-initial-methods)))))
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::encapsulations) (:ordinal 3)
(:readers (sb-pcl::generic-function-encapsulations))
(:writers ((common-lisp:setf sb-pcl::generic-function-encapsulations)))))
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct common-lisp:standard-generic-function :default-initargs
((:method-class sb-pcl::*the-class-standard-method*
#)
(:method-combination sb-pcl::*standard-method-combination*
#)))
(:mop-direct common-lisp:standard-generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-generic-function :precedance
(common-lisp:generic-function sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
(:readers (sb-mop:generic-function-name))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::methods) (:ordinal 2) (:type common-lisp:list)
(:readers (sb-mop:generic-function-methods))
(:writers ((common-lisp:setf sb-mop:generic-function-methods)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::method-class) (:ordinal 3) (:initargs (:method-class))
(:readers (sb-mop:generic-function-method-class))
(:writers ((common-lisp:setf sb-mop:generic-function-method-class)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::%method-combination) (:ordinal 4)
(:initargs (:method-combination))
(:readers (sb-mop:generic-function-method-combination))
(:writers ((common-lisp:setf sb-mop:generic-function-method-combination)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::declarations) (:ordinal 5)
(:initargs (:declare :declarations))
(:readers (sb-mop:generic-function-declarations))
(:writers ((common-lisp:setf sb-mop:generic-function-declarations)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::arg-info) (:ordinal 6) (:initform (sb-pcl::make-arg-info))
(:readers (sb-pcl::gf-arg-info))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::dfun-state) (:ordinal 7) (:readers (sb-pcl::gf-dfun-state))
(:writers ((common-lisp:setf sb-pcl::gf-dfun-state)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::%lock) (:ordinal 8)
(:initform (sb-thread:make-mutex :name "GF lock"))
(:readers (sb-pcl::gf-lock))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::info-needs-update) (:ordinal 9)
(:readers (sb-pcl::gf-info-needs-update))
(:writers ((common-lisp:setf sb-pcl::gf-info-needs-update)))))
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :default-initargs
((:method-class sb-pcl::*the-class-standard-method*
#)
(:method-combination sb-pcl::*standard-method-combination*
#)))
(:mop-direct closer-mop:standard-generic-function :package-name "CLOSER-MOP")
(:mop-direct closer-mop:standard-generic-function :precedance
(common-lisp:standard-generic-function common-lisp:generic-function
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct closer-mop:standard-generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :prototype
#)
(:mop-direct common-lisp:standard-generic-function :prototype
#)
(:mop-direct common-lisp:generic-function :prototype
#)
(:mop-direct sb-pcl::definition-source-mixin :prototype
#)
(:mop-direct sb-mop:metaobject :superclass common-lisp:standard-object)
(:mop-direct sb-mop:specializer :superclass sb-mop:metaobject)
(:mop-direct sb-mop:slot-definition :superclass sb-mop:metaobject)
(:mop-direct common-lisp:method-combination :superclass sb-mop:metaobject)
(:mop-direct common-lisp:method :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct sb-mop:metaobject :package-name "SB-MOP")
(:mop-direct sb-mop:metaobject :precedance
(common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:metaobject :classof common-lisp:standard-class)
(:mop-direct sb-mop:metaobject :typeof common-lisp:standard-class)
(:mop-direct sb-mop:metaobject :superclass common-lisp:standard-object)
(:mop-direct sb-mop:specializer :superclass sb-mop:metaobject)
(:mop-direct sb-pcl::exact-class-specializer :superclass sb-mop:specializer)
(:mop-direct sb-pcl::specializer-with-object :superclass sb-mop:specializer)
(:mop-direct sb-pcl::standard-specializer :superclass sb-mop:specializer)
(:mop-direct sb-mop:specializer :package-name "SB-MOP")
(:mop-direct sb-mop:specializer :precedance
(sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-mop:specializer :classof common-lisp:standard-class)
(:mop-direct sb-mop:specializer :typeof common-lisp:standard-class)
(:mop-direct sb-mop:specializer :superclass sb-mop:metaobject)
(:mop-direct sb-mop:specializer :slot
((:name sb-pcl::%type) (:ordinal 1) (:readers (sb-pcl::specializer-type))))
(:mop-direct sb-pcl::exact-class-specializer :superclass sb-mop:specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::exact-class-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::exact-class-specializer :precedance
(sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::exact-class-specializer :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::exact-class-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::exact-class-specializer :superclass sb-mop:specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::standard-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::exact-class-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::specializer-with-object)
(:mop-direct sb-mop:eql-specializer :package-name "SB-MOP")
(:mop-direct sb-mop:eql-specializer :precedance
(sb-pcl::standard-specializer sb-pcl::exact-class-specializer
sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:eql-specializer :classof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::exact-class-specializer)
(:mop-direct sb-mop:eql-specializer :slot
((:name sb-pcl::object) (:ordinal 1) (:initargs (:object))
(:readers (sb-mop:eql-specializer-object sb-pcl::specializer-object))))
(:mop-direct sb-mop:eql-specializer :slot
((:name sb-pcl::direct-methods) (:ordinal 2)
(:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct sb-mop:eql-specializer :prototype
#)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-eq-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::class-eq-specializer :precedance
(sb-pcl::standard-specializer sb-pcl::exact-class-specializer
sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-eq-specializer :classof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::class-eq-specializer :slot
((:name sb-pcl::object) (:ordinal 1) (:initargs (:class))
(:readers (sb-pcl::specializer-object sb-pcl::specializer-class))))
(:mop-direct sb-pcl::class-eq-specializer :prototype
#)
(:mop-direct sb-pcl::exact-class-specializer :prototype
#)
(:mop-direct sb-pcl::specializer-with-object :superclass sb-mop:specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::specializer-with-object :package-name "SB-PCL")
(:mop-direct sb-pcl::specializer-with-object :precedance
(sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::specializer-with-object :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::specializer-with-object :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::specializer-with-object :superclass sb-mop:specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::standard-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::exact-class-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::specializer-with-object)
(:mop-direct sb-mop:eql-specializer :package-name "SB-MOP")
(:mop-direct sb-mop:eql-specializer :precedance
(sb-pcl::standard-specializer sb-pcl::exact-class-specializer
sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:eql-specializer :classof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::specializer-with-object)
(:mop-direct sb-mop:eql-specializer :slot
((:name sb-pcl::object) (:ordinal 1) (:initargs (:object))
(:readers (sb-mop:eql-specializer-object sb-pcl::specializer-object))))
(:mop-direct sb-mop:eql-specializer :slot
((:name sb-pcl::direct-methods) (:ordinal 2)
(:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct sb-mop:eql-specializer :prototype
#)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-prototype-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::class-prototype-specializer :precedance
(sb-pcl::standard-specializer sb-pcl::specializer-with-object
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-prototype-specializer :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::class-prototype-specializer :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-prototype-specializer :slot
((:name sb-pcl::object) (:ordinal 1) (:initargs (:class))
(:readers (sb-pcl::specializer-object sb-pcl::specializer-class))))
(:mop-direct sb-pcl::class-prototype-specializer :prototype
#)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-eq-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::class-eq-specializer :precedance
(sb-pcl::standard-specializer sb-pcl::exact-class-specializer
sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-eq-specializer :classof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-eq-specializer :slot
((:name sb-pcl::object) (:ordinal 1) (:initargs (:class))
(:readers (sb-pcl::specializer-object sb-pcl::specializer-class))))
(:mop-direct sb-pcl::class-eq-specializer :prototype
#)
(:mop-direct sb-pcl::specializer-with-object :prototype
#)
(:mop-direct sb-pcl::standard-specializer :superclass sb-mop:specializer)
(:mop-direct common-lisp:class :superclass sb-pcl::standard-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::standard-specializer)
(:mop-direct sb-pcl::standard-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-specializer :precedance
(sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::standard-specializer :classof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-specializer :superclass sb-mop:specializer)
(:mop-direct common-lisp:class :superclass sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:class :superclass sb-pcl::standard-specializer)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct common-lisp:class :package-name "COMMON-LISP")
(:mop-direct common-lisp:class :precedance
(sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:class :classof common-lisp:standard-class)
(:mop-direct common-lisp:class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:class :superclass sb-pcl::standard-specializer)
(:mop-direct common-lisp:class :slot
((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
(:readers (common-lisp:class-name))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::class-eq-specializer) (:ordinal 2)
(:readers (sb-pcl::class-eq-specializer))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::direct-superclasses) (:ordinal 3)
(:readers (sb-mop:class-direct-superclasses))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::direct-subclasses) (:ordinal 4)
(:readers (sb-mop:class-direct-subclasses))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::direct-methods) (:ordinal 5)
(:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::safe-p) (:ordinal 7) (:initargs (sb-pcl::safe-p))
(:readers (sb-pcl::safe-p)) (:writers ((common-lisp:setf sb-pcl::safe-p)))))
(:mop-direct common-lisp:class :slot
((:name sb-pcl::finalized-p) (:ordinal 8)
(:readers (sb-mop:class-finalized-p))))
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::pcl-class :package-name "SB-PCL")
(:mop-direct sb-pcl::pcl-class :precedance
(common-lisp:class sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::pcl-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::pcl-class :superclass common-lisp:class)
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::%class-precedence-list) (:ordinal 1)
(:readers (sb-mop:class-precedence-list))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::cpl-available-p) (:ordinal 2)
(:readers (sb-pcl::cpl-available-p))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::can-precede-list) (:ordinal 3)
(:readers (sb-pcl::class-can-precede-list))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::incompatible-superclass-list) (:ordinal 4)
(:readers (sb-pcl::class-incompatible-superclass-list))
(:writers ((common-lisp:setf sb-pcl::class-incompatible-superclass-list)))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::wrapper) (:ordinal 5) (:readers (sb-pcl::class-wrapper))))
(:mop-direct sb-pcl::pcl-class :slot
((:name sb-pcl::prototype) (:ordinal 6) (:readers (sb-mop:class-prototype))))
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct sb-pcl:system-class :package-name "SB-PCL")
(:mop-direct sb-pcl:system-class :precedance
(sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin
sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl:system-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl:system-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:built-in-class :precedance
(sb-pcl:system-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:built-in-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:built-in-class :superclass sb-pcl:system-class)
(:mop-direct common-lisp:built-in-class :prototype
#)
(:mop-direct sb-pcl:system-class :prototype #)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :package-name "SB-MOP")
(:mop-direct sb-mop:forward-referenced-class :precedance
(sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin
sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:forward-referenced-class :classof
common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :typeof common-lisp:standard-class)
(:mop-direct sb-mop:forward-referenced-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-mop:forward-referenced-class :prototype
#)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::slot-class :package-name "SB-PCL")
(:mop-direct sb-pcl::slot-class :precedance
(sb-pcl::pcl-class common-lisp:class sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin
sb-pcl::standard-specializer sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slot-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::slot-class :superclass sb-pcl::pcl-class)
(:mop-direct sb-pcl::slot-class :slot
((:name sb-pcl::direct-slots) (:ordinal 1)
(:readers (sb-mop:class-direct-slots))))
(:mop-direct sb-pcl::slot-class :slot
((:name sb-pcl::slots) (:ordinal 2) (:readers (sb-mop:class-slots))))
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:structure-class :precedance
(sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:structure-class :classof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :typeof common-lisp:standard-class)
(:mop-direct common-lisp:structure-class :superclass sb-pcl::slot-class)
(:mop-direct common-lisp:structure-class :slot
((:name sb-pcl::defstruct-form) (:ordinal 1)
(:readers (sb-pcl::class-defstruct-form))
(:writers ((common-lisp:setf sb-pcl::class-defstruct-form)))))
(:mop-direct common-lisp:structure-class :slot
((:name sb-pcl::defstruct-constructor) (:ordinal 2)
(:readers (sb-pcl::class-defstruct-constructor))
(:writers ((common-lisp:setf sb-pcl::class-defstruct-constructor)))))
(:mop-direct common-lisp:structure-class :slot
((:name sb-pcl::from-defclass-p) (:ordinal 3) (:initargs (:from-defclass-p))))
(:mop-direct common-lisp:structure-class :prototype
#)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-class :precedance
(sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::condition-class :superclass sb-pcl::slot-class)
(:mop-direct sb-pcl::condition-class :prototype
#)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-pcl::std-class :package-name "SB-PCL")
(:mop-direct sb-pcl::std-class :precedance
(sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::std-class :classof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::std-class :superclass sb-pcl::slot-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :default-initargs
((:direct-superclasses
(common-lisp:list sb-pcl::*the-class-funcallable-standard-object*)
#)))
(:mop-direct sb-mop:funcallable-standard-class :package-name "SB-MOP")
(:mop-direct sb-mop:funcallable-standard-class :precedance
(sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:funcallable-standard-class :classof
common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :typeof
common-lisp:standard-class)
(:mop-direct sb-mop:funcallable-standard-class :superclass sb-pcl::std-class)
(:mop-direct sb-mop:funcallable-standard-class :prototype
#)
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :default-initargs
((:direct-superclasses (common-lisp:list sb-pcl::*the-class-standard-object*)
#)))
(:mop-direct common-lisp:standard-class :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-class :precedance
(sb-pcl::std-class sb-pcl::slot-class sb-pcl::pcl-class common-lisp:class
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-pcl::standard-specializer
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-class :superclass sb-pcl::std-class)
(:mop-direct common-lisp:standard-class :prototype
#)
(:mop-direct sb-pcl::std-class :prototype #)
(:mop-direct sb-pcl::slot-class :prototype #)
(:mop-direct sb-pcl::pcl-class :prototype #)
(:mop-direct common-lisp:class :prototype #)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::standard-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::exact-class-specializer)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::specializer-with-object)
(:mop-direct sb-mop:eql-specializer :package-name "SB-MOP")
(:mop-direct sb-mop:eql-specializer :precedance
(sb-pcl::standard-specializer sb-pcl::exact-class-specializer
sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:eql-specializer :classof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-mop:eql-specializer :superclass sb-pcl::standard-specializer)
(:mop-direct sb-mop:eql-specializer :slot
((:name sb-pcl::object) (:ordinal 1) (:initargs (:object))
(:readers (sb-mop:eql-specializer-object sb-pcl::specializer-object))))
(:mop-direct sb-mop:eql-specializer :slot
((:name sb-pcl::direct-methods) (:ordinal 2)
(:initform (common-lisp:cons common-lisp:nil common-lisp:nil))))
(:mop-direct sb-mop:eql-specializer :prototype
#)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-prototype-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::class-prototype-specializer :precedance
(sb-pcl::standard-specializer sb-pcl::specializer-with-object
sb-mop:specializer sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-prototype-specializer :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::class-prototype-specializer :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::class-prototype-specializer :superclass
sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-prototype-specializer :slot
((:name sb-pcl::object) (:ordinal 1) (:initargs (:class))
(:readers (sb-pcl::specializer-object sb-pcl::specializer-class))))
(:mop-direct sb-pcl::class-prototype-specializer :prototype
#)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::exact-class-specializer)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::specializer-with-object)
(:mop-direct sb-pcl::class-eq-specializer :package-name "SB-PCL")
(:mop-direct sb-pcl::class-eq-specializer :precedance
(sb-pcl::standard-specializer sb-pcl::exact-class-specializer
sb-pcl::specializer-with-object sb-mop:specializer sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-eq-specializer :classof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::class-eq-specializer :superclass
sb-pcl::standard-specializer)
(:mop-direct sb-pcl::class-eq-specializer :slot
((:name sb-pcl::object) (:ordinal 1) (:initargs (:class))
(:readers (sb-pcl::specializer-object sb-pcl::specializer-class))))
(:mop-direct sb-pcl::class-eq-specializer :prototype
#)
(:mop-direct sb-pcl::standard-specializer :prototype
#)
(:mop-direct sb-mop:specializer :prototype #)
(:mop-direct sb-mop:slot-definition :superclass sb-mop:metaobject)
(:mop-direct sb-mop:effective-slot-definition :superclass
sb-mop:slot-definition)
(:mop-direct sb-mop:direct-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-pcl::structure-slot-definition :superclass
sb-mop:slot-definition)
(:mop-direct sb-pcl::condition-slot-definition :superclass
sb-mop:slot-definition)
(:mop-direct sb-mop:standard-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-mop:slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:slot-definition :precedance
(sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-mop:slot-definition :classof common-lisp:standard-class)
(:mop-direct sb-mop:slot-definition :typeof common-lisp:standard-class)
(:mop-direct sb-mop:slot-definition :superclass sb-mop:metaobject)
(:mop-direct sb-mop:slot-definition :slot
((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
(:readers (sb-mop:slot-definition-name))
(:writers ((common-lisp:setf sb-mop:slot-definition-name)))))
(:mop-direct sb-mop:slot-definition :slot
((:name sb-pcl::initform) (:ordinal 2) (:initargs (:initform))
(:readers (sb-mop:slot-definition-initform))
(:writers ((common-lisp:setf sb-mop:slot-definition-initform)))))
(:mop-direct sb-mop:slot-definition :slot
((:name sb-pcl::initfunction) (:ordinal 3) (:initargs (:initfunction))
(:readers (sb-mop:slot-definition-initfunction))
(:writers ((common-lisp:setf sb-mop:slot-definition-initfunction)))))
(:mop-direct sb-mop:slot-definition :slot
((:name sb-pcl::initargs) (:ordinal 4) (:initargs (:initargs))
(:readers (sb-mop:slot-definition-initargs))
(:writers ((common-lisp:setf sb-mop:slot-definition-initargs)))))
(:mop-direct sb-mop:slot-definition :slot
((:name sb-pcl::%type) (:ordinal 5) (:initform common-lisp:t)
(:initargs (:type)) (:readers (sb-mop:slot-definition-type))
(:writers ((common-lisp:setf sb-mop:slot-definition-type)))))
(:mop-direct sb-mop:slot-definition :slot
((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))
(:readers (sb-pcl::%slot-definition-documentation))))
(:mop-direct sb-mop:slot-definition :slot
((:name sb-pcl::%class) (:ordinal 7) (:initargs (:class))
(:readers (sb-pcl::slot-definition-class))
(:writers ((common-lisp:setf sb-pcl::slot-definition-class)))))
(:mop-direct sb-mop:slot-definition :slot
((:name sb-pcl::source) (:ordinal 8) (:initargs (sb-pcl::source))
(:readers (sb-pcl::definition-source))
(:writers ((common-lisp:setf sb-pcl::definition-source)))))
(:mop-direct sb-mop:effective-slot-definition :superclass
sb-mop:slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-mop:effective-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:effective-slot-definition :precedance
(sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:effective-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-mop:effective-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-mop:effective-slot-definition :superclass
sb-mop:slot-definition)
(:mop-direct sb-mop:effective-slot-definition :slot
((:name sb-pcl::accessor-flags) (:ordinal 1) (:initform 0)))
(:mop-direct sb-mop:effective-slot-definition :slot
((:name sb-int:info) (:ordinal 2) (:readers (sb-pcl::slot-definition-info))
(:writers ((common-lisp:setf sb-pcl::slot-definition-info)))))
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::structure-effective-slot-definition :precedance
(sb-pcl::structure-slot-definition sb-mop:effective-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::structure-effective-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::structure-effective-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :prototype
#)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-effective-slot-definition :precedance
(sb-pcl::condition-slot-definition sb-mop:effective-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-effective-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::condition-effective-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :prototype
#)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:standard-effective-slot-definition :precedance
(sb-mop:standard-slot-definition sb-mop:effective-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-effective-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-effective-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :slot
((:name sb-pcl::location) (:ordinal 1)
(:readers (sb-mop:slot-definition-location))
(:writers ((common-lisp:setf sb-mop:slot-definition-location)))))
(:mop-direct sb-mop:standard-effective-slot-definition :prototype
#)
(:mop-direct sb-mop:effective-slot-definition :prototype
#)
(:mop-direct sb-mop:direct-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-mop:direct-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:direct-slot-definition :precedance
(sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:direct-slot-definition :classof common-lisp:standard-class)
(:mop-direct sb-mop:direct-slot-definition :typeof common-lisp:standard-class)
(:mop-direct sb-mop:direct-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-mop:direct-slot-definition :slot
((:name sb-pcl::readers) (:ordinal 1) (:initargs (:readers))
(:readers (sb-mop:slot-definition-readers))
(:writers ((common-lisp:setf sb-mop:slot-definition-readers)))))
(:mop-direct sb-mop:direct-slot-definition :slot
((:name sb-pcl::writers) (:ordinal 2) (:initargs (:writers))
(:readers (sb-mop:slot-definition-writers))
(:writers ((common-lisp:setf sb-mop:slot-definition-writers)))))
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::structure-direct-slot-definition :precedance
(sb-pcl::structure-slot-definition sb-mop:direct-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::structure-direct-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::structure-direct-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :prototype
#)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-direct-slot-definition :precedance
(sb-pcl::condition-slot-definition sb-mop:direct-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-direct-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::condition-direct-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :prototype
#)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:standard-direct-slot-definition :precedance
(sb-mop:standard-slot-definition sb-mop:direct-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-direct-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-direct-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :prototype
#)
(:mop-direct sb-mop:direct-slot-definition :prototype
#)
(:mop-direct sb-pcl::structure-slot-definition :superclass
sb-mop:slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::structure-slot-definition :precedance
(sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::structure-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::structure-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::structure-slot-definition :superclass
sb-mop:slot-definition)
(:mop-direct sb-pcl::structure-slot-definition :slot
((:name sb-pcl::defstruct-accessor-symbol) (:ordinal 1)
(:initargs (:defstruct-accessor-symbol))
(:readers (sb-pcl::slot-definition-defstruct-accessor-symbol))
(:writers
((common-lisp:setf sb-pcl::slot-definition-defstruct-accessor-symbol)))))
(:mop-direct sb-pcl::structure-slot-definition :slot
((:name sb-pcl::internal-reader-function) (:ordinal 2)
(:initargs (:internal-reader-function))
(:readers (sb-pcl::slot-definition-internal-reader-function))
(:writers
((common-lisp:setf sb-pcl::slot-definition-internal-reader-function)))))
(:mop-direct sb-pcl::structure-slot-definition :slot
((:name sb-pcl::internal-writer-function) (:ordinal 3)
(:initargs (:internal-writer-function))
(:readers (sb-pcl::slot-definition-internal-writer-function))
(:writers
((common-lisp:setf sb-pcl::slot-definition-internal-writer-function)))))
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::structure-effective-slot-definition :precedance
(sb-pcl::structure-slot-definition sb-mop:effective-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::structure-effective-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::structure-effective-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::structure-effective-slot-definition :superclass
sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-effective-slot-definition :prototype
#)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::structure-direct-slot-definition :precedance
(sb-pcl::structure-slot-definition sb-mop:direct-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::structure-direct-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::structure-direct-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::structure-direct-slot-definition :superclass
sb-pcl::structure-slot-definition)
(:mop-direct sb-pcl::structure-direct-slot-definition :prototype
#)
(:mop-direct sb-pcl::structure-slot-definition :prototype
#)
(:mop-direct sb-pcl::condition-slot-definition :superclass
sb-mop:slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-slot-definition :precedance
(sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::condition-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::condition-slot-definition :superclass
sb-mop:slot-definition)
(:mop-direct sb-pcl::condition-slot-definition :slot
((:name sb-pcl::allocation) (:ordinal 1) (:initform :instance)
(:initargs (:allocation)) (:readers (sb-mop:slot-definition-allocation))
(:writers ((common-lisp:setf sb-mop:slot-definition-allocation)))))
(:mop-direct sb-pcl::condition-slot-definition :slot
((:name sb-pcl::allocation-class) (:ordinal 2) (:initargs (:allocation-class))
(:readers (sb-pcl::slot-definition-allocation-class))
(:writers ((common-lisp:setf sb-pcl::slot-definition-allocation-class)))))
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-effective-slot-definition :precedance
(sb-pcl::condition-slot-definition sb-mop:effective-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-effective-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::condition-effective-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::condition-effective-slot-definition :superclass
sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-effective-slot-definition :prototype
#)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :package-name "SB-PCL")
(:mop-direct sb-pcl::condition-direct-slot-definition :precedance
(sb-pcl::condition-slot-definition sb-mop:direct-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::condition-direct-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::condition-direct-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::condition-direct-slot-definition :superclass
sb-pcl::condition-slot-definition)
(:mop-direct sb-pcl::condition-direct-slot-definition :prototype
#)
(:mop-direct sb-pcl::condition-slot-definition :prototype
#)
(:mop-direct sb-mop:standard-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:standard-slot-definition :precedance
(sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-slot-definition :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-slot-definition :superclass sb-mop:slot-definition)
(:mop-direct sb-mop:standard-slot-definition :slot
((:name sb-pcl::allocation) (:ordinal 1) (:initform :instance)
(:initargs (:allocation)) (:readers (sb-mop:slot-definition-allocation))
(:writers ((common-lisp:setf sb-mop:slot-definition-allocation)))))
(:mop-direct sb-mop:standard-slot-definition :slot
((:name sb-pcl::allocation-class) (:ordinal 2) (:initargs (:allocation-class))
(:readers (sb-pcl::slot-definition-allocation-class))
(:writers ((common-lisp:setf sb-pcl::slot-definition-allocation-class)))))
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
sb-mop:effective-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:standard-effective-slot-definition :precedance
(sb-mop:standard-slot-definition sb-mop:effective-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-effective-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-effective-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-effective-slot-definition :superclass
sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-effective-slot-definition :slot
((:name sb-pcl::location) (:ordinal 1)
(:readers (sb-mop:slot-definition-location))
(:writers ((common-lisp:setf sb-mop:slot-definition-location)))))
(:mop-direct sb-mop:standard-effective-slot-definition :prototype
#)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
sb-mop:direct-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :package-name "SB-MOP")
(:mop-direct sb-mop:standard-direct-slot-definition :precedance
(sb-mop:standard-slot-definition sb-mop:direct-slot-definition
sb-mop:slot-definition sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-direct-slot-definition :classof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-direct-slot-definition :typeof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-direct-slot-definition :superclass
sb-mop:standard-slot-definition)
(:mop-direct sb-mop:standard-direct-slot-definition :prototype
#)
(:mop-direct sb-mop:standard-slot-definition :prototype
#)
(:mop-direct sb-mop:slot-definition :prototype
#)
(:mop-direct common-lisp:method-combination :superclass sb-mop:metaobject)
(:mop-direct sb-pcl::standard-method-combination :superclass
common-lisp:method-combination)
(:mop-direct common-lisp:method-combination :package-name "COMMON-LISP")
(:mop-direct common-lisp:method-combination :precedance
(sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct common-lisp:method-combination :classof common-lisp:standard-class)
(:mop-direct common-lisp:method-combination :typeof common-lisp:standard-class)
(:mop-direct common-lisp:method-combination :superclass sb-mop:metaobject)
(:mop-direct common-lisp:method-combination :slot
((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct sb-pcl::standard-method-combination :superclass
sb-pcl::definition-source-mixin)
(:mop-direct sb-pcl::standard-method-combination :superclass
common-lisp:method-combination)
(:mop-direct sb-pcl::short-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::standard-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-method-combination :precedance
(sb-pcl::definition-source-mixin common-lisp:method-combination
sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::standard-method-combination :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::standard-method-combination :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::standard-method-combination :superclass
common-lisp:method-combination)
(:mop-direct sb-pcl::standard-method-combination :slot
((:name sb-pcl::type-name) (:ordinal 1) (:initargs (:type-name))
(:readers (sb-pcl::method-combination-type-name))))
(:mop-direct sb-pcl::standard-method-combination :slot
((:name sb-pcl::options) (:ordinal 2) (:initargs (:options))
(:readers (sb-pcl::method-combination-options))))
(:mop-direct sb-pcl::short-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::short-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::short-method-combination :precedance
(sb-pcl::standard-method-combination sb-pcl::definition-source-mixin
common-lisp:method-combination sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::short-method-combination :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::short-method-combination :typeof
common-lisp:standard-class)
(:mop-direct sb-pcl::short-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::short-method-combination :slot
((:name sb-pcl::operator) (:ordinal 1) (:initargs (:operator))
(:readers (sb-pcl::short-combination-operator))))
(:mop-direct sb-pcl::short-method-combination :slot
((:name sb-pcl::identity-with-one-argument) (:ordinal 2)
(:initargs (:identity-with-one-argument))
(:readers (sb-pcl::short-combination-identity-with-one-argument))))
(:mop-direct sb-pcl::short-method-combination :prototype
# #
{1001269D93}>)
(:mop-direct sb-pcl::long-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :package-name "SB-PCL")
(:mop-direct sb-pcl::long-method-combination :precedance
(sb-pcl::standard-method-combination sb-pcl::definition-source-mixin
common-lisp:method-combination sb-mop:metaobject common-lisp:standard-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::long-method-combination :classof
common-lisp:standard-class)
(:mop-direct sb-pcl::long-method-combination :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::long-method-combination :superclass
sb-pcl::standard-method-combination)
(:mop-direct sb-pcl::long-method-combination :slot
((:name common-lisp:function) (:ordinal 1) (:initargs (:function))
(:readers (sb-pcl::long-method-combination-function))))
(:mop-direct sb-pcl::long-method-combination :slot
((:name sb-pcl::args-lambda-list) (:ordinal 2) (:initargs (:args-lambda-list))
(:readers (sb-pcl::long-method-combination-args-lambda-list))))
(:mop-direct sb-pcl::long-method-combination :prototype
# #
{10012294C3}>)
(:mop-direct sb-pcl::standard-method-combination :prototype
# #
{10012BC723}>)
(:mop-direct common-lisp:method-combination :prototype
#)
(:mop-direct common-lisp:method :superclass sb-mop:metaobject)
(:mop-direct common-lisp:standard-method :superclass common-lisp:method)
(:mop-direct common-lisp:method :package-name "COMMON-LISP")
(:mop-direct common-lisp:method :precedance
(sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct common-lisp:method :classof common-lisp:standard-class)
(:mop-direct common-lisp:method :typeof common-lisp:standard-class)
(:mop-direct common-lisp:method :superclass sb-mop:metaobject)
(:mop-direct common-lisp:standard-method :superclass sb-pcl::plist-mixin)
(:mop-direct common-lisp:standard-method :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:standard-method :superclass common-lisp:method)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct common-lisp:standard-method :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-method :precedance
(sb-pcl::plist-mixin sb-pcl::definition-source-mixin common-lisp:method
sb-mop:metaobject common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct common-lisp:standard-method :classof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :typeof common-lisp:standard-class)
(:mop-direct common-lisp:standard-method :superclass common-lisp:method)
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::%generic-function) (:ordinal 1)
(:readers (sb-mop:method-generic-function))
(:writers ((common-lisp:setf sb-mop:method-generic-function)))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::qualifiers) (:ordinal 2) (:initargs (:qualifiers))
(:readers (common-lisp:method-qualifiers))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::specializers) (:ordinal 3) (:initargs (:specializers))
(:readers (sb-mop:method-specializers))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::lambda-list) (:ordinal 4) (:initargs (:lambda-list))
(:readers (sb-mop:method-lambda-list))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::%function) (:ordinal 5) (:initargs (:function))
(:readers (sb-mop:method-function))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::%documentation) (:ordinal 6) (:initargs (:documentation))))
(:mop-direct common-lisp:standard-method :slot
((:name sb-pcl::simple-next-method-call) (:ordinal 7)
(:initargs (sb-pcl::simple-next-method-call))
(:readers (sb-pcl::simple-next-method-call-p))))
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :superclass
sb-pcl::accessor-method)
(:mop-direct sb-pcl::accessor-method :package-name "SB-PCL")
(:mop-direct sb-pcl::accessor-method :precedance
(common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::accessor-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::accessor-method :superclass common-lisp:standard-method)
(:mop-direct sb-pcl::accessor-method :slot
((:name sb-pcl::slot-name) (:ordinal 1) (:initargs (:slot-name))
(:readers (sb-pcl::accessor-method-slot-name))))
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-boundp-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-boundp-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-boundp-method :prototype
#)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-writer-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-writer-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-writer-method :prototype
#)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :package-name "SB-PCL")
(:mop-direct sb-pcl::global-reader-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::global-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::global-reader-method :superclass sb-pcl::accessor-method)
(:mop-direct sb-pcl::global-reader-method :prototype
#)
(:mop-direct sb-mop:standard-accessor-method :superclass
sb-pcl::accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-accessor-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-accessor-method :precedance
(sb-pcl::accessor-method common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-accessor-method :classof
common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-accessor-method :superclass
sb-pcl::accessor-method)
(:mop-direct sb-mop:standard-accessor-method :slot
((:name sb-pcl::%slot-definition) (:ordinal 1) (:initargs (:slot-definition))
(:readers (sb-mop:accessor-method-slot-definition))))
(:mop-direct sb-pcl::standard-boundp-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :package-name "SB-PCL")
(:mop-direct sb-pcl::standard-boundp-method :precedance
(sb-mop:standard-accessor-method sb-pcl::accessor-method
common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::standard-boundp-method :classof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :typeof common-lisp:standard-class)
(:mop-direct sb-pcl::standard-boundp-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-pcl::standard-boundp-method :prototype
#)
(:mop-direct sb-mop:standard-writer-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-writer-method :precedance
(sb-mop:standard-accessor-method sb-pcl::accessor-method
common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-writer-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-writer-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-writer-method :prototype
#)
(:mop-direct sb-mop:standard-reader-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :package-name "SB-MOP")
(:mop-direct sb-mop:standard-reader-method :precedance
(sb-mop:standard-accessor-method sb-pcl::accessor-method
common-lisp:standard-method sb-pcl::plist-mixin
sb-pcl::definition-source-mixin common-lisp:method sb-mop:metaobject
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-mop:standard-reader-method :classof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :typeof common-lisp:standard-class)
(:mop-direct sb-mop:standard-reader-method :superclass
sb-mop:standard-accessor-method)
(:mop-direct sb-mop:standard-reader-method :prototype
#)
(:mop-direct sb-mop:standard-accessor-method :prototype
#)
(:mop-direct sb-pcl::accessor-method :prototype
#)
(:mop-direct common-lisp:standard-method :prototype
#)
(:mop-direct common-lisp:method :prototype #)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass
sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct common-lisp:generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:generic-function :precedance
(sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::initial-methods) (:ordinal 2)
(:readers (sb-pcl::generic-function-initial-methods))
(:writers ((common-lisp:setf sb-pcl::generic-function-initial-methods)))))
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::encapsulations) (:ordinal 3)
(:readers (sb-pcl::generic-function-encapsulations))
(:writers ((common-lisp:setf sb-pcl::generic-function-encapsulations)))))
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct common-lisp:standard-generic-function :default-initargs
((:method-class sb-pcl::*the-class-standard-method*
#)
(:method-combination sb-pcl::*standard-method-combination*
#)))
(:mop-direct common-lisp:standard-generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-generic-function :precedance
(common-lisp:generic-function sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
(:readers (sb-mop:generic-function-name))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::methods) (:ordinal 2) (:type common-lisp:list)
(:readers (sb-mop:generic-function-methods))
(:writers ((common-lisp:setf sb-mop:generic-function-methods)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::method-class) (:ordinal 3) (:initargs (:method-class))
(:readers (sb-mop:generic-function-method-class))
(:writers ((common-lisp:setf sb-mop:generic-function-method-class)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::%method-combination) (:ordinal 4)
(:initargs (:method-combination))
(:readers (sb-mop:generic-function-method-combination))
(:writers ((common-lisp:setf sb-mop:generic-function-method-combination)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::declarations) (:ordinal 5)
(:initargs (:declare :declarations))
(:readers (sb-mop:generic-function-declarations))
(:writers ((common-lisp:setf sb-mop:generic-function-declarations)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::arg-info) (:ordinal 6) (:initform (sb-pcl::make-arg-info))
(:readers (sb-pcl::gf-arg-info))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::dfun-state) (:ordinal 7) (:readers (sb-pcl::gf-dfun-state))
(:writers ((common-lisp:setf sb-pcl::gf-dfun-state)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::%lock) (:ordinal 8)
(:initform (sb-thread:make-mutex :name "GF lock"))
(:readers (sb-pcl::gf-lock))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::info-needs-update) (:ordinal 9)
(:readers (sb-pcl::gf-info-needs-update))
(:writers ((common-lisp:setf sb-pcl::gf-info-needs-update)))))
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :default-initargs
((:method-class sb-pcl::*the-class-standard-method*
#)
(:method-combination sb-pcl::*standard-method-combination*
#)))
(:mop-direct closer-mop:standard-generic-function :package-name "CLOSER-MOP")
(:mop-direct closer-mop:standard-generic-function :precedance
(common-lisp:standard-generic-function common-lisp:generic-function
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct closer-mop:standard-generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :prototype
#)
(:mop-direct common-lisp:standard-generic-function :prototype
#)
(:mop-direct common-lisp:generic-function :prototype
#)
(:mop-direct sb-mop:metaobject :prototype #)
(:mop-direct sb-mop:funcallable-standard-object :superclass
common-lisp:function)
(:mop-direct sb-mop:funcallable-standard-object :superclass
common-lisp:standard-object)
(:mop-direct common-lisp:generic-function :superclass
sb-mop:funcallable-standard-object)
(:mop-direct sb-mop:funcallable-standard-object :package-name "SB-MOP")
(:mop-direct sb-mop:funcallable-standard-object :precedance
(common-lisp:function common-lisp:standard-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-mop:funcallable-standard-object :classof
sb-mop:funcallable-standard-class)
(:mop-direct sb-mop:funcallable-standard-object :typeof
sb-mop:funcallable-standard-class)
(:mop-direct sb-mop:funcallable-standard-object :superclass
common-lisp:standard-object)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::dependent-update-mixin)
(:mop-direct common-lisp:generic-function :superclass
sb-pcl::definition-source-mixin)
(:mop-direct common-lisp:generic-function :superclass sb-mop:metaobject)
(:mop-direct common-lisp:generic-function :superclass
sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct common-lisp:generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:generic-function :precedance
(sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:generic-function :superclass
sb-mop:funcallable-standard-object)
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::%documentation) (:ordinal 1) (:initargs (:documentation))))
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::initial-methods) (:ordinal 2)
(:readers (sb-pcl::generic-function-initial-methods))
(:writers ((common-lisp:setf sb-pcl::generic-function-initial-methods)))))
(:mop-direct common-lisp:generic-function :slot
((:name sb-pcl::encapsulations) (:ordinal 3)
(:readers (sb-pcl::generic-function-encapsulations))
(:writers ((common-lisp:setf sb-pcl::generic-function-encapsulations)))))
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct common-lisp:standard-generic-function :default-initargs
((:method-class sb-pcl::*the-class-standard-method*
#)
(:method-combination sb-pcl::*standard-method-combination*
#)))
(:mop-direct common-lisp:standard-generic-function :package-name "COMMON-LISP")
(:mop-direct common-lisp:standard-generic-function :precedance
(common-lisp:generic-function sb-pcl::dependent-update-mixin
sb-pcl::plist-mixin sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:standard-generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct common-lisp:standard-generic-function :superclass
common-lisp:generic-function)
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::name) (:ordinal 1) (:initargs (:name))
(:readers (sb-mop:generic-function-name))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::methods) (:ordinal 2) (:type common-lisp:list)
(:readers (sb-mop:generic-function-methods))
(:writers ((common-lisp:setf sb-mop:generic-function-methods)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::method-class) (:ordinal 3) (:initargs (:method-class))
(:readers (sb-mop:generic-function-method-class))
(:writers ((common-lisp:setf sb-mop:generic-function-method-class)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::%method-combination) (:ordinal 4)
(:initargs (:method-combination))
(:readers (sb-mop:generic-function-method-combination))
(:writers ((common-lisp:setf sb-mop:generic-function-method-combination)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::declarations) (:ordinal 5)
(:initargs (:declare :declarations))
(:readers (sb-mop:generic-function-declarations))
(:writers ((common-lisp:setf sb-mop:generic-function-declarations)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::arg-info) (:ordinal 6) (:initform (sb-pcl::make-arg-info))
(:readers (sb-pcl::gf-arg-info))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::dfun-state) (:ordinal 7) (:readers (sb-pcl::gf-dfun-state))
(:writers ((common-lisp:setf sb-pcl::gf-dfun-state)))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::%lock) (:ordinal 8)
(:initform (sb-thread:make-mutex :name "GF lock"))
(:readers (sb-pcl::gf-lock))))
(:mop-direct common-lisp:standard-generic-function :slot
((:name sb-pcl::info-needs-update) (:ordinal 9)
(:readers (sb-pcl::gf-info-needs-update))
(:writers ((common-lisp:setf sb-pcl::gf-info-needs-update)))))
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :default-initargs
((:method-class sb-pcl::*the-class-standard-method*
#)
(:method-combination sb-pcl::*standard-method-combination*
#)))
(:mop-direct closer-mop:standard-generic-function :package-name "CLOSER-MOP")
(:mop-direct closer-mop:standard-generic-function :precedance
(common-lisp:standard-generic-function common-lisp:generic-function
sb-pcl::dependent-update-mixin sb-pcl::plist-mixin
sb-pcl::definition-source-mixin sb-mop:metaobject
sb-mop:funcallable-standard-object common-lisp:function
common-lisp:standard-object sb-pcl::slot-object common-lisp:t))
(:mop-direct closer-mop:standard-generic-function :classof
sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :typeof
sb-mop:funcallable-standard-class)
(:mop-direct closer-mop:standard-generic-function :superclass
common-lisp:standard-generic-function)
(:mop-direct closer-mop:standard-generic-function :prototype
#)
(:mop-direct common-lisp:standard-generic-function :prototype
#)
(:mop-direct common-lisp:generic-function :prototype
#)
(:mop-direct sb-mop:funcallable-standard-object :prototype
#)
(:mop-direct common-lisp:standard-object :prototype
#)
(:mop-direct common-lisp:structure-object :superclass sb-pcl::slot-object)
(:mop-direct ql-gunzipper::decode-tree :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::bit-stream :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::sliding-window-stream :superclass
common-lisp:structure-object)
(:mop-direct sb-impl::process :superclass common-lisp:structure-object)
(:mop-direct sb-profile::time-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::overhead :superclass common-lisp:structure-object)
(:mop-direct sb-profile::profile-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::counter :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::class-precedence-description :superclass
common-lisp:structure-object)
(:mop-direct sb-pcl::dfun-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::pv-table :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::arg-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::fast-instance-boundp :superclass
common-lisp:structure-object)
(:mop-direct sb-pcl::fast-method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::cache :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::fgen :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::slot-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::dead-beef-structure-object :superclass
common-lisp:structure-object)
(:mop-direct sb-loop::loop-path :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-collector :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-universe :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-minimax :superclass common-lisp:structure-object)
(:mop-direct sb-eval::env :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::location-group :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::source-form-cache :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::offs-hook :superclass common-lisp:structure-object)
(:mop-direct sb-di::fun-end-cookie :superclass common-lisp:structure-object)
(:mop-direct sb-di:breakpoint :superclass common-lisp:structure-object)
(:mop-direct sb-di::breakpoint-data :superclass common-lisp:structure-object)
(:mop-direct sb-di:frame :superclass common-lisp:structure-object)
(:mop-direct sb-di:code-location :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-block :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-fun :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-var :superclass common-lisp:structure-object)
(:mop-direct sb-ext:timer :superclass common-lisp:structure-object)
(:mop-direct sb-impl::priority-queue :superclass common-lisp:structure-object)
(:mop-direct sb-thread::session :superclass common-lisp:structure-object)
(:mop-direct sb-thread:semaphore-notification :superclass
common-lisp:structure-object)
(:mop-direct sb-thread:semaphore :superclass common-lisp:structure-object)
(:mop-direct sb-thread:waitqueue :superclass common-lisp:structure-object)
(:mop-direct sb-impl::token-buf :superclass common-lisp:structure-object)
(:mop-direct sb-impl::unprintable-object :superclass
common-lisp:structure-object)
(:mop-direct sb-vm::result-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::arg-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::ea :superclass common-lisp:structure-object)
(:mop-direct sb-c::reg-spec :superclass common-lisp:structure-object)
(:mop-direct sb-c::location-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::conset :superclass common-lisp:structure-object)
(:mop-direct sb-c::interval :superclass common-lisp:structure-object)
(:mop-direct sb-c::compiler-error-context :superclass
common-lisp:structure-object)
(:mop-direct sb-fasl::circularity :superclass common-lisp:structure-object)
(:mop-direct sb-fasl:fasl-output :superclass common-lisp:structure-object)
(:mop-direct sb-assem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:disassem-state :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::storage-info :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::cached-fun :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::valsrc :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::funstate :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::instruction-format :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::arg :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::arg-form-kind :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space-choice :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:instruction :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::fun-cache :superclass common-lisp:structure-object)
(:mop-direct sb-c::approximate-key-info :superclass
common-lisp:structure-object)
(:mop-direct sb-c::approximate-fun-type :superclass
common-lisp:structure-object)
(:mop-direct sb-fasl::undefined-package :superclass
common-lisp:structure-object)
(:mop-direct sb-alien::shared-object :superclass common-lisp:structure-object)
(:mop-direct sb-c::core-object :superclass common-lisp:structure-object)
(:mop-direct sb-c::fixup-note :superclass common-lisp:structure-object)
(:mop-direct sb-c:fixup :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::pprint-dispatch-entry :superclass
common-lisp:structure-object)
(:mop-direct sb-pretty::logical-block :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::queued-op :superclass common-lisp:structure-object)
(:mop-direct sb-pretty:pprint-dispatch-table :superclass
common-lisp:structure-object)
(:mop-direct common-lisp:pathname :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:host :superclass common-lisp:structure-object)
(:mop-direct common-lisp:readtable :superclass common-lisp:structure-object)
(:mop-direct common-lisp:hash-table :superclass common-lisp:structure-object)
(:mop-direct common-lisp:random-state :superclass common-lisp:structure-object)
(:mop-direct common-lisp:package :superclass common-lisp:structure-object)
(:mop-direct sb-int:package-hashtable :superclass common-lisp:structure-object)
(:mop-direct sb-c::transform :superclass common-lisp:structure-object)
(:mop-direct sb-alien::alien-type-class :superclass
common-lisp:structure-object)
(:mop-direct sb-format::format-directive :superclass
common-lisp:structure-object)
(:mop-direct sb-kernel::condition-slot :superclass common-lisp:structure-object)
(:mop-direct sb-c::source-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::file-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-nlx-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::return-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-physenv :superclass common-lisp:structure-object)
(:mop-direct sb-c::entry-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-lvar :superclass common-lisp:structure-object)
(:mop-direct sb-c:primitive-type :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:key-info :superclass common-lisp:structure-object)
(:mop-direct sb-int:xset :superclass common-lisp:structure-object)
(:mop-direct sb-int:sset :superclass common-lisp:structure-object)
(:mop-direct sb-c::modular-fun-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::modular-class :superclass common-lisp:structure-object)
(:mop-direct sb-c::fun-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::event-info :superclass common-lisp:structure-object)
(:mop-direct sb-impl::external-format :superclass common-lisp:structure-object)
(:mop-direct sb-impl::buffer :superclass common-lisp:structure-object)
(:mop-direct sb-impl::pollfds :superclass common-lisp:structure-object)
(:mop-direct sb-impl::handler :superclass common-lisp:structure-object)
(:mop-direct sb-impl::huffman-node :superclass common-lisp:structure-object)
(:mop-direct sb-vm::specialized-array-element-type-properties :superclass
common-lisp:structure-object)
(:mop-direct sb-alien::callback-info :superclass common-lisp:structure-object)
(:mop-direct sb-impl::encapsulation-info :superclass
common-lisp:structure-object)
(:mop-direct sb-c::info-hashtable :superclass common-lisp:structure-object)
(:mop-direct sb-kernel::raw-slot-data :superclass common-lisp:structure-object)
(:mop-direct sb-alien-internals:alien-value :superclass
common-lisp:structure-object)
(:mop-direct sb-thread:thread :superclass common-lisp:structure-object)
(:mop-direct sb-sys:structure!object :superclass common-lisp:structure-object)
(:mop-direct sb-fasl::fasl-input :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:ansi-stream :superclass common-lisp:structure-object)
(:mop-direct common-lisp:restart :superclass common-lisp:structure-object)
(:mop-direct sb-int:deprecation-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::policy-dependent-quality :superclass
common-lisp:structure-object)
(:mop-direct sb-c::meta-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::abstract-lexenv :superclass common-lisp:structure-object)
(:mop-direct sb-c:policy :superclass common-lisp:structure-object)
(:mop-direct sb-impl::comma :superclass common-lisp:structure-object)
(:mop-direct common-lisp:structure-object :package-name "COMMON-LISP")
(:mop-direct common-lisp:structure-object :precedance
(sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:structure-object :classof common-lisp:structure-class)
(:mop-direct common-lisp:structure-object :typeof common-lisp:structure-class)
(:mop-direct common-lisp:structure-object :superclass sb-pcl::slot-object)
(:mop-direct ql-gunzipper::decode-tree :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::decode-tree :package-name "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::decode-tree :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::decode-tree :classof common-lisp:structure-class)
(:mop-direct ql-gunzipper::decode-tree :typeof common-lisp:structure-class)
(:mop-direct ql-gunzipper::decode-tree :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::decode-tree :slot
((:name ql-gunzipper::length-count) (:ordinal 1)
(:initform
(common-lisp:make-array 16 :element-type 'common-lisp:fixnum
:initial-element 0))
(:type (common-lisp:simple-array common-lisp:fixnum (common-lisp:*)))))
(:mop-direct ql-gunzipper::decode-tree :slot
((:name ql-gunzipper::code-symbols) (:ordinal 2)
(:initform
(common-lisp:make-array 16 :element-type 'common-lisp:fixnum
:initial-element 0))
(:type (common-lisp:simple-array common-lisp:fixnum (common-lisp:*)))))
(:mop-direct ql-gunzipper::decode-tree :prototype
#S(ql-gunzipper::decode-tree :length-count 0 :code-symbols 0))
(:mop-direct ql-gunzipper::bit-stream :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::bit-stream :package-name "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::bit-stream :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::bit-stream :classof common-lisp:structure-class)
(:mop-direct ql-gunzipper::bit-stream :typeof common-lisp:structure-class)
(:mop-direct ql-gunzipper::bit-stream :superclass common-lisp:structure-object)
(:mop-direct ql-gunzipper::bit-stream :slot
((:name common-lisp:stream) (:ordinal 1) (:type common-lisp:stream)))
(:mop-direct ql-gunzipper::bit-stream :slot
((:name ql-gunzipper::next-byte) (:ordinal 2) (:initform 0)
(:type common-lisp:fixnum)))
(:mop-direct ql-gunzipper::bit-stream :slot
((:name ql-gunzipper::bits) (:ordinal 3) (:initform 0)
(:type (common-lisp:unsigned-byte 29))))
(:mop-direct ql-gunzipper::bit-stream :slot
((:name ql-gunzipper::bit-count) (:ordinal 4) (:initform 0)
(:type (common-lisp:unsigned-byte 8))))
(:mop-direct ql-gunzipper::bit-stream :prototype
#S(ql-gunzipper::bit-stream :stream 0 :next-byte 0 :bits 0 :bit-count 0))
(:mop-direct ql-gunzipper::sliding-window-stream :superclass
common-lisp:structure-object)
(:mop-direct ql-gunzipper::sliding-window-stream :package-name "QL-GUNZIPPER")
(:mop-direct ql-gunzipper::sliding-window-stream :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct ql-gunzipper::sliding-window-stream :classof
common-lisp:structure-class)
(:mop-direct ql-gunzipper::sliding-window-stream :typeof
common-lisp:structure-class)
(:mop-direct ql-gunzipper::sliding-window-stream :superclass
common-lisp:structure-object)
(:mop-direct ql-gunzipper::sliding-window-stream :slot
((:name common-lisp:stream) (:ordinal 1) (:type common-lisp:stream)))
(:mop-direct ql-gunzipper::sliding-window-stream :slot
((:name ql-gunzipper::buffer) (:ordinal 2)
(:initform
(common-lisp:make-array ql-gunzipper::+sliding-window-size+ :element-type
'(common-lisp:unsigned-byte 8)))
(:type (common-lisp:simple-array (common-lisp:unsigned-byte 8) (32768)))))
(:mop-direct ql-gunzipper::sliding-window-stream :slot
((:name ql-gunzipper::buffer-end) (:ordinal 3) (:initform 0)
(:type common-lisp:fixnum)))
(:mop-direct ql-gunzipper::sliding-window-stream :slot
((:name ql-gunzipper::checksum) (:ordinal 4) (:type common-lisp:symbol)))
(:mop-direct ql-gunzipper::sliding-window-stream :slot
((:name ql-gunzipper::checksum-value) (:ordinal 5) (:initform 0)
(:type (common-lisp:unsigned-byte 32))))
(:mop-direct ql-gunzipper::sliding-window-stream :prototype
#S(ql-gunzipper::sliding-window-stream
:stream 0
:buffer 0
:buffer-end 0
:checksum 0
:checksum-value 0))
(:mop-direct sb-impl::process :superclass common-lisp:structure-object)
(:mop-direct sb-impl::process :package-name "SB-IMPL")
(:mop-direct sb-impl::process :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::process :classof common-lisp:structure-class)
(:mop-direct sb-impl::process :typeof common-lisp:structure-class)
(:mop-direct sb-impl::process :superclass common-lisp:structure-object)
(:mop-direct sb-impl::process :slot ((:name sb-impl::pid) (:ordinal 1)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::%status) (:ordinal 2)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::%exit-code) (:ordinal 3)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::core-dumped) (:ordinal 4)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::pty) (:ordinal 5)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::input) (:ordinal 6)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::output) (:ordinal 7)))
(:mop-direct sb-impl::process :slot ((:name common-lisp:error) (:ordinal 8)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::status-hook) (:ordinal 9)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::plist) (:ordinal 10)))
(:mop-direct sb-impl::process :slot ((:name sb-impl::cookie) (:ordinal 11)))
(:mop-direct sb-impl::process :prototype #)
(:mop-direct sb-profile::time-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::time-info :package-name "SB-PROFILE")
(:mop-direct sb-profile::time-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-profile::time-info :classof common-lisp:structure-class)
(:mop-direct sb-profile::time-info :typeof common-lisp:structure-class)
(:mop-direct sb-profile::time-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::time-info :slot
((:name sb-profile::name) (:ordinal 1)))
(:mop-direct sb-profile::time-info :slot
((:name sb-profile::calls) (:ordinal 2)))
(:mop-direct sb-profile::time-info :slot
((:name sb-profile::seconds) (:ordinal 3)))
(:mop-direct sb-profile::time-info :slot
((:name sb-profile::consing) (:ordinal 4)))
(:mop-direct sb-profile::time-info :slot
((:name sb-profile::gc-run-time) (:ordinal 5)))
(:mop-direct sb-profile::time-info :prototype
#S(sb-profile::time-info
:name 0
:calls 0
:seconds 0
:consing 0
:gc-run-time 0))
(:mop-direct sb-profile::overhead :superclass common-lisp:structure-object)
(:mop-direct sb-profile::overhead :package-name "SB-PROFILE")
(:mop-direct sb-profile::overhead :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-profile::overhead :classof common-lisp:structure-class)
(:mop-direct sb-profile::overhead :typeof common-lisp:structure-class)
(:mop-direct sb-profile::overhead :superclass common-lisp:structure-object)
(:mop-direct sb-profile::overhead :slot
((:name sb-profile::call) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type common-lisp:single-float)))
(:mop-direct sb-profile::overhead :slot
((:name sb-profile::internal) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type common-lisp:single-float)))
(:mop-direct sb-profile::overhead :slot
((:name sb-profile::total) (:ordinal 3) (:initform (sb-int:missing-arg))
(:type common-lisp:single-float)))
(:mop-direct sb-profile::overhead :prototype
#S(sb-profile::overhead :call 0.0 :internal 0.0 :total 0.0))
(:mop-direct sb-profile::profile-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::profile-info :package-name "SB-PROFILE")
(:mop-direct sb-profile::profile-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-profile::profile-info :classof common-lisp:structure-class)
(:mop-direct sb-profile::profile-info :typeof common-lisp:structure-class)
(:mop-direct sb-profile::profile-info :superclass common-lisp:structure-object)
(:mop-direct sb-profile::profile-info :slot
((:name sb-profile::name) (:ordinal 1) (:initform (sb-int:missing-arg))))
(:mop-direct sb-profile::profile-info :slot
((:name sb-profile::encapsulated-fun) (:ordinal 2)
(:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-profile::profile-info :slot
((:name sb-profile::encapsulation-fun) (:ordinal 3)
(:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-profile::profile-info :slot
((:name sb-profile::read-stats-fun) (:ordinal 4)
(:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-profile::profile-info :slot
((:name sb-profile::clear-stats-fun) (:ordinal 5)
(:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-profile::profile-info :prototype
#S(sb-profile::profile-info
:name 0
:encapsulated-fun 0
:encapsulation-fun 0
:read-stats-fun 0
:clear-stats-fun 0))
(:mop-direct sb-profile::counter :superclass common-lisp:structure-object)
(:mop-direct sb-profile::counter :package-name "SB-PROFILE")
(:mop-direct sb-profile::counter :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-profile::counter :classof common-lisp:structure-class)
(:mop-direct sb-profile::counter :typeof common-lisp:structure-class)
(:mop-direct sb-profile::counter :superclass common-lisp:structure-object)
(:mop-direct sb-profile::counter :slot
((:name sb-ext:word) (:ordinal 1) (:initform 0) (:type sb-ext:word)))
(:mop-direct sb-profile::counter :slot
((:name sb-profile::overflow) (:ordinal 2) (:initform 0)
(:type common-lisp:unsigned-byte)))
(:mop-direct sb-profile::counter :prototype
#S(sb-profile::counter :word 0 :overflow 0))
(:mop-direct sb-pcl::class-precedence-description :superclass
common-lisp:structure-object)
(:mop-direct sb-pcl::class-precedence-description :package-name "SB-PCL")
(:mop-direct sb-pcl::class-precedence-description :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::class-precedence-description :classof
common-lisp:structure-class)
(:mop-direct sb-pcl::class-precedence-description :typeof
common-lisp:structure-class)
(:mop-direct sb-pcl::class-precedence-description :superclass
common-lisp:structure-object)
(:mop-direct sb-pcl::class-precedence-description :slot
((:name sb-pcl::cpd-class) (:ordinal 1)))
(:mop-direct sb-pcl::class-precedence-description :slot
((:name sb-pcl::cpd-supers) (:ordinal 2)))
(:mop-direct sb-pcl::class-precedence-description :slot
((:name sb-pcl::cpd-after) (:ordinal 3)))
(:mop-direct sb-pcl::class-precedence-description :slot
((:name sb-pcl::cpd-count) (:ordinal 4) (:initform 0)))
(:mop-direct sb-pcl::class-precedence-description :prototype
#)
(:mop-direct sb-pcl::dfun-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::constant-value :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::caching :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::checking :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::accessor-dfun-info :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::default-method-only :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::dispatch :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::initial :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::no-methods :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::dfun-info :package-name "SB-PCL")
(:mop-direct sb-pcl::dfun-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::dfun-info :classof common-lisp:structure-class)
(:mop-direct sb-pcl::dfun-info :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::dfun-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::dfun-info :slot ((:name sb-pcl::cache) (:ordinal 1)))
(:mop-direct sb-pcl::constant-value :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::constant-value :package-name "SB-PCL")
(:mop-direct sb-pcl::constant-value :precedance
(sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::constant-value :classof common-lisp:structure-class)
(:mop-direct sb-pcl::constant-value :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::constant-value :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::constant-value :prototype
#)
(:mop-direct sb-pcl::caching :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::caching :package-name "SB-PCL")
(:mop-direct sb-pcl::caching :precedance
(sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::caching :classof common-lisp:structure-class)
(:mop-direct sb-pcl::caching :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::caching :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::caching :prototype #)
(:mop-direct sb-pcl::checking :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::checking :package-name "SB-PCL")
(:mop-direct sb-pcl::checking :precedance
(sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::checking :classof common-lisp:structure-class)
(:mop-direct sb-pcl::checking :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::checking :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::checking :slot ((:name common-lisp:function) (:ordinal 1)))
(:mop-direct sb-pcl::checking :prototype #)
(:mop-direct sb-pcl::accessor-dfun-info :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::n-n :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::one-index-dfun-info :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::accessor-dfun-info :package-name "SB-PCL")
(:mop-direct sb-pcl::accessor-dfun-info :precedance
(sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::accessor-dfun-info :classof common-lisp:structure-class)
(:mop-direct sb-pcl::accessor-dfun-info :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::accessor-dfun-info :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::accessor-dfun-info :slot
((:name sb-pcl::accessor-type) (:ordinal 1)))
(:mop-direct sb-pcl::n-n :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::n-n :package-name "SB-PCL")
(:mop-direct sb-pcl::n-n :precedance
(sb-pcl::accessor-dfun-info sb-pcl::dfun-info common-lisp:structure-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::n-n :classof common-lisp:structure-class)
(:mop-direct sb-pcl::n-n :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::n-n :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::n-n :prototype #)
(:mop-direct sb-pcl::one-index-dfun-info :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::one-index :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::one-class :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::one-index-dfun-info :package-name "SB-PCL")
(:mop-direct sb-pcl::one-index-dfun-info :precedance
(sb-pcl::accessor-dfun-info sb-pcl::dfun-info common-lisp:structure-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::one-index-dfun-info :classof common-lisp:structure-class)
(:mop-direct sb-pcl::one-index-dfun-info :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::one-index-dfun-info :superclass sb-pcl::accessor-dfun-info)
(:mop-direct sb-pcl::one-index-dfun-info :slot
((:name sb-int:index) (:ordinal 1)))
(:mop-direct sb-pcl::one-index :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::one-index :package-name "SB-PCL")
(:mop-direct sb-pcl::one-index :precedance
(sb-pcl::one-index-dfun-info sb-pcl::accessor-dfun-info sb-pcl::dfun-info
common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::one-index :classof common-lisp:structure-class)
(:mop-direct sb-pcl::one-index :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::one-index :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::one-index :prototype #)
(:mop-direct sb-pcl::one-class :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::two-class :superclass sb-pcl::one-class)
(:mop-direct sb-pcl::one-class :package-name "SB-PCL")
(:mop-direct sb-pcl::one-class :precedance
(sb-pcl::one-index-dfun-info sb-pcl::accessor-dfun-info sb-pcl::dfun-info
common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::one-class :classof common-lisp:structure-class)
(:mop-direct sb-pcl::one-class :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::one-class :superclass sb-pcl::one-index-dfun-info)
(:mop-direct sb-pcl::one-class :slot ((:name sb-pcl::wrapper0) (:ordinal 1)))
(:mop-direct sb-pcl::two-class :superclass sb-pcl::one-class)
(:mop-direct sb-pcl::two-class :package-name "SB-PCL")
(:mop-direct sb-pcl::two-class :precedance
(sb-pcl::one-class sb-pcl::one-index-dfun-info sb-pcl::accessor-dfun-info
sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::two-class :classof common-lisp:structure-class)
(:mop-direct sb-pcl::two-class :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::two-class :superclass sb-pcl::one-class)
(:mop-direct sb-pcl::two-class :slot ((:name sb-pcl::wrapper1) (:ordinal 1)))
(:mop-direct sb-pcl::two-class :prototype #)
(:mop-direct sb-pcl::one-class :prototype #)
(:mop-direct sb-pcl::one-index-dfun-info :prototype
#)
(:mop-direct sb-pcl::accessor-dfun-info :prototype
#)
(:mop-direct sb-pcl::default-method-only :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::default-method-only :package-name "SB-PCL")
(:mop-direct sb-pcl::default-method-only :precedance
(sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::default-method-only :classof common-lisp:structure-class)
(:mop-direct sb-pcl::default-method-only :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::default-method-only :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::default-method-only :prototype
#)
(:mop-direct sb-pcl::dispatch :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::dispatch :package-name "SB-PCL")
(:mop-direct sb-pcl::dispatch :precedance
(sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::dispatch :classof common-lisp:structure-class)
(:mop-direct sb-pcl::dispatch :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::dispatch :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::dispatch :prototype #)
(:mop-direct sb-pcl::initial :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::initial :package-name "SB-PCL")
(:mop-direct sb-pcl::initial :precedance
(sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::initial :classof common-lisp:structure-class)
(:mop-direct sb-pcl::initial :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::initial :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::initial :prototype #)
(:mop-direct sb-pcl::no-methods :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::no-methods :package-name "SB-PCL")
(:mop-direct sb-pcl::no-methods :precedance
(sb-pcl::dfun-info common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::no-methods :classof common-lisp:structure-class)
(:mop-direct sb-pcl::no-methods :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::no-methods :superclass sb-pcl::dfun-info)
(:mop-direct sb-pcl::no-methods :prototype #)
(:mop-direct sb-pcl::dfun-info :prototype #)
(:mop-direct sb-pcl::pv-table :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::pv-table :package-name "SB-PCL")
(:mop-direct sb-pcl::pv-table :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::pv-table :classof common-lisp:structure-class)
(:mop-direct sb-pcl::pv-table :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::pv-table :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::pv-table :slot
((:name sb-pcl::cache) (:ordinal 1)
(:type (common-lisp:or sb-pcl::cache common-lisp:null))))
(:mop-direct sb-pcl::pv-table :slot
((:name sb-pcl::pv-size) (:ordinal 2) (:initform 0)
(:type common-lisp:fixnum)))
(:mop-direct sb-pcl::pv-table :slot
((:name sb-pcl::slot-name-lists) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-pcl::pv-table :prototype
#S(sb-pcl::pv-table :cache 0 :pv-size 0 :slot-name-lists 0))
(:mop-direct sb-pcl::arg-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::arg-info :package-name "SB-PCL")
(:mop-direct sb-pcl::arg-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::arg-info :classof common-lisp:structure-class)
(:mop-direct sb-pcl::arg-info :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::arg-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::arg-info-lambda-list) (:ordinal 1)
(:initform :no-lambda-list)))
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::arg-info-precedence) (:ordinal 2)))
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::arg-info-metatypes) (:ordinal 3)))
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::arg-info-number-optional) (:ordinal 4)))
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::arg-info-key/rest-p) (:ordinal 5)))
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::arg-info-keys) (:ordinal 6)))
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::gf-info-simple-accessor-type) (:ordinal 7)))
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::gf-precompute-dfun-and-emf-p) (:ordinal 8)))
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::gf-info-static-c-a-m-emf) (:ordinal 9)))
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::gf-info-c-a-m-emf-std-p) (:ordinal 10)
(:initform common-lisp:t)))
(:mop-direct sb-pcl::arg-info :slot
((:name sb-pcl::gf-info-fast-mf-p) (:ordinal 11)))
(:mop-direct sb-pcl::arg-info :prototype
#S(sb-pcl::arg-info
:arg-info-lambda-list 0
:arg-info-precedence 0
:arg-info-metatypes 0
:arg-info-number-optional 0
:arg-info-key/rest-p 0
:arg-info-keys 0
:gf-info-simple-accessor-type 0
:gf-precompute-dfun-and-emf-p 0
:gf-info-static-c-a-m-emf 0
:gf-info-c-a-m-emf-std-p 0
:gf-info-fast-mf-p 0))
(:mop-direct sb-pcl::fast-instance-boundp :superclass
common-lisp:structure-object)
(:mop-direct sb-pcl::fast-instance-boundp :package-name "SB-PCL")
(:mop-direct sb-pcl::fast-instance-boundp :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::fast-instance-boundp :classof common-lisp:structure-class)
(:mop-direct sb-pcl::fast-instance-boundp :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::fast-instance-boundp :superclass
common-lisp:structure-object)
(:mop-direct sb-pcl::fast-instance-boundp :slot
((:name sb-int:index) (:ordinal 1) (:initform 0) (:type common-lisp:fixnum)))
(:mop-direct sb-pcl::fast-instance-boundp :prototype
#S(sb-pcl::fast-instance-boundp :index 0))
(:mop-direct sb-pcl::fast-method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::constant-fast-method-call :superclass
sb-pcl::fast-method-call)
(:mop-direct sb-pcl::fast-method-call :package-name "SB-PCL")
(:mop-direct sb-pcl::fast-method-call :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::fast-method-call :classof common-lisp:structure-class)
(:mop-direct sb-pcl::fast-method-call :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::fast-method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::fast-method-call :slot
((:name common-lisp:function) (:ordinal 1) (:initform #'common-lisp:identity)
(:type common-lisp:function)))
(:mop-direct sb-pcl::fast-method-call :slot ((:name sb-pcl::pv) (:ordinal 2)))
(:mop-direct sb-pcl::fast-method-call :slot
((:name sb-pcl::next-method-call) (:ordinal 3)))
(:mop-direct sb-pcl::fast-method-call :slot
((:name sb-pcl::arg-info) (:ordinal 4)))
(:mop-direct sb-pcl::constant-fast-method-call :superclass
sb-pcl::fast-method-call)
(:mop-direct sb-pcl::constant-fast-method-call :package-name "SB-PCL")
(:mop-direct sb-pcl::constant-fast-method-call :precedance
(sb-pcl::fast-method-call common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::constant-fast-method-call :classof
common-lisp:structure-class)
(:mop-direct sb-pcl::constant-fast-method-call :typeof
common-lisp:structure-class)
(:mop-direct sb-pcl::constant-fast-method-call :superclass
sb-pcl::fast-method-call)
(:mop-direct sb-pcl::constant-fast-method-call :slot
((:name sb-pcl::value) (:ordinal 1)))
(:mop-direct sb-pcl::constant-fast-method-call :prototype
#S(sb-pcl::constant-fast-method-call
:function 0
:pv 0
:next-method-call 0
:arg-info 0
:value 0))
(:mop-direct sb-pcl::fast-method-call :prototype
#S(sb-pcl::fast-method-call :function 0 :pv 0 :next-method-call 0 :arg-info 0))
(:mop-direct sb-pcl::method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::constant-method-call :superclass sb-pcl::method-call)
(:mop-direct sb-pcl::method-call :package-name "SB-PCL")
(:mop-direct sb-pcl::method-call :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::method-call :classof common-lisp:structure-class)
(:mop-direct sb-pcl::method-call :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::method-call :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::method-call :slot
((:name common-lisp:function) (:ordinal 1) (:initform #'common-lisp:identity)
(:type common-lisp:function)))
(:mop-direct sb-pcl::method-call :slot
((:name sb-pcl::call-method-args) (:ordinal 2)))
(:mop-direct sb-pcl::constant-method-call :superclass sb-pcl::method-call)
(:mop-direct sb-pcl::constant-method-call :package-name "SB-PCL")
(:mop-direct sb-pcl::constant-method-call :precedance
(sb-pcl::method-call common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pcl::constant-method-call :classof common-lisp:structure-class)
(:mop-direct sb-pcl::constant-method-call :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::constant-method-call :superclass sb-pcl::method-call)
(:mop-direct sb-pcl::constant-method-call :slot
((:name sb-pcl::value) (:ordinal 1)))
(:mop-direct sb-pcl::constant-method-call :prototype
#S(sb-pcl::constant-method-call :function 0 :call-method-args 0 :value 0))
(:mop-direct sb-pcl::method-call :prototype
#S(sb-pcl::method-call :function 0 :call-method-args 0))
(:mop-direct sb-pcl::cache :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::cache :package-name "SB-PCL")
(:mop-direct sb-pcl::cache :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::cache :classof common-lisp:structure-class)
(:mop-direct sb-pcl::cache :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::cache :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::cache :slot
((:name sb-pcl::key-count) (:ordinal 1) (:initform 1)
(:type (common-lisp:integer 1 (4611686018427387903)))))
(:mop-direct sb-pcl::cache :slot ((:name sb-pcl::value) (:ordinal 2)))
(:mop-direct sb-pcl::cache :slot
((:name sb-pcl::line-size) (:ordinal 3) (:initform 1)
(:type (common-lisp:integer 1 4611686018427387903))))
(:mop-direct sb-pcl::cache :slot
((:name common-lisp:vector) (:ordinal 4) (:initform #())
(:type common-lisp:simple-vector)))
(:mop-direct sb-pcl::cache :slot
((:name sb-pcl::mask) (:ordinal 5) (:initform 0) (:type common-lisp:fixnum)))
(:mop-direct sb-pcl::cache :slot
((:name sb-pcl::depth) (:ordinal 6) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-pcl::cache :slot
((:name sb-pcl::limit) (:ordinal 7) (:initform 0) (:type sb-int:index)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xfffffffffffffff9 (pc=0x1001280fc8, sp=0x7ffff2b9e4c0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.
(:mop-direct sb-pcl::fgen :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::fgen :package-name "SB-PCL")
(:mop-direct sb-pcl::fgen :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::fgen :classof common-lisp:structure-class)
(:mop-direct sb-pcl::fgen :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::fgen :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::fgen :slot ((:name sb-pcl::gensyms) (:ordinal 1)))
(:mop-direct sb-pcl::fgen :slot ((:name sb-pcl::generator) (:ordinal 2)))
(:mop-direct sb-pcl::fgen :slot ((:name sb-pcl::generator-lambda) (:ordinal 3)))
(:mop-direct sb-pcl::fgen :slot ((:name sb-pcl::system) (:ordinal 4)))
(:mop-direct sb-pcl::fgen :prototype
#S(sb-pcl::fgen :gensyms 0 :generator 0 :generator-lambda 0 :system 0))
(:mop-direct sb-pcl::slot-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::slot-info :package-name "SB-PCL")
(:mop-direct sb-pcl::slot-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::slot-info :classof common-lisp:structure-class)
(:mop-direct sb-pcl::slot-info :typeof common-lisp:structure-class)
(:mop-direct sb-pcl::slot-info :superclass common-lisp:structure-object)
(:mop-direct sb-pcl::slot-info :slot
((:name sb-pcl::typecheck) (:ordinal 1)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-pcl::slot-info :slot
((:name sb-pcl::reader) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-pcl::slot-info :slot
((:name sb-pcl::writer) (:ordinal 3) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-pcl::slot-info :slot
((:name common-lisp:boundp) (:ordinal 4) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-pcl::slot-info :prototype
#S(sb-pcl::slot-info :typecheck 0 :reader 0 :writer 0 :boundp 0))
(:mop-direct sb-pcl::dead-beef-structure-object :superclass
common-lisp:structure-object)
(:mop-direct sb-pcl::dead-beef-structure-object :package-name "SB-PCL")
(:mop-direct sb-pcl::dead-beef-structure-object :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pcl::dead-beef-structure-object :classof
common-lisp:structure-class)
(:mop-direct sb-pcl::dead-beef-structure-object :typeof
common-lisp:structure-class)
(:mop-direct sb-pcl::dead-beef-structure-object :superclass
common-lisp:structure-object)
(:mop-direct sb-pcl::dead-beef-structure-object :prototype
#S(sb-pcl::dead-beef-structure-object))
(:mop-direct sb-loop::loop-path :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-path :package-name "SB-LOOP")
(:mop-direct sb-loop::loop-path :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-loop::loop-path :classof common-lisp:structure-class)
(:mop-direct sb-loop::loop-path :typeof common-lisp:structure-class)
(:mop-direct sb-loop::loop-path :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-path :slot ((:name sb-loop::names) (:ordinal 1)))
(:mop-direct sb-loop::loop-path :slot
((:name sb-loop::preposition-groups) (:ordinal 2)))
(:mop-direct sb-loop::loop-path :slot
((:name sb-loop::inclusive-permitted) (:ordinal 3)))
(:mop-direct sb-loop::loop-path :slot
((:name common-lisp:function) (:ordinal 4)))
(:mop-direct sb-loop::loop-path :slot ((:name sb-loop::user-data) (:ordinal 5)))
(:mop-direct sb-loop::loop-path :prototype
#S(sb-loop::loop-path
:names 0
:preposition-groups 0
:inclusive-permitted 0
:function 0
:user-data 0))
(:mop-direct sb-loop::loop-collector :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-collector :package-name "SB-LOOP")
(:mop-direct sb-loop::loop-collector :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-loop::loop-collector :classof common-lisp:structure-class)
(:mop-direct sb-loop::loop-collector :typeof common-lisp:structure-class)
(:mop-direct sb-loop::loop-collector :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-collector :slot ((:name sb-loop::name) (:ordinal 1)))
(:mop-direct sb-loop::loop-collector :slot
((:name common-lisp:class) (:ordinal 2)))
(:mop-direct sb-loop::loop-collector :slot
((:name sb-loop::history) (:ordinal 3)))
(:mop-direct sb-loop::loop-collector :slot
((:name sb-loop::tempvars) (:ordinal 4)))
(:mop-direct sb-loop::loop-collector :slot
((:name sb-loop::specified-type) (:ordinal 5)))
(:mop-direct sb-loop::loop-collector :slot
((:name sb-loop::dtype) (:ordinal 6)))
(:mop-direct sb-loop::loop-collector :slot ((:name sb-loop::data) (:ordinal 7)))
(:mop-direct sb-loop::loop-collector :prototype
#S(sb-loop::loop-collector
:name 0
:class 0
:history 0
:tempvars 0
:specified-type 0
:dtype 0
:data 0))
(:mop-direct sb-loop::loop-universe :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-universe :package-name "SB-LOOP")
(:mop-direct sb-loop::loop-universe :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-loop::loop-universe :classof common-lisp:structure-class)
(:mop-direct sb-loop::loop-universe :typeof common-lisp:structure-class)
(:mop-direct sb-loop::loop-universe :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-universe :slot
((:name sb-loop::keywords) (:ordinal 1)))
(:mop-direct sb-loop::loop-universe :slot
((:name sb-loop::iteration-keywords) (:ordinal 2)))
(:mop-direct sb-loop::loop-universe :slot
((:name sb-loop::for-keywords) (:ordinal 3)))
(:mop-direct sb-loop::loop-universe :slot
((:name sb-loop::path-keywords) (:ordinal 4)))
(:mop-direct sb-loop::loop-universe :slot
((:name sb-loop::type-symbols) (:ordinal 5)))
(:mop-direct sb-loop::loop-universe :slot
((:name sb-loop::type-keywords) (:ordinal 6)))
(:mop-direct sb-loop::loop-universe :prototype
#)
(:mop-direct sb-loop::loop-minimax :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-minimax :package-name "SB-LOOP")
(:mop-direct sb-loop::loop-minimax :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-loop::loop-minimax :classof common-lisp:structure-class)
(:mop-direct sb-loop::loop-minimax :typeof common-lisp:structure-class)
(:mop-direct sb-loop::loop-minimax :superclass common-lisp:structure-object)
(:mop-direct sb-loop::loop-minimax :slot
((:name sb-loop::answer-variable) (:ordinal 1)))
(:mop-direct sb-loop::loop-minimax :slot
((:name common-lisp:type) (:ordinal 2)))
(:mop-direct sb-loop::loop-minimax :slot
((:name sb-loop::temp-variable) (:ordinal 3)))
(:mop-direct sb-loop::loop-minimax :slot
((:name sb-loop::flag-variable) (:ordinal 4)))
(:mop-direct sb-loop::loop-minimax :slot
((:name sb-loop::operations) (:ordinal 5)))
(:mop-direct sb-loop::loop-minimax :slot
((:name sb-loop::infinity-data) (:ordinal 6)))
(:mop-direct sb-loop::loop-minimax :prototype
#S(sb-loop::loop-minimax
:answer-variable 0
:type 0
:temp-variable 0
:flag-variable 0
:operations 0
:infinity-data 0))
(:mop-direct sb-eval::env :superclass common-lisp:structure-object)
(:mop-direct sb-eval::env :package-name "SB-EVAL")
(:mop-direct sb-eval::env :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-eval::env :classof common-lisp:structure-class)
(:mop-direct sb-eval::env :typeof common-lisp:structure-class)
(:mop-direct sb-eval::env :superclass common-lisp:structure-object)
(:mop-direct sb-eval::env :slot ((:name sb-eval::parent) (:ordinal 1)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::vars) (:ordinal 2)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::funs) (:ordinal 3)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::expanders) (:ordinal 4)))
(:mop-direct sb-eval::env :slot
((:name sb-eval::symbol-expansions) (:ordinal 5)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::tags) (:ordinal 6)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::blocks) (:ordinal 7)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::declarations) (:ordinal 8)))
(:mop-direct sb-eval::env :slot ((:name sb-eval::native-lexenv) (:ordinal 9)))
(:mop-direct sb-eval::env :prototype #)
(:mop-direct sb-disassem::location-group :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::location-group :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::location-group :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::location-group :classof common-lisp:structure-class)
(:mop-direct sb-disassem::location-group :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::location-group :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::location-group :slot
((:name sb-disassem::locations) (:ordinal 1) (:initform #())
(:type common-lisp:simple-vector)))
(:mop-direct sb-disassem::location-group :prototype
#S(sb-disassem::location-group :locations 0))
(:mop-direct sb-disassem::source-form-cache :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::source-form-cache :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::source-form-cache :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::source-form-cache :classof
common-lisp:structure-class)
(:mop-direct sb-disassem::source-form-cache :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::source-form-cache :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::source-form-cache :slot
((:name sb-disassem::debug-source) (:ordinal 1)
(:type (common-lisp:or common-lisp:null sb-c::debug-source))))
(:mop-direct sb-disassem::source-form-cache :slot
((:name sb-disassem::toplevel-form-index) (:ordinal 2) (:initform -1)
(:type common-lisp:fixnum)))
(:mop-direct sb-disassem::source-form-cache :slot
((:name sb-disassem::last-location-retrieved) (:ordinal 3)
(:type (common-lisp:or common-lisp:null sb-di:code-location))))
(:mop-direct sb-disassem::source-form-cache :slot
((:name sb-disassem::last-form-retrieved) (:ordinal 4) (:initform -1)
(:type common-lisp:fixnum)))
(:mop-direct sb-disassem::source-form-cache :prototype
#S(sb-disassem::source-form-cache
:debug-source 0
:toplevel-form-index 0
:last-location-retrieved 0
:last-form-retrieved 0))
(:mop-direct sb-disassem::offs-hook :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::offs-hook :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::offs-hook :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::offs-hook :classof common-lisp:structure-class)
(:mop-direct sb-disassem::offs-hook :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::offs-hook :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::offs-hook :slot
((:name sb-disassem::offset) (:ordinal 1) (:initform 0)
(:type sb-disassem::offset)))
(:mop-direct sb-disassem::offs-hook :slot
((:name sb-disassem::fun) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-disassem::offs-hook :slot
((:name sb-disassem::before-address) (:ordinal 3)
(:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-disassem::offs-hook :prototype
#S(sb-disassem::offs-hook :offset 0 :fun 0 :before-address 0))
(:mop-direct sb-di::fun-end-cookie :superclass common-lisp:structure-object)
(:mop-direct sb-di::fun-end-cookie :package-name "SB-DI")
(:mop-direct sb-di::fun-end-cookie :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di::fun-end-cookie :classof common-lisp:structure-class)
(:mop-direct sb-di::fun-end-cookie :typeof common-lisp:structure-class)
(:mop-direct sb-di::fun-end-cookie :superclass common-lisp:structure-object)
(:mop-direct sb-di::fun-end-cookie :slot
((:name sb-di::bogus-lra) (:ordinal 1)))
(:mop-direct sb-di::fun-end-cookie :slot ((:name sb-di:debug-fun) (:ordinal 2)))
(:mop-direct sb-di::fun-end-cookie :prototype #)
(:mop-direct sb-di:breakpoint :superclass common-lisp:structure-object)
(:mop-direct sb-di:breakpoint :package-name "SB-DI")
(:mop-direct sb-di:breakpoint :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:breakpoint :classof common-lisp:structure-class)
(:mop-direct sb-di:breakpoint :typeof common-lisp:structure-class)
(:mop-direct sb-di:breakpoint :superclass common-lisp:structure-object)
(:mop-direct sb-di:breakpoint :slot
((:name sb-di::hook-fun) (:ordinal 1) (:initform (sb-di::required-arg))
(:type common-lisp:function)))
(:mop-direct sb-di:breakpoint :slot
((:name sb-di::what) (:ordinal 2)
(:type (common-lisp:or sb-di:code-location sb-di:debug-fun))))
(:mop-direct sb-di:breakpoint :slot
((:name sb-di::kind) (:ordinal 3)
(:type
(common-lisp:member :code-location :fun-start :fun-end
:unknown-return-partner))))
(:mop-direct sb-di:breakpoint :slot
((:name sb-di::status) (:ordinal 4) (:initform :inactive)
(:type (common-lisp:member :active :inactive :deleted))))
(:mop-direct sb-di:breakpoint :slot
((:name sb-di::internal-data) (:ordinal 5)
(:type (common-lisp:or common-lisp:null sb-di::breakpoint-data))))
(:mop-direct sb-di:breakpoint :slot
((:name sb-di::unknown-return-partner) (:ordinal 6)
(:type (common-lisp:or common-lisp:null sb-di:breakpoint))))
(:mop-direct sb-di:breakpoint :slot
((:name sb-di::start-helper) (:ordinal 7)
(:type (common-lisp:or common-lisp:null sb-di:breakpoint))))
(:mop-direct sb-di:breakpoint :slot
((:name sb-di::cookie-fun) (:ordinal 8)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-di:breakpoint :slot ((:name sb-di::%info) (:ordinal 9)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x5 (pc=0x1001d9eb50, sp=0x7ffff2b9e500)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.
(:mop-direct sb-di::breakpoint-data :superclass common-lisp:structure-object)
(:mop-direct sb-di::breakpoint-data :package-name "SB-DI")
(:mop-direct sb-di::breakpoint-data :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di::breakpoint-data :classof common-lisp:structure-class)
(:mop-direct sb-di::breakpoint-data :typeof common-lisp:structure-class)
(:mop-direct sb-di::breakpoint-data :superclass common-lisp:structure-object)
(:mop-direct sb-di::breakpoint-data :slot
((:name sb-di::component) (:ordinal 1)))
(:mop-direct sb-di::breakpoint-data :slot
((:name sb-di::offset) (:ordinal 2) (:type sb-int:index)))
(:mop-direct sb-di::breakpoint-data :slot
((:name sb-di::instruction) (:ordinal 3)
(:type (common-lisp:or common-lisp:null sb-ext:word))))
(:mop-direct sb-di::breakpoint-data :slot
((:name sb-di::breakpoints) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-di:frame :superclass common-lisp:structure-object)
(:mop-direct sb-di::compiled-frame :superclass sb-di:frame)
(:mop-direct sb-di:frame :package-name "SB-DI")
(:mop-direct sb-di:frame :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:frame :classof common-lisp:structure-class)
(:mop-direct sb-di:frame :typeof common-lisp:structure-class)
(:mop-direct sb-di:frame :superclass common-lisp:structure-object)
(:mop-direct sb-di:frame :slot
((:name sb-di::up) (:ordinal 1)
(:type (common-lisp:or sb-di:frame common-lisp:null))))
(:mop-direct sb-di:frame :slot
((:name sb-di::%down) (:ordinal 2) (:initform :unparsed)
(:type
(common-lisp:or sb-di:frame
(common-lisp:member common-lisp:nil :unparsed)))))
(:mop-direct sb-di:frame :slot
((:name sb-di:debug-fun) (:ordinal 3) (:type sb-di:debug-fun)))
(:mop-direct sb-di:frame :slot
((:name sb-di:code-location) (:ordinal 4) (:type sb-di:code-location)))
(:mop-direct sb-di:frame :slot
((:name sb-di::%catches) (:ordinal 5) (:initform :unparsed)
(:type (common-lisp:or common-lisp:list (common-lisp:member :unparsed)))))
(:mop-direct sb-di:frame :slot ((:name sb-di::pointer) (:ordinal 6)))
(:mop-direct sb-di:frame :slot
((:name common-lisp:number) (:ordinal 7) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-di::compiled-frame :superclass sb-di:frame)
(:mop-direct sb-di::compiled-frame :package-name "SB-DI")
(:mop-direct sb-di::compiled-frame :precedance
(sb-di:frame common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di::compiled-frame :classof common-lisp:structure-class)
(:mop-direct sb-di::compiled-frame :typeof common-lisp:structure-class)
(:mop-direct sb-di::compiled-frame :superclass sb-di:frame)
(:mop-direct sb-di::compiled-frame :slot ((:name sb-di::escaped) (:ordinal 1)))
(:mop-direct sb-di:frame :prototype
#S(sb-di:frame
:up 0
:%down 0
:debug-fun 0
:code-location 0
:%catches 0
:pointer 0
:number 0))
(:mop-direct sb-di:code-location :superclass common-lisp:structure-object)
(:mop-direct sb-di::compiled-code-location :superclass sb-di:code-location)
(:mop-direct sb-di:code-location :package-name "SB-DI")
(:mop-direct sb-di:code-location :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:code-location :classof common-lisp:structure-class)
(:mop-direct sb-di:code-location :typeof common-lisp:structure-class)
(:mop-direct sb-di:code-location :superclass common-lisp:structure-object)
(:mop-direct sb-di:code-location :slot
((:name sb-di:debug-fun) (:ordinal 1) (:type sb-di:debug-fun)))
(:mop-direct sb-di:code-location :slot
((:name sb-di::%unknown-p) (:ordinal 2) (:initform :unsure)
(:type (common-lisp:member common-lisp:t common-lisp:nil :unsure))))
(:mop-direct sb-di:code-location :slot
((:name sb-di::%debug-block) (:ordinal 3) (:initform :unparsed)
(:type (common-lisp:or sb-di:debug-block (common-lisp:member :unparsed)))))
(:mop-direct sb-di:code-location :slot
((:name sb-di::%tlf-offset) (:ordinal 4) (:initform :unparsed)
(:type (common-lisp:or sb-int:index (common-lisp:member :unparsed)))))
(:mop-direct sb-di:code-location :slot
((:name sb-di::%form-number) (:ordinal 5) (:initform :unparsed)
(:type (common-lisp:or sb-int:index (common-lisp:member :unparsed)))))
(:mop-direct sb-di::compiled-code-location :superclass sb-di:code-location)
(:mop-direct sb-di::compiled-code-location :package-name "SB-DI")
(:mop-direct sb-di::compiled-code-location :precedance
(sb-di:code-location common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-di::compiled-code-location :classof common-lisp:structure-class)
(:mop-direct sb-di::compiled-code-location :typeof common-lisp:structure-class)
(:mop-direct sb-di::compiled-code-location :superclass sb-di:code-location)
(:mop-direct sb-di::compiled-code-location :slot
((:name sb-di::pc) (:ordinal 1) (:type sb-int:index)))
(:mop-direct sb-di::compiled-code-location :slot
((:name sb-di::%live-set) (:ordinal 2) (:initform :unparsed)
(:type
(common-lisp:or common-lisp:simple-bit-vector
(common-lisp:member :unparsed)))))
(:mop-direct sb-di::compiled-code-location :slot
((:name sb-di::kind) (:ordinal 3) (:initform :unparsed)
(:type (common-lisp:or (common-lisp:member :unparsed) sb-c::location-kind))))
(:mop-direct sb-di::compiled-code-location :slot
((:name sb-di::step-info) (:ordinal 4) (:initform :unparsed)
(:type
(common-lisp:or (common-lisp:member :unparsed :foo)
common-lisp:simple-string))))
(:mop-direct sb-di::compiled-code-location :prototype
(:mop-direct sb-di:debug-block :superclass common-lisp:structure-object)
(:mop-direct sb-di::compiled-debug-block :superclass sb-di:debug-block)
(:mop-direct sb-di:debug-block :package-name "SB-DI")
(:mop-direct sb-di:debug-block :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:debug-block :classof common-lisp:structure-class)
(:mop-direct sb-di:debug-block :typeof common-lisp:structure-class)
(:mop-direct sb-di:debug-block :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-block :slot
((:name sb-di::elsewhere-p) (:ordinal 1) (:type common-lisp:boolean)))
(:mop-direct sb-di::compiled-debug-block :superclass sb-di:debug-block)
(:mop-direct sb-di::compiled-debug-block :package-name "SB-DI")
(:mop-direct sb-di::compiled-debug-block :precedance
(sb-di:debug-block common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-di::compiled-debug-block :classof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-block :typeof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-block :superclass sb-di:debug-block)
(:mop-direct sb-di::compiled-debug-block :slot
((:name sb-di::code-locations) (:ordinal 1) (:initform #())
(:type common-lisp:simple-vector)))
(:mop-direct sb-di::compiled-debug-block :prototype
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xfffffffffffffff9 (pc=0x10011d1629, sp=0x7ffff2b9e470)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.
(:mop-direct sb-di:debug-fun :superclass common-lisp:structure-object)
(:mop-direct sb-di::compiled-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di::bogus-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di:debug-fun :package-name "SB-DI")
(:mop-direct sb-di:debug-fun :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:debug-fun :classof common-lisp:structure-class)
(:mop-direct sb-di:debug-fun :typeof common-lisp:structure-class)
(:mop-direct sb-di:debug-fun :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-fun :slot
((:name sb-di::%lambda-list) (:ordinal 1) (:initform :unparsed)))
(:mop-direct sb-di:debug-fun :slot
((:name sb-di::%debug-vars) (:ordinal 2) (:initform :unparsed)
(:type
(common-lisp:or common-lisp:simple-vector common-lisp:null
(common-lisp:member :unparsed)))))
(:mop-direct sb-di:debug-fun :slot
((:name sb-di::blocks) (:ordinal 3) (:initform :unparsed)
(:type
(common-lisp:or common-lisp:simple-vector common-lisp:null
(common-lisp:member :unparsed)))))
(:mop-direct sb-di:debug-fun :slot
((:name sb-di::%function) (:ordinal 4) (:initform :unparsed)
(:type
(common-lisp:or common-lisp:null common-lisp:function
(common-lisp:member :unparsed)))))
(:mop-direct sb-di::compiled-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di::compiled-debug-fun :package-name "SB-DI")
(:mop-direct sb-di::compiled-debug-fun :precedance
(sb-di:debug-fun common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-di::compiled-debug-fun :classof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-fun :typeof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di::compiled-debug-fun :slot
((:name sb-di::compiler-debug-fun) (:ordinal 1)
(:type sb-c::compiled-debug-fun)))
(:mop-direct sb-di::compiled-debug-fun :slot
((:name sb-di::component) (:ordinal 2)))
(:mop-direct sb-di::compiled-debug-fun :slot
((:name sb-di::end-starter) (:ordinal 3)
(:type (common-lisp:or common-lisp:null sb-di:breakpoint))))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xd (pc=0x100015961e, sp=0x7ffff2b9e470)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.
(:mop-direct sb-di::bogus-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di::bogus-debug-fun :package-name "SB-DI")
(:mop-direct sb-di::bogus-debug-fun :precedance
(sb-di:debug-fun common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-di::bogus-debug-fun :classof common-lisp:structure-class)
(:mop-direct sb-di::bogus-debug-fun :typeof common-lisp:structure-class)
(:mop-direct sb-di::bogus-debug-fun :superclass sb-di:debug-fun)
(:mop-direct sb-di::bogus-debug-fun :slot ((:name sb-di::%name) (:ordinal 1)))
(:mop-direct sb-di::bogus-debug-fun :prototype #)
(:mop-direct sb-di:debug-var :superclass common-lisp:structure-object)
(:mop-direct sb-di::compiled-debug-var :superclass sb-di:debug-var)
(:mop-direct sb-di:debug-var :package-name "SB-DI")
(:mop-direct sb-di:debug-var :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-di:debug-var :classof common-lisp:structure-class)
(:mop-direct sb-di:debug-var :typeof common-lisp:structure-class)
(:mop-direct sb-di:debug-var :superclass common-lisp:structure-object)
(:mop-direct sb-di:debug-var :slot
((:name common-lisp:symbol) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type common-lisp:symbol)))
(:mop-direct sb-di:debug-var :slot
((:name sb-di::id) (:ordinal 2) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-di:debug-var :slot
((:name sb-di::alive-p) (:ordinal 3) (:type common-lisp:boolean)))
(:mop-direct sb-di::compiled-debug-var :superclass sb-di:debug-var)
(:mop-direct sb-di::compiled-debug-var :package-name "SB-DI")
(:mop-direct sb-di::compiled-debug-var :precedance
(sb-di:debug-var common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-di::compiled-debug-var :classof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-var :typeof common-lisp:structure-class)
(:mop-direct sb-di::compiled-debug-var :superclass sb-di:debug-var)
(:mop-direct sb-di::compiled-debug-var :slot
((:name sb-di::sc-offset) (:ordinal 1) (:type sb-c:sc-offset)))
(:mop-direct sb-di::compiled-debug-var :slot
((:name sb-di::save-sc-offset) (:ordinal 2)
(:type (common-lisp:or sb-c:sc-offset common-lisp:null))))
(:mop-direct sb-di::compiled-debug-var :slot
((:name sb-di::indirect-sc-offset) (:ordinal 3)
(:type (common-lisp:or sb-c:sc-offset common-lisp:null))))
(:mop-direct sb-di::compiled-debug-var :slot ((:name sb-int:info) (:ordinal 4)))
(:mop-direct sb-di::compiled-debug-var :prototype
#)
(:mop-direct sb-di:debug-var :prototype #)
(:mop-direct sb-ext:timer :superclass common-lisp:structure-object)
(:mop-direct sb-ext:timer :package-name "SB-EXT")
(:mop-direct sb-ext:timer :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-ext:timer :classof common-lisp:structure-class)
(:mop-direct sb-ext:timer :typeof common-lisp:structure-class)
(:mop-direct sb-ext:timer :superclass common-lisp:structure-object)
(:mop-direct sb-ext:timer :slot ((:name sb-impl::name) (:ordinal 1)))
(:mop-direct sb-ext:timer :slot ((:name common-lisp:function) (:ordinal 2)))
(:mop-direct sb-ext:timer :slot
((:name sb-impl::expire-time) (:ordinal 3) (:initform 1)
(:type (common-lisp:or common-lisp:null common-lisp:real))))
(:mop-direct sb-ext:timer :slot
((:name sb-impl::repeat-interval) (:ordinal 4)
(:type (common-lisp:or common-lisp:null (common-lisp:real 0)))))
(:mop-direct sb-ext:timer :slot
((:name sb-impl::catch-up) (:ordinal 5) (:type common-lisp:boolean)))
(:mop-direct sb-ext:timer :slot
((:name sb-impl::thread) (:ordinal 6)
(:type (common-lisp:or sb-thread:thread common-lisp:boolean))))
(:mop-direct sb-ext:timer :slot
((:name sb-impl::interrupt-function) (:ordinal 7)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-ext:timer :slot
((:name sb-impl::cancel-function) (:ordinal 8)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-ext:timer :prototype #)
(:mop-direct sb-impl::priority-queue :superclass common-lisp:structure-object)
(:mop-direct sb-impl::priority-queue :package-name "SB-IMPL")
(:mop-direct sb-impl::priority-queue :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::priority-queue :classof common-lisp:structure-class)
(:mop-direct sb-impl::priority-queue :typeof common-lisp:structure-class)
(:mop-direct sb-impl::priority-queue :superclass common-lisp:structure-object)
(:mop-direct sb-impl::priority-queue :slot
((:name sb-impl::contents) (:ordinal 1) (:type common-lisp:vector)))
(:mop-direct sb-impl::priority-queue :slot
((:name sb-impl::keyfun) (:ordinal 2) (:type common-lisp:function)))
(:mop-direct sb-thread::session :superclass common-lisp:structure-object)
(:mop-direct sb-thread::session :package-name "SB-THREAD")
(:mop-direct sb-thread::session :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread::session :classof common-lisp:structure-class)
(:mop-direct sb-thread::session :typeof common-lisp:structure-class)
(:mop-direct sb-thread::session :superclass common-lisp:structure-object)
(:mop-direct sb-thread::session :slot
((:name sb-thread::lock) (:ordinal 1)
(:initform (sb-thread:make-mutex :name "session lock"))))
(:mop-direct sb-thread::session :slot ((:name sb-thread::threads) (:ordinal 2)))
(:mop-direct sb-thread::session :slot
((:name sb-thread::interactive-threads) (:ordinal 3)))
(:mop-direct sb-thread::session :slot
((:name sb-thread::interactive-threads-queue) (:ordinal 4)
(:initform (sb-thread:make-waitqueue))))
(:mop-direct sb-thread::session :prototype
#S(sb-thread::session
:lock 0
:threads 0
:interactive-threads 0
:interactive-threads-queue 0))
(:mop-direct sb-thread:semaphore-notification :superclass
common-lisp:structure-object)
(:mop-direct sb-thread:semaphore-notification :package-name "SB-THREAD")
(:mop-direct sb-thread:semaphore-notification :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:semaphore-notification :classof
common-lisp:structure-class)
(:mop-direct sb-thread:semaphore-notification :typeof
common-lisp:structure-class)
(:mop-direct sb-thread:semaphore-notification :superclass
common-lisp:structure-object)
(:mop-direct sb-thread:semaphore-notification :slot
((:name sb-thread::%status) (:ordinal 1) (:type common-lisp:boolean)))
(:mop-direct sb-thread:semaphore-notification :prototype
#S(sb-thread:semaphore-notification :%status 0))
(:mop-direct sb-thread:semaphore :superclass common-lisp:structure-object)
(:mop-direct sb-thread:semaphore :package-name "SB-THREAD")
(:mop-direct sb-thread:semaphore :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:semaphore :classof common-lisp:structure-class)
(:mop-direct sb-thread:semaphore :typeof common-lisp:structure-class)
(:mop-direct sb-thread:semaphore :superclass common-lisp:structure-object)
(:mop-direct sb-thread:semaphore :slot
((:name sb-thread::name) (:ordinal 1)
(:type (common-lisp:or common-lisp:null sb-thread:thread-name))))
(:mop-direct sb-thread:semaphore :slot
((:name sb-thread::%count) (:ordinal 2) (:initform 0)
(:type (common-lisp:integer 0))))
(:mop-direct sb-thread:semaphore :slot
((:name sb-thread::waitcount) (:ordinal 3) (:initform 0) (:type sb-ext:word)))
(:mop-direct sb-thread:semaphore :slot
((:name sb-thread:mutex) (:ordinal 4) (:initform (sb-thread:make-mutex))))
(:mop-direct sb-thread:semaphore :slot
((:name sb-thread::queue) (:ordinal 5) (:initform (sb-thread:make-waitqueue))))
(:mop-direct sb-thread:semaphore :prototype
#S(sb-thread:semaphore :name 0 :%count 0 :waitcount 0 :mutex 0 :queue 0))
(:mop-direct sb-thread:waitqueue :superclass common-lisp:structure-object)
(:mop-direct sb-thread:waitqueue :package-name "SB-THREAD")
(:mop-direct sb-thread:waitqueue :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-thread:waitqueue :classof common-lisp:structure-class)
(:mop-direct sb-thread:waitqueue :typeof common-lisp:structure-class)
(:mop-direct sb-thread:waitqueue :superclass common-lisp:structure-object)
(:mop-direct sb-thread:waitqueue :slot
((:name sb-thread::name) (:ordinal 1)
(:type (common-lisp:or common-lisp:null sb-thread:thread-name))))
(:mop-direct sb-thread:waitqueue :slot ((:name sb-thread::token) (:ordinal 2)))
(:mop-direct sb-thread:waitqueue :prototype
#)
(:mop-direct sb-impl::token-buf :superclass common-lisp:structure-object)
(:mop-direct sb-impl::token-buf :package-name "SB-IMPL")
(:mop-direct sb-impl::token-buf :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::token-buf :classof common-lisp:structure-class)
(:mop-direct sb-impl::token-buf :typeof common-lisp:structure-class)
(:mop-direct sb-impl::token-buf :superclass common-lisp:structure-object)
(:mop-direct sb-impl::token-buf :slot
((:name common-lisp:string) (:ordinal 1)
(:type (common-lisp:simple-array common-lisp:character (common-lisp:*)))))
(:mop-direct sb-impl::token-buf :slot
((:name sb-impl::fill-ptr) (:ordinal 2) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::token-buf :slot
((:name sb-impl::cursor) (:ordinal 3) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-impl::token-buf :slot
((:name sb-impl::adjustable-string) (:ordinal 4)
(:type
(common-lisp:and (common-lisp:array common-lisp:character (common-lisp:*))
(common-lisp:not common-lisp:simple-array)))))
(:mop-direct sb-impl::token-buf :slot
((:name sb-impl::initial-string) (:ordinal 5)
(:type (common-lisp:simple-array common-lisp:character (128)))))
(:mop-direct sb-impl::token-buf :slot
((:name sb-impl::escapes) (:ordinal 6)
(:initform
(common-lisp:make-array 10 :element-type 'common-lisp:fixnum :fill-pointer 0
:adjustable common-lisp:t))
(:type
(common-lisp:and (common-lisp:vector common-lisp:fixnum)
(common-lisp:not common-lisp:simple-array)))))
(:mop-direct sb-impl::token-buf :slot
((:name sb-impl::next) (:ordinal 7)
(:type (common-lisp:or common-lisp:null sb-impl::token-buf))))
(:mop-direct sb-impl::token-buf :slot
((:name sb-impl::only-base-chars) (:ordinal 8) (:initform common-lisp:t)
(:type common-lisp:boolean)))
(:mop-direct sb-impl::token-buf :prototype
#)
(:mop-direct sb-impl::unprintable-object :superclass
common-lisp:structure-object)
(:mop-direct sb-impl::unprintable-object :package-name "SB-IMPL")
(:mop-direct sb-impl::unprintable-object :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-impl::unprintable-object :classof common-lisp:structure-class)
(:mop-direct sb-impl::unprintable-object :typeof common-lisp:structure-class)
(:mop-direct sb-impl::unprintable-object :superclass
common-lisp:structure-object)
(:mop-direct sb-impl::unprintable-object :slot
((:name common-lisp:string) (:ordinal 1)))
(:mop-direct sb-vm::result-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::result-state :package-name "SB-VM")
(:mop-direct sb-vm::result-state :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-vm::result-state :classof common-lisp:structure-class)
(:mop-direct sb-vm::result-state :typeof common-lisp:structure-class)
(:mop-direct sb-vm::result-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::result-state :slot
((:name sb-vm::num-results) (:ordinal 1) (:initform 0)))
(:mop-direct sb-vm::result-state :prototype
#S(sb-vm::result-state :num-results 0))
(:mop-direct sb-vm::arg-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::arg-state :package-name "SB-VM")
(:mop-direct sb-vm::arg-state :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-vm::arg-state :classof common-lisp:structure-class)
(:mop-direct sb-vm::arg-state :typeof common-lisp:structure-class)
(:mop-direct sb-vm::arg-state :superclass common-lisp:structure-object)
(:mop-direct sb-vm::arg-state :slot
((:name sb-vm::register-args) (:ordinal 1) (:initform 0)))
(:mop-direct sb-vm::arg-state :slot
((:name sb-vm::xmm-args) (:ordinal 2) (:initform 0)))
(:mop-direct sb-vm::arg-state :slot
((:name sb-vm::stack-frame-size) (:ordinal 3) (:initform 0)))
(:mop-direct sb-vm::arg-state :prototype
#S(sb-vm::arg-state :register-args 0 :xmm-args 0 :stack-frame-size 0))
(:mop-direct sb-vm::ea :superclass common-lisp:structure-object)
(:mop-direct sb-vm::ea :package-name "SB-VM")
(:mop-direct sb-vm::ea :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-vm::ea :classof common-lisp:structure-class)
(:mop-direct sb-vm::ea :typeof common-lisp:structure-class)
(:mop-direct sb-vm::ea :superclass common-lisp:structure-object)
(:mop-direct sb-vm::ea :slot
((:name sb-vm::size) (:ordinal 1)
(:type (common-lisp:member :byte :word :dword :qword))))
(:mop-direct sb-vm::ea :slot
((:name sb-vm::base) (:ordinal 2)
(:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-vm::ea :slot
((:name sb-int:index) (:ordinal 3)
(:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-vm::ea :slot
((:name sb-vm::scale) (:ordinal 4) (:initform 1)
(:type (common-lisp:member 1 2 4 8))))
(:mop-direct sb-vm::ea :slot
((:name sb-vm::disp) (:ordinal 5) (:initform 0)
(:type
(common-lisp:or (common-lisp:unsigned-byte 32) (common-lisp:signed-byte 32)
sb-c:fixup))))
(:mop-direct sb-vm::ea :prototype #)
(:mop-direct sb-c::reg-spec :superclass common-lisp:structure-object)
(:mop-direct sb-c::reg-spec :package-name "SB-C")
(:mop-direct sb-c::reg-spec :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::reg-spec :classof common-lisp:structure-class)
(:mop-direct sb-c::reg-spec :typeof common-lisp:structure-class)
(:mop-direct sb-c::reg-spec :superclass common-lisp:structure-object)
(:mop-direct sb-c::reg-spec :slot
((:name sb-c::kind) (:ordinal 1) (:initform :temp)
(:type (common-lisp:member :arg :temp :res))))
(:mop-direct sb-c::reg-spec :slot
((:name sb-c::name) (:ordinal 2) (:type common-lisp:symbol)))
(:mop-direct sb-c::reg-spec :slot
((:name sb-c::temp) (:ordinal 3) (:type common-lisp:symbol)))
(:mop-direct sb-c::reg-spec :slot
((:name sb-c::scs) (:ordinal 4)
(:type (common-lisp:or common-lisp:list common-lisp:symbol))))
(:mop-direct sb-c::reg-spec :slot ((:name sb-c::offset) (:ordinal 5)))
(:mop-direct sb-c::reg-spec :prototype
#)
(:mop-direct sb-c::location-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::location-info :package-name "SB-C")
(:mop-direct sb-c::location-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::location-info :classof common-lisp:structure-class)
(:mop-direct sb-c::location-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::location-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::location-info :slot
((:name sb-c::kind) (:ordinal 1) (:type sb-c::location-kind)))
(:mop-direct sb-c::location-info :slot
((:name sb-assem:label) (:ordinal 2)
(:type (common-lisp:or sb-assem:label sb-int:index common-lisp:null))))
(:mop-direct sb-c::location-info :slot
((:name sb-c::vop) (:ordinal 3) (:type sb-c::vop)))
(:mop-direct sb-c::location-info :prototype
#S(sb-c::location-info :kind 0 :label 0 :vop 0))
(:mop-direct sb-c::conset :superclass common-lisp:structure-object)
(:mop-direct sb-c::conset :package-name "SB-C")
(:mop-direct sb-c::conset :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::conset :classof common-lisp:structure-class)
(:mop-direct sb-c::conset :typeof common-lisp:structure-class)
(:mop-direct sb-c::conset :superclass common-lisp:structure-object)
(:mop-direct sb-c::conset :slot
((:name common-lisp:vector) (:ordinal 1)
(:initform
(common-lisp:make-array
(common-lisp:ash 1
(common-lisp:integer-length
(common-lisp:1-
(common-lisp:length sb-c::*constraint-universe*))))
:element-type 'common-lisp:bit :initial-element 0))
(:type common-lisp:simple-bit-vector)))
(:mop-direct sb-c::conset :slot
((:name common-lisp:min) (:ordinal 2) (:initform 0)
(:type common-lisp:fixnum)))
(:mop-direct sb-c::conset :slot
((:name common-lisp:max) (:ordinal 3) (:initform 0)
(:type common-lisp:fixnum)))
(:mop-direct sb-c::conset :prototype #S(sb-c::conset :vector 0 :min 0 :max 0))
(:mop-direct sb-c::interval :superclass common-lisp:structure-object)
(:mop-direct sb-c::interval :package-name "SB-C")
(:mop-direct sb-c::interval :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::interval :classof common-lisp:structure-class)
(:mop-direct sb-c::interval :typeof common-lisp:structure-class)
(:mop-direct sb-c::interval :superclass common-lisp:structure-object)
(:mop-direct sb-c::interval :slot ((:name sb-c::low) (:ordinal 1)))
(:mop-direct sb-c::interval :slot ((:name sb-c::high) (:ordinal 2)))
(:mop-direct sb-c::interval :prototype #S(sb-c::interval :low 0 :high 0))
(:mop-direct sb-c::compiler-error-context :superclass
common-lisp:structure-object)
(:mop-direct sb-c::compiler-error-context :package-name "SB-C")
(:mop-direct sb-c::compiler-error-context :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::compiler-error-context :classof common-lisp:structure-class)
(:mop-direct sb-c::compiler-error-context :typeof common-lisp:structure-class)
(:mop-direct sb-c::compiler-error-context :superclass
common-lisp:structure-object)
(:mop-direct sb-c::compiler-error-context :slot
((:name sb-c::enclosing-source) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-c::compiler-error-context :slot
((:name sb-c::source) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-c::compiler-error-context :slot
((:name sb-c::original-source) (:ordinal 3) (:initform (sb-int:missing-arg))
(:type common-lisp:simple-string)))
(:mop-direct sb-c::compiler-error-context :slot
((:name sb-c::context) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-c::compiler-error-context :slot
((:name sb-int:file-name) (:ordinal 5) (:initform (sb-int:missing-arg))
(:type
(common-lisp:or common-lisp:pathname (common-lisp:member :lisp :stream)))))
(:mop-direct sb-c::compiler-error-context :slot
((:name common-lisp:file-position) (:ordinal 6)
(:type (common-lisp:or sb-int:index common-lisp:null))))
(:mop-direct sb-c::compiler-error-context :slot
((:name sb-c::original-source-path) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-c::compiler-error-context :slot
((:name sb-kernel:lexenv) (:ordinal 8)
(:type (common-lisp:or common-lisp:null sb-kernel:lexenv))))
(:mop-direct sb-c::compiler-error-context :prototype
#)
(:mop-direct sb-fasl::circularity :superclass common-lisp:structure-object)
(:mop-direct sb-fasl::circularity :package-name "SB-FASL")
(:mop-direct sb-fasl::circularity :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl::circularity :classof common-lisp:structure-class)
(:mop-direct sb-fasl::circularity :typeof common-lisp:structure-class)
(:mop-direct sb-fasl::circularity :superclass common-lisp:structure-object)
(:mop-direct sb-fasl::circularity :slot
((:name common-lisp:type) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type (common-lisp:member :rplaca :rplacd :svset :struct-set))))
(:mop-direct sb-fasl::circularity :slot ((:name sb-fasl::object) (:ordinal 2)))
(:mop-direct sb-fasl::circularity :slot
((:name sb-int:index) (:ordinal 3) (:initform (sb-int:missing-arg))
(:type sb-int:index)))
(:mop-direct sb-fasl::circularity :slot ((:name sb-fasl::value) (:ordinal 4)))
(:mop-direct sb-fasl::circularity :slot
((:name sb-fasl::enclosing-object) (:ordinal 5)))
(:mop-direct sb-fasl::circularity :prototype
#S(sb-fasl::circularity
:type 0
:object 0
:index 0
:value 0
:enclosing-object 0))
(:mop-direct sb-fasl:fasl-output :superclass common-lisp:structure-object)
(:mop-direct sb-fasl:fasl-output :package-name "SB-FASL")
(:mop-direct sb-fasl:fasl-output :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl:fasl-output :classof common-lisp:structure-class)
(:mop-direct sb-fasl:fasl-output :typeof common-lisp:structure-class)
(:mop-direct sb-fasl:fasl-output :superclass common-lisp:structure-object)
(:mop-direct sb-fasl:fasl-output :slot
((:name common-lisp:stream) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type common-lisp:stream)))
(:mop-direct sb-fasl:fasl-output :slot
((:name sb-fasl::equal-table) (:ordinal 2)
(:initform (common-lisp:make-hash-table :test 'common-lisp:equal))
(:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
((:name sb-fasl::eq-table) (:ordinal 3)
(:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
(:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
((:name sb-fasl::string=-table) (:ordinal 4)
(:initform (common-lisp:make-hash-table :test 'common-lisp:equal))
(:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
((:name sb-fasl::table-free) (:ordinal 5) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-fasl:fasl-output :slot
((:name sb-fasl::packages) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct sb-fasl:fasl-output :slot
((:name sb-fasl::entry-table) (:ordinal 7)
(:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
(:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
((:name sb-fasl::patch-table) (:ordinal 8)
(:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
(:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
((:name sb-fasl::debug-info) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct sb-fasl:fasl-output :slot
((:name sb-fasl::circularity-table) (:ordinal 10)
(:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
(:type common-lisp:hash-table)))
(:mop-direct sb-fasl:fasl-output :slot
((:name sb-fasl::valid-structures) (:ordinal 11)
(:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
(:type common-lisp:hash-table)))
(:mop-direct sb-assem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-assem:segment :package-name "SB-ASSEM")
(:mop-direct sb-assem:segment :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-assem:segment :classof common-lisp:structure-class)
(:mop-direct sb-assem:segment :typeof common-lisp:structure-class)
(:mop-direct sb-assem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-assem:segment :slot
((:name common-lisp:type) (:ordinal 1) (:initform :regular)
(:type (common-lisp:member :regular :elsewhere))))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::buffer) (:ordinal 2)
(:initform (common-lisp:make-array 0 :element-type 'sb-assem:assembly-unit))
(:type
(common-lisp:or common-lisp:null
(common-lisp:simple-array sb-assem:assembly-unit)))))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::run-scheduler) (:ordinal 3)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::inst-hook) (:ordinal 4)
(:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::current-posn) (:ordinal 5) (:initform 0)
(:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::%current-index) (:ordinal 6) (:initform 0)
(:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::annotations) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::last-annotation) (:ordinal 8) (:type common-lisp:list)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::alignment) (:ordinal 9) (:initform sb-assem::max-alignment)
(:type sb-assem::alignment)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::sync-posn) (:ordinal 10) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::final-posn) (:ordinal 11) (:initform 0)
(:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::final-index) (:ordinal 12) (:initform 0)
(:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::postits) (:ordinal 13) (:type common-lisp:list)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::inst-number) (:ordinal 14) (:initform 0)
(:type sb-int:index)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::readers) (:ordinal 15)
(:initform
(common-lisp:make-array sb-assem:*assem-max-locations* :initial-element
common-lisp:nil))
(:type common-lisp:simple-vector)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::writers) (:ordinal 16)
(:initform
(common-lisp:make-array sb-assem:*assem-max-locations* :initial-element
common-lisp:nil))
(:type common-lisp:simple-vector)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::branch-countdown) (:ordinal 17)
(:type
(common-lisp:or common-lisp:null
(common-lisp:and common-lisp:fixnum
common-lisp:unsigned-byte)))))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::emittable-insts-sset) (:ordinal 18)
(:initform (sb-int:make-sset)) (:type sb-int:sset)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::queued-branches) (:ordinal 19) (:type common-lisp:list)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::delayed) (:ordinal 20) (:type common-lisp:list)))
(:mop-direct sb-assem:segment :slot
((:name sb-assem::emittable-insts-queue) (:ordinal 21)
(:type common-lisp:list)))
(:mop-direct sb-assem:segment :prototype #)
(:mop-direct sb-disassem:disassem-state :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem:disassem-state :package-name "SB-DISASSEM")
(:mop-direct sb-disassem:disassem-state :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem:disassem-state :classof common-lisp:structure-class)
(:mop-direct sb-disassem:disassem-state :typeof common-lisp:structure-class)
(:mop-direct sb-disassem:disassem-state :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::cur-offs) (:ordinal 1) (:initform 0)
(:type sb-disassem::offset)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::next-offs) (:ordinal 2) (:initform 0)
(:type sb-disassem::offset)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::segment-sap) (:ordinal 3)
(:type (common-lisp:or common-lisp:null sb-sys:system-area-pointer))))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem:segment) (:ordinal 4)
(:type (common-lisp:or common-lisp:null sb-disassem:segment))))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::alignment) (:ordinal 5) (:initform sb-vm:n-word-bytes)
(:type sb-disassem::alignment)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::byte-order) (:ordinal 6) (:initform :little-endian)
(:type (common-lisp:member :big-endian :little-endian))))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::properties) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::inst-properties) (:ordinal 8) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::filtered-values) (:ordinal 9)
(:initform (common-lisp:make-array sb-disassem::max-filtered-value-index))
(:type sb-disassem::filtered-value-vector)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::addr-print-len) (:ordinal 10)
(:type (common-lisp:or common-lisp:null (common-lisp:integer 0 20)))))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::argument-column) (:ordinal 11) (:initform 0)
(:type sb-disassem::column)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::output-state) (:ordinal 12) (:initform :beginning)
(:type (common-lisp:member :beginning :block-boundary common-lisp:nil))))
(:mop-direct sb-disassem:disassem-state :slot
((:name common-lisp:labels) (:ordinal 13) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::label-hash) (:ordinal 14)
(:initform (common-lisp:make-hash-table)) (:type common-lisp:hash-table)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::fun-hooks) (:ordinal 15) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::cur-labels) (:ordinal 16) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::cur-offs-hooks) (:ordinal 17) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::notes) (:ordinal 18) (:type common-lisp:list)))
(:mop-direct sb-disassem:disassem-state :slot
((:name sb-disassem::current-valid-locations) (:ordinal 19)
(:type
(common-lisp:or common-lisp:null (common-lisp:vector common-lisp:bit)))))
(:mop-direct sb-disassem:disassem-state :prototype
#)
(:mop-direct sb-disassem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:segment :package-name "SB-DISASSEM")
(:mop-direct sb-disassem:segment :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem:segment :classof common-lisp:structure-class)
(:mop-direct sb-disassem:segment :typeof common-lisp:structure-class)
(:mop-direct sb-disassem:segment :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:segment :slot
((:name sb-disassem::sap-maker) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type (common-lisp:function common-lisp:nil sb-sys:system-area-pointer))))
(:mop-direct sb-disassem:segment :slot
((:name common-lisp:length) (:ordinal 2) (:initform 0)
(:type sb-disassem::disassem-length)))
(:mop-direct sb-disassem:segment :slot
((:name sb-disassem::opcodes-length) (:ordinal 3) (:initform 0)
(:type sb-disassem::disassem-length)))
(:mop-direct sb-disassem:segment :slot
((:name sb-disassem::virtual-location) (:ordinal 4) (:initform 0)
(:type sb-disassem::address)))
(:mop-direct sb-disassem:segment :slot
((:name sb-disassem::storage-info) (:ordinal 5)
(:type (common-lisp:or common-lisp:null sb-disassem::storage-info))))
(:mop-direct sb-disassem:segment :slot
((:name sb-disassem::code) (:ordinal 6)
(:type (common-lisp:or common-lisp:null sb-kernel:code-component))))
(:mop-direct sb-disassem:segment :slot
((:name sb-disassem::unboxed-data-range) (:ordinal 7)
(:type
(common-lisp:or common-lisp:null
(common-lisp:cons common-lisp:fixnum common-lisp:fixnum)))))
(:mop-direct sb-disassem:segment :slot
((:name sb-disassem::hooks) (:ordinal 8) (:type common-lisp:list)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xfffffffffffffffd (pc=0x1001d98e63, sp=0x7ffff2b9e4f0)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.
(:mop-direct sb-disassem::storage-info :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::storage-info :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::storage-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::storage-info :classof common-lisp:structure-class)
(:mop-direct sb-disassem::storage-info :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::storage-info :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::storage-info :slot
((:name sb-disassem::groups) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-disassem::storage-info :slot
((:name sb-disassem::debug-vars) (:ordinal 2) (:initform #())
(:type common-lisp:vector)))
(:mop-direct sb-disassem::storage-info :prototype
#S(sb-disassem::storage-info :groups 0 :debug-vars 0))
(:mop-direct sb-disassem::cached-fun :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::cached-fun :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::cached-fun :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::cached-fun :classof common-lisp:structure-class)
(:mop-direct sb-disassem::cached-fun :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::cached-fun :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::cached-fun :slot
((:name sb-disassem::funstate) (:ordinal 1)
(:type (common-lisp:or common-lisp:null sb-disassem::funstate))))
(:mop-direct sb-disassem::cached-fun :slot
((:name sb-disassem::constraint) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::cached-fun :slot
((:name sb-disassem::name) (:ordinal 3)
(:type (common-lisp:or common-lisp:null common-lisp:symbol))))
(:mop-direct sb-disassem::cached-fun :prototype
#S(sb-disassem::cached-fun :funstate 0 :constraint 0 :name 0))
(:mop-direct sb-disassem::valsrc :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::valsrc :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::valsrc :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::valsrc :classof common-lisp:structure-class)
(:mop-direct sb-disassem::valsrc :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::valsrc :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::valsrc :slot
((:name sb-disassem::value) (:ordinal 1)))
(:mop-direct sb-disassem::valsrc :slot
((:name sb-disassem::source) (:ordinal 2)))
(:mop-direct sb-disassem::valsrc :prototype
#S(sb-disassem::valsrc :value 0 :source 0))
(:mop-direct sb-disassem::funstate :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::funstate :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::funstate :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::funstate :classof common-lisp:structure-class)
(:mop-direct sb-disassem::funstate :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::funstate :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::funstate :slot
((:name sb-disassem::args) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-disassem::funstate :slot
((:name sb-disassem::arg-temps) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::funstate :prototype
#S(sb-disassem::funstate :args 0 :arg-temps 0))
(:mop-direct sb-disassem::instruction-format :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::instruction-format :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::instruction-format :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::instruction-format :classof
common-lisp:structure-class)
(:mop-direct sb-disassem::instruction-format :typeof
common-lisp:structure-class)
(:mop-direct sb-disassem::instruction-format :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::instruction-format :slot
((:name sb-disassem::name) (:ordinal 1)))
(:mop-direct sb-disassem::instruction-format :slot
((:name sb-disassem::args) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::instruction-format :slot
((:name common-lisp:length) (:ordinal 3) (:initform 0)
(:type sb-disassem::disassem-length)))
(:mop-direct sb-disassem::instruction-format :slot
((:name sb-disassem::default-printer) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-disassem::instruction-format :prototype
#S(sb-disassem::instruction-format
:name 0
:args 0
:length 0
:default-printer 0))
(:mop-direct sb-disassem::arg :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::arg :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::arg :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::arg :classof common-lisp:structure-class)
(:mop-direct sb-disassem::arg :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::arg :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::arg :slot
((:name sb-disassem::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-disassem::arg :slot
((:name sb-disassem::fields) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::arg :slot
((:name sb-disassem::value) (:ordinal 3)
(:type (common-lisp:or common-lisp:list common-lisp:integer))))
(:mop-direct sb-disassem::arg :slot
((:name sb-disassem::sign-extend-p) (:ordinal 4)
(:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-disassem::arg :slot
((:name common-lisp:position) (:ordinal 5) (:initform 0)
(:type common-lisp:fixnum)))
(:mop-direct sb-disassem::arg :slot ((:name sb-disassem::printer) (:ordinal 6)))
(:mop-direct sb-disassem::arg :slot
((:name sb-disassem::prefilter) (:ordinal 7)))
(:mop-direct sb-disassem::arg :slot
((:name sb-disassem::use-label) (:ordinal 8)))
(:mop-direct sb-disassem::arg :prototype
#)
(:mop-direct sb-disassem::arg-form-kind :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::arg-form-kind :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::arg-form-kind :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::arg-form-kind :classof common-lisp:structure-class)
(:mop-direct sb-disassem::arg-form-kind :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::arg-form-kind :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::arg-form-kind :slot
((:name sb-disassem::names) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-disassem::arg-form-kind :slot
((:name sb-disassem::producer) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-disassem::arg-form-kind :slot
((:name sb-disassem::checker) (:ordinal 3) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-disassem::arg-form-kind :prototype
#S(sb-disassem::arg-form-kind :names 0 :producer 0 :checker 0))
(:mop-direct sb-disassem::inst-space-choice :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space-choice :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::inst-space-choice :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::inst-space-choice :classof
common-lisp:structure-class)
(:mop-direct sb-disassem::inst-space-choice :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::inst-space-choice :superclass
common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space-choice :slot
((:name sb-disassem::common-id) (:ordinal 1)
(:initform sb-disassem::dchunk-zero) (:type sb-disassem:dchunk)))
(:mop-direct sb-disassem::inst-space-choice :slot
((:name sb-disassem::subspace) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type (common-lisp:or sb-disassem::inst-space sb-disassem:instruction))))
(:mop-direct sb-disassem::inst-space-choice :prototype
#S(sb-disassem::inst-space-choice :common-id 0 :subspace 0))
(:mop-direct sb-disassem::inst-space :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::inst-space :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::inst-space :classof common-lisp:structure-class)
(:mop-direct sb-disassem::inst-space :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::inst-space :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::inst-space :slot
((:name sb-disassem::valid-mask) (:ordinal 1)
(:initform sb-disassem::dchunk-zero) (:type sb-disassem:dchunk)))
(:mop-direct sb-disassem::inst-space :slot
((:name sb-disassem::choices) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::inst-space :prototype
#)
(:mop-direct sb-disassem:instruction :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:instruction :package-name "SB-DISASSEM")
(:mop-direct sb-disassem:instruction :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem:instruction :classof common-lisp:structure-class)
(:mop-direct sb-disassem:instruction :typeof common-lisp:structure-class)
(:mop-direct sb-disassem:instruction :superclass common-lisp:structure-object)
(:mop-direct sb-disassem:instruction :slot
((:name sb-disassem::name) (:ordinal 1)
(:type (common-lisp:or common-lisp:symbol common-lisp:string))))
(:mop-direct sb-disassem:instruction :slot
((:name sb-disassem::format-name) (:ordinal 2)
(:type (common-lisp:or common-lisp:symbol common-lisp:string))))
(:mop-direct sb-disassem:instruction :slot
((:name sb-disassem::mask) (:ordinal 3) (:initform sb-disassem::dchunk-zero)
(:type sb-disassem:dchunk)))
(:mop-direct sb-disassem:instruction :slot
((:name sb-disassem::id) (:ordinal 4) (:initform sb-disassem::dchunk-zero)
(:type sb-disassem:dchunk)))
(:mop-direct sb-disassem:instruction :slot
((:name common-lisp:length) (:ordinal 5) (:initform 0)
(:type sb-disassem::disassem-length)))
(:mop-direct sb-disassem:instruction :slot
((:name sb-disassem::print-name) (:ordinal 6) (:type common-lisp:symbol)))
(:mop-direct sb-disassem:instruction :slot
((:name sb-disassem::prefilter) (:ordinal 7)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-disassem:instruction :slot
((:name sb-disassem::labeller) (:ordinal 8)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-disassem:instruction :slot
((:name sb-disassem::printer) (:ordinal 9) (:initform (sb-int:missing-arg))
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-disassem:instruction :slot
((:name sb-disassem::control) (:ordinal 10)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-disassem:instruction :slot
((:name sb-disassem::specializers) (:ordinal 11) (:type common-lisp:list)))
(:mop-direct sb-disassem:instruction :prototype
#)
(:mop-direct sb-disassem::fun-cache :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::fun-cache :package-name "SB-DISASSEM")
(:mop-direct sb-disassem::fun-cache :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-disassem::fun-cache :classof common-lisp:structure-class)
(:mop-direct sb-disassem::fun-cache :typeof common-lisp:structure-class)
(:mop-direct sb-disassem::fun-cache :superclass common-lisp:structure-object)
(:mop-direct sb-disassem::fun-cache :slot
((:name sb-disassem::serial-number) (:ordinal 1) (:initform 0)
(:type common-lisp:fixnum)))
(:mop-direct sb-disassem::fun-cache :slot
((:name sb-disassem::printers) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct sb-disassem::fun-cache :slot
((:name sb-disassem::labellers) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-disassem::fun-cache :slot
((:name sb-disassem::prefilters) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-disassem::fun-cache :prototype
#)
(:mop-direct sb-c::approximate-key-info :superclass
common-lisp:structure-object)
(:mop-direct sb-c::approximate-key-info :package-name "SB-C")
(:mop-direct sb-c::approximate-key-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::approximate-key-info :classof common-lisp:structure-class)
(:mop-direct sb-c::approximate-key-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::approximate-key-info :superclass
common-lisp:structure-object)
(:mop-direct sb-c::approximate-key-info :slot
((:name sb-c::name) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type common-lisp:keyword)))
(:mop-direct sb-c::approximate-key-info :slot
((:name common-lisp:position) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type (common-lisp:integer 0 4611686018427387903))))
(:mop-direct sb-c::approximate-key-info :slot
((:name sb-c::types) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::approximate-key-info :slot
((:name sb-c::allowp) (:ordinal 4)
(:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-c::approximate-key-info :prototype
#S(sb-c::approximate-key-info :name 0 :position 0 :types 0 :allowp 0))
(:mop-direct sb-c::approximate-fun-type :superclass
common-lisp:structure-object)
(:mop-direct sb-c::approximate-fun-type :package-name "SB-C")
(:mop-direct sb-c::approximate-fun-type :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::approximate-fun-type :classof common-lisp:structure-class)
(:mop-direct sb-c::approximate-fun-type :typeof common-lisp:structure-class)
(:mop-direct sb-c::approximate-fun-type :superclass
common-lisp:structure-object)
(:mop-direct sb-c::approximate-fun-type :slot
((:name sb-c::min-args) (:ordinal 1)
(:initform common-lisp:call-arguments-limit)
(:type (common-lisp:integer 0 4611686018427387903))))
(:mop-direct sb-c::approximate-fun-type :slot
((:name sb-c::max-args) (:ordinal 2) (:initform 0)
(:type (common-lisp:integer 0 4611686018427387903))))
(:mop-direct sb-c::approximate-fun-type :slot
((:name sb-c::types) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::approximate-fun-type :slot
((:name sb-c::keys) (:ordinal 4) (:type common-lisp:list)))
(:mop-direct sb-c::approximate-fun-type :prototype
#S(sb-c::approximate-fun-type :min-args 0 :max-args 0 :types 0 :keys 0))
(:mop-direct sb-fasl::undefined-package :superclass
common-lisp:structure-object)
(:mop-direct sb-fasl::undefined-package :package-name "SB-FASL")
(:mop-direct sb-fasl::undefined-package :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-fasl::undefined-package :classof common-lisp:structure-class)
(:mop-direct sb-fasl::undefined-package :typeof common-lisp:structure-class)
(:mop-direct sb-fasl::undefined-package :superclass
common-lisp:structure-object)
(:mop-direct sb-fasl::undefined-package :slot
((:name common-lisp:error) (:ordinal 1)))
(:mop-direct sb-fasl::undefined-package :prototype
#S(sb-fasl::undefined-package :error 0))
(:mop-direct sb-alien::shared-object :superclass common-lisp:structure-object)
(:mop-direct sb-alien::shared-object :package-name "SB-ALIEN")
(:mop-direct sb-alien::shared-object :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien::shared-object :classof common-lisp:structure-class)
(:mop-direct sb-alien::shared-object :typeof common-lisp:structure-class)
(:mop-direct sb-alien::shared-object :superclass common-lisp:structure-object)
(:mop-direct sb-alien::shared-object :slot
((:name common-lisp:pathname) (:ordinal 1)))
(:mop-direct sb-alien::shared-object :slot
((:name common-lisp:namestring) (:ordinal 2)))
(:mop-direct sb-alien::shared-object :slot
((:name sb-alien::handle) (:ordinal 3)))
(:mop-direct sb-alien::shared-object :slot
((:name sb-alien::dont-save) (:ordinal 4)))
(:mop-direct sb-alien::shared-object :prototype
#S(sb-alien::shared-object :pathname 0 :namestring 0 :handle 0 :dont-save 0))
(:mop-direct sb-c::core-object :superclass common-lisp:structure-object)
(:mop-direct sb-c::core-object :package-name "SB-C")
(:mop-direct sb-c::core-object :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::core-object :classof common-lisp:structure-class)
(:mop-direct sb-c::core-object :typeof common-lisp:structure-class)
(:mop-direct sb-c::core-object :superclass common-lisp:structure-object)
(:mop-direct sb-c::core-object :slot
((:name sb-c::entry-table) (:ordinal 1)
(:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
(:type common-lisp:hash-table)))
(:mop-direct sb-c::core-object :slot
((:name sb-c::patch-table) (:ordinal 2)
(:initform (common-lisp:make-hash-table :test 'common-lisp:eq))
(:type common-lisp:hash-table)))
(:mop-direct sb-c::core-object :slot
((:name sb-c::debug-info) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct sb-c::core-object :prototype #)
(:mop-direct sb-c::fixup-note :superclass common-lisp:structure-object)
(:mop-direct sb-c::fixup-note :package-name "SB-C")
(:mop-direct sb-c::fixup-note :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::fixup-note :classof common-lisp:structure-class)
(:mop-direct sb-c::fixup-note :typeof common-lisp:structure-class)
(:mop-direct sb-c::fixup-note :superclass common-lisp:structure-object)
(:mop-direct sb-c::fixup-note :slot ((:name sb-c::kind) (:ordinal 1)))
(:mop-direct sb-c::fixup-note :slot ((:name sb-c:fixup) (:ordinal 2)))
(:mop-direct sb-c::fixup-note :slot ((:name common-lisp:position) (:ordinal 3)))
(:mop-direct sb-c::fixup-note :prototype
#S(sb-c::fixup-note :kind 0 :fixup 0 :position 0))
(:mop-direct sb-c:fixup :superclass common-lisp:structure-object)
(:mop-direct sb-c:fixup :package-name "SB-C")
(:mop-direct sb-c:fixup :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c:fixup :classof common-lisp:structure-class)
(:mop-direct sb-c:fixup :typeof common-lisp:structure-class)
(:mop-direct sb-c:fixup :superclass common-lisp:structure-object)
(:mop-direct sb-c:fixup :slot ((:name sb-c::name) (:ordinal 1)))
(:mop-direct sb-c:fixup :slot ((:name sb-c::flavor) (:ordinal 2)))
(:mop-direct sb-c:fixup :slot ((:name sb-c::offset) (:ordinal 3)))
(:mop-direct sb-c:fixup :prototype #S(sb-c:fixup :name 0 :flavor 0 :offset 0))
(:mop-direct sb-pretty::pprint-dispatch-entry :superclass
common-lisp:structure-object)
(:mop-direct sb-pretty::pprint-dispatch-entry :package-name "SB-PRETTY")
(:mop-direct sb-pretty::pprint-dispatch-entry :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty::pprint-dispatch-entry :classof
common-lisp:structure-class)
(:mop-direct sb-pretty::pprint-dispatch-entry :typeof
common-lisp:structure-class)
(:mop-direct sb-pretty::pprint-dispatch-entry :superclass
common-lisp:structure-object)
(:mop-direct sb-pretty::pprint-dispatch-entry :slot
((:name common-lisp:type) (:ordinal 1)))
(:mop-direct sb-pretty::pprint-dispatch-entry :slot
((:name sb-pretty::test-fn) (:ordinal 2)
(:type (common-lisp:or common-lisp:function common-lisp:null))))
(:mop-direct sb-pretty::pprint-dispatch-entry :slot
((:name sb-pretty::priority) (:ordinal 3) (:initform 0)
(:type common-lisp:real)))
(:mop-direct sb-pretty::pprint-dispatch-entry :slot
((:name sb-pretty::initial-p) (:ordinal 4)
(:initform (common-lisp:null sb-pretty::*initial-pprint-dispatch-table*))
(:type common-lisp:boolean)))
(:mop-direct sb-pretty::pprint-dispatch-entry :slot
((:name sb-pretty::fun) (:ordinal 5) (:type sb-kernel:callable)))
(:mop-direct sb-pretty::pprint-dispatch-entry :prototype
#)
(:mop-direct sb-pretty::logical-block :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::logical-block :package-name "SB-PRETTY")
(:mop-direct sb-pretty::logical-block :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty::logical-block :classof common-lisp:structure-class)
(:mop-direct sb-pretty::logical-block :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::logical-block :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::logical-block :slot
((:name sb-pretty::start-column) (:ordinal 1) (:initform 0)
(:type sb-pretty::column)))
(:mop-direct sb-pretty::logical-block :slot
((:name sb-pretty::section-column) (:ordinal 2) (:initform 0)
(:type sb-pretty::column)))
(:mop-direct sb-pretty::logical-block :slot
((:name sb-pretty::per-line-prefix-end) (:ordinal 3) (:initform 0)
(:type sb-int:index)))
(:mop-direct sb-pretty::logical-block :slot
((:name sb-pretty::prefix-length) (:ordinal 4) (:initform 0)
(:type sb-int:index)))
(:mop-direct sb-pretty::logical-block :slot
((:name sb-pretty::suffix-length) (:ordinal 5) (:initform 0)
(:type sb-int:index)))
(:mop-direct sb-pretty::logical-block :slot
((:name sb-pretty::section-start-line) (:ordinal 6) (:initform 0)
(:type sb-int:index)))
(:mop-direct sb-pretty::logical-block :prototype
#S(sb-pretty::logical-block
:start-column 0
:section-column 0
:per-line-prefix-end 0
:prefix-length 0
:suffix-length 0
:section-start-line 0))
(:mop-direct sb-pretty::queued-op :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::tab :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::indentation :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::section-start :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::block-end :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::queued-op :package-name "SB-PRETTY")
(:mop-direct sb-pretty::queued-op :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty::queued-op :classof common-lisp:structure-class)
(:mop-direct sb-pretty::queued-op :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::queued-op :superclass common-lisp:structure-object)
(:mop-direct sb-pretty::queued-op :slot
((:name sb-pretty::posn) (:ordinal 1) (:initform 0) (:type sb-pretty::posn)))
(:mop-direct sb-pretty::tab :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::tab :package-name "SB-PRETTY")
(:mop-direct sb-pretty::tab :precedance
(sb-pretty::queued-op common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pretty::tab :classof common-lisp:structure-class)
(:mop-direct sb-pretty::tab :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::tab :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::tab :slot
((:name sb-pretty::sectionp) (:ordinal 1)
(:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-pretty::tab :slot
((:name sb-pretty::relativep) (:ordinal 2)
(:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-pretty::tab :slot
((:name sb-pretty::colnum) (:ordinal 3) (:initform 0)
(:type sb-pretty::column)))
(:mop-direct sb-pretty::tab :slot
((:name sb-pretty::colinc) (:ordinal 4) (:initform 0)
(:type sb-pretty::column)))
(:mop-direct sb-pretty::tab :prototype
#S(sb-pretty::tab :posn 0 :sectionp 0 :relativep 0 :colnum 0 :colinc 0))
(:mop-direct sb-pretty::indentation :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::indentation :package-name "SB-PRETTY")
(:mop-direct sb-pretty::indentation :precedance
(sb-pretty::queued-op common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pretty::indentation :classof common-lisp:structure-class)
(:mop-direct sb-pretty::indentation :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::indentation :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::indentation :slot
((:name sb-pretty::kind) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type (common-lisp:member :block :current))))
(:mop-direct sb-pretty::indentation :slot
((:name sb-pretty::amount) (:ordinal 2) (:initform 0)
(:type common-lisp:fixnum)))
(:mop-direct sb-pretty::indentation :prototype
#S(sb-pretty::indentation :posn 0 :kind 0 :amount 0))
(:mop-direct sb-pretty::section-start :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::block-start :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::newline :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::section-start :package-name "SB-PRETTY")
(:mop-direct sb-pretty::section-start :precedance
(sb-pretty::queued-op common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pretty::section-start :classof common-lisp:structure-class)
(:mop-direct sb-pretty::section-start :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::section-start :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::section-start :slot
((:name sb-pretty::depth) (:ordinal 1) (:initform 0) (:type sb-int:index)))
(:mop-direct sb-pretty::section-start :slot
((:name sb-pretty::section-end) (:ordinal 2)
(:type
(common-lisp:or common-lisp:null sb-pretty::newline sb-pretty::block-end))))
(:mop-direct sb-pretty::block-start :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::block-start :package-name "SB-PRETTY")
(:mop-direct sb-pretty::block-start :precedance
(sb-pretty::section-start sb-pretty::queued-op common-lisp:structure-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty::block-start :classof common-lisp:structure-class)
(:mop-direct sb-pretty::block-start :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::block-start :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::block-start :slot
((:name sb-pretty::block-end) (:ordinal 1)
(:type (common-lisp:or common-lisp:null sb-pretty::block-end))))
(:mop-direct sb-pretty::block-start :slot
((:name sb-pretty::prefix) (:ordinal 2)
(:type (common-lisp:or common-lisp:null common-lisp:simple-string))))
(:mop-direct sb-pretty::block-start :slot
((:name sb-pretty::suffix) (:ordinal 3)
(:type (common-lisp:or common-lisp:null common-lisp:simple-string))))
(:mop-direct sb-pretty::block-start :prototype
#S(sb-pretty::block-start
:posn 0
:depth 0
:section-end 0
:block-end 0
:prefix 0
:suffix 0))
(:mop-direct sb-pretty::newline :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::newline :package-name "SB-PRETTY")
(:mop-direct sb-pretty::newline :precedance
(sb-pretty::section-start sb-pretty::queued-op common-lisp:structure-object
sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty::newline :classof common-lisp:structure-class)
(:mop-direct sb-pretty::newline :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::newline :superclass sb-pretty::section-start)
(:mop-direct sb-pretty::newline :slot
((:name sb-pretty::kind) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type (common-lisp:member :linear :fill :miser :literal :mandatory))))
(:mop-direct sb-pretty::newline :prototype
#S(sb-pretty::newline :posn 0 :depth 0 :section-end 0 :kind 0))
(:mop-direct sb-pretty::section-start :prototype
#S(sb-pretty::section-start :posn 0 :depth 0 :section-end 0))
(:mop-direct sb-pretty::block-end :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::block-end :package-name "SB-PRETTY")
(:mop-direct sb-pretty::block-end :precedance
(sb-pretty::queued-op common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-pretty::block-end :classof common-lisp:structure-class)
(:mop-direct sb-pretty::block-end :typeof common-lisp:structure-class)
(:mop-direct sb-pretty::block-end :superclass sb-pretty::queued-op)
(:mop-direct sb-pretty::block-end :slot
((:name sb-pretty::suffix) (:ordinal 1)
(:type (common-lisp:or common-lisp:null common-lisp:simple-string))))
(:mop-direct sb-pretty::block-end :prototype
#S(sb-pretty::block-end :posn 0 :suffix 0))
(:mop-direct sb-pretty::queued-op :prototype #S(sb-pretty::queued-op :posn 0))
(:mop-direct sb-pretty:pprint-dispatch-table :superclass
common-lisp:structure-object)
(:mop-direct sb-pretty:pprint-dispatch-table :package-name "SB-PRETTY")
(:mop-direct sb-pretty:pprint-dispatch-table :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-pretty:pprint-dispatch-table :classof
common-lisp:structure-class)
(:mop-direct sb-pretty:pprint-dispatch-table :typeof
common-lisp:structure-class)
(:mop-direct sb-pretty:pprint-dispatch-table :superclass
common-lisp:structure-object)
(:mop-direct sb-pretty:pprint-dispatch-table :slot
((:name sb-pretty::entries) (:ordinal 1) (:type common-lisp:list)))
(:mop-direct sb-pretty:pprint-dispatch-table :slot
((:name sb-pretty::cons-entries) (:ordinal 2)
(:initform (common-lisp:make-hash-table :test 'common-lisp:eql))))
(:mop-direct sb-pretty:pprint-dispatch-table :prototype
#)
(:mop-direct common-lisp:pathname :superclass common-lisp:structure-object)
(:mop-direct common-lisp:logical-pathname :superclass common-lisp:pathname)
(:mop-direct common-lisp:pathname :package-name "COMMON-LISP")
(:mop-direct common-lisp:pathname :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:pathname :classof common-lisp:structure-class)
(:mop-direct common-lisp:pathname :typeof common-lisp:structure-class)
(:mop-direct common-lisp:pathname :superclass common-lisp:structure-object)
(:mop-direct common-lisp:pathname :slot
((:name sb-kernel:host) (:ordinal 1)
(:type (common-lisp:or sb-kernel:host common-lisp:null))))
(:mop-direct common-lisp:pathname :slot
((:name sb-impl::device) (:ordinal 2)
(:type
(common-lisp:or common-lisp:simple-string
sb-impl::pathname-component-tokens))))
(:mop-direct common-lisp:pathname :slot
((:name common-lisp:directory) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct common-lisp:pathname :slot
((:name sb-impl::name) (:ordinal 4)
(:type
(common-lisp:or common-lisp:simple-string sb-impl::pattern
sb-impl::pathname-component-tokens))))
(:mop-direct common-lisp:pathname :slot
((:name common-lisp:type) (:ordinal 5)
(:type
(common-lisp:or common-lisp:simple-string sb-impl::pattern
sb-impl::pathname-component-tokens))))
(:mop-direct common-lisp:pathname :slot
((:name sb-impl::version) (:ordinal 6)
(:type
(common-lisp:or common-lisp:integer sb-impl::pathname-component-tokens
(common-lisp:member :newest)))))
(:mop-direct common-lisp:logical-pathname :superclass common-lisp:pathname)
(:mop-direct common-lisp:logical-pathname :package-name "COMMON-LISP")
(:mop-direct common-lisp:logical-pathname :precedance
(common-lisp:pathname common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct common-lisp:logical-pathname :classof common-lisp:structure-class)
(:mop-direct common-lisp:logical-pathname :typeof common-lisp:structure-class)
(:mop-direct common-lisp:logical-pathname :superclass common-lisp:pathname)
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x1d (pc=0x1000bf86d7, sp=0x7ffff2b9e6c8)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.
(:mop-direct common-lisp:logical-pathname :prototype
#)
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0x1d (pc=0x1000bf86d7, sp=0x7ffff2b9e768)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.
(:mop-direct common-lisp:pathname :prototype
#)
(:mop-direct sb-kernel:host :superclass common-lisp:structure-object)
(:mop-direct sb-impl::unix-host :superclass sb-kernel:host)
(:mop-direct sb-kernel:logical-host :superclass sb-kernel:host)
(:mop-direct sb-kernel:host :package-name "SB-KERNEL")
(:mop-direct sb-kernel:host :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel:host :classof common-lisp:structure-class)
(:mop-direct sb-kernel:host :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:host :superclass common-lisp:structure-object)
(:mop-direct sb-kernel:host :slot
((:name sb-impl::parse) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
((:name sb-impl::parse-native) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
((:name sb-impl::unparse) (:ordinal 3) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
((:name sb-impl::unparse-native) (:ordinal 4) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
((:name sb-impl::unparse-host) (:ordinal 5) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
((:name sb-impl::unparse-directory) (:ordinal 6)
(:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
((:name sb-impl::unparse-file) (:ordinal 7) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
((:name sb-impl::unparse-enough) (:ordinal 8) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
((:name sb-impl::unparse-directory-separator) (:ordinal 9)
(:initform (sb-int:missing-arg)) (:type common-lisp:simple-string)))
(:mop-direct sb-kernel:host :slot
((:name sb-int:simplify-namestring) (:ordinal 10)
(:initform (sb-int:missing-arg)) (:type common-lisp:function)))
(:mop-direct sb-kernel:host :slot
((:name sb-impl::customary-case) (:ordinal 11)
(:initform (sb-int:missing-arg)) (:type (common-lisp:member :upper :lower))))
(:mop-direct sb-impl::unix-host :superclass sb-kernel:host)
(:mop-direct sb-impl::unix-host :package-name "SB-IMPL")
(:mop-direct sb-impl::unix-host :precedance
(sb-kernel:host common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-impl::unix-host :classof common-lisp:structure-class)
(:mop-direct sb-impl::unix-host :typeof common-lisp:structure-class)
(:mop-direct sb-impl::unix-host :superclass sb-kernel:host)
(:mop-direct sb-impl::unix-host :slot
((:name sb-impl::parse) (:ordinal 1)
(:initform #'sb-impl::parse-unix-namestring) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
((:name sb-impl::parse-native) (:ordinal 2)
(:initform #'sb-impl::parse-native-unix-namestring)
(:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
((:name sb-impl::unparse) (:ordinal 3)
(:initform #'sb-impl::unparse-unix-namestring) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
((:name sb-impl::unparse-native) (:ordinal 4)
(:initform #'sb-impl::unparse-native-unix-namestring)
(:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
((:name sb-impl::unparse-host) (:ordinal 5)
(:initform #'sb-impl::unparse-unix-host) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
((:name sb-impl::unparse-directory) (:ordinal 6)
(:initform #'sb-impl::unparse-unix-directory) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
((:name sb-impl::unparse-file) (:ordinal 7)
(:initform #'sb-impl::unparse-unix-file) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
((:name sb-impl::unparse-enough) (:ordinal 8)
(:initform #'sb-impl::unparse-unix-enough) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
((:name sb-impl::unparse-directory-separator) (:ordinal 9) (:initform "/")
(:type common-lisp:simple-string)))
(:mop-direct sb-impl::unix-host :slot
((:name sb-int:simplify-namestring) (:ordinal 10)
(:initform #'sb-impl::simplify-unix-namestring) (:type common-lisp:function)))
(:mop-direct sb-impl::unix-host :slot
((:name sb-impl::customary-case) (:ordinal 11) (:initform :lower)
(:type (common-lisp:member :upper :lower))))
(:mop-direct sb-impl::unix-host :prototype #)
(:mop-direct sb-kernel:logical-host :superclass sb-kernel:host)
(:mop-direct sb-kernel:logical-host :package-name "SB-KERNEL")
(:mop-direct sb-kernel:logical-host :precedance
(sb-kernel:host common-lisp:structure-object sb-pcl::slot-object
common-lisp:t))
(:mop-direct sb-kernel:logical-host :classof common-lisp:structure-class)
(:mop-direct sb-kernel:logical-host :typeof common-lisp:structure-class)
(:mop-direct sb-kernel:logical-host :superclass sb-kernel:host)
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::parse) (:ordinal 1)
(:initform #'sb-impl::parse-logical-namestring) (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::parse-native) (:ordinal 2)
(:initform
(common-lisp:lambda (common-lisp:&rest sb-impl::x)
(common-lisp:error "called PARSE-NATIVE-NAMESTRING using a ~
logical host: ~S"
(common-lisp:first sb-impl::x))))
(:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::unparse) (:ordinal 3)
(:initform #'sb-impl::unparse-logical-namestring)
(:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::unparse-native) (:ordinal 4)
(:initform
(common-lisp:lambda (common-lisp:&rest sb-impl::x)
(common-lisp:error "called NATIVE-NAMESTRING using a ~
logical host: ~S"
(common-lisp:first sb-impl::x))))
(:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::unparse-host) (:ordinal 5)
(:initform
(common-lisp:lambda (sb-impl::x)
(sb-impl::logical-host-name (sb-impl::%pathname-host sb-impl::x))))
(:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::unparse-directory) (:ordinal 6)
(:initform #'sb-impl::unparse-logical-directory)
(:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::unparse-file) (:ordinal 7)
(:initform #'sb-impl::unparse-logical-file) (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::unparse-enough) (:ordinal 8)
(:initform #'sb-impl::unparse-enough-namestring)
(:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::unparse-directory-separator) (:ordinal 9) (:initform ";")
(:type common-lisp:simple-string)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-int:simplify-namestring) (:ordinal 10)
(:initform #'common-lisp:identity) (:type common-lisp:function)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::customary-case) (:ordinal 11) (:initform :upper)
(:type (common-lisp:member :upper :lower))))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::name) (:ordinal 12) (:initform "")
(:type common-lisp:simple-string)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::translations) (:ordinal 13) (:type common-lisp:list)))
(:mop-direct sb-kernel:logical-host :slot
((:name sb-impl::canon-transls) (:ordinal 14) (:type common-lisp:list)))
(:mop-direct sb-kernel:logical-host :prototype #)
(:mop-direct sb-kernel:host :prototype #)
(:mop-direct common-lisp:readtable :superclass common-lisp:structure-object)
(:mop-direct common-lisp:readtable :package-name "COMMON-LISP")
(:mop-direct common-lisp:readtable :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:readtable :classof common-lisp:structure-class)
(:mop-direct common-lisp:readtable :typeof common-lisp:structure-class)
(:mop-direct common-lisp:readtable :superclass common-lisp:structure-object)
(:mop-direct common-lisp:readtable :slot
((:name sb-impl::character-attribute-array) (:ordinal 1)
(:initform
(common-lisp:make-array sb-int:base-char-code-limit :element-type
'(common-lisp:unsigned-byte 8) :initial-element
sb-impl::+char-attr-constituent+))
(:type sb-impl::attribute-table)))
(:mop-direct common-lisp:readtable :slot
((:name sb-impl::character-attribute-hash-table) (:ordinal 2)
(:initform (common-lisp:make-hash-table)) (:type common-lisp:hash-table)))
(:mop-direct common-lisp:readtable :slot
((:name sb-impl::character-macro-array) (:ordinal 3)
(:initform
(common-lisp:make-array sb-int:base-char-code-limit :initial-element
common-lisp:nil))
(:type (common-lisp:simple-vector 128))))
(:mop-direct common-lisp:readtable :slot
((:name sb-impl::character-macro-hash-table) (:ordinal 4)
(:initform (common-lisp:make-hash-table)) (:type common-lisp:hash-table)))
(:mop-direct common-lisp:readtable :slot
((:name sb-impl::%readtable-case) (:ordinal 5) (:initform :upcase)
(:type (common-lisp:member :upcase :downcase :preserve :invert))))
(:mop-direct common-lisp:readtable :slot
((:name sb-impl::%readtable-normalization) (:ordinal 6)
(:initform common-lisp:t) (:type common-lisp:boolean)))
(:mop-direct common-lisp:readtable :prototype
#)
(:mop-direct common-lisp:hash-table :superclass common-lisp:structure-object)
(:mop-direct common-lisp:hash-table :package-name "COMMON-LISP")
(:mop-direct common-lisp:hash-table :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:hash-table :classof common-lisp:structure-class)
(:mop-direct common-lisp:hash-table :typeof common-lisp:structure-class)
(:mop-direct common-lisp:hash-table :superclass common-lisp:structure-object)
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::test) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::test-fun) (:ordinal 2) (:type common-lisp:function)))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::hash-fun) (:ordinal 3) (:type common-lisp:function)))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::rehash-size) (:ordinal 4)
(:type (common-lisp:or sb-int:index (common-lisp:single-float (1.0))))))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::rehash-threshold) (:ordinal 5)
(:type (common-lisp:single-float (0.0) 1.0))))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::rehash-trigger) (:ordinal 6) (:type sb-int:index)))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::number-entries) (:ordinal 7) (:initform 0)
(:type sb-int:index)))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::table) (:ordinal 8) (:type common-lisp:simple-vector)))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::next-weak-hash-table) (:ordinal 9) (:type common-lisp:null)))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::weakness) (:ordinal 10)
(:type
(common-lisp:member common-lisp:nil :key :value :key-or-value
:key-and-value))))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::next-free-kv) (:ordinal 11) (:initform 0)
(:type sb-int:index)))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::cache) (:ordinal 12)
(:type (common-lisp:or common-lisp:null sb-int:index))))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::index-vector) (:ordinal 13)
(:type (common-lisp:simple-array sb-ext:word (common-lisp:*)))))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::next-vector) (:ordinal 14)
(:type (common-lisp:simple-array sb-ext:word (common-lisp:*)))))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::hash-vector) (:ordinal 15)
(:type
(common-lisp:or common-lisp:null
(common-lisp:simple-array sb-ext:word (common-lisp:*))))))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::lock) (:ordinal 16)
(:initform (sb-thread:make-mutex :name "hash-table lock"))
(:type sb-thread:mutex)))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::needs-rehash-p) (:ordinal 17)
(:type (common-lisp:member common-lisp:nil common-lisp:t))))
(:mop-direct common-lisp:hash-table :slot
((:name sb-impl::synchronized-p) (:ordinal 18)
(:type (common-lisp:member common-lisp:nil common-lisp:t))))
(:mop-direct common-lisp:hash-table :prototype
#)
(:mop-direct common-lisp:random-state :superclass common-lisp:structure-object)
(:mop-direct common-lisp:random-state :package-name "COMMON-LISP")
(:mop-direct common-lisp:random-state :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:random-state :classof common-lisp:structure-class)
(:mop-direct common-lisp:random-state :typeof common-lisp:structure-class)
(:mop-direct common-lisp:random-state :superclass common-lisp:structure-object)
(:mop-direct common-lisp:random-state :slot
((:name sb-kernel::state) (:ordinal 1)
(:initform (sb-kernel::init-random-state))
(:type (common-lisp:simple-array (common-lisp:unsigned-byte 32) (627)))))
(:mop-direct common-lisp:package :superclass common-lisp:structure-object)
(:mop-direct common-lisp:package :package-name "COMMON-LISP")
(:mop-direct common-lisp:package :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct common-lisp:package :classof common-lisp:structure-class)
(:mop-direct common-lisp:package :typeof common-lisp:structure-class)
(:mop-direct common-lisp:package :superclass common-lisp:structure-object)
(:mop-direct common-lisp:package :slot
((:name sb-impl::%name) (:ordinal 1)
(:type (common-lisp:or common-lisp:simple-string common-lisp:null))))
(:mop-direct common-lisp:package :slot
((:name sb-impl::%nicknames) (:ordinal 2) (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::%use-list) (:ordinal 3) (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::tables) (:ordinal 4) (:initform #())
(:type common-lisp:simple-vector)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::mru-table-index) (:ordinal 5) (:initform 0)
(:type sb-int:index)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::%used-by-list) (:ordinal 6) (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::internal-symbols) (:ordinal 7)
(:type sb-int:package-hashtable)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::external-symbols) (:ordinal 8)
(:type sb-int:package-hashtable)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::%shadowing-symbols) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::doc-string) (:ordinal 10)
(:type (common-lisp:or common-lisp:simple-string common-lisp:null))))
(:mop-direct common-lisp:package :slot
((:name sb-impl::lock) (:ordinal 11) (:type common-lisp:boolean)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::%implementation-packages) (:ordinal 12)
(:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::source-location) (:ordinal 13)
(:type (common-lisp:or common-lisp:null sb-c:definition-source-location))))
(:mop-direct common-lisp:package :slot
((:name sb-impl::%local-nicknames) (:ordinal 14) (:type common-lisp:list)))
(:mop-direct common-lisp:package :slot
((:name sb-impl::%locally-nicknamed-by) (:ordinal 15)
(:type common-lisp:list)))
(:mop-direct common-lisp:package :prototype #)
(:mop-direct sb-int:package-hashtable :superclass common-lisp:structure-object)
(:mop-direct sb-int:package-hashtable :package-name "SB-INT")
(:mop-direct sb-int:package-hashtable :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-int:package-hashtable :classof common-lisp:structure-class)
(:mop-direct sb-int:package-hashtable :typeof common-lisp:structure-class)
(:mop-direct sb-int:package-hashtable :superclass common-lisp:structure-object)
(:mop-direct sb-int:package-hashtable :slot
((:name sb-impl::cells) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type common-lisp:simple-vector)))
(:mop-direct sb-int:package-hashtable :slot
((:name sb-impl::size) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type sb-int:index)))
(:mop-direct sb-int:package-hashtable :slot
((:name sb-impl::free) (:ordinal 3) (:initform (sb-int:missing-arg))
(:type sb-int:index)))
(:mop-direct sb-int:package-hashtable :slot
((:name sb-impl::deleted) (:ordinal 4) (:initform 0) (:type sb-int:index)))
CORRUPTION WARNING in SBCL pid 2851(tid 140737353889536):
Memory fault at 0xfffffffffffffff9 (pc=0x1001da86a2, sp=0x7ffff2b9e508)
The integrity of this image is possibly compromised.
Continuing with fingers crossed.
(:mop-direct sb-c::transform :superclass common-lisp:structure-object)
(:mop-direct sb-c::transform :package-name "SB-C")
(:mop-direct sb-c::transform :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::transform :classof common-lisp:structure-class)
(:mop-direct sb-c::transform :typeof common-lisp:structure-class)
(:mop-direct sb-c::transform :superclass common-lisp:structure-object)
(:mop-direct sb-c::transform :slot
((:name common-lisp:type) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type sb-kernel:ctype)))
(:mop-direct sb-c::transform :slot
((:name common-lisp:function) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type common-lisp:function)))
(:mop-direct sb-c::transform :slot
((:name sb-c::note) (:ordinal 3) (:initform (sb-int:missing-arg))
(:type common-lisp:string)))
(:mop-direct sb-c::transform :slot
((:name sb-c::important) (:ordinal 4)
(:type (common-lisp:member common-lisp:nil :slightly common-lisp:t))))
(:mop-direct sb-c::transform :prototype
#)
(:mop-direct sb-alien::alien-type-class :superclass
common-lisp:structure-object)
(:mop-direct sb-alien::alien-type-class :package-name "SB-ALIEN")
(:mop-direct sb-alien::alien-type-class :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-alien::alien-type-class :classof common-lisp:structure-class)
(:mop-direct sb-alien::alien-type-class :typeof common-lisp:structure-class)
(:mop-direct sb-alien::alien-type-class :superclass
common-lisp:structure-object)
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::name) (:ordinal 1) (:type common-lisp:symbol)))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::defstruct-name) (:ordinal 2) (:type common-lisp:symbol)))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::include) (:ordinal 3)
(:type (common-lisp:or common-lisp:null sb-alien::alien-type-class))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::unparse) (:ordinal 4)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::type=) (:ordinal 5)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::lisp-rep) (:ordinal 6)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::alien-rep) (:ordinal 7)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::extract-gen) (:ordinal 8)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::deposit-gen) (:ordinal 9)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::naturalize-gen) (:ordinal 10)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::deport-gen) (:ordinal 11)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::deport-alloc-gen) (:ordinal 12)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::deport-pin-p) (:ordinal 13)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::arg-tn) (:ordinal 14)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name sb-alien::result-tn) (:ordinal 15)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :slot
((:name common-lisp:subtypep) (:ordinal 16)
(:type (common-lisp:or common-lisp:null common-lisp:function))))
(:mop-direct sb-alien::alien-type-class :prototype
#)
(:mop-direct sb-format::format-directive :superclass
common-lisp:structure-object)
(:mop-direct sb-format::format-directive :package-name "SB-FORMAT")
(:mop-direct sb-format::format-directive :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-format::format-directive :classof common-lisp:structure-class)
(:mop-direct sb-format::format-directive :typeof common-lisp:structure-class)
(:mop-direct sb-format::format-directive :superclass
common-lisp:structure-object)
(:mop-direct sb-format::format-directive :slot
((:name common-lisp:string) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type common-lisp:simple-string)))
(:mop-direct sb-format::format-directive :slot
((:name sb-format::start) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type (common-lisp:and common-lisp:unsigned-byte common-lisp:fixnum))))
(:mop-direct sb-format::format-directive :slot
((:name sb-format::end) (:ordinal 3) (:initform (sb-int:missing-arg))
(:type (common-lisp:and common-lisp:unsigned-byte common-lisp:fixnum))))
(:mop-direct sb-format::format-directive :slot
((:name common-lisp:character) (:ordinal 4) (:initform (sb-int:missing-arg))
(:type common-lisp:character)))
(:mop-direct sb-format::format-directive :slot
((:name sb-format::colonp) (:ordinal 5)
(:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-format::format-directive :slot
((:name sb-format::atsignp) (:ordinal 6)
(:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-format::format-directive :slot
((:name sb-format::params) (:ordinal 7) (:type common-lisp:list)))
(:mop-direct sb-kernel::condition-slot :superclass common-lisp:structure-object)
(:mop-direct sb-kernel::condition-slot :package-name "SB-KERNEL")
(:mop-direct sb-kernel::condition-slot :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-kernel::condition-slot :classof common-lisp:structure-class)
(:mop-direct sb-kernel::condition-slot :typeof common-lisp:structure-class)
(:mop-direct sb-kernel::condition-slot :superclass common-lisp:structure-object)
(:mop-direct sb-kernel::condition-slot :slot
((:name sb-kernel::name) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type common-lisp:symbol)))
(:mop-direct sb-kernel::condition-slot :slot
((:name sb-kernel::initargs) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type common-lisp:list)))
(:mop-direct sb-kernel::condition-slot :slot
((:name sb-kernel::readers) (:ordinal 3) (:initform (sb-int:missing-arg))
(:type common-lisp:list)))
(:mop-direct sb-kernel::condition-slot :slot
((:name sb-kernel::writers) (:ordinal 4) (:initform (sb-int:missing-arg))
(:type common-lisp:list)))
(:mop-direct sb-kernel::condition-slot :slot
((:name sb-kernel::initform-p) (:ordinal 5) (:initform (sb-int:missing-arg))
(:type (common-lisp:member common-lisp:t common-lisp:nil))))
(:mop-direct sb-kernel::condition-slot :slot
((:name sb-kernel::initform) (:ordinal 6)))
(:mop-direct sb-kernel::condition-slot :slot
((:name sb-kernel::initfunction) (:ordinal 7)
(:initform (sb-int:missing-arg))))
(:mop-direct sb-kernel::condition-slot :slot
((:name sb-kernel::allocation) (:ordinal 8)
(:type (common-lisp:member :instance :class common-lisp:nil))))
(:mop-direct sb-kernel::condition-slot :slot
((:name sb-kernel::cell) (:ordinal 9)
(:type (common-lisp:or common-lisp:cons common-lisp:null))))
(:mop-direct sb-kernel::condition-slot :slot
((:name common-lisp:documentation) (:ordinal 10)
(:type (common-lisp:or common-lisp:string common-lisp:null))))
(:mop-direct sb-kernel::condition-slot :prototype
#S(sb-kernel::condition-slot
:name 0
:initargs 0
:readers 0
:writers 0
:initform-p 0
:initform 0
:initfunction 0
:allocation 0
:cell 0
:documentation 0))
(:mop-direct sb-c::source-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::source-info :package-name "SB-C")
(:mop-direct sb-c::source-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::source-info :classof common-lisp:structure-class)
(:mop-direct sb-c::source-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::source-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::source-info :slot
((:name sb-c::start-time) (:ordinal 1)
(:initform (common-lisp:get-universal-time))
(:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::source-info :slot
((:name sb-c::start-real-time) (:ordinal 2)
(:initform (common-lisp:get-internal-real-time))
(:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::source-info :slot
((:name sb-c::file-info) (:ordinal 3)
(:type (common-lisp:or sb-c::file-info common-lisp:null))))
(:mop-direct sb-c::source-info :slot
((:name common-lisp:stream) (:ordinal 4)
(:type (common-lisp:or common-lisp:stream common-lisp:null))))
(:mop-direct sb-c::source-info :slot
((:name sb-c::last-defn-source-loc) (:ordinal 5)))
(:mop-direct sb-c::source-info :slot
((:name sb-c::parent) (:ordinal 6)
(:type (common-lisp:or sb-c::source-info common-lisp:null))))
(:mop-direct sb-c::source-info :prototype #)
(:mop-direct sb-c::file-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::file-info :package-name "SB-C")
(:mop-direct sb-c::file-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::file-info :classof common-lisp:structure-class)
(:mop-direct sb-c::file-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::file-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::file-info :slot
((:name sb-c::name) (:ordinal 1) (:initform (sb-int:missing-arg))
(:type (common-lisp:or common-lisp:pathname (common-lisp:eql :lisp)))))
(:mop-direct sb-c::file-info :slot ((:name sb-c::external-format) (:ordinal 2)))
(:mop-direct sb-c::file-info :slot
((:name sb-c::untruename) (:ordinal 3)
(:type (common-lisp:or common-lisp:pathname common-lisp:null))))
(:mop-direct sb-c::file-info :slot
((:name sb-c::write-date) (:ordinal 4)
(:type (common-lisp:or common-lisp:unsigned-byte common-lisp:null))))
(:mop-direct sb-c::file-info :slot
((:name sb-c::source-root) (:ordinal 5) (:initform 0)
(:type common-lisp:unsigned-byte)))
(:mop-direct sb-c::file-info :slot
((:name sb-c::forms) (:ordinal 6)
(:initform
(common-lisp:make-array 10 :fill-pointer 0 :adjustable common-lisp:t))
(:type (common-lisp:vector common-lisp:t))))
(:mop-direct sb-c::file-info :slot
((:name sb-c::positions) (:ordinal 7)
(:initform
(common-lisp:make-array 10 :fill-pointer 0 :adjustable common-lisp:t))
(:type (common-lisp:vector common-lisp:t))))
(:mop-direct sb-c::file-info :slot
((:name sb-c::subforms) (:ordinal 8)
(:type (common-lisp:or common-lisp:null (common-lisp:vector common-lisp:t)))))
(:mop-direct sb-c::file-info :slot
((:name sb-c::style-warning-tracker) (:ordinal 9) (:type common-lisp:list)))
(:mop-direct sb-c::file-info :prototype #)
(:mop-direct sb-c::ir2-nlx-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-nlx-info :package-name "SB-C")
(:mop-direct sb-c::ir2-nlx-info :precedance
(common-lisp:structure-object sb-pcl::slot-object common-lisp:t))
(:mop-direct sb-c::ir2-nlx-info :classof common-lisp:structure-class)
(:mop-direct sb-c::ir2-nlx-info :typeof common-lisp:structure-class)
(:mop-direct sb-c::ir2-nlx-info :superclass common-lisp:structure-object)
(:mop-direct sb-c::ir2-nlx-info :slot
((:name sb-c::home) (:ordinal 1)
(:type (common-lisp:or sb-c:tn common-lisp:null))))
(:mop-direct sb-c::ir2-nlx-info :slot
((:name sb-c::save-sp) (:ordinal 2) (:initform (sb-int:missing-arg))
(:type sb-c:tn)))
(:mop-direct sb-c::ir2-nlx-info :slot
((:name sb-c::dynamic-state) (:ordinal 3)
(:initform
(common-lisp:list* (sb-c:make-stack-pointer-tn)
(sb-c:make-dynamic-state-tns)))
(:type common-lisp:list)))
(:mop-direct sb-c::ir2-nlx-info :slot
((:name sb-c::target) (:ordinal 4) (:initform (sb-assem:gen-label))
(:type sb-assem:label)))
(:mop-direct sb-c::ir2-nlx-info :prototype
#