1 ;;;; This software is part of the SBCL system. See the README file for
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
10 ;;;; copyright information from original PCL sources:
12 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
13 ;;;; All rights reserved.
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
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
26 (defun get-method-function (method &optional method-alist wrappers)
27 (let ((fn (cadr (assoc method method-alist))))
29 (values fn nil nil nil)
30 (multiple-value-bind (mf fmf)
32 (early-method-function method)
33 (values nil (safe-method-fast-function method)))
34 (let* ((pv-table (and fmf (method-function-pv-table fmf))))
35 (if (and fmf (or (null pv-table) wrappers))
36 (let* ((pv-wrappers (when pv-table
37 (pv-wrappers-from-all-wrappers
39 (pv-cell (when (and pv-table pv-wrappers)
40 (pv-table-lookup pv-table pv-wrappers))))
41 (values mf t fmf pv-cell))
43 (or mf (if (listp method)
45 (method-function-from-fast-function fmf))
46 (method-function method)))
49 (defun make-effective-method-function (generic-function form &optional
50 method-alist wrappers)
51 (funcall (make-effective-method-function1 generic-function form
52 (not (null method-alist))
53 (not (null wrappers)))
54 method-alist wrappers))
56 (defun make-effective-method-function1 (generic-function form
57 method-alist-p wrappers-p)
59 (eq (car form) 'call-method))
60 (make-effective-method-function-simple generic-function form)
61 ;; We have some sort of `real' effective method. Go off and get a
62 ;; compiled function for it. Most of the real hair here is done by
63 ;; the GET-FUN mechanism.
64 (make-effective-method-function-internal generic-function form
65 method-alist-p wrappers-p)))
67 (defun make-effective-method-fun-type (generic-function
72 (eq (car form) 'call-method))
73 (let* ((cm-args (cdr form))
74 (method (car cm-args)))
76 (if (if (listp method)
77 (eq (car method) :early-method)
81 (multiple-value-bind (mf fmf)
83 (early-method-function method)
84 (values nil (safe-method-fast-function method)))
86 (let* ((pv-table (and fmf (method-function-pv-table fmf))))
87 (if (and fmf (or (null pv-table) wrappers-p))
90 (if (and (consp method) (eq (car method) 'make-method))
91 (make-effective-method-fun-type
92 generic-function (cadr method) method-alist-p wrappers-p)
96 (defun make-effective-method-function-simple
97 (generic-function form &optional no-fmf-p)
98 ;; The effective method is just a call to CALL-METHOD. This opens up
99 ;; the possibility of just using the method function of the method as
100 ;; the effective method function.
102 ;; But we have to be careful. If that method function will ask for
103 ;; the next methods we have to provide them. We do not look to see
104 ;; if there are next methods, we look at whether the method function
105 ;; asks about them. If it does, we must tell it whether there are
106 ;; or aren't to prevent the leaky next methods bug.
107 (let* ((cm-args (cdr form))
108 (fmf-p (and (null no-fmf-p)
109 (or (not (eq *boot-state* 'complete))
110 (gf-fast-method-function-p generic-function))
111 (null (cddr cm-args))))
112 (method (car cm-args))
113 (cm-args1 (cdr cm-args)))
114 (lambda (method-alist wrappers)
115 (make-effective-method-function-simple1 generic-function
122 (defun make-emf-from-method
123 (method cm-args &optional gf fmf-p method-alist wrappers)
124 (multiple-value-bind (mf real-mf-p fmf pv-cell)
125 (get-method-function method method-alist wrappers)
127 (let* ((next-methods (car cm-args))
128 (next (make-effective-method-function-simple1
129 gf (car next-methods)
130 (list* (cdr next-methods) (cdr cm-args))
131 fmf-p method-alist wrappers))
132 (arg-info (method-function-get fmf :arg-info)))
133 (make-fast-method-call :function fmf
135 :next-method-call next
138 (make-method-call :function mf
139 :call-method-args cm-args)
142 (defun make-effective-method-function-simple1
143 (gf method cm-args fmf-p &optional method-alist wrappers)
145 (if (if (listp method)
146 (eq (car method) :early-method)
148 (make-emf-from-method method cm-args gf fmf-p method-alist wrappers)
149 (if (and (consp method) (eq (car method) 'make-method))
150 (make-effective-method-function gf
152 method-alist wrappers)
155 (defvar *global-effective-method-gensyms* ())
156 (defvar *rebound-effective-method-gensyms*)
158 (defun get-effective-method-gensym ()
159 (or (pop *rebound-effective-method-gensyms*)
160 (let ((new (format-symbol *pcl-package*
161 "EFFECTIVE-METHOD-GENSYM-~D"
162 (length *global-effective-method-gensyms*))))
163 (setq *global-effective-method-gensyms*
164 (append *global-effective-method-gensyms* (list new)))
167 (let ((*rebound-effective-method-gensyms* ()))
168 (dotimes-fixnum (i 10) (get-effective-method-gensym)))
170 (defun expand-effective-method-function (gf effective-method &optional env)
171 (declare (ignore env))
172 (multiple-value-bind (nreq applyp metatypes nkeys arg-info)
173 (get-generic-fun-info gf)
174 (declare (ignore nreq nkeys arg-info))
175 (let ((ll (make-fast-method-call-lambda-list metatypes applyp))
176 (check-applicable-keywords
177 (when (and applyp (gf-requires-emf-keyword-checks gf))
178 '((check-applicable-keywords))))
179 (error-p (or (eq (first effective-method) '%no-primary-method)
180 (eq (first effective-method) '%invalid-qualifiers)))
182 (when (eq *boot-state* 'complete)
183 ;; Otherwise the METHOD-COMBINATION slot is not bound.
184 (let ((combin (generic-function-method-combination gf)))
185 (and (long-method-combination-p combin)
186 (long-method-combination-args-lambda-list combin))))))
189 `(lambda (.pv-cell. .next-method-call. &rest .args.)
190 (declare (ignore .pv-cell. .next-method-call.))
191 (declare (ignorable .args.))
192 (flet ((%no-primary-method (gf args)
193 (apply #'no-primary-method gf args))
194 (%invalid-qualifiers (gf combin method)
195 (invalid-qualifiers gf combin method)))
196 (declare (ignorable #'%no-primary-method #'%invalid-qualifiers))
200 ;; FIXME: Ick. Shared idiom, too, with stuff in cache.lisp
202 (dotimes (i (length metatypes) (nreverse req))
203 (push (dfun-arg-symbol i) req))))
205 `(list* ,@required .dfun-rest-arg.)
206 `(list ,@required))))
208 (declare (ignore .pv-cell. .next-method-call.))
209 (let ((.gf-args. ,gf-args))
210 (declare (ignorable .gf-args.))
211 ,@check-applicable-keywords
212 ,effective-method))))
215 (declare (ignore ,@(if error-p ll '(.pv-cell. .next-method-call.))))
216 ,@check-applicable-keywords
217 ,effective-method))))))
219 (defun expand-emf-call-method (gf form metatypes applyp env)
220 (declare (ignore gf metatypes applyp env))
221 `(call-method ,(cdr form)))
223 (defmacro call-method (&rest args)
224 (declare (ignore args))
225 ;; the PROGN is here to defend against premature macroexpansion by
227 `(progn (error "~S outside of a effective method form" 'call-method)))
229 (defun make-effective-method-list-fun-type
230 (generic-function form method-alist-p wrappers-p)
231 (if (every (lambda (form)
232 (eq 'fast-method-call
233 (make-effective-method-fun-type
234 generic-function form method-alist-p wrappers-p)))
239 (defun memf-test-converter (form generic-function method-alist-p wrappers-p)
240 (case (and (consp form) (car form))
242 (case (make-effective-method-fun-type
243 generic-function form method-alist-p wrappers-p)
244 (fast-method-call '.fast-call-method.)
247 (case (make-effective-method-list-fun-type
248 generic-function form method-alist-p wrappers-p)
249 (fast-method-call '.fast-call-method-list.)
250 (t '.call-method-list.)))
251 (check-applicable-keywords 'check-applicable-keywords)
252 (t (default-test-converter form))))
254 ;;; CMUCL comment (2003-10-15):
256 ;;; This function is called via the GET-FUNCTION mechanism on forms
257 ;;; of an emf lambda. First value returned replaces FORM in the emf
258 ;;; lambda. Second value is a list of variable names that become
259 ;;; closure variables.
260 (defun memf-code-converter
261 (form generic-function metatypes applyp method-alist-p wrappers-p)
262 (case (and (consp form) (car form))
264 (let ((gensym (get-effective-method-gensym)))
265 (values (make-emf-call
266 metatypes applyp gensym
267 (make-effective-method-fun-type
268 generic-function form method-alist-p wrappers-p))
271 (let ((gensym (get-effective-method-gensym))
272 (type (make-effective-method-list-fun-type
273 generic-function form method-alist-p wrappers-p)))
274 (values `(dolist (emf ,gensym nil)
275 ,(make-emf-call metatypes applyp 'emf type))
277 (check-applicable-keywords
278 (values `(check-applicable-keywords
279 .dfun-rest-arg. .keyargs-start. .valid-keys.)
280 '(.keyargs-start. .valid-keys.)))
283 (default-code-converter form))))
285 (defun memf-constant-converter (form generic-function)
286 (case (and (consp form) (car form))
289 (make-effective-method-function-simple
290 generic-function form))))
292 (list (cons '.meth-list.
293 (mapcar (lambda (form)
294 (make-effective-method-function-simple
295 generic-function form))
297 (check-applicable-keywords
298 '(.keyargs-start. .valid-keys.))
300 (default-constant-converter form))))
302 (defvar *applicable-methods*)
303 (defun make-effective-method-function-internal
304 (generic-function effective-method method-alist-p wrappers-p)
305 (multiple-value-bind (nreq applyp metatypes nkeys arg-info)
306 (get-generic-fun-info generic-function)
307 (declare (ignore nkeys arg-info))
308 (let* ((*rebound-effective-method-gensyms*
309 *global-effective-method-gensyms*)
310 (name (if (early-gf-p generic-function)
311 (!early-gf-name generic-function)
312 (generic-function-name generic-function)))
313 (arg-info (cons nreq applyp))
314 (effective-method-lambda (expand-effective-method-function
315 generic-function effective-method)))
316 (multiple-value-bind (cfunction constants)
317 (get-fun1 effective-method-lambda
319 (memf-test-converter form generic-function
320 method-alist-p wrappers-p))
322 (memf-code-converter form generic-function
324 method-alist-p wrappers-p))
326 (memf-constant-converter form generic-function)))
327 (lambda (method-alist wrappers)
328 (multiple-value-bind (valid-keys keyargs-start)
329 (when (memq '.valid-keys. constants)
330 (compute-applicable-keywords
331 generic-function *applicable-methods*))
332 (flet ((compute-constant (constant)
336 (funcall (cdr constant) method-alist wrappers))
339 (funcall fn method-alist wrappers))
343 (.keyargs-start. keyargs-start)
344 (.valid-keys. valid-keys)
346 (let ((fun (apply cfunction
347 (mapcar #'compute-constant constants))))
348 (set-fun-name fun `(combined-method ,name))
349 (make-fast-method-call :function fun
350 :arg-info arg-info)))))))))
352 (defmacro call-method-list (&rest calls)
355 (defun make-call-methods (methods)
357 ,@(mapcar (lambda (method) `(call-method ,method ())) methods)))
359 (defun gf-requires-emf-keyword-checks (generic-function)
360 (member '&key (gf-lambda-list generic-function)))
362 (defvar *in-precompute-effective-methods-p* nil)
364 (defun standard-compute-effective-method
365 (generic-function combin applicable-methods)
366 (collect ((before) (primary) (after) (around))
367 (flet ((invalid (gf combin m)
368 (if *in-precompute-effective-methods-p*
369 (return-from standard-compute-effective-method
370 `(%invalid-qualifiers ',gf ',combin ',m))
371 (invalid-qualifiers gf combin m))))
372 (dolist (m applicable-methods)
373 (let ((qualifiers (if (listp m)
374 (early-method-qualifiers m)
375 (method-qualifiers m))))
377 ((null qualifiers) (primary m))
378 ((cdr qualifiers) (invalid generic-function combin m))
379 ((eq (car qualifiers) :around) (around m))
380 ((eq (car qualifiers) :before) (before m))
381 ((eq (car qualifiers) :after) (after m))
382 (t (invalid generic-function combin m))))))
383 (cond ((null (primary))
384 `(%no-primary-method ',generic-function .args.))
385 ((and (null (before)) (null (after)) (null (around)))
386 ;; By returning a single call-method `form' here we enable
387 ;; an important implementation-specific optimization; that
388 ;; is, we can use the fast method function directly as the
389 ;; effective method function.
391 ;; However, the requirement by ANSI (CLHS 7.6.5) on generic
392 ;; function argument checking inhibits this, as we don't
393 ;; perform this checking in fast-method-functions given
394 ;; that they are not solely used for effective method
395 ;; functions, but also in combination, when they should not
396 ;; perform argument checks.
398 `(call-method ,(first (primary)) ,(rest (primary)))))
399 (if (gf-requires-emf-keyword-checks generic-function)
400 ;; the PROGN inhibits the above optimization
401 `(progn ,call-method)
404 (let ((main-effective-method
405 (if (or (before) (after))
406 `(multiple-value-prog1
408 ,(make-call-methods (before))
409 (call-method ,(first (primary))
411 ,(make-call-methods (reverse (after))))
412 `(call-method ,(first (primary)) ,(rest (primary))))))
414 `(call-method ,(first (around))
416 (make-method ,main-effective-method)))
417 main-effective-method))))))
419 ;;; helper code for checking keywords in generic function calls.
420 (defun compute-applicable-keywords (gf methods)
421 (let ((any-keyp nil))
422 (flet ((analyze (lambda-list)
423 (multiple-value-bind (nreq nopt keyp restp allowp keys)
424 (analyze-lambda-list lambda-list)
425 (declare (ignore nreq restp))
428 (values nopt allowp keys))))
429 (multiple-value-bind (nopt allowp keys)
430 (analyze (generic-function-lambda-list gf))
431 (dolist (method methods)
432 (let ((ll (if (consp method)
433 (early-method-lambda-list method)
434 (method-lambda-list method))))
435 (multiple-value-bind (n allowp method-keys)
439 (return-from compute-applicable-keywords (values t nopt)))
440 (setq keys (union method-keys keys)))))
442 (values (if allowp t keys) nopt)))))
444 (defun check-applicable-keywords (args start valid-keys)
445 (let ((allow-other-keys-seen nil)
446 (allow-other-keys nil)
447 (args (nthcdr start args)))
451 (when (and (invalid) (not allow-other-keys))
452 (error 'simple-program-error
453 :format-control "~@<invalid keyword argument~P: ~
454 ~{~S~^, ~} (valid keys are ~{~S~^, ~}).~@:>"
455 :format-arguments (list (length (invalid)) (invalid) valid-keys)))
457 (let ((key (pop args)))
460 (error 'simple-program-error
461 :format-control "~@<keyword argument not a symbol: ~S.~@:>"
462 :format-arguments (list key)))
463 ((null args) (sb-c::%odd-key-args-error))
464 ((eq key :allow-other-keys)
465 ;; only the leftmost :ALLOW-OTHER-KEYS has any effect
466 (unless allow-other-keys-seen
467 (setq allow-other-keys-seen t
468 allow-other-keys (car args))))
470 ((not (memq key valid-keys)) (invalid key))))
473 ;;;; the STANDARD method combination type. This is coded by hand
474 ;;;; (rather than with DEFINE-METHOD-COMBINATION) for bootstrapping
475 ;;;; and efficiency reasons. Note that the definition of the
476 ;;;; FIND-METHOD-COMBINATION-METHOD appears in the file
477 ;;;; defcombin.lisp. This is because EQL methods can't appear in the
480 ;;;; The DEFCLASS for the METHOD-COMBINATION and
481 ;;;; STANDARD-METHOD-COMBINATION classes has to appear here for this
482 ;;;; reason. This code must conform to the code in the file
483 ;;;; defcombin.lisp, look there for more details.
485 (defun compute-effective-method (generic-function combin applicable-methods)
486 (standard-compute-effective-method generic-function
490 (defun invalid-method-error (method format-control &rest format-arguments)
491 (let ((sb-debug:*stack-top-hint* (nth-value 1 (find-caller-name-and-frame))))
492 (error "~@<invalid method error for ~2I~_~S ~I~_method: ~2I~_~?~:>"
497 (defun method-combination-error (format-control &rest format-arguments)
498 (let ((sb-debug:*stack-top-hint* (nth-value 1 (find-caller-name-and-frame))))
499 (error "~@<method combination error in CLOS dispatch: ~2I~_~?~:>"