0.9.16.15: stamp down on warnings due to step instrumentation
[sbcl.git] / src / pcl / boot.lisp
1 ;;;; This software is part of the SBCL system. See the README file for
2 ;;;; more information.
3
4 ;;;; This software is derived from software originally released by Xerox
5 ;;;; Corporation. Copyright and release statements follow. Later modifications
6 ;;;; to the software are in the public domain and are provided with
7 ;;;; absolutely no warranty. See the COPYING and CREDITS files for more
8 ;;;; information.
9
10 ;;;; copyright information from original PCL sources:
11 ;;;;
12 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
13 ;;;; All rights reserved.
14 ;;;;
15 ;;;; Use and copying of this software and preparation of derivative works based
16 ;;;; upon this software are permitted. Any distribution of this software or
17 ;;;; derivative works must comply with all applicable United States export
18 ;;;; control laws.
19 ;;;;
20 ;;;; This software is made available AS IS, and Xerox Corporation makes no
21 ;;;; warranty about the software, its performance or its conformity to any
22 ;;;; specification.
23
24 (in-package "SB-PCL")
25 \f
26 #|
27
28 The CommonLoops evaluator is meta-circular.
29
30 Most of the code in PCL is methods on generic functions, including
31 most of the code that actually implements generic functions and method
32 lookup.
33
34 So, we have a classic bootstrapping problem. The solution to this is
35 to first get a cheap implementation of generic functions running,
36 these are called early generic functions. These early generic
37 functions and the corresponding early methods and early method lookup
38 are used to get enough of the system running that it is possible to
39 create real generic functions and methods and implement real method
40 lookup. At that point (done in the file FIXUP) the function
41 !FIX-EARLY-GENERIC-FUNCTIONS is called to convert all the early generic
42 functions to real generic functions.
43
44 The cheap generic functions are built using the same
45 FUNCALLABLE-INSTANCE objects that real generic functions are made out of.
46 This means that as PCL is being bootstrapped, the cheap generic
47 function objects which are being created are the same objects which
48 will later be real generic functions. This is good because:
49   - we don't cons garbage structure, and
50   - we can keep pointers to the cheap generic function objects
51     during booting because those pointers will still point to
52     the right object after the generic functions are all fixed up.
53
54 This file defines the DEFMETHOD macro and the mechanism used to expand
55 it. This includes the mechanism for processing the body of a method.
56 DEFMETHOD basically expands into a call to LOAD-DEFMETHOD, which
57 basically calls ADD-METHOD to add the method to the generic function.
58 These expansions can be loaded either during bootstrapping or when PCL
59 is fully up and running.
60
61 An important effect of this arrangement is it means we can compile
62 files with DEFMETHOD forms in them in a completely running PCL, but
63 then load those files back in during bootstrapping. This makes
64 development easier. It also means there is only one set of code for
65 processing DEFMETHOD. Bootstrapping works by being sure to have
66 LOAD-METHOD be careful to call only primitives which work during
67 bootstrapping.
68
69 |#
70
71 (declaim (notinline make-a-method
72                     add-named-method
73                     ensure-generic-function-using-class
74                     add-method
75                     remove-method))
76
77 (defvar *!early-functions*
78         '((make-a-method early-make-a-method
79                          real-make-a-method)
80           (add-named-method early-add-named-method
81                             real-add-named-method)
82           ))
83
84 ;;; For each of the early functions, arrange to have it point to its
85 ;;; early definition. Do this in a way that makes sure that if we
86 ;;; redefine one of the early definitions the redefinition will take
87 ;;; effect. This makes development easier.
88 (dolist (fns *!early-functions*)
89   (let ((name (car fns))
90         (early-name (cadr fns)))
91     (setf (gdefinition name)
92             (set-fun-name
93              (lambda (&rest args)
94                (apply (fdefinition early-name) args))
95              name))))
96
97 ;;; *!GENERIC-FUNCTION-FIXUPS* is used by !FIX-EARLY-GENERIC-FUNCTIONS
98 ;;; to convert the few functions in the bootstrap which are supposed
99 ;;; to be generic functions but can't be early on.
100 (defvar *!generic-function-fixups*
101   '((add-method
102      ((generic-function method)  ;lambda-list
103       (standard-generic-function method) ;specializers
104       real-add-method))          ;method-function
105     (remove-method
106      ((generic-function method)
107       (standard-generic-function method)
108       real-remove-method))
109     (get-method
110      ((generic-function qualifiers specializers &optional (errorp t))
111       (standard-generic-function t t)
112       real-get-method))
113     (ensure-generic-function-using-class
114      ((generic-function fun-name
115                         &key generic-function-class environment
116                         &allow-other-keys)
117       (generic-function t)
118       real-ensure-gf-using-class--generic-function)
119      ((generic-function fun-name
120                         &key generic-function-class environment
121                         &allow-other-keys)
122       (null t)
123       real-ensure-gf-using-class--null))
124     (make-method-lambda
125      ((proto-generic-function proto-method lambda-expression environment)
126       (standard-generic-function standard-method t t)
127       real-make-method-lambda))
128     (make-method-initargs-form
129      ((proto-generic-function proto-method
130                               lambda-expression
131                               lambda-list environment)
132       (standard-generic-function standard-method t t t)
133       real-make-method-initargs-form))
134     (compute-effective-method
135      ((generic-function combin applicable-methods)
136       (generic-function standard-method-combination t)
137       standard-compute-effective-method))))
138 \f
139 (defmacro defgeneric (fun-name lambda-list &body options)
140   (declare (type list lambda-list))
141   (unless (legal-fun-name-p fun-name)
142     (error 'simple-program-error
143            :format-control "illegal generic function name ~S"
144            :format-arguments (list fun-name)))
145   (check-gf-lambda-list lambda-list)
146   (let ((initargs ())
147         (methods ()))
148     (flet ((duplicate-option (name)
149              (error 'simple-program-error
150                     :format-control "The option ~S appears more than once."
151                     :format-arguments (list name)))
152            (expand-method-definition (qab) ; QAB = qualifiers, arglist, body
153              (let* ((arglist-pos (position-if #'listp qab))
154                     (arglist (elt qab arglist-pos))
155                     (qualifiers (subseq qab 0 arglist-pos))
156                     (body (nthcdr (1+ arglist-pos) qab)))
157                `(push (defmethod ,fun-name ,@qualifiers ,arglist ,@body)
158                       (generic-function-initial-methods (fdefinition ',fun-name))))))
159       (macrolet ((initarg (key) `(getf initargs ,key)))
160         (dolist (option options)
161           (let ((car-option (car option)))
162             (case car-option
163               (declare
164                (when (and
165                       (consp (cadr option))
166                       (member (first (cadr option))
167                               ;; FIXME: this list is slightly weird.
168                               ;; ANSI (on the DEFGENERIC page) in one
169                               ;; place allows only OPTIMIZE; in
170                               ;; another place gives this list of
171                               ;; disallowed declaration specifiers.
172                               ;; This seems to be the only place where
173                               ;; the FUNCTION declaration is
174                               ;; mentioned; TYPE seems to be missing.
175                               ;; Very strange.  -- CSR, 2002-10-21
176                               '(declaration ftype function
177                                 inline notinline special)))
178                  (error 'simple-program-error
179                         :format-control "The declaration specifier ~S ~
180                                          is not allowed inside DEFGENERIC."
181                         :format-arguments (list (cadr option))))
182                (push (cadr option) (initarg :declarations)))
183               (:method-combination
184                (when (initarg car-option)
185                  (duplicate-option car-option))
186                (unless (symbolp (cadr option))
187                  (error 'simple-program-error
188                         :format-control "METHOD-COMBINATION name not a ~
189                                          symbol: ~S"
190                         :format-arguments (list (cadr option))))
191                (setf (initarg car-option)
192                      `',(cdr option)))
193               (:argument-precedence-order
194                (let* ((required (parse-lambda-list lambda-list))
195                       (supplied (cdr option)))
196                  (unless (= (length required) (length supplied))
197                    (error 'simple-program-error
198                           :format-control "argument count discrepancy in ~
199                                            :ARGUMENT-PRECEDENCE-ORDER clause."
200                           :format-arguments nil))
201                  (when (set-difference required supplied)
202                    (error 'simple-program-error
203                           :format-control "unequal sets for ~
204                                            :ARGUMENT-PRECEDENCE-ORDER clause: ~
205                                            ~S and ~S"
206                           :format-arguments (list required supplied)))
207                  (setf (initarg car-option)
208                        `',(cdr option))))
209               ((:documentation :generic-function-class :method-class)
210                (unless (proper-list-of-length-p option 2)
211                  (error "bad list length for ~S" option))
212                (if (initarg car-option)
213                    (duplicate-option car-option)
214                    (setf (initarg car-option) `',(cadr option))))
215               (:method
216                (push (cdr option) methods))
217               (t
218                ;; ANSI requires that unsupported things must get a
219                ;; PROGRAM-ERROR.
220                (error 'simple-program-error
221                       :format-control "unsupported option ~S"
222                       :format-arguments (list option))))))
223
224         (when (initarg :declarations)
225           (setf (initarg :declarations)
226                 `',(initarg :declarations))))
227       `(progn
228          (eval-when (:compile-toplevel :load-toplevel :execute)
229            (compile-or-load-defgeneric ',fun-name))
230          (load-defgeneric ',fun-name ',lambda-list
231                           (sb-c:source-location) ,@initargs)
232         ,@(mapcar #'expand-method-definition methods)
233         (fdefinition ',fun-name)))))
234
235 (defun compile-or-load-defgeneric (fun-name)
236   (proclaim-as-fun-name fun-name)
237   (note-name-defined fun-name :function)
238   (unless (eq (info :function :where-from fun-name) :declared)
239     (setf (info :function :where-from fun-name) :defined)
240     (setf (info :function :type fun-name)
241           (specifier-type 'function))))
242
243 (defun load-defgeneric (fun-name lambda-list source-location &rest initargs)
244   (when (fboundp fun-name)
245     (style-warn "redefining ~S in DEFGENERIC" fun-name)
246     (let ((fun (fdefinition fun-name)))
247       (when (generic-function-p fun)
248         (loop for method in (generic-function-initial-methods fun)
249               do (remove-method fun method))
250         (setf (generic-function-initial-methods fun) '()))))
251   (apply #'ensure-generic-function
252          fun-name
253          :lambda-list lambda-list
254          :definition-source source-location
255          initargs))
256
257 (define-condition generic-function-lambda-list-error
258     (reference-condition simple-program-error)
259   ()
260   (:default-initargs :references (list '(:ansi-cl :section (3 4 2)))))
261
262 (defun check-gf-lambda-list (lambda-list)
263   (flet ((ensure (arg ok)
264            (unless ok
265              (error 'generic-function-lambda-list-error
266                     :format-control
267                     "~@<invalid ~S ~_in the generic function lambda list ~S~:>"
268                     :format-arguments (list arg lambda-list)))))
269     (multiple-value-bind (required optional restp rest keyp keys allowp
270                           auxp aux morep more-context more-count)
271         (parse-lambda-list lambda-list)
272       (declare (ignore required)) ; since they're no different in a gf ll
273       (declare (ignore restp rest)) ; since they're no different in a gf ll
274       (declare (ignore allowp)) ; since &ALLOW-OTHER-KEYS is fine either way
275       (declare (ignore aux)) ; since we require AUXP=NIL
276       (declare (ignore more-context more-count)) ; safely ignored unless MOREP
277       ;; no defaults allowed for &OPTIONAL arguments
278       (dolist (i optional)
279         (ensure i (or (symbolp i)
280                       (and (consp i) (symbolp (car i)) (null (cdr i))))))
281       ;; no defaults allowed for &KEY arguments
282       (when keyp
283         (dolist (i keys)
284           (ensure i (or (symbolp i)
285                         (and (consp i)
286                              (or (symbolp (car i))
287                                  (and (consp (car i))
288                                       (symbolp (caar i))
289                                       (symbolp (cadar i))
290                                       (null (cddar i))))
291                              (null (cdr i)))))))
292       ;; no &AUX allowed
293       (when auxp
294         (error "&AUX is not allowed in a generic function lambda list: ~S"
295                lambda-list))
296       ;; Oh, *puhlease*... not specifically as per section 3.4.2 of
297       ;; the ANSI spec, but the CMU CL &MORE extension does not
298       ;; belong here!
299       (aver (not morep)))))
300 \f
301 (defmacro defmethod (&rest args &environment env)
302   (multiple-value-bind (name qualifiers lambda-list body)
303       (parse-defmethod args)
304     (multiple-value-bind (proto-gf proto-method)
305         (prototypes-for-make-method-lambda name)
306       (expand-defmethod name
307                         proto-gf
308                         proto-method
309                         qualifiers
310                         lambda-list
311                         body
312                         env))))
313
314 (defun prototypes-for-make-method-lambda (name)
315   (if (not (eq *boot-state* 'complete))
316       (values nil nil)
317       (let ((gf? (and (fboundp name)
318                       (gdefinition name))))
319         (if (or (null gf?)
320                 (not (generic-function-p gf?)))
321             (values (class-prototype (find-class 'standard-generic-function))
322                     (class-prototype (find-class 'standard-method)))
323             (values gf?
324                     (class-prototype (or (generic-function-method-class gf?)
325                                          (find-class 'standard-method))))))))
326
327 ;;; Take a name which is either a generic function name or a list specifying
328 ;;; a SETF generic function (like: (SETF <generic-function-name>)). Return
329 ;;; the prototype instance of the method-class for that generic function.
330 ;;;
331 ;;; If there is no generic function by that name, this returns the
332 ;;; default value, the prototype instance of the class
333 ;;; STANDARD-METHOD. This default value is also returned if the spec
334 ;;; names an ordinary function or even a macro. In effect, this leaves
335 ;;; the signalling of the appropriate error until load time.
336 ;;;
337 ;;; Note: During bootstrapping, this function is allowed to return NIL.
338 (defun method-prototype-for-gf (name)
339   (let ((gf? (and (fboundp name)
340                   (gdefinition name))))
341     (cond ((neq *boot-state* 'complete) nil)
342           ((or (null gf?)
343                (not (generic-function-p gf?)))          ; Someone else MIGHT
344                                                         ; error at load time.
345            (class-prototype (find-class 'standard-method)))
346           (t
347             (class-prototype (or (generic-function-method-class gf?)
348                                  (find-class 'standard-method)))))))
349 \f
350 (defun expand-defmethod (name
351                          proto-gf
352                          proto-method
353                          qualifiers
354                          lambda-list
355                          body
356                          env)
357   (multiple-value-bind (method-lambda unspecialized-lambda-list specializers)
358       (add-method-declarations name qualifiers lambda-list body env)
359     (multiple-value-bind (method-function-lambda initargs)
360         (make-method-lambda proto-gf proto-method method-lambda env)
361       (let ((initargs-form (make-method-initargs-form proto-gf
362                                                       proto-method
363                                                       method-function-lambda
364                                                       initargs
365                                                       env)))
366         `(progn
367           ;; Note: We could DECLAIM the ftype of the generic function
368           ;; here, since ANSI specifies that we create it if it does
369           ;; not exist. However, I chose not to, because I think it's
370           ;; more useful to support a style of programming where every
371           ;; generic function has an explicit DEFGENERIC and any typos
372           ;; in DEFMETHODs are warned about. Otherwise
373           ;;
374           ;;   (DEFGENERIC FOO-BAR-BLETCH ((X T)))
375           ;;   (DEFMETHOD FOO-BAR-BLETCH ((X HASH-TABLE)) ..)
376           ;;   (DEFMETHOD FOO-BRA-BLETCH ((X SIMPLE-VECTOR)) ..)
377           ;;   (DEFMETHOD FOO-BAR-BLETCH ((X VECTOR)) ..)
378           ;;   (DEFMETHOD FOO-BAR-BLETCH ((X ARRAY)) ..)
379           ;;   (DEFMETHOD FOO-BAR-BLETCH ((X LIST)) ..)
380           ;;
381           ;; compiles without raising an error and runs without
382           ;; raising an error (since SIMPLE-VECTOR cases fall through
383           ;; to VECTOR) but still doesn't do what was intended. I hate
384           ;; that kind of bug (code which silently gives the wrong
385           ;; answer), so we don't do a DECLAIM here. -- WHN 20000229
386           ,(make-defmethod-form name qualifiers specializers
387                                 unspecialized-lambda-list
388                                 (if proto-method
389                                     (class-name (class-of proto-method))
390                                     'standard-method)
391                                 initargs-form))))))
392
393 (defun interned-symbol-p (x)
394   (and (symbolp x) (symbol-package x)))
395
396 (defun make-defmethod-form
397     (name qualifiers specializers unspecialized-lambda-list
398      method-class-name initargs-form)
399   (let (fn
400         fn-lambda)
401     (if (and (interned-symbol-p (fun-name-block-name name))
402              (every #'interned-symbol-p qualifiers)
403              (every (lambda (s)
404                       (if (consp s)
405                           (and (eq (car s) 'eql)
406                                (constantp (cadr s))
407                                (let ((sv (constant-form-value (cadr s))))
408                                  (or (interned-symbol-p sv)
409                                      (integerp sv)
410                                      (and (characterp sv)
411                                           (standard-char-p sv)))))
412                           (interned-symbol-p s)))
413                     specializers)
414              (consp initargs-form)
415              (eq (car initargs-form) 'list*)
416              (memq (cadr initargs-form) '(:function))
417              (consp (setq fn (caddr initargs-form)))
418              (eq (car fn) 'function)
419              (consp (setq fn-lambda (cadr fn)))
420              (eq (car fn-lambda) 'lambda))
421         (let* ((specls (mapcar (lambda (specl)
422                                  (if (consp specl)
423                                      `(,(car specl) ,(eval (cadr specl)))
424                                    specl))
425                                specializers))
426                (mname `(,(if (eq (cadr initargs-form) :function)
427                              'slow-method 'fast-method)
428                         ,name ,@qualifiers ,specls)))
429           `(progn
430              (defun ,mname ,(cadr fn-lambda)
431                ,@(cddr fn-lambda))
432              ,(make-defmethod-form-internal
433                name qualifiers `',specls
434                unspecialized-lambda-list method-class-name
435                `(list* ,(cadr initargs-form)
436                        #',mname
437                        ,@(cdddr initargs-form)))))
438         (make-defmethod-form-internal
439          name qualifiers
440          `(list ,@(mapcar (lambda (specializer)
441                             (if (consp specializer)
442                                 ``(,',(car specializer)
443                                       ,,(cadr specializer))
444                                 `',specializer))
445                           specializers))
446          unspecialized-lambda-list
447          method-class-name
448          initargs-form))))
449
450 (defun make-defmethod-form-internal
451     (name qualifiers specializers-form unspecialized-lambda-list
452      method-class-name initargs-form)
453   `(load-defmethod
454     ',method-class-name
455     ',name
456     ',qualifiers
457     ,specializers-form
458     ',unspecialized-lambda-list
459     ,initargs-form
460     (sb-c:source-location)))
461
462 (defmacro make-method-function (method-lambda &environment env)
463   (make-method-function-internal method-lambda env))
464
465 (defun make-method-function-internal (method-lambda &optional env)
466   (multiple-value-bind (proto-gf proto-method)
467       (prototypes-for-make-method-lambda nil)
468     (multiple-value-bind (method-function-lambda initargs)
469         (make-method-lambda proto-gf proto-method method-lambda env)
470       (make-method-initargs-form proto-gf
471                                  proto-method
472                                  method-function-lambda
473                                  initargs
474                                  env))))
475
476 (defun add-method-declarations (name qualifiers lambda-list body env)
477   (declare (ignore env))
478   (multiple-value-bind (parameters unspecialized-lambda-list specializers)
479       (parse-specialized-lambda-list lambda-list)
480     (multiple-value-bind (real-body declarations documentation)
481         (parse-body body)
482       (values `(lambda ,unspecialized-lambda-list
483                  ,@(when documentation `(,documentation))
484                  ;; (Old PCL code used a somewhat different style of
485                  ;; list for %METHOD-NAME values. Our names use
486                  ;; ,@QUALIFIERS instead of ,QUALIFIERS so that the
487                  ;; method names look more like what you see in a
488                  ;; DEFMETHOD form.)
489                  ;;
490                  ;; FIXME: As of sbcl-0.7.0.6, code elsewhere, at
491                  ;; least the code to set up named BLOCKs around the
492                  ;; bodies of methods, depends on the function's base
493                  ;; name being the first element of the %METHOD-NAME
494                  ;; list. It would be good to remove this dependency,
495                  ;; perhaps by building the BLOCK here, or by using
496                  ;; another declaration (e.g. %BLOCK-NAME), so that
497                  ;; our method debug names are free to have any format,
498                  ;; e.g. (:METHOD PRINT-OBJECT :AROUND (CLOWN T)).
499                  ;;
500                  ;; Further, as of sbcl-0.7.9.10, the code to
501                  ;; implement NO-NEXT-METHOD is coupled to the form of
502                  ;; this declaration; see the definition of
503                  ;; CALL-NO-NEXT-METHOD (and the passing of
504                  ;; METHOD-NAME-DECLARATION arguments around the
505                  ;; various CALL-NEXT-METHOD logic).
506                  (declare (%method-name (,name
507                                          ,@qualifiers
508                                          ,specializers)))
509                  (declare (%method-lambda-list ,@lambda-list))
510                  ,@declarations
511                  ,@real-body)
512               unspecialized-lambda-list specializers))))
513
514 (defun real-make-method-initargs-form (proto-gf proto-method
515                                        method-lambda initargs env)
516   (declare (ignore proto-gf proto-method))
517   (unless (and (consp method-lambda)
518                (eq (car method-lambda) 'lambda))
519     (error "The METHOD-LAMBDA argument to MAKE-METHOD-FUNCTION, ~S, ~
520             is not a lambda form."
521            method-lambda))
522   (make-method-initargs-form-internal method-lambda initargs env))
523
524 (unless (fboundp 'make-method-initargs-form)
525   (setf (gdefinition 'make-method-initargs-form)
526         (symbol-function 'real-make-method-initargs-form)))
527
528 (defun real-make-method-lambda (proto-gf proto-method method-lambda env)
529   (declare (ignore proto-gf proto-method))
530   (make-method-lambda-internal method-lambda env))
531
532 ;;; a helper function for creating Python-friendly type declarations
533 ;;; in DEFMETHOD forms
534 (defun parameter-specializer-declaration-in-defmethod (parameter specializer)
535   (cond ((and (consp specializer)
536               (eq (car specializer) 'eql))
537          ;; KLUDGE: ANSI, in its wisdom, says that
538          ;; EQL-SPECIALIZER-FORMs in EQL specializers are evaluated at
539          ;; DEFMETHOD expansion time. Thus, although one might think
540          ;; that in
541          ;;   (DEFMETHOD FOO ((X PACKAGE)
542          ;;                   (Y (EQL 12))
543          ;;      ..))
544          ;; the PACKAGE and (EQL 12) forms are both parallel type
545          ;; names, they're not, as is made clear when you do
546          ;;   (DEFMETHOD FOO ((X PACKAGE)
547          ;;                   (Y (EQL 'BAR)))
548          ;;     ..)
549          ;; where Y needs to be a symbol named "BAR", not some cons
550          ;; made by (CONS 'QUOTE 'BAR). I.e. when the
551          ;; EQL-SPECIALIZER-FORM is (EQL 'X), it requires an argument
552          ;; to be of type (EQL X). It'd be easy to transform one to
553          ;; the other, but it'd be somewhat messier to do so while
554          ;; ensuring that the EQL-SPECIALIZER-FORM is only EVAL'd
555          ;; once. (The new code wouldn't be messy, but it'd require a
556          ;; big transformation of the old code.) So instead we punt.
557          ;; -- WHN 20000610
558          '(ignorable))
559         ((member specializer
560                  ;; KLUDGE: For some low-level implementation
561                  ;; classes, perhaps because of some problems related
562                  ;; to the incomplete integration of PCL into SBCL's
563                  ;; type system, some specializer classes can't be
564                  ;; declared as argument types. E.g.
565                  ;;   (DEFMETHOD FOO ((X SLOT-OBJECT))
566                  ;;     (DECLARE (TYPE SLOT-OBJECT X))
567                  ;;     ..)
568                  ;; loses when
569                  ;;   (DEFSTRUCT BAR A B)
570                  ;;   (FOO (MAKE-BAR))
571                  ;; perhaps because of the way that STRUCTURE-OBJECT
572                  ;; inherits both from SLOT-OBJECT and from
573                  ;; SB-KERNEL:INSTANCE. In an effort to sweep such
574                  ;; problems under the rug, we exclude these problem
575                  ;; cases by blacklisting them here. -- WHN 2001-01-19
576                  (list 'slot-object #+nil (find-class 'slot-object)))
577          '(ignorable))
578         ((not (eq *boot-state* 'complete))
579          ;; KLUDGE: PCL, in its wisdom, sometimes calls methods with
580          ;; types which don't match their specializers. (Specifically,
581          ;; it calls ENSURE-CLASS-USING-CLASS (T NULL) with a non-NULL
582          ;; second argument.) Hopefully it only does this kind of
583          ;; weirdness when bootstrapping.. -- WHN 20000610
584          '(ignorable))
585         ((typep specializer 'eql-specializer)
586          `(type (eql ,(eql-specializer-object specializer)) ,parameter))
587         ((var-globally-special-p parameter)
588          ;; KLUDGE: Don't declare types for global special variables
589          ;; -- our rebinding magic for SETQ cases don't work right
590          ;; there.
591          ;;
592          ;; FIXME: It would be better to detect the SETQ earlier and
593          ;; skip declarations for specials only when needed, not
594          ;; always.
595          ;;
596          ;; --NS 2004-10-14
597          '(ignorable))
598         (t
599          ;; Otherwise, we can usually make Python very happy.
600          ;;
601          ;; KLUDGE: Since INFO doesn't work right for class objects here,
602          ;; and they are valid specializers, see if the specializer is
603          ;; a named class, and use the name in that case -- otherwise
604          ;; the class instance is ok, since info will just return NIL, NIL.
605          ;;
606          ;; We still need to deal with the class case too, but at
607          ;; least #.(find-class 'integer) and integer as equivalent
608          ;; specializers with this.
609          (let* ((specializer (if (and (typep specializer 'class)
610                                       (let ((name (class-name specializer)))
611                                         (and name (symbolp name)
612                                              (eq specializer (find-class name nil)))))
613                                  (class-name specializer)
614                                  specializer))
615                 (kind (info :type :kind specializer)))
616
617            (flet ((specializer-class ()
618                     (if (typep specializer 'class)
619                         specializer
620                         (find-class specializer nil))))
621              (ecase kind
622                ((:primitive) `(type ,specializer ,parameter))
623                ((:defined)
624                 (let ((class (specializer-class)))
625                   ;; CLASS can be null here if the user has erroneously
626                  ;; tried to use a defined type as a specializer; it
627                  ;; can be a non-BUILT-IN-CLASS if the user defines a
628                  ;; type and calls (SETF FIND-CLASS) in a consistent
629                  ;; way.
630                  (when (and class (typep class 'built-in-class))
631                    `(type ,specializer ,parameter))))
632               ((:instance nil)
633                (let ((class (specializer-class)))
634                  (cond
635                    (class
636                     (if (typep class '(or built-in-class structure-class))
637                         `(type ,specializer ,parameter)
638                         ;; don't declare CLOS classes as parameters;
639                         ;; it's too expensive.
640                         '(ignorable)))
641                    (t
642                     ;; we can get here, and still not have a failure
643                     ;; case, by doing MOP programming like (PROGN
644                     ;; (ENSURE-CLASS 'FOO) (DEFMETHOD BAR ((X FOO))
645                     ;; ...)).  Best to let the user know we haven't
646                     ;; been able to extract enough information:
647                     (style-warn
648                      "~@<can't find type for presumed class ~S in ~S.~@:>"
649                      specializer
650                      'parameter-specializer-declaration-in-defmethod)
651                     '(ignorable)))))
652               ((:forthcoming-defclass-type)
653                '(ignorable))))))))
654
655 (defun make-method-lambda-internal (method-lambda &optional env)
656   (unless (and (consp method-lambda) (eq (car method-lambda) 'lambda))
657     (error "The METHOD-LAMBDA argument to MAKE-METHOD-LAMBDA, ~S, ~
658             is not a lambda form."
659            method-lambda))
660   (multiple-value-bind (real-body declarations documentation)
661       (parse-body (cddr method-lambda))
662     (let* ((name-decl (get-declaration '%method-name declarations))
663            (sll-decl (get-declaration '%method-lambda-list declarations))
664            (method-name (when (consp name-decl) (car name-decl)))
665            (generic-function-name (when method-name (car method-name)))
666            (specialized-lambda-list (or sll-decl (cadr method-lambda))))
667       (multiple-value-bind (parameters lambda-list specializers)
668           (parse-specialized-lambda-list specialized-lambda-list)
669         (let* ((required-parameters
670                 (mapcar (lambda (r s) (declare (ignore s)) r)
671                         parameters
672                         specializers))
673                (slots (mapcar #'list required-parameters))
674                (calls (list nil))
675                (class-declarations
676                 `(declare
677                   ;; These declarations seem to be used by PCL to pass
678                   ;; information to itself; when I tried to delete 'em
679                   ;; ca. 0.6.10 it didn't work. I'm not sure how
680                   ;; they work, but note the (VAR-DECLARATION '%CLASS ..)
681                   ;; expression in CAN-OPTIMIZE-ACCESS1. -- WHN 2000-12-30
682                   ,@(remove nil
683                             (mapcar (lambda (a s) (and (symbolp s)
684                                                        (neq s t)
685                                                        `(%class ,a ,s)))
686                                     parameters
687                                     specializers))
688                   ;; These TYPE declarations weren't in the original
689                   ;; PCL code, but the Python compiler likes them a
690                   ;; lot. (We're telling the compiler about our
691                   ;; knowledge of specialized argument types so that
692                   ;; it can avoid run-time type dispatch overhead,
693                   ;; which can be a huge win for Python.)
694                   ;;
695                   ;; KLUDGE: when I tried moving these to
696                   ;; ADD-METHOD-DECLARATIONS, things broke.  No idea
697                   ;; why.  -- CSR, 2004-06-16
698                   ,@(mapcar #'parameter-specializer-declaration-in-defmethod
699                             parameters
700                             specializers)))
701                (method-lambda
702                 ;; Remove the documentation string and insert the
703                 ;; appropriate class declarations. The documentation
704                 ;; string is removed to make it easy for us to insert
705                 ;; new declarations later, they will just go after the
706                 ;; CADR of the method lambda. The class declarations
707                 ;; are inserted to communicate the class of the method's
708                 ;; arguments to the code walk.
709                 `(lambda ,lambda-list
710                    ;; The default ignorability of method parameters
711                    ;; doesn't seem to be specified by ANSI. PCL had
712                    ;; them basically ignorable but was a little
713                    ;; inconsistent. E.g. even though the two
714                    ;; method definitions
715                    ;;   (DEFMETHOD FOO ((X T) (Y T)) "Z")
716                    ;;   (DEFMETHOD FOO ((X T) Y) "Z")
717                    ;; are otherwise equivalent, PCL treated Y as
718                    ;; ignorable in the first definition but not in the
719                    ;; second definition. We make all required
720                    ;; parameters ignorable as a way of systematizing
721                    ;; the old PCL behavior. -- WHN 2000-11-24
722                    (declare (ignorable ,@required-parameters))
723                    ,class-declarations
724                    ,@declarations
725                    (block ,(fun-name-block-name generic-function-name)
726                      ,@real-body)))
727                (constant-value-p (and (null (cdr real-body))
728                                       (constantp (car real-body))))
729                (constant-value (and constant-value-p
730                                     (constant-form-value (car real-body))))
731                (plist (and constant-value-p
732                            (or (typep constant-value
733                                       '(or number character))
734                                (and (symbolp constant-value)
735                                     (symbol-package constant-value)))
736                            (list :constant-value constant-value)))
737                (applyp (dolist (p lambda-list nil)
738                          (cond ((memq p '(&optional &rest &key))
739                                 (return t))
740                                ((eq p '&aux)
741                                 (return nil))))))
742           (multiple-value-bind
743                 (walked-lambda call-next-method-p closurep
744                                next-method-p-p setq-p)
745               (walk-method-lambda method-lambda
746                                   required-parameters
747                                   env
748                                   slots
749                                   calls)
750             (multiple-value-bind (walked-lambda-body
751                                   walked-declarations
752                                   walked-documentation)
753                 (parse-body (cddr walked-lambda))
754               (declare (ignore walked-documentation))
755               (when (some #'cdr slots)
756                 (multiple-value-bind (slot-name-lists call-list)
757                     (slot-name-lists-from-slots slots calls)
758                   (setq plist
759                         `(,@(when slot-name-lists
760                                   `(:slot-name-lists ,slot-name-lists))
761                           ,@(when call-list
762                                   `(:call-list ,call-list))
763                           ,@plist))
764                   (setq walked-lambda-body
765                         `((pv-binding (,required-parameters
766                                        ,slot-name-lists
767                                        (load-time-value
768                                         (intern-pv-table
769                                          :slot-name-lists ',slot-name-lists
770                                          :call-list ',call-list)))
771                            ,@walked-lambda-body)))))
772               (when (and (memq '&key lambda-list)
773                          (not (memq '&allow-other-keys lambda-list)))
774                 (let ((aux (memq '&aux lambda-list)))
775                   (setq lambda-list (nconc (ldiff lambda-list aux)
776                                            (list '&allow-other-keys)
777                                            aux))))
778               (values `(lambda (.method-args. .next-methods.)
779                          (simple-lexical-method-functions
780                              (,lambda-list .method-args. .next-methods.
781                                            :call-next-method-p
782                                            ,call-next-method-p
783                                            :next-method-p-p ,next-method-p-p
784                                            :setq-p ,setq-p
785                                            ;; we need to pass this along
786                                            ;; so that NO-NEXT-METHOD can
787                                            ;; be given a suitable METHOD
788                                            ;; argument; we need the
789                                            ;; QUALIFIERS and SPECIALIZERS
790                                            ;; inside the declaration to
791                                            ;; give to FIND-METHOD.
792                                            :method-name-declaration ,name-decl
793                                            :closurep ,closurep
794                                            :applyp ,applyp)
795                            ,@walked-declarations
796                            ,@walked-lambda-body))
797                       `(,@(when plist
798                                 `(plist ,plist))
799                           ,@(when documentation
800                                   `(:documentation ,documentation)))))))))))
801
802 (unless (fboundp 'make-method-lambda)
803   (setf (gdefinition 'make-method-lambda)
804         (symbol-function 'real-make-method-lambda)))
805
806 (defmacro simple-lexical-method-functions ((lambda-list
807                                             method-args
808                                             next-methods
809                                             &rest lmf-options)
810                                            &body body)
811   `(progn
812      ,method-args ,next-methods
813      (bind-simple-lexical-method-functions (,method-args ,next-methods
814                                                          ,lmf-options)
815          (bind-args (,lambda-list ,method-args)
816            ,@body))))
817
818 (defmacro fast-lexical-method-functions ((lambda-list
819                                           next-method-call
820                                           args
821                                           rest-arg
822                                           &rest lmf-options)
823                                          &body body)
824   `(bind-fast-lexical-method-functions (,args ,rest-arg ,next-method-call ,lmf-options)
825      (bind-args (,(nthcdr (length args) lambda-list) ,rest-arg)
826        ,@body)))
827
828 (defmacro bind-simple-lexical-method-functions
829     ((method-args next-methods (&key call-next-method-p next-method-p-p setq-p
830                                      closurep applyp method-name-declaration))
831      &body body
832      &environment env)
833   (if (not (or call-next-method-p setq-p closurep next-method-p-p applyp))
834       `(locally
835            ,@body)
836       `(let ((.next-method. (car ,next-methods))
837              (,next-methods (cdr ,next-methods)))
838          (declare (ignorable .next-method. ,next-methods))
839          (flet (,@(and call-next-method-p
840                        `((call-next-method
841                           (&rest cnm-args)
842                           ,@(if (safe-code-p env)
843                                 `((%check-cnm-args cnm-args
844                                                    ,method-args
845                                                    ',method-name-declaration))
846                                 nil)
847                           (if .next-method.
848                               (funcall (if (std-instance-p .next-method.)
849                                            (method-function .next-method.)
850                                            .next-method.) ; for early methods
851                                        (or cnm-args ,method-args)
852                                        ,next-methods)
853                               (apply #'call-no-next-method
854                                      ',method-name-declaration
855                                      (or cnm-args ,method-args))))))
856                 ,@(and next-method-p-p
857                        '((next-method-p ()
858                           (not (null .next-method.))))))
859            ,@body))))
860
861 (defun call-no-next-method (method-name-declaration &rest args)
862   (destructuring-bind (name) method-name-declaration
863     (destructuring-bind (name &rest qualifiers-and-specializers) name
864       ;; KLUDGE: inefficient traversal, but hey.  This should only
865       ;; happen on the slow error path anyway.
866       (let* ((qualifiers (butlast qualifiers-and-specializers))
867              (specializers (car (last qualifiers-and-specializers)))
868              (method (find-method (gdefinition name) qualifiers specializers)))
869         (apply #'no-next-method
870                (method-generic-function method)
871                method
872                args)))))
873
874 (defstruct (method-call (:copier nil))
875   (function #'identity :type function)
876   call-method-args)
877 (defstruct (constant-method-call (:copier nil) (:include method-call))
878   value)
879
880 #-sb-fluid (declaim (sb-ext:freeze-type method-call))
881
882 (defmacro invoke-method-call1 (function args cm-args)
883   `(let ((.function. ,function)
884          (.args. ,args)
885          (.cm-args. ,cm-args))
886      (if (and .cm-args. (null (cdr .cm-args.)))
887          (funcall .function. .args. (car .cm-args.))
888          (apply .function. .args. .cm-args.))))
889
890 (defmacro invoke-method-call (method-call restp &rest required-args+rest-arg)
891   `(invoke-method-call1 (method-call-function ,method-call)
892                         ,(if restp
893                              `(list* ,@required-args+rest-arg)
894                              `(list ,@required-args+rest-arg))
895                         (method-call-call-method-args ,method-call)))
896
897 (defstruct (fast-method-call (:copier nil))
898   (function #'identity :type function)
899   pv-cell
900   next-method-call
901   arg-info)
902 (defstruct (constant-fast-method-call
903              (:copier nil) (:include fast-method-call))
904   value)
905
906 #-sb-fluid (declaim (sb-ext:freeze-type fast-method-call))
907
908 (defmacro fmc-funcall (fn pv-cell next-method-call &rest args)
909   `(funcall ,fn ,pv-cell ,next-method-call ,@args))
910
911 (defmacro invoke-fast-method-call (method-call &rest required-args+rest-arg)
912   `(fmc-funcall (fast-method-call-function ,method-call)
913                 (fast-method-call-pv-cell ,method-call)
914                 (fast-method-call-next-method-call ,method-call)
915                 ,@required-args+rest-arg))
916
917 (defstruct (fast-instance-boundp (:copier nil))
918   (index 0 :type fixnum))
919
920 #-sb-fluid (declaim (sb-ext:freeze-type fast-instance-boundp))
921
922 (eval-when (:compile-toplevel :load-toplevel :execute)
923   (defvar *allow-emf-call-tracing-p* nil)
924   (defvar *enable-emf-call-tracing-p* #-sb-show nil #+sb-show t))
925 \f
926 ;;;; effective method functions
927
928 (defvar *emf-call-trace-size* 200)
929 (defvar *emf-call-trace* nil)
930 (defvar *emf-call-trace-index* 0)
931
932 ;;; This function was in the CMU CL version of PCL (ca Debian 2.4.8)
933 ;;; without explanation. It appears to be intended for debugging, so
934 ;;; it might be useful someday, so I haven't deleted it.
935 ;;; But it isn't documented and isn't used for anything now, so
936 ;;; I've conditionalized it out of the base system. -- WHN 19991213
937 #+sb-show
938 (defun show-emf-call-trace ()
939   (when *emf-call-trace*
940     (let ((j *emf-call-trace-index*)
941           (*enable-emf-call-tracing-p* nil))
942       (format t "~&(The oldest entries are printed first)~%")
943       (dotimes-fixnum (i *emf-call-trace-size*)
944         (let ((ct (aref *emf-call-trace* j)))
945           (when ct (print ct)))
946         (incf j)
947         (when (= j *emf-call-trace-size*)
948           (setq j 0))))))
949
950 (defun trace-emf-call-internal (emf format args)
951   (unless *emf-call-trace*
952     (setq *emf-call-trace* (make-array *emf-call-trace-size*)))
953   (setf (aref *emf-call-trace* *emf-call-trace-index*)
954         (list* emf format args))
955   (incf *emf-call-trace-index*)
956   (when (= *emf-call-trace-index* *emf-call-trace-size*)
957     (setq *emf-call-trace-index* 0)))
958
959 (defmacro trace-emf-call (emf format args)
960   (when *allow-emf-call-tracing-p*
961     `(when *enable-emf-call-tracing-p*
962        (trace-emf-call-internal ,emf ,format ,args))))
963
964 (defmacro invoke-effective-method-function-fast
965     (emf restp &rest required-args+rest-arg)
966   `(progn
967      (trace-emf-call ,emf ,restp (list ,@required-args+rest-arg))
968      (invoke-fast-method-call ,emf ,@required-args+rest-arg)))
969
970 (defun effective-method-optimized-slot-access-clause
971     (emf restp required-args+rest-arg)
972   ;; "What," you may wonder, "do these next two clauses do?" In that
973   ;; case, you are not a PCL implementor, for they considered this to
974   ;; be self-documenting.:-| Or CSR, for that matter, since he can
975   ;; also figure it out by looking at it without breaking stride. For
976   ;; the rest of us, though: From what the code is doing with .SLOTS.
977   ;; and whatnot, evidently it's implementing SLOT-VALUEish and
978   ;; GET-SLOT-VALUEish things. Then we can reason backwards and
979   ;; conclude that setting EMF to a FIXNUM is an optimized way to
980   ;; represent these slot access operations.
981   (when (not restp)
982     (let ((length (length required-args+rest-arg)))
983       (cond ((= 1 length)
984              `((fixnum
985                 (let* ((.slots. (get-slots-or-nil
986                                  ,(car required-args+rest-arg)))
987                        (value (when .slots. (clos-slots-ref .slots. ,emf))))
988                   (if (eq value +slot-unbound+)
989                       (slot-unbound-internal ,(car required-args+rest-arg)
990                                              ,emf)
991                       value)))))
992             ((= 2 length)
993              `((fixnum
994                 (let ((.new-value. ,(car required-args+rest-arg))
995                       (.slots. (get-slots-or-nil
996                                 ,(cadr required-args+rest-arg))))
997                   (when .slots.
998                     (setf (clos-slots-ref .slots. ,emf) .new-value.)))))))
999       ;; (In cmucl-2.4.8 there was a commented-out third ,@(WHEN
1000       ;; ...) clause here to handle SLOT-BOUNDish stuff. Since
1001       ;; there was no explanation and presumably the code is 10+
1002       ;; years stale, I simply deleted it. -- WHN)
1003       )))
1004
1005 ;;; Before SBCL 0.9.16.7 instead of
1006 ;;; INVOKE-NARROW-EFFECTIVE-METHOD-FUNCTION we passed a (THE (OR
1007 ;;; FUNCTION METHOD-CALL FAST-METHOD-CALL) EMF) form as the EMF. Now,
1008 ;;; to make less work for the compiler we take a path that doesn't
1009 ;;; involve the slot-accessor clause (where EMF is a FIXNUM) at all.
1010 (macrolet ((def (name &optional narrow)
1011              `(defmacro ,name (emf restp &rest required-args+rest-arg)
1012                 (unless (constantp restp)
1013                   (error "The RESTP argument is not constant."))
1014                 (setq restp (constant-form-value restp))
1015                 (with-unique-names (emf-n)
1016                   `(locally
1017                        (declare (optimize (sb-c:insert-step-conditions 0)))
1018                      (let ((,emf-n ,emf))
1019                        (trace-emf-call ,emf-n ,restp (list ,@required-args+rest-arg))
1020                        (etypecase ,emf-n
1021                          (fast-method-call
1022                           (invoke-fast-method-call ,emf-n ,@required-args+rest-arg))
1023                          ,@,(unless narrow
1024                               `(effective-method-optimized-slot-access-clause
1025                                 emf-n restp required-args+rest-arg))
1026                          (method-call
1027                           (invoke-method-call ,emf-n ,restp ,@required-args+rest-arg))
1028                          (function
1029                           ,(if restp
1030                                `(apply ,emf-n ,@required-args+rest-arg)
1031                             `(funcall ,emf-n ,@required-args+rest-arg))))))))))
1032   (def invoke-effective-method-function nil)
1033   (def invoke-narrow-effective-method-function t))
1034
1035 (defun invoke-emf (emf args)
1036   (trace-emf-call emf t args)
1037   (etypecase emf
1038     (fast-method-call
1039      (let* ((arg-info (fast-method-call-arg-info emf))
1040             (restp (cdr arg-info))
1041             (nreq (car arg-info)))
1042        (if restp
1043            (let* ((rest-args (nthcdr nreq args))
1044                   (req-args (ldiff args rest-args)))
1045              (apply (fast-method-call-function emf)
1046                     (fast-method-call-pv-cell emf)
1047                     (fast-method-call-next-method-call emf)
1048                     (nconc req-args (list rest-args))))
1049            (cond ((null args)
1050                   (if (eql nreq 0)
1051                       (invoke-fast-method-call emf)
1052                       (error 'simple-program-error
1053                              :format-control "invalid number of arguments: 0"
1054                              :format-arguments nil)))
1055                  ((null (cdr args))
1056                   (if (eql nreq 1)
1057                       (invoke-fast-method-call emf (car args))
1058                       (error 'simple-program-error
1059                              :format-control "invalid number of arguments: 1"
1060                              :format-arguments nil)))
1061                  ((null (cddr args))
1062                   (if (eql nreq 2)
1063                       (invoke-fast-method-call emf (car args) (cadr args))
1064                       (error 'simple-program-error
1065                              :format-control "invalid number of arguments: 2"
1066                              :format-arguments nil)))
1067                  (t
1068                   (apply (fast-method-call-function emf)
1069                          (fast-method-call-pv-cell emf)
1070                          (fast-method-call-next-method-call emf)
1071                          args))))))
1072     (method-call
1073      (apply (method-call-function emf)
1074             args
1075             (method-call-call-method-args emf)))
1076     (fixnum
1077      (cond ((null args)
1078             (error 'simple-program-error
1079                    :format-control "invalid number of arguments: 0"
1080                    :format-arguments nil))
1081            ((null (cdr args))
1082             (let* ((slots (get-slots (car args)))
1083                    (value (clos-slots-ref slots emf)))
1084               (if (eq value +slot-unbound+)
1085                   (slot-unbound-internal (car args) emf)
1086                   value)))
1087            ((null (cddr args))
1088             (setf (clos-slots-ref (get-slots (cadr args)) emf)
1089                   (car args)))
1090            (t (error 'simple-program-error
1091                      :format-control "invalid number of arguments"
1092                      :format-arguments nil))))
1093     (fast-instance-boundp
1094      (if (or (null args) (cdr args))
1095          (error 'simple-program-error
1096                 :format-control "invalid number of arguments"
1097                 :format-arguments nil)
1098          (let ((slots (get-slots (car args))))
1099            (not (eq (clos-slots-ref slots (fast-instance-boundp-index emf))
1100                     +slot-unbound+)))))
1101     (function
1102      (apply emf args))))
1103 \f
1104
1105 (defmacro fast-call-next-method-body ((args next-method-call rest-arg)
1106                                       method-name-declaration
1107                                       cnm-args)
1108   `(if ,next-method-call
1109        ,(let ((call `(invoke-narrow-effective-method-function
1110                       ,next-method-call
1111                       ,(not (null rest-arg))
1112                       ,@args
1113                       ,@(when rest-arg `(,rest-arg)))))
1114              `(if ,cnm-args
1115                   (bind-args ((,@args
1116                                ,@(when rest-arg
1117                                        `(&rest ,rest-arg)))
1118                               ,cnm-args)
1119                     ,call)
1120                   ,call))
1121        (call-no-next-method ',method-name-declaration
1122                             ,@args
1123                             ,@(when rest-arg
1124                                     `(,rest-arg)))))
1125
1126 (defmacro bind-fast-lexical-method-functions
1127     ((args rest-arg next-method-call (&key
1128                                       call-next-method-p
1129                                       setq-p
1130                                       method-name-declaration
1131                                       next-method-p-p
1132                                       closurep
1133                                       applyp))
1134      &body body
1135      &environment env)
1136   (let* ((all-params (append args (when rest-arg (list rest-arg))))
1137          (rebindings (when (or setq-p call-next-method-p)
1138                        (mapcar (lambda (x) (list x x)) all-params))))
1139     (if (not (or call-next-method-p setq-p closurep next-method-p-p applyp))
1140         `(locally
1141              ,@body)
1142         `(flet (,@(when call-next-method-p
1143                         `((call-next-method (&rest cnm-args)
1144                             (declare (muffle-conditions code-deletion-note)
1145                                      (optimize (sb-c:insert-step-conditions 0)))
1146                            ,@(if (safe-code-p env)
1147                                  `((%check-cnm-args cnm-args (list ,@args)
1148                                                     ',method-name-declaration))
1149                                  nil)
1150                            (fast-call-next-method-body (,args
1151                                                         ,next-method-call
1152                                                         ,rest-arg)
1153                                                         ,method-name-declaration
1154                                                        cnm-args))))
1155                 ,@(when next-method-p-p
1156                         `((next-method-p ()
1157                            (declare (optimize (sb-c:insert-step-conditions 0)))
1158                            (not (null ,next-method-call))))))
1159            (let ,rebindings
1160              ,@(when rebindings `((declare (ignorable ,@all-params))))
1161              ,@body)))))
1162
1163 ;;; CMUCL comment (Gerd Moellmann):
1164 ;;;
1165 ;;; The standard says it's an error if CALL-NEXT-METHOD is called with
1166 ;;; arguments, and the set of methods applicable to those arguments is
1167 ;;; different from the set of methods applicable to the original
1168 ;;; method arguments.  (According to Barry Margolin, this rule was
1169 ;;; probably added to ensure that before and around methods are always
1170 ;;; run before primary methods.)
1171 ;;;
1172 ;;; This could be optimized for the case that the generic function
1173 ;;; doesn't have hairy methods, does have standard method combination,
1174 ;;; is a standard generic function, there are no methods defined on it
1175 ;;; for COMPUTE-APPLICABLE-METHODS and probably a lot more of such
1176 ;;; preconditions.  That looks hairy and is probably not worth it,
1177 ;;; because this check will never be fast.
1178 (defun %check-cnm-args (cnm-args orig-args method-name-declaration)
1179   (when cnm-args
1180     (let* ((gf (fdefinition (caar method-name-declaration)))
1181            (omethods (compute-applicable-methods gf orig-args))
1182            (nmethods (compute-applicable-methods gf cnm-args)))
1183       (unless (equal omethods nmethods)
1184         (error "~@<The set of methods ~S applicable to argument~P ~
1185                 ~{~S~^, ~} to call-next-method is different from ~
1186                 the set of methods ~S applicable to the original ~
1187                 method argument~P ~{~S~^, ~}.~@:>"
1188                nmethods (length cnm-args) cnm-args omethods
1189                (length orig-args) orig-args)))))
1190
1191 (defmacro bind-args ((lambda-list args) &body body)
1192   (let ((args-tail '.args-tail.)
1193         (key '.key.)
1194         (state 'required))
1195     (flet ((process-var (var)
1196              (if (memq var lambda-list-keywords)
1197                  (progn
1198                    (case var
1199                      (&optional       (setq state 'optional))
1200                      (&key            (setq state 'key))
1201                      (&allow-other-keys)
1202                      (&rest           (setq state 'rest))
1203                      (&aux            (setq state 'aux))
1204                      (otherwise
1205                       (error
1206                        "encountered the non-standard lambda list keyword ~S"
1207                        var)))
1208                    nil)
1209                  (case state
1210                    (required `((,var (pop ,args-tail))))
1211                    (optional (cond ((not (consp var))
1212                                     `((,var (when ,args-tail
1213                                               (pop ,args-tail)))))
1214                                    ((null (cddr var))
1215                                     `((,(car var) (if ,args-tail
1216                                                       (pop ,args-tail)
1217                                                       ,(cadr var)))))
1218                                    (t
1219                                     `((,(caddr var) ,args-tail)
1220                                       (,(car var) (if ,args-tail
1221                                                       (pop ,args-tail)
1222                                                       ,(cadr var)))))))
1223                    (rest `((,var ,args-tail)))
1224                    (key (cond ((not (consp var))
1225                                `((,var (car
1226                                         (get-key-arg-tail ,(keywordicate var)
1227                                                           ,args-tail)))))
1228                               ((null (cddr var))
1229                                (multiple-value-bind (keyword variable)
1230                                    (if (consp (car var))
1231                                        (values (caar var)
1232                                                (cadar var))
1233                                        (values (keywordicate (car var))
1234                                                (car var)))
1235                                  `((,key (get-key-arg-tail ',keyword
1236                                                            ,args-tail))
1237                                    (,variable (if ,key
1238                                                   (car ,key)
1239                                                   ,(cadr var))))))
1240                               (t
1241                                (multiple-value-bind (keyword variable)
1242                                    (if (consp (car var))
1243                                        (values (caar var)
1244                                                (cadar var))
1245                                        (values (keywordicate (car var))
1246                                                (car var)))
1247                                  `((,key (get-key-arg-tail ',keyword
1248                                                            ,args-tail))
1249                                    (,(caddr var) ,key)
1250                                    (,variable (if ,key
1251                                                   (car ,key)
1252                                                   ,(cadr var))))))))
1253                    (aux `(,var))))))
1254       (let ((bindings (mapcan #'process-var lambda-list)))
1255         `(let* ((,args-tail ,args)
1256                 ,@bindings
1257                 (.dummy0.
1258                  ,@(when (eq state 'optional)
1259                      `((unless (null ,args-tail)
1260                          (error 'simple-program-error
1261                                 :format-control "surplus arguments: ~S"
1262                                 :format-arguments (list ,args-tail)))))))
1263            (declare (ignorable ,args-tail .dummy0.))
1264            ,@body)))))
1265
1266 (defun get-key-arg-tail (keyword list)
1267   (loop for (key . tail) on list by #'cddr
1268         when (null tail) do
1269           ;; FIXME: Do we want to export this symbol? Or maybe use an
1270           ;; (ERROR 'SIMPLE-PROGRAM-ERROR) form?
1271           (sb-c::%odd-key-args-error)
1272         when (eq key keyword)
1273           return tail))
1274
1275 (defun walk-method-lambda (method-lambda required-parameters env slots calls)
1276   (let ((call-next-method-p nil)   ; flag indicating that CALL-NEXT-METHOD
1277                                    ; should be in the method definition
1278         (closurep nil)             ; flag indicating that #'CALL-NEXT-METHOD
1279                                    ; was seen in the body of a method
1280         (next-method-p-p nil)      ; flag indicating that NEXT-METHOD-P
1281                                    ; should be in the method definition
1282         (setq-p nil))
1283     (flet ((walk-function (form context env)
1284              (cond ((not (eq context :eval)) form)
1285                    ;; FIXME: Jumping to a conclusion from the way it's used
1286                    ;; above, perhaps CONTEXT should be called SITUATION
1287                    ;; (after the term used in the ANSI specification of
1288                    ;; EVAL-WHEN) and given modern ANSI keyword values
1289                    ;; like :LOAD-TOPLEVEL.
1290                    ((not (listp form)) form)
1291                    ((eq (car form) 'call-next-method)
1292                     (setq call-next-method-p t)
1293                     form)
1294                    ((eq (car form) 'next-method-p)
1295                     (setq next-method-p-p t)
1296                     form)
1297                    ((memq (car form) '(setq multiple-value-setq))
1298                     ;; FIXME: this is possibly a little strong as
1299                     ;; conditions go.  Ideally we would want to detect
1300                     ;; which, if any, of the method parameters are
1301                     ;; being set, and communicate that information to
1302                     ;; e.g. SPLIT-DECLARATIONS.  However, the brute
1303                     ;; force method doesn't really cost much; a little
1304                     ;; loss of discrimination over IGNORED variables
1305                     ;; should be all.  -- CSR, 2004-07-01
1306                     (setq setq-p t)
1307                     form)
1308                    ((and (eq (car form) 'function)
1309                          (cond ((eq (cadr form) 'call-next-method)
1310                                 (setq call-next-method-p t)
1311                                 (setq closurep t)
1312                                 form)
1313                                ((eq (cadr form) 'next-method-p)
1314                                 (setq next-method-p-p t)
1315                                 (setq closurep t)
1316                                 form)
1317                                (t nil))))
1318                    ((and (memq (car form)
1319                                '(slot-value set-slot-value slot-boundp))
1320                          (constantp (caddr form)))
1321                      (let ((parameter (can-optimize-access form
1322                                                            required-parameters
1323                                                            env)))
1324                       (let ((fun (ecase (car form)
1325                                    (slot-value #'optimize-slot-value)
1326                                    (set-slot-value #'optimize-set-slot-value)
1327                                    (slot-boundp #'optimize-slot-boundp))))
1328                         (funcall fun slots parameter form))))
1329                    ((and (eq (car form) 'apply)
1330                          (consp (cadr form))
1331                          (eq (car (cadr form)) 'function)
1332                          (generic-function-name-p (cadr (cadr form))))
1333                     (optimize-generic-function-call
1334                      form required-parameters env slots calls))
1335                    ((generic-function-name-p (car form))
1336                     (optimize-generic-function-call
1337                      form required-parameters env slots calls))
1338                    (t form))))
1339
1340       (let ((walked-lambda (walk-form method-lambda env #'walk-function)))
1341         (values walked-lambda
1342                 call-next-method-p
1343                 closurep
1344                 next-method-p-p
1345                 setq-p)))))
1346
1347 (defun generic-function-name-p (name)
1348   (and (legal-fun-name-p name)
1349        (fboundp name)
1350        (if (eq *boot-state* 'complete)
1351            (standard-generic-function-p (gdefinition name))
1352            (funcallable-instance-p (gdefinition name)))))
1353 \f
1354 (defun method-plist-value (method key &optional default)
1355   (let ((plist (if (consp method)
1356                    (getf (early-method-initargs method) 'plist)
1357                    (object-plist method))))
1358     (getf plist key default)))
1359
1360 (defun (setf method-plist-value) (new-value method key &optional default)
1361   (if (consp method)
1362       (setf (getf (getf (early-method-initargs method) 'plist) key default)
1363             new-value)
1364       (setf (getf (object-plist method) key default) new-value)))
1365 \f
1366 (defun load-defmethod
1367     (class name quals specls ll initargs source-location)
1368   (setq initargs (copy-tree initargs))
1369   (setf (getf (getf initargs 'plist) :name)
1370         (make-method-spec name quals specls))
1371   (load-defmethod-internal class name quals specls
1372                            ll initargs source-location))
1373
1374 (defun load-defmethod-internal
1375     (method-class gf-spec qualifiers specializers lambda-list
1376                   initargs source-location)
1377   (when (and (eq *boot-state* 'complete)
1378              (fboundp gf-spec))
1379     (let* ((gf (fdefinition gf-spec))
1380            (method (and (generic-function-p gf)
1381                         (generic-function-methods gf)
1382                         (find-method gf
1383                                      qualifiers
1384                                      (parse-specializers specializers)
1385                                      nil))))
1386       (when method
1387         (style-warn "redefining ~S~{ ~S~} ~S in DEFMETHOD"
1388                     gf-spec qualifiers specializers))))
1389   (let ((method (apply #'add-named-method
1390                        gf-spec qualifiers specializers lambda-list
1391                        :definition-source source-location
1392                        initargs)))
1393     (unless (or (eq method-class 'standard-method)
1394                 (eq (find-class method-class nil) (class-of method)))
1395       ;; FIXME: should be STYLE-WARNING?
1396       (format *error-output*
1397               "~&At the time the method with qualifiers ~:S and~%~
1398                specializers ~:S on the generic function ~S~%~
1399                was compiled, the method-class for that generic function was~%~
1400                ~S. But, the method class is now ~S, this~%~
1401                may mean that this method was compiled improperly.~%"
1402               qualifiers specializers gf-spec
1403               method-class (class-name (class-of method))))
1404     method))
1405
1406 (defun make-method-spec (gf-spec qualifiers unparsed-specializers)
1407   `(slow-method ,gf-spec ,@qualifiers ,unparsed-specializers))
1408
1409 (defun initialize-method-function (initargs method)
1410   (let* ((mf (getf initargs :function))
1411          (mff (and (typep mf '%method-function)
1412                    (%method-function-fast-function mf)))
1413          (plist (getf initargs 'plist))
1414          (name (getf plist :name)))
1415     (when name
1416       (when mf
1417         (setq mf (set-fun-name mf name)))
1418       (when (and mff (consp name) (eq (car name) 'slow-method))
1419         (let ((fast-name `(fast-method ,@(cdr name))))
1420           (set-fun-name mff fast-name))))
1421     (when plist
1422       (let ((plist plist))
1423         (let ((snl (getf plist :slot-name-lists))
1424               (cl (getf plist :call-list)))
1425           (when (or snl cl)
1426             (setf (method-plist-value method :pv-table)
1427                   (intern-pv-table :slot-name-lists snl :call-list cl))))))))
1428 \f
1429 (defun analyze-lambda-list (lambda-list)
1430   (flet (;; FIXME: Is this redundant with SB-C::MAKE-KEYWORD-FOR-ARG?
1431          (parse-key-arg (arg)
1432            (if (listp arg)
1433                (if (listp (car arg))
1434                    (caar arg)
1435                    (keywordicate (car arg)))
1436                (keywordicate arg))))
1437     (let ((nrequired 0)
1438           (noptional 0)
1439           (keysp nil)
1440           (restp nil)
1441           (nrest 0)
1442           (allow-other-keys-p nil)
1443           (keywords ())
1444           (keyword-parameters ())
1445           (state 'required))
1446       (dolist (x lambda-list)
1447         (if (memq x lambda-list-keywords)
1448             (case x
1449               (&optional         (setq state 'optional))
1450               (&key              (setq keysp t
1451                                        state 'key))
1452               (&allow-other-keys (setq allow-other-keys-p t))
1453               (&rest             (setq restp t
1454                                        state 'rest))
1455               (&aux           (return t))
1456               (otherwise
1457                 (error "encountered the non-standard lambda list keyword ~S"
1458                        x)))
1459             (ecase state
1460               (required  (incf nrequired))
1461               (optional  (incf noptional))
1462               (key       (push (parse-key-arg x) keywords)
1463                          (push x keyword-parameters))
1464               (rest      (incf nrest)))))
1465       (when (and restp (zerop nrest))
1466         (error "Error in lambda-list:~%~
1467                 After &REST, a DEFGENERIC lambda-list ~
1468                 must be followed by at least one variable."))
1469       (values nrequired noptional keysp restp allow-other-keys-p
1470               (reverse keywords)
1471               (reverse keyword-parameters)))))
1472
1473 (defun keyword-spec-name (x)
1474   (let ((key (if (atom x) x (car x))))
1475     (if (atom key)
1476         (keywordicate key)
1477         (car key))))
1478
1479 (defun ftype-declaration-from-lambda-list (lambda-list name)
1480   (multiple-value-bind (nrequired noptional keysp restp allow-other-keys-p
1481                                   keywords keyword-parameters)
1482       (analyze-lambda-list lambda-list)
1483     (declare (ignore keyword-parameters))
1484     (let* ((old (info :function :type name)) ;FIXME:FDOCUMENTATION instead?
1485            (old-ftype (if (fun-type-p old) old nil))
1486            (old-restp (and old-ftype (fun-type-rest old-ftype)))
1487            (old-keys (and old-ftype
1488                           (mapcar #'key-info-name
1489                                   (fun-type-keywords
1490                                    old-ftype))))
1491            (old-keysp (and old-ftype (fun-type-keyp old-ftype)))
1492            (old-allowp (and old-ftype
1493                             (fun-type-allowp old-ftype)))
1494            (keywords (union old-keys (mapcar #'keyword-spec-name keywords))))
1495       `(function ,(append (make-list nrequired :initial-element t)
1496                           (when (plusp noptional)
1497                             (append '(&optional)
1498                                     (make-list noptional :initial-element t)))
1499                           (when (or restp old-restp)
1500                             '(&rest t))
1501                           (when (or keysp old-keysp)
1502                             (append '(&key)
1503                                     (mapcar (lambda (key)
1504                                               `(,key t))
1505                                             keywords)
1506                                     (when (or allow-other-keys-p old-allowp)
1507                                       '(&allow-other-keys)))))
1508                  *))))
1509
1510 (defun defgeneric-declaration (spec lambda-list)
1511   `(ftype ,(ftype-declaration-from-lambda-list lambda-list spec) ,spec))
1512 \f
1513 ;;;; early generic function support
1514
1515 (defvar *!early-generic-functions* ())
1516
1517 (defun ensure-generic-function (fun-name
1518                                 &rest all-keys
1519                                 &key environment source-location
1520                                 &allow-other-keys)
1521   (declare (ignore environment))
1522   (let ((existing (and (fboundp fun-name)
1523                        (gdefinition fun-name))))
1524     (if (and existing
1525              (eq *boot-state* 'complete)
1526              (null (generic-function-p existing)))
1527         (generic-clobbers-function fun-name)
1528         (apply #'ensure-generic-function-using-class
1529                existing fun-name all-keys))))
1530
1531 (defun generic-clobbers-function (fun-name)
1532   (error 'simple-program-error
1533          :format-control "~S already names an ordinary function or a macro."
1534          :format-arguments (list fun-name)))
1535
1536 (defvar *sgf-wrapper*
1537   (boot-make-wrapper (early-class-size 'standard-generic-function)
1538                      'standard-generic-function))
1539
1540 (defvar *sgf-slots-init*
1541   (mapcar (lambda (canonical-slot)
1542             (if (memq (getf canonical-slot :name) '(arg-info source))
1543                 +slot-unbound+
1544                 (let ((initfunction (getf canonical-slot :initfunction)))
1545                   (if initfunction
1546                       (funcall initfunction)
1547                       +slot-unbound+))))
1548           (early-collect-inheritance 'standard-generic-function)))
1549
1550 (defvar *sgf-method-class-index*
1551   (!bootstrap-slot-index 'standard-generic-function 'method-class))
1552
1553 (defun early-gf-p (x)
1554   (and (fsc-instance-p x)
1555        (eq (clos-slots-ref (get-slots x) *sgf-method-class-index*)
1556            +slot-unbound+)))
1557
1558 (defvar *sgf-methods-index*
1559   (!bootstrap-slot-index 'standard-generic-function 'methods))
1560
1561 (defmacro early-gf-methods (gf)
1562   `(clos-slots-ref (get-slots ,gf) *sgf-methods-index*))
1563
1564 (defun safe-generic-function-methods (generic-function)
1565   (if (eq (class-of generic-function) *the-class-standard-generic-function*)
1566       (clos-slots-ref (get-slots generic-function) *sgf-methods-index*)
1567       (generic-function-methods generic-function)))
1568
1569 (defvar *sgf-arg-info-index*
1570   (!bootstrap-slot-index 'standard-generic-function 'arg-info))
1571
1572 (defmacro early-gf-arg-info (gf)
1573   `(clos-slots-ref (get-slots ,gf) *sgf-arg-info-index*))
1574
1575 (defvar *sgf-dfun-state-index*
1576   (!bootstrap-slot-index 'standard-generic-function 'dfun-state))
1577
1578 (defstruct (arg-info
1579             (:conc-name nil)
1580             (:constructor make-arg-info ())
1581             (:copier nil))
1582   (arg-info-lambda-list :no-lambda-list)
1583   arg-info-precedence
1584   arg-info-metatypes
1585   arg-info-number-optional
1586   arg-info-key/rest-p
1587   arg-info-keys   ;nil        no &KEY or &REST allowed
1588                   ;(k1 k2 ..) Each method must accept these &KEY arguments.
1589                   ;T          must have &KEY or &REST
1590
1591   gf-info-simple-accessor-type ; nil, reader, writer, boundp
1592   (gf-precompute-dfun-and-emf-p nil) ; set by set-arg-info
1593
1594   gf-info-static-c-a-m-emf
1595   (gf-info-c-a-m-emf-std-p t)
1596   gf-info-fast-mf-p)
1597
1598 #-sb-fluid (declaim (sb-ext:freeze-type arg-info))
1599
1600 (defun arg-info-valid-p (arg-info)
1601   (not (null (arg-info-number-optional arg-info))))
1602
1603 (defun arg-info-applyp (arg-info)
1604   (or (plusp (arg-info-number-optional arg-info))
1605       (arg-info-key/rest-p arg-info)))
1606
1607 (defun arg-info-number-required (arg-info)
1608   (length (arg-info-metatypes arg-info)))
1609
1610 (defun arg-info-nkeys (arg-info)
1611   (count-if (lambda (x) (neq x t)) (arg-info-metatypes arg-info)))
1612
1613 (defun create-gf-lambda-list (lambda-list)
1614   ;;; Create a gf lambda list from a method lambda list
1615   (loop for x in lambda-list
1616         collect (if (consp x) (list (car x)) x)
1617         if (eq x '&key) do (loop-finish)))
1618
1619 (defun set-arg-info (gf &key new-method (lambda-list nil lambda-list-p)
1620                         argument-precedence-order)
1621   (let* ((arg-info (if (eq *boot-state* 'complete)
1622                        (gf-arg-info gf)
1623                        (early-gf-arg-info gf)))
1624          (methods (if (eq *boot-state* 'complete)
1625                       (generic-function-methods gf)
1626                       (early-gf-methods gf)))
1627          (was-valid-p (integerp (arg-info-number-optional arg-info)))
1628          (first-p (and new-method (null (cdr methods)))))
1629     (when (and (not lambda-list-p) methods)
1630       (setq lambda-list (gf-lambda-list gf)))
1631     (when (or lambda-list-p
1632               (and first-p
1633                    (eq (arg-info-lambda-list arg-info) :no-lambda-list)))
1634       (multiple-value-bind (nreq nopt keysp restp allow-other-keys-p keywords)
1635           (analyze-lambda-list lambda-list)
1636         (when (and methods (not first-p))
1637           (let ((gf-nreq (arg-info-number-required arg-info))
1638                 (gf-nopt (arg-info-number-optional arg-info))
1639                 (gf-key/rest-p (arg-info-key/rest-p arg-info)))
1640             (unless (and (= nreq gf-nreq)
1641                          (= nopt gf-nopt)
1642                          (eq (or keysp restp) gf-key/rest-p))
1643               (error "The lambda-list ~S is incompatible with ~
1644                      existing methods of ~S."
1645                      lambda-list gf))))
1646         (setf (arg-info-lambda-list arg-info)
1647               (if lambda-list-p
1648                   lambda-list
1649                    (create-gf-lambda-list lambda-list)))
1650         (when (or lambda-list-p argument-precedence-order
1651                   (null (arg-info-precedence arg-info)))
1652           (setf (arg-info-precedence arg-info)
1653                 (compute-precedence lambda-list nreq argument-precedence-order)))
1654         (setf (arg-info-metatypes arg-info) (make-list nreq))
1655         (setf (arg-info-number-optional arg-info) nopt)
1656         (setf (arg-info-key/rest-p arg-info) (not (null (or keysp restp))))
1657         (setf (arg-info-keys arg-info)
1658               (if lambda-list-p
1659                   (if allow-other-keys-p t keywords)
1660                   (arg-info-key/rest-p arg-info)))))
1661     (when new-method
1662       (check-method-arg-info gf arg-info new-method))
1663     (set-arg-info1 gf arg-info new-method methods was-valid-p first-p)
1664     arg-info))
1665
1666 (defun check-method-arg-info (gf arg-info method)
1667   (multiple-value-bind (nreq nopt keysp restp allow-other-keys-p keywords)
1668       (analyze-lambda-list (if (consp method)
1669                                (early-method-lambda-list method)
1670                                (method-lambda-list method)))
1671     (flet ((lose (string &rest args)
1672              (error 'simple-program-error
1673                     :format-control "~@<attempt to add the method~2I~_~S~I~_~
1674                                      to the generic function~2I~_~S;~I~_~
1675                                      but ~?~:>"
1676                     :format-arguments (list method gf string args)))
1677            (comparison-description (x y)
1678              (if (> x y) "more" "fewer")))
1679       (let ((gf-nreq (arg-info-number-required arg-info))
1680             (gf-nopt (arg-info-number-optional arg-info))
1681             (gf-key/rest-p (arg-info-key/rest-p arg-info))
1682             (gf-keywords (arg-info-keys arg-info)))
1683         (unless (= nreq gf-nreq)
1684           (lose
1685            "the method has ~A required arguments than the generic function."
1686            (comparison-description nreq gf-nreq)))
1687         (unless (= nopt gf-nopt)
1688           (lose
1689            "the method has ~A optional arguments than the generic function."
1690            (comparison-description nopt gf-nopt)))
1691         (unless (eq (or keysp restp) gf-key/rest-p)
1692           (lose
1693            "the method and generic function differ in whether they accept~_~
1694             &REST or &KEY arguments."))
1695         (when (consp gf-keywords)
1696           (unless (or (and restp (not keysp))
1697                       allow-other-keys-p
1698                       (every (lambda (k) (memq k keywords)) gf-keywords))
1699             (lose "the method does not accept each of the &KEY arguments~2I~_~
1700                    ~S."
1701                   gf-keywords)))))))
1702
1703 (defvar *sm-specializers-index*
1704   (!bootstrap-slot-index 'standard-method 'specializers))
1705 (defvar *sm-%function-index*
1706   (!bootstrap-slot-index 'standard-method '%function))
1707 (defvar *sm-qualifiers-index*
1708   (!bootstrap-slot-index 'standard-method 'qualifiers))
1709 (defvar *sm-plist-index*
1710   (!bootstrap-slot-index 'standard-method 'plist))
1711
1712 ;;; FIXME: we don't actually need this; we could test for the exact
1713 ;;; class and deal with it as appropriate.  In fact we probably don't
1714 ;;; need it anyway because we only use this for METHOD-SPECIALIZERS on
1715 ;;; the standard reader method for METHOD-SPECIALIZERS.  Probably.
1716 (dolist (s '(specializers %function plist))
1717   (aver (= (symbol-value (intern (format nil "*SM-~A-INDEX*" s)))
1718            (!bootstrap-slot-index 'standard-reader-method s)
1719            (!bootstrap-slot-index 'standard-writer-method s)
1720            (!bootstrap-slot-index 'standard-boundp-method s))))
1721
1722 (defun safe-method-specializers (method)
1723   (let ((standard-method-classes
1724          (list *the-class-standard-method*
1725                *the-class-standard-reader-method*
1726                *the-class-standard-writer-method*
1727                *the-class-standard-boundp-method*))
1728         (class (class-of method)))
1729     (if (member class standard-method-classes)
1730         (clos-slots-ref (get-slots method) *sm-specializers-index*)
1731         (method-specializers method))))
1732 (defun safe-method-fast-function (method)
1733   (let ((mf (safe-method-function method)))
1734     (and (typep mf '%method-function)
1735          (%method-function-fast-function mf))))
1736 (defun safe-method-function (method)
1737   (let ((standard-method-classes
1738          (list *the-class-standard-method*
1739                *the-class-standard-reader-method*
1740                *the-class-standard-writer-method*
1741                *the-class-standard-boundp-method*))
1742         (class (class-of method)))
1743     (if (member class standard-method-classes)
1744         (clos-slots-ref (get-slots method) *sm-%function-index*)
1745         (method-function method))))
1746 (defun safe-method-qualifiers (method)
1747   (let ((standard-method-classes
1748          (list *the-class-standard-method*
1749                *the-class-standard-reader-method*
1750                *the-class-standard-writer-method*
1751                *the-class-standard-boundp-method*))
1752         (class (class-of method)))
1753     (if (member class standard-method-classes)
1754         (clos-slots-ref (get-slots method) *sm-qualifiers-index*)
1755         (method-qualifiers method))))
1756
1757 (defun set-arg-info1 (gf arg-info new-method methods was-valid-p first-p)
1758   (let* ((existing-p (and methods (cdr methods) new-method))
1759          (nreq (length (arg-info-metatypes arg-info)))
1760          (metatypes (if existing-p
1761                         (arg-info-metatypes arg-info)
1762                         (make-list nreq)))
1763          (type (if existing-p
1764                    (gf-info-simple-accessor-type arg-info)
1765                    nil)))
1766     (when (arg-info-valid-p arg-info)
1767       (dolist (method (if new-method (list new-method) methods))
1768         (let* ((specializers (if (or (eq *boot-state* 'complete)
1769                                      (not (consp method)))
1770                                  (safe-method-specializers method)
1771                                  (early-method-specializers method t)))
1772                (class (if (or (eq *boot-state* 'complete) (not (consp method)))
1773                           (class-of method)
1774                           (early-method-class method)))
1775                (new-type
1776                 (when (and class
1777                            (or (not (eq *boot-state* 'complete))
1778                                (eq (generic-function-method-combination gf)
1779                                    *standard-method-combination*)))
1780                   (cond ((or (eq class *the-class-standard-reader-method*)
1781                              (eq class *the-class-global-reader-method*))
1782                          'reader)
1783                         ((or (eq class *the-class-standard-writer-method*)
1784                              (eq class *the-class-global-writer-method*))
1785                          'writer)
1786                         ((or (eq class *the-class-standard-boundp-method*)
1787                              (eq class *the-class-global-boundp-method*))
1788                          'boundp)))))
1789           (setq metatypes (mapcar #'raise-metatype metatypes specializers))
1790           (setq type (cond ((null type) new-type)
1791                            ((eq type new-type) type)
1792                            (t nil)))))
1793       (setf (arg-info-metatypes arg-info) metatypes)
1794       (setf (gf-info-simple-accessor-type arg-info) type)))
1795   (when (or (not was-valid-p) first-p)
1796     (multiple-value-bind (c-a-m-emf std-p)
1797         (if (early-gf-p gf)
1798             (values t t)
1799             (compute-applicable-methods-emf gf))
1800       (setf (gf-info-static-c-a-m-emf arg-info) c-a-m-emf)
1801       (setf (gf-info-c-a-m-emf-std-p arg-info) std-p)
1802       (unless (gf-info-c-a-m-emf-std-p arg-info)
1803         (setf (gf-info-simple-accessor-type arg-info) t))))
1804   (unless was-valid-p
1805     (let ((name (if (eq *boot-state* 'complete)
1806                     (generic-function-name gf)
1807                     (!early-gf-name gf))))
1808       (setf (gf-precompute-dfun-and-emf-p arg-info)
1809             (cond
1810               ((and (consp name)
1811                     (member (car name)
1812                             *internal-pcl-generalized-fun-name-symbols*))
1813                 nil)
1814               (t (let* ((symbol (fun-name-block-name name))
1815                         (package (symbol-package symbol)))
1816                    (and (or (eq package *pcl-package*)
1817                             (memq package (package-use-list *pcl-package*)))
1818                         ;; FIXME: this test will eventually be
1819                         ;; superseded by the *internal-pcl...* test,
1820                         ;; above.  While we are in a process of
1821                         ;; transition, however, it should probably
1822                         ;; remain.
1823                         (not (find #\Space (symbol-name symbol))))))))))
1824   (setf (gf-info-fast-mf-p arg-info)
1825         (or (not (eq *boot-state* 'complete))
1826             (let* ((method-class (generic-function-method-class gf))
1827                    (methods (compute-applicable-methods
1828                              #'make-method-lambda
1829                              (list gf (class-prototype method-class)
1830                                    '(lambda) nil))))
1831               (and methods (null (cdr methods))
1832                    (let ((specls (method-specializers (car methods))))
1833                      (and (classp (car specls))
1834                           (eq 'standard-generic-function
1835                               (class-name (car specls)))
1836                           (classp (cadr specls))
1837                           (eq 'standard-method
1838                               (class-name (cadr specls)))))))))
1839   arg-info)
1840
1841 ;;; This is the early definition of ENSURE-GENERIC-FUNCTION-USING-CLASS.
1842 ;;;
1843 ;;; The STATIC-SLOTS field of the funcallable instances used as early
1844 ;;; generic functions is used to store the early methods and early
1845 ;;; discriminator code for the early generic function. The static
1846 ;;; slots field of the fins contains a list whose:
1847 ;;;    CAR    -   a list of the early methods on this early gf
1848 ;;;    CADR   -   the early discriminator code for this method
1849 (defun ensure-generic-function-using-class (existing spec &rest keys
1850                                             &key (lambda-list nil
1851                                                               lambda-list-p)
1852                                             argument-precedence-order
1853                                             source-location
1854                                             &allow-other-keys)
1855   (declare (ignore keys))
1856   (cond ((and existing (early-gf-p existing))
1857          (when lambda-list-p
1858            (set-arg-info existing :lambda-list lambda-list))
1859          existing)
1860         ((assoc spec *!generic-function-fixups* :test #'equal)
1861          (if existing
1862              (make-early-gf spec lambda-list lambda-list-p existing
1863                             argument-precedence-order source-location)
1864              (error "The function ~S is not already defined." spec)))
1865         (existing
1866          (error "~S should be on the list ~S."
1867                 spec
1868                 '*!generic-function-fixups*))
1869         (t
1870          (pushnew spec *!early-generic-functions* :test #'equal)
1871          (make-early-gf spec lambda-list lambda-list-p nil
1872                         argument-precedence-order source-location))))
1873
1874 (defun make-early-gf (spec &optional lambda-list lambda-list-p
1875                       function argument-precedence-order source-location)
1876   (let ((fin (allocate-standard-funcallable-instance
1877               *sgf-wrapper* *sgf-slots-init*)))
1878     (set-funcallable-instance-function
1879      fin
1880      (or function
1881          (if (eq spec 'print-object)
1882              #'(lambda (instance stream)
1883                  (print-unreadable-object (instance stream :identity t)
1884                    (format stream "std-instance")))
1885              #'(lambda (&rest args)
1886                  (declare (ignore args))
1887                  (error "The function of the funcallable-instance ~S~
1888                          has not been set." fin)))))
1889     (setf (gdefinition spec) fin)
1890     (!bootstrap-set-slot 'standard-generic-function fin 'name spec)
1891     (!bootstrap-set-slot 'standard-generic-function
1892                          fin
1893                          'source
1894                          source-location)
1895     (set-fun-name fin spec)
1896     (let ((arg-info (make-arg-info)))
1897       (setf (early-gf-arg-info fin) arg-info)
1898       (when lambda-list-p
1899         (proclaim (defgeneric-declaration spec lambda-list))
1900         (if argument-precedence-order
1901             (set-arg-info fin
1902                           :lambda-list lambda-list
1903                           :argument-precedence-order argument-precedence-order)
1904             (set-arg-info fin :lambda-list lambda-list))))
1905     fin))
1906
1907 (defun safe-gf-dfun-state (generic-function)
1908   (if (eq (class-of generic-function) *the-class-standard-generic-function*)
1909       (clos-slots-ref (get-slots generic-function) *sgf-dfun-state-index*)
1910       (gf-dfun-state generic-function)))
1911 (defun (setf safe-gf-dfun-state) (new-value generic-function)
1912   (if (eq (class-of generic-function) *the-class-standard-generic-function*)
1913       (setf (clos-slots-ref (get-slots generic-function)
1914                             *sgf-dfun-state-index*)
1915             new-value)
1916       (setf (gf-dfun-state generic-function) new-value)))
1917
1918 (defun set-dfun (gf &optional dfun cache info)
1919   (when cache
1920     (setf (cache-owner cache) gf))
1921   (let ((new-state (if (and dfun (or cache info))
1922                        (list* dfun cache info)
1923                        dfun)))
1924     (if (eq *boot-state* 'complete)
1925         (setf (safe-gf-dfun-state gf) new-state)
1926         (setf (clos-slots-ref (get-slots gf) *sgf-dfun-state-index*)
1927               new-state)))
1928   dfun)
1929
1930 (defun gf-dfun-cache (gf)
1931   (let ((state (if (eq *boot-state* 'complete)
1932                    (safe-gf-dfun-state gf)
1933                    (clos-slots-ref (get-slots gf) *sgf-dfun-state-index*))))
1934     (typecase state
1935       (function nil)
1936       (cons (cadr state)))))
1937
1938 (defun gf-dfun-info (gf)
1939   (let ((state (if (eq *boot-state* 'complete)
1940                    (safe-gf-dfun-state gf)
1941                    (clos-slots-ref (get-slots gf) *sgf-dfun-state-index*))))
1942     (typecase state
1943       (function nil)
1944       (cons (cddr state)))))
1945
1946 (defvar *sgf-name-index*
1947   (!bootstrap-slot-index 'standard-generic-function 'name))
1948
1949 (defun !early-gf-name (gf)
1950   (clos-slots-ref (get-slots gf) *sgf-name-index*))
1951
1952 (defun gf-lambda-list (gf)
1953   (let ((arg-info (if (eq *boot-state* 'complete)
1954                       (gf-arg-info gf)
1955                       (early-gf-arg-info gf))))
1956     (if (eq :no-lambda-list (arg-info-lambda-list arg-info))
1957         (let ((methods (if (eq *boot-state* 'complete)
1958                            (generic-function-methods gf)
1959                            (early-gf-methods gf))))
1960           (if (null methods)
1961               (progn
1962                 (warn "no way to determine the lambda list for ~S" gf)
1963                 nil)
1964               (let* ((method (car (last methods)))
1965                      (ll (if (consp method)
1966                              (early-method-lambda-list method)
1967                              (method-lambda-list method))))
1968                 (create-gf-lambda-list ll))))
1969         (arg-info-lambda-list arg-info))))
1970
1971 (defmacro real-ensure-gf-internal (gf-class all-keys env)
1972   `(progn
1973      (cond ((symbolp ,gf-class)
1974             (setq ,gf-class (find-class ,gf-class t ,env)))
1975            ((classp ,gf-class))
1976            (t
1977             (error "The :GENERIC-FUNCTION-CLASS argument (~S) was neither a~%~
1978                     class nor a symbol that names a class."
1979                    ,gf-class)))
1980      (unless (class-finalized-p ,gf-class)
1981        (if (class-has-a-forward-referenced-superclass-p ,gf-class)
1982            ;; FIXME: reference MOP documentation -- this is an
1983            ;; additional requirement on our users
1984            (error "The generic function class ~S is not finalizeable" ,gf-class)
1985            (finalize-inheritance ,gf-class)))
1986      (remf ,all-keys :generic-function-class)
1987      (remf ,all-keys :environment)
1988      (let ((combin (getf ,all-keys :method-combination '.shes-not-there.)))
1989        (unless (eq combin '.shes-not-there.)
1990          (setf (getf ,all-keys :method-combination)
1991                (find-method-combination (class-prototype ,gf-class)
1992                                         (car combin)
1993                                         (cdr combin)))))
1994     (let ((method-class (getf ,all-keys :method-class '.shes-not-there.)))
1995       (unless (eq method-class '.shes-not-there.)
1996         (setf (getf ,all-keys :method-class)
1997               (cond ((classp method-class)
1998                      method-class)
1999                     (t (find-class method-class t ,env))))))))
2000
2001 (defun real-ensure-gf-using-class--generic-function
2002        (existing
2003         fun-name
2004         &rest all-keys
2005         &key environment (lambda-list nil lambda-list-p)
2006         (generic-function-class 'standard-generic-function)
2007         &allow-other-keys)
2008   (real-ensure-gf-internal generic-function-class all-keys environment)
2009   ;; KLUDGE: the above macro does SETQ on GENERIC-FUNCTION-CLASS,
2010   ;; which is what makes the next line work
2011   (unless (eq (class-of existing) generic-function-class)
2012     (change-class existing generic-function-class))
2013   (prog1
2014       (apply #'reinitialize-instance existing all-keys)
2015     (when lambda-list-p
2016       (proclaim (defgeneric-declaration fun-name lambda-list)))))
2017
2018 (defun real-ensure-gf-using-class--null
2019        (existing
2020         fun-name
2021         &rest all-keys
2022         &key environment (lambda-list nil lambda-list-p)
2023              (generic-function-class 'standard-generic-function)
2024         &allow-other-keys)
2025   (declare (ignore existing))
2026   (real-ensure-gf-internal generic-function-class all-keys environment)
2027   (prog1
2028       (setf (gdefinition fun-name)
2029             (apply #'make-instance generic-function-class
2030                    :name fun-name all-keys))
2031     (when lambda-list-p
2032       (proclaim (defgeneric-declaration fun-name lambda-list)))))
2033 \f
2034 (defun safe-gf-arg-info (generic-function)
2035   (if (eq (class-of generic-function) *the-class-standard-generic-function*)
2036       (clos-slots-ref (fsc-instance-slots generic-function)
2037                       *sgf-arg-info-index*)
2038       (gf-arg-info generic-function)))
2039
2040 ;;; FIXME: this function took on a slightly greater role than it
2041 ;;; previously had around 2005-11-02, when CSR fixed the bug whereby
2042 ;;; having more than one subclass of standard-generic-function caused
2043 ;;; the whole system to die horribly through a metacircle in
2044 ;;; GF-ARG-INFO.  The fix is to be slightly more disciplined about
2045 ;;; calling accessor methods -- we call GET-GENERIC-FUN-INFO when
2046 ;;; computing discriminating functions, so we need to be careful about
2047 ;;; having a base case for the recursion, and we provide that with the
2048 ;;; STANDARD-GENERIC-FUNCTION case below.  However, we are not (yet)
2049 ;;; as disciplined as CLISP's CLOS/MOP, and it would be nice to get to
2050 ;;; that stage, where all potentially dangerous cases are enumerated
2051 ;;; and stopped.  -- CSR, 2005-11-02.
2052 (defun get-generic-fun-info (gf)
2053   ;; values   nreq applyp metatypes nkeys arg-info
2054   (multiple-value-bind (applyp metatypes arg-info)
2055       (let* ((arg-info (if (early-gf-p gf)
2056                            (early-gf-arg-info gf)
2057                            (safe-gf-arg-info gf)))
2058              (metatypes (arg-info-metatypes arg-info)))
2059         (values (arg-info-applyp arg-info)
2060                 metatypes
2061                 arg-info))
2062     (values (length metatypes) applyp metatypes
2063             (count-if (lambda (x) (neq x t)) metatypes)
2064             arg-info)))
2065
2066 (defun early-make-a-method (class qualifiers arglist specializers initargs doc
2067                             &key slot-name object-class method-class-function)
2068   (let ((parsed ())
2069         (unparsed ()))
2070     ;; Figure out whether we got class objects or class names as the
2071     ;; specializers and set parsed and unparsed appropriately. If we
2072     ;; got class objects, then we can compute unparsed, but if we got
2073     ;; class names we don't try to compute parsed.
2074     ;;
2075     ;; Note that the use of not symbolp in this call to every should be
2076     ;; read as 'classp' we can't use classp itself because it doesn't
2077     ;; exist yet.
2078     (if (every (lambda (s) (not (symbolp s))) specializers)
2079         (setq parsed specializers
2080               unparsed (mapcar (lambda (s)
2081                                  (if (eq s t) t (class-name s)))
2082                                specializers))
2083         (setq unparsed specializers
2084               parsed ()))
2085     (let ((result
2086            (list :early-method
2087
2088                  (getf initargs :function)
2089                  (let ((mf (getf initargs :function)))
2090                    (aver mf)
2091                    (and (typep mf '%method-function)
2092                         (%method-function-fast-function mf)))
2093
2094                  ;; the parsed specializers. This is used by
2095                  ;; EARLY-METHOD-SPECIALIZERS to cache the parse.
2096                  ;; Note that this only comes into play when there is
2097                  ;; more than one early method on an early gf.
2098                  parsed
2099
2100                  ;; A list to which REAL-MAKE-A-METHOD can be applied
2101                  ;; to make a real method corresponding to this early
2102                  ;; one.
2103                  (append
2104                   (list class qualifiers arglist unparsed
2105                         initargs doc)
2106                   (when slot-name
2107                     (list :slot-name slot-name :object-class object-class
2108                           :method-class-function method-class-function))))))
2109       (initialize-method-function initargs result)
2110       result)))
2111
2112 (defun real-make-a-method
2113        (class qualifiers lambda-list specializers initargs doc
2114         &rest args &key slot-name object-class method-class-function)
2115   (setq specializers (parse-specializers specializers))
2116   (if method-class-function
2117       (let* ((object-class (if (classp object-class) object-class
2118                                (find-class object-class)))
2119              (slots (class-direct-slots object-class))
2120              (slot-definition (find slot-name slots
2121                                     :key #'slot-definition-name)))
2122         (aver slot-name)
2123         (aver slot-definition)
2124         (let ((initargs (list* :qualifiers qualifiers :lambda-list lambda-list
2125                                :specializers specializers :documentation doc
2126                                :slot-definition slot-definition
2127                                :slot-name slot-name initargs)))
2128           (apply #'make-instance
2129                  (apply method-class-function object-class slot-definition
2130                         initargs)
2131                  initargs)))
2132       (apply #'make-instance class :qualifiers qualifiers
2133              :lambda-list lambda-list :specializers specializers
2134              :documentation doc (append args initargs))))
2135
2136 (defun early-method-function (early-method)
2137   (values (cadr early-method) (caddr early-method)))
2138
2139 (defun early-method-class (early-method)
2140   (find-class (car (fifth early-method))))
2141
2142 (defun early-method-standard-accessor-p (early-method)
2143   (let ((class (first (fifth early-method))))
2144     (or (eq class 'standard-reader-method)
2145         (eq class 'standard-writer-method)
2146         (eq class 'standard-boundp-method))))
2147
2148 (defun early-method-standard-accessor-slot-name (early-method)
2149   (eighth (fifth early-method)))
2150
2151 ;;; Fetch the specializers of an early method. This is basically just
2152 ;;; a simple accessor except that when the second argument is t, this
2153 ;;; converts the specializers from symbols into class objects. The
2154 ;;; class objects are cached in the early method, this makes
2155 ;;; bootstrapping faster because the class objects only have to be
2156 ;;; computed once.
2157 ;;;
2158 ;;; NOTE:
2159 ;;;  The second argument should only be passed as T by
2160 ;;;  early-lookup-method. This is to implement the rule that only when
2161 ;;;  there is more than one early method on a generic function is the
2162 ;;;  conversion from class names to class objects done. This
2163 ;;;  corresponds to the fact that we are only allowed to have one
2164 ;;;  method on any generic function up until the time classes exist.
2165 (defun early-method-specializers (early-method &optional objectsp)
2166   (if (and (listp early-method)
2167            (eq (car early-method) :early-method))
2168       (cond ((eq objectsp t)
2169              (or (fourth early-method)
2170                  (setf (fourth early-method)
2171                        (mapcar #'find-class (cadddr (fifth early-method))))))
2172             (t
2173              (fourth (fifth early-method))))
2174       (error "~S is not an early-method." early-method)))
2175
2176 (defun early-method-qualifiers (early-method)
2177   (second (fifth early-method)))
2178
2179 (defun early-method-lambda-list (early-method)
2180   (third (fifth early-method)))
2181
2182 (defun early-method-initargs (early-method)
2183   (fifth (fifth early-method)))
2184
2185 (defun (setf early-method-initargs) (new-value early-method)
2186   (setf (fifth (fifth early-method)) new-value))
2187
2188 (defun early-add-named-method (generic-function-name
2189                                qualifiers
2190                                specializers
2191                                arglist
2192                                &rest initargs)
2193   (let* (;; we don't need to deal with the :generic-function-class
2194          ;; argument here because the default,
2195          ;; STANDARD-GENERIC-FUNCTION, is right for all early generic
2196          ;; functions.  (See REAL-ADD-NAMED-METHOD)
2197          (gf (ensure-generic-function generic-function-name))
2198          (existing
2199            (dolist (m (early-gf-methods gf))
2200              (when (and (equal (early-method-specializers m) specializers)
2201                         (equal (early-method-qualifiers m) qualifiers))
2202                (return m))))
2203          (new (make-a-method 'standard-method
2204                              qualifiers
2205                              arglist
2206                              specializers
2207                              initargs
2208                              ())))
2209     (when existing (remove-method gf existing))
2210     (add-method gf new)))
2211
2212 ;;; This is the early version of ADD-METHOD. Later this will become a
2213 ;;; generic function. See !FIX-EARLY-GENERIC-FUNCTIONS which has
2214 ;;; special knowledge about ADD-METHOD.
2215 (defun add-method (generic-function method)
2216   (when (not (fsc-instance-p generic-function))
2217     (error "Early ADD-METHOD didn't get a funcallable instance."))
2218   (when (not (and (listp method) (eq (car method) :early-method)))
2219     (error "Early ADD-METHOD didn't get an early method."))
2220   (push method (early-gf-methods generic-function))
2221   (set-arg-info generic-function :new-method method)
2222   (unless (assoc (!early-gf-name generic-function)
2223                  *!generic-function-fixups*
2224                  :test #'equal)
2225     (update-dfun generic-function)))
2226
2227 ;;; This is the early version of REMOVE-METHOD. See comments on
2228 ;;; the early version of ADD-METHOD.
2229 (defun remove-method (generic-function method)
2230   (when (not (fsc-instance-p generic-function))
2231     (error "An early remove-method didn't get a funcallable instance."))
2232   (when (not (and (listp method) (eq (car method) :early-method)))
2233     (error "An early remove-method didn't get an early method."))
2234   (setf (early-gf-methods generic-function)
2235         (remove method (early-gf-methods generic-function)))
2236   (set-arg-info generic-function)
2237   (unless (assoc (!early-gf-name generic-function)
2238                  *!generic-function-fixups*
2239                  :test #'equal)
2240     (update-dfun generic-function)))
2241
2242 ;;; This is the early version of GET-METHOD. See comments on the early
2243 ;;; version of ADD-METHOD.
2244 (defun get-method (generic-function qualifiers specializers
2245                                     &optional (errorp t))
2246   (if (early-gf-p generic-function)
2247       (or (dolist (m (early-gf-methods generic-function))
2248             (when (and (or (equal (early-method-specializers m nil)
2249                                   specializers)
2250                            (equal (early-method-specializers m t)
2251                                   specializers))
2252                        (equal (early-method-qualifiers m) qualifiers))
2253               (return m)))
2254           (if errorp
2255               (error "can't get early method")
2256               nil))
2257       (real-get-method generic-function qualifiers specializers errorp)))
2258
2259 (defun !fix-early-generic-functions ()
2260   (let ((accessors nil))
2261     ;; Rearrange *!EARLY-GENERIC-FUNCTIONS* to speed up
2262     ;; FIX-EARLY-GENERIC-FUNCTIONS.
2263     (dolist (early-gf-spec *!early-generic-functions*)
2264       (when (every #'early-method-standard-accessor-p
2265                    (early-gf-methods (gdefinition early-gf-spec)))
2266         (push early-gf-spec accessors)))
2267     (dolist (spec (nconc accessors
2268                          '(accessor-method-slot-name
2269                            generic-function-methods
2270                            method-specializers
2271                            specializerp
2272                            specializer-type
2273                            specializer-class
2274                            slot-definition-location
2275                            slot-definition-name
2276                            class-slots
2277                            gf-arg-info
2278                            class-precedence-list
2279                            slot-boundp-using-class
2280                            (setf slot-value-using-class)
2281                            slot-value-using-class
2282                            structure-class-p
2283                            standard-class-p
2284                            funcallable-standard-class-p
2285                            specializerp)))
2286       (/show spec)
2287       (setq *!early-generic-functions*
2288             (cons spec
2289                   (delete spec *!early-generic-functions* :test #'equal))))
2290
2291     (dolist (early-gf-spec *!early-generic-functions*)
2292       (/show early-gf-spec)
2293       (let* ((gf (gdefinition early-gf-spec))
2294              (methods (mapcar (lambda (early-method)
2295                                 (let ((args (copy-list (fifth
2296                                                         early-method))))
2297                                   (setf (fourth args)
2298                                         (early-method-specializers
2299                                          early-method t))
2300                                   (apply #'real-make-a-method args)))
2301                               (early-gf-methods gf))))
2302         (setf (generic-function-method-class gf) *the-class-standard-method*)
2303         (setf (generic-function-method-combination gf)
2304               *standard-method-combination*)
2305         (set-methods gf methods)))
2306
2307     (dolist (fn *!early-functions*)
2308       (/show fn)
2309       (setf (gdefinition (car fn)) (fdefinition (caddr fn))))
2310
2311     (dolist (fixup *!generic-function-fixups*)
2312       (/show fixup)
2313       (let* ((fspec (car fixup))
2314              (gf (gdefinition fspec))
2315              (methods (mapcar (lambda (method)
2316                                 (let* ((lambda-list (first method))
2317                                        (specializers (second method))
2318                                        (method-fn-name (third method))
2319                                        (fn-name (or method-fn-name fspec))
2320                                        (fn (fdefinition fn-name))
2321                                        (initargs
2322                                         (list :function
2323                                               (set-fun-name
2324                                                (lambda (args next-methods)
2325                                                  (declare (ignore
2326                                                            next-methods))
2327                                                  (apply fn args))
2328                                                `(call ,fn-name)))))
2329                                   (declare (type function fn))
2330                                   (make-a-method 'standard-method
2331                                                  ()
2332                                                  lambda-list
2333                                                  specializers
2334                                                  initargs
2335                                                  nil)))
2336                               (cdr fixup))))
2337         (setf (generic-function-method-class gf) *the-class-standard-method*)
2338         (setf (generic-function-method-combination gf)
2339               *standard-method-combination*)
2340         (set-methods gf methods))))
2341   (/show "leaving !FIX-EARLY-GENERIC-FUNCTIONS"))
2342 \f
2343 ;;; PARSE-DEFMETHOD is used by DEFMETHOD to parse the &REST argument
2344 ;;; into the 'real' arguments. This is where the syntax of DEFMETHOD
2345 ;;; is really implemented.
2346 (defun parse-defmethod (cdr-of-form)
2347   (declare (list cdr-of-form))
2348   (let ((name (pop cdr-of-form))
2349         (qualifiers ())
2350         (spec-ll ()))
2351     (loop (if (and (car cdr-of-form) (atom (car cdr-of-form)))
2352               (push (pop cdr-of-form) qualifiers)
2353               (return (setq qualifiers (nreverse qualifiers)))))
2354     (setq spec-ll (pop cdr-of-form))
2355     (values name qualifiers spec-ll cdr-of-form)))
2356
2357 (defun parse-specializers (specializers)
2358   (declare (list specializers))
2359   (flet ((parse (spec)
2360            (let ((result (specializer-from-type spec)))
2361              (if (specializerp result)
2362                  result
2363                  (if (symbolp spec)
2364                      (error "~S was used as a specializer,~%~
2365                              but is not the name of a class."
2366                             spec)
2367                      (error "~S is not a legal specializer." spec))))))
2368     (mapcar #'parse specializers)))
2369
2370 (defun unparse-specializers (specializers-or-method)
2371   (if (listp specializers-or-method)
2372       (flet ((unparse (spec)
2373                (if (specializerp spec)
2374                    (let ((type (specializer-type spec)))
2375                      (if (and (consp type)
2376                               (eq (car type) 'class))
2377                          (let* ((class (cadr type))
2378                                 (class-name (class-name class)))
2379                            (if (eq class (find-class class-name nil))
2380                                class-name
2381                                type))
2382                          type))
2383                    (error "~S is not a legal specializer." spec))))
2384         (mapcar #'unparse specializers-or-method))
2385       (unparse-specializers (method-specializers specializers-or-method))))
2386
2387 (defun parse-method-or-spec (spec &optional (errorp t))
2388   (let (gf method name temp)
2389     (if (method-p spec)
2390         (setq method spec
2391               gf (method-generic-function method)
2392               temp (and gf (generic-function-name gf))
2393               name (if temp
2394                        (make-method-spec temp
2395                                          (method-qualifiers method)
2396                                          (unparse-specializers
2397                                           (method-specializers method)))
2398                        (make-symbol (format nil "~S" method))))
2399         (multiple-value-bind (gf-spec quals specls)
2400             (parse-defmethod spec)
2401           (and (setq gf (and (or errorp (fboundp gf-spec))
2402                              (gdefinition gf-spec)))
2403                (let ((nreq (compute-discriminating-function-arglist-info gf)))
2404                  (setq specls (append (parse-specializers specls)
2405                                       (make-list (- nreq (length specls))
2406                                                  :initial-element
2407                                                  *the-class-t*)))
2408                  (and
2409                    (setq method (get-method gf quals specls errorp))
2410                    (setq name
2411                          (make-method-spec
2412                           gf-spec quals (unparse-specializers specls))))))))
2413     (values gf method name)))
2414 \f
2415 (defun extract-parameters (specialized-lambda-list)
2416   (multiple-value-bind (parameters ignore1 ignore2)
2417       (parse-specialized-lambda-list specialized-lambda-list)
2418     (declare (ignore ignore1 ignore2))
2419     parameters))
2420
2421 (defun extract-lambda-list (specialized-lambda-list)
2422   (multiple-value-bind (ignore1 lambda-list ignore2)
2423       (parse-specialized-lambda-list specialized-lambda-list)
2424     (declare (ignore ignore1 ignore2))
2425     lambda-list))
2426
2427 (defun extract-specializer-names (specialized-lambda-list)
2428   (multiple-value-bind (ignore1 ignore2 specializers)
2429       (parse-specialized-lambda-list specialized-lambda-list)
2430     (declare (ignore ignore1 ignore2))
2431     specializers))
2432
2433 (defun extract-required-parameters (specialized-lambda-list)
2434   (multiple-value-bind (ignore1 ignore2 ignore3 required-parameters)
2435       (parse-specialized-lambda-list specialized-lambda-list)
2436     (declare (ignore ignore1 ignore2 ignore3))
2437     required-parameters))
2438
2439 (define-condition specialized-lambda-list-error
2440     (reference-condition simple-program-error)
2441   ()
2442   (:default-initargs :references (list '(:ansi-cl :section (3 4 3)))))
2443
2444 (defun parse-specialized-lambda-list
2445     (arglist
2446      &optional supplied-keywords (allowed-keywords '(&optional &rest &key &aux))
2447      &aux (specialized-lambda-list-keywords
2448            '(&optional &rest &key &allow-other-keys &aux)))
2449   (let ((arg (car arglist)))
2450     (cond ((null arglist) (values nil nil nil nil))
2451           ((eq arg '&aux)
2452            (values nil arglist nil nil))
2453           ((memq arg lambda-list-keywords)
2454            ;; non-standard lambda-list-keywords are errors.
2455            (unless (memq arg specialized-lambda-list-keywords)
2456              (error 'specialized-lambda-list-error
2457                     :format-control "unknown specialized-lambda-list ~
2458                                      keyword ~S~%"
2459                     :format-arguments (list arg)))
2460            ;; no multiple &rest x &rest bla specifying
2461            (when (memq arg supplied-keywords)
2462              (error 'specialized-lambda-list-error
2463                     :format-control "multiple occurrence of ~
2464                                      specialized-lambda-list keyword ~S~%"
2465                     :format-arguments (list arg)))
2466            ;; And no placing &key in front of &optional, either.
2467            (unless (memq arg allowed-keywords)
2468              (error 'specialized-lambda-list-error
2469                     :format-control "misplaced specialized-lambda-list ~
2470                                      keyword ~S~%"
2471                     :format-arguments (list arg)))
2472            ;; When we are at a lambda-list keyword, the parameters
2473            ;; don't include the lambda-list keyword; the lambda-list
2474            ;; does include the lambda-list keyword; and no
2475            ;; specializers are allowed to follow the lambda-list
2476            ;; keywords (at least for now).
2477            (multiple-value-bind (parameters lambda-list)
2478                (parse-specialized-lambda-list (cdr arglist)
2479                                               (cons arg supplied-keywords)
2480                                               (if (eq arg '&key)
2481                                                   (cons '&allow-other-keys
2482                                                         (cdr (member arg allowed-keywords)))
2483                                                 (cdr (member arg allowed-keywords))))
2484              (when (and (eq arg '&rest)
2485                         (or (null lambda-list)
2486                             (memq (car lambda-list)
2487                                   specialized-lambda-list-keywords)
2488                             (not (or (null (cadr lambda-list))
2489                                      (memq (cadr lambda-list)
2490                                            specialized-lambda-list-keywords)))))
2491                (error 'specialized-lambda-list-error
2492                       :format-control
2493                       "in a specialized-lambda-list, excactly one ~
2494                        variable must follow &REST.~%"
2495                       :format-arguments nil))
2496              (values parameters
2497                      (cons arg lambda-list)
2498                      ()
2499                      ())))
2500           (supplied-keywords
2501            ;; After a lambda-list keyword there can be no specializers.
2502            (multiple-value-bind (parameters lambda-list)
2503                (parse-specialized-lambda-list (cdr arglist)
2504                                               supplied-keywords
2505                                               allowed-keywords)
2506              (values (cons (if (listp arg) (car arg) arg) parameters)
2507                      (cons arg lambda-list)
2508                      ()
2509                      ())))
2510           (t
2511            (multiple-value-bind (parameters lambda-list specializers required)
2512                (parse-specialized-lambda-list (cdr arglist))
2513              (values (cons (if (listp arg) (car arg) arg) parameters)
2514                      (cons (if (listp arg) (car arg) arg) lambda-list)
2515                      (cons (if (listp arg) (cadr arg) t) specializers)
2516                      (cons (if (listp arg) (car arg) arg) required)))))))
2517 \f
2518 (setq *boot-state* 'early)
2519 \f
2520 ;;; FIXME: In here there was a #-CMU definition of SYMBOL-MACROLET
2521 ;;; which used %WALKER stuff. That suggests to me that maybe the code
2522 ;;; walker stuff was only used for implementing stuff like that; maybe
2523 ;;; it's not needed any more? Hunt down what it was used for and see.
2524
2525 (defmacro with-slots (slots instance &body body)
2526   (let ((in (gensym)))
2527     `(let ((,in ,instance))
2528        (declare (ignorable ,in))
2529        ,@(let ((instance (if (and (consp instance) (eq (car instance) 'the))
2530                              (third instance)
2531                              instance)))
2532            (and (symbolp instance)
2533                 `((declare (%variable-rebinding ,in ,instance)))))
2534        ,in
2535        (symbol-macrolet ,(mapcar (lambda (slot-entry)
2536                                    (let ((var-name
2537                                           (if (symbolp slot-entry)
2538                                               slot-entry
2539                                               (car slot-entry)))
2540                                          (slot-name
2541                                           (if (symbolp slot-entry)
2542                                               slot-entry
2543                                               (cadr slot-entry))))
2544                                      `(,var-name
2545                                        (slot-value ,in ',slot-name))))
2546                                  slots)
2547                         ,@body))))
2548
2549 (defmacro with-accessors (slots instance &body body)
2550   (let ((in (gensym)))
2551     `(let ((,in ,instance))
2552        (declare (ignorable ,in))
2553        ,@(let ((instance (if (and (consp instance) (eq (car instance) 'the))
2554                              (third instance)
2555                              instance)))
2556            (and (symbolp instance)
2557                 `((declare (%variable-rebinding ,in ,instance)))))
2558        ,in
2559        (symbol-macrolet ,(mapcar (lambda (slot-entry)
2560                                    (let ((var-name (car slot-entry))
2561                                          (accessor-name (cadr slot-entry)))
2562                                      `(,var-name (,accessor-name ,in))))
2563                                  slots)
2564           ,@body))))