dcdd282619eb3eccb9a6161a25ad9f129f53b9bc
[sbcl.git] / src / pcl / walk.lisp
1 ;;;; a simple code walker
2 ;;;;
3 ;;;; The code which implements the macroexpansion environment
4 ;;;; manipulation mechanisms is in the first part of the file, the
5 ;;;; real walker follows it.
6
7 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; more information.
9
10 ;;;; This software is derived from software originally released by Xerox
11 ;;;; Corporation. Copyright and release statements follow. Later modifications
12 ;;;; to the software are in the public domain and are provided with
13 ;;;; absolutely no warranty. See the COPYING and CREDITS files for more
14 ;;;; information.
15
16 ;;;; copyright information from original PCL sources:
17 ;;;;
18 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
19 ;;;; All rights reserved.
20 ;;;;
21 ;;;; Use and copying of this software and preparation of derivative works based
22 ;;;; upon this software are permitted. Any distribution of this software or
23 ;;;; derivative works must comply with all applicable United States export
24 ;;;; control laws.
25 ;;;;
26 ;;;; This software is made available AS IS, and Xerox Corporation makes no
27 ;;;; warranty about the software, its performance or its conformity to any
28 ;;;; specification.
29
30 (in-package "SB!WALKER")
31 \f
32 ;;;; forward references
33
34 (defvar *key-to-walker-environment*)
35 \f
36 ;;;; environment hacking stuff, necessarily SBCL-specific
37
38 ;;; Here in the original PCL were implementations of the
39 ;;; implementation-specific environment hacking functions for each of
40 ;;; the implementations this walker had been ported to. This
41 ;;; functionality was originally factored out in order to make PCL
42 ;;; portable from one Common Lisp to another. As of 19981107, that
43 ;;; portability was fairly stale and (because of the scarcity of CLTL1
44 ;;; implementations and the strong interdependence of the rest of ANSI
45 ;;; Common Lisp on the CLOS system) fairly irrelevant. It was fairly
46 ;;; thoroughly put out of its misery by WHN in his quest to clean up
47 ;;; the system enough that it can be built from scratch using any ANSI
48 ;;; Common Lisp.
49 ;;;
50 ;;; This code just hacks 'macroexpansion environments'. That is, it is
51 ;;; only concerned with the function binding of symbols in the
52 ;;; environment. The walker needs to be able to tell if the symbol
53 ;;; names a lexical macro or function, and it needs to be able to
54 ;;; build environments which contain lexical macro or function
55 ;;; bindings. It must be able, when walking a MACROLET, FLET or LABELS
56 ;;; form to construct an environment which reflects the bindings
57 ;;; created by that form. Note that the environment created does NOT
58 ;;; have to be sufficient to evaluate the body, merely to walk its
59 ;;; body. This means that definitions do not have to be supplied for
60 ;;; lexical functions, only the fact that that function is bound is
61 ;;; important. For macros, the macroexpansion function must be
62 ;;; supplied.
63 ;;;
64 ;;; This code is organized in a way that lets it work in
65 ;;; implementations that stack cons their environments. That is
66 ;;; reflected in the fact that the only operation that lets a user
67 ;;; build a new environment is a WITH-BODY macro which executes its
68 ;;; body with the specified symbol bound to the new environment. No
69 ;;; code in this walker or in PCL will hold a pointer to these
70 ;;; environments after the body returns. Other user code is free to do
71 ;;; so in implementations where it works, but that code is not
72 ;;; considered portable.
73 ;;;
74 ;;; There are 3 environment hacking tools. One macro,
75 ;;; WITH-AUGMENTED-ENVIRONMENT, which is used to create new
76 ;;; environments, and two functions, ENVIRONMENT-FUNCTION and
77 ;;; ENVIRONMENT-MACRO, which are used to access the bindings of
78 ;;; existing environments
79
80 ;;; In SBCL, as in CMU CL before it, the environment is represented
81 ;;; with a structure that holds alists for the functional things,
82 ;;; variables, blocks, etc. Except for SYMBOL-MACROLET, only the
83 ;;; SB!C::LEXENV-FUNS slot is relevant. It holds: Alist (Name . What),
84 ;;; where What is either a functional (a local function) or a list
85 ;;; (MACRO . <function>) (a local macro, with the specifier expander.)
86 ;;; Note that Name may be a (SETF <name>) function. Accessors are
87 ;;; defined below, eg (ENV-WALK-FUNCTION ENV).
88 ;;;
89 ;;; If WITH-AUGMENTED-ENVIRONMENT is called from WALKER-ENVIRONMENT-BIND
90 ;;; this code hides the WALKER version of an environment
91 ;;; inside the SB!C::LEXENV structure.
92 ;;;
93 ;;; In CMUCL (and former SBCL), This used to be a list of lists of form
94 ;;; (<gensym-name> MACRO . #<interpreted-function>) in the :functions slot
95 ;;; in a C::LEXENV.
96 ;;; This form was accepted by the compiler, but this was a crude hack,
97 ;;; because the <interpreted-function> was used as a structure to hold the
98 ;;; bits of interest, {function, form, declarations, lexical-variables},
99 ;;; a list, which was not really an interpreted function.
100 ;;; Instead this list was COERCEd to a #<FUNCTION ...>!
101 ;;;
102 ;;; Instead, we now use a special sort of "function"-type for that
103 ;;; information, because the functions slot in SB!C::LEXENV is
104 ;;; supposed to have a list of <Name MACRO . #<function> elements.
105 ;;; So, now we hide our bits of interest in the walker-info slot in
106 ;;; our new BOGO-FUN.
107 ;;;
108 ;;; MACROEXPAND-1 and SB!INT:EVAL-IN-LEXENV are the only SBCL
109 ;;; functions that get called with the constructed environment
110 ;;; argument.
111
112 (/show "walk.lisp 108")
113
114 (defmacro with-augmented-environment
115     ((new-env old-env &key functions macros) &body body)
116   `(let ((,new-env (with-augmented-environment-internal ,old-env
117                                                         ,functions
118                                                         ,macros)))
119      ,@body))
120
121 ;;; a unique tag to show that we're the intended caller of BOGO-FUN
122 (defvar *bogo-fun-magic-tag*
123   '(:bogo-fun-magic-tag))
124
125 ;;; The interface of BOGO-FUNs (previously implemented as
126 ;;; FUNCALLABLE-INSTANCEs) is just these two operations, so we can do
127 ;;; them with ordinary closures.
128 ;;;
129 ;;; KLUDGE: BOGO-FUNs are sorta weird, and MNA and I have both hacked
130 ;;; on this code without quite figuring out what they're for. (He
131 ;;; changed them to work after some changes in the IR1 interpreter
132 ;;; made functions not be built lazily, and I changed them so that
133 ;;; they don't need FUNCALLABLE-INSTANCE stuff, so that the F-I stuff
134 ;;; can become less general.) There may be further simplifications or
135 ;;; clarifications which could be done. -- WHN 2001-10-19
136 (defun walker-info-to-bogo-fun (walker-info)
137   (lambda (magic-tag &rest rest)
138     (aver (not rest)) ; else someone is using me in an unexpected way
139     (aver (eql magic-tag *bogo-fun-magic-tag*)) ; else ditto
140     walker-info))
141 (defun bogo-fun-to-walker-info (bogo-fun)
142   (declare (type function bogo-fun))
143   (funcall bogo-fun *bogo-fun-magic-tag*))
144
145 (defun with-augmented-environment-internal (env funs macros)
146   ;; Note: In order to record the correct function definition, we
147   ;; would have to create an interpreted closure, but the
148   ;; WITH-NEW-DEFINITION macro down below makes no distinction between
149   ;; FLET and LABELS, so we have no idea what to use for the
150   ;; environment. So we just blow it off, 'cause anything real we do
151   ;; would be wrong. But we still have to make an entry so we can tell
152   ;; functions from macros.
153   (let ((lexenv (sb!kernel::coerce-to-lexenv env)))
154     (sb!c::make-lexenv
155      :default lexenv
156      :vars (when (eql (caar macros) *key-to-walker-environment*)
157              (copy-tree (remove :lexical-var (fourth (cadar macros))
158                                 :key #'cadr)))
159      :funs (append (mapcar (lambda (f)
160                              (cons (car f)
161                                    (sb!c::make-functional :lexenv lexenv)))
162                            funs)
163                    (mapcar (lambda (m)
164                              (list* (car m)
165                                     'sb!c::macro
166                                     (if (eq (car m)
167                                             *key-to-walker-environment*)
168                                         (walker-info-to-bogo-fun (cadr m))
169                                         (coerce (cadr m) 'function))))
170                            macros)))))
171
172 (defun environment-function (env fn)
173   (when env
174     (let ((entry (assoc fn (sb!c::lexenv-funs env) :test #'equal)))
175       (and entry
176            (sb!c::functional-p (cdr entry))
177            (cdr entry)))))
178
179 (defun environment-macro (env macro)
180   (when env
181     (let ((entry (assoc macro (sb!c::lexenv-funs env) :test #'eq)))
182       (and entry
183            (eq (cadr entry) 'sb!c::macro)
184            (if (eq macro *key-to-walker-environment*)
185                (values (bogo-fun-to-walker-info (cddr entry)))
186                (values (function-lambda-expression (cddr entry))))))))
187 \f
188 ;;;; other environment hacking, not so SBCL-specific as the
189 ;;;; environment hacking in the previous section
190
191 (defmacro with-new-definition-in-environment
192           ((new-env old-env macrolet/flet/labels-form) &body body)
193   (let ((functions (make-symbol "Functions"))
194         (macros (make-symbol "Macros")))
195     `(let ((,functions ())
196            (,macros ()))
197        (ecase (car ,macrolet/flet/labels-form)
198          ((flet labels)
199           (dolist (fn (cadr ,macrolet/flet/labels-form))
200             (push fn ,functions)))
201          ((macrolet)
202           (dolist (mac (cadr ,macrolet/flet/labels-form))
203             (push (list (car mac)
204                         (convert-macro-to-lambda (cadr mac)
205                                                  (cddr mac)
206                                                  ,old-env
207                                                  (string (car mac))))
208                   ,macros))))
209        (with-augmented-environment
210               (,new-env ,old-env :functions ,functions :macros ,macros)
211          ,@body))))
212
213 (defun convert-macro-to-lambda (llist body env &optional (name "dummy macro"))
214   (let ((gensym (make-symbol name)))
215     (eval-in-lexenv `(defmacro ,gensym ,llist ,@body)
216                     (sb!c::make-restricted-lexenv env))
217     (macro-function gensym)))
218 \f
219 ;;;; the actual walker
220
221 ;;; As the walker walks over the code, it communicates information to
222 ;;; itself about the walk. This information includes the walk
223 ;;; function, variable bindings, declarations in effect etc. This
224 ;;; information is inherently lexical, so the walker passes it around
225 ;;; in the actual environment the walker passes to macroexpansion
226 ;;; functions. This is what makes the NESTED-WALK-FORM facility work
227 ;;; properly.
228 (defmacro walker-environment-bind ((var env &rest key-args)
229                                       &body body)
230   `(with-augmented-environment
231      (,var ,env :macros (walker-environment-bind-1 ,env ,.key-args))
232      .,body))
233
234 (defvar *key-to-walker-environment* (gensym))
235
236 (defun env-lock (env)
237   (environment-macro env *key-to-walker-environment*))
238
239 (defun walker-environment-bind-1 (env &key (walk-function nil wfnp)
240                                            (walk-form nil wfop)
241                                            (declarations nil decp)
242                                            (lexical-vars nil lexp))
243   (let ((lock (env-lock env)))
244     (list
245       (list *key-to-walker-environment*
246             (list (if wfnp walk-function (car lock))
247                   (if wfop walk-form     (cadr lock))
248                   (if decp declarations  (caddr lock))
249                   (if lexp lexical-vars  (cadddr lock)))))))
250
251 (defun env-walk-function (env)
252   (car (env-lock env)))
253
254 (defun env-walk-form (env)
255   (cadr (env-lock env)))
256
257 (defun env-declarations (env)
258   (caddr (env-lock env)))
259
260 (defun env-lexical-variables (env)
261   (cadddr (env-lock env)))
262
263 (defun note-declaration (declaration env)
264   (push declaration (caddr (env-lock env))))
265
266 (defun note-lexical-binding (thing env)
267   (push (list thing :lexical-var) (cadddr (env-lock env))))
268
269 (defun var-lexical-p (var env)
270   (let ((entry (member var (env-lexical-variables env) :key #'car)))
271     (when (eq (cadar entry) :lexical-var)
272       entry)))
273
274 (defun variable-symbol-macro-p (var env)
275   (let ((entry (member var (env-lexical-variables env) :key #'car)))
276     (when (eq (cadar entry) 'sb!sys:macro)
277       entry)))
278
279 (defvar *var-declarations* '(special))
280
281 (defun var-declaration (declaration var env)
282   (if (not (member declaration *var-declarations*))
283       (error "~S is not a recognized variable declaration." declaration)
284       (let ((id (or (var-lexical-p var env) var)))
285         (dolist (decl (env-declarations env))
286           (when (and (eq (car decl) declaration)
287                      (eq (cadr decl) id))
288             (return decl))))))
289
290 (defun var-special-p (var env)
291   (or (not (null (var-declaration 'special var env)))
292       (var-globally-special-p var)))
293
294 (defun var-globally-special-p (symbol)
295   (eq (info :variable :kind symbol) :special))
296 \f
297 ;;;; handling of special forms
298
299 ;;; Here are some comments from the original PCL on the difficulty of
300 ;;; doing this portably across different CLTL1 implementations. This
301 ;;; is no longer directly relevant because this code now only runs on
302 ;;; SBCL, but the comments are retained for culture: they might help
303 ;;; explain some of the design decisions which were made in the code.
304 ;;;
305 ;;; and I quote...
306 ;;;
307 ;;;     The set of special forms is purposely kept very small because
308 ;;;     any program analyzing program (read code walker) must have
309 ;;;     special knowledge about every type of special form. Such a
310 ;;;     program needs no special knowledge about macros...
311 ;;;
312 ;;; So all we have to do here is a define a way to store and retrieve
313 ;;; templates which describe how to walk the 24 special forms and we
314 ;;; are all set...
315 ;;;
316 ;;; Well, its a nice concept, and I have to admit to being naive
317 ;;; enough that I believed it for a while, but not everyone takes
318 ;;; having only 24 special forms as seriously as might be nice. There
319 ;;; are (at least) 3 ways to lose:
320 ;;
321 ;;;   1 - Implementation x implements a Common Lisp special form as 
322 ;;;       a macro which expands into a special form which:
323 ;;;      - Is a common lisp special form (not likely)
324 ;;;      - Is not a common lisp special form (on the 3600 IF --> COND).
325 ;;;
326 ;;;     * We can save ourselves from this case (second subcase really)
327 ;;;       by checking to see whether there is a template defined for 
328 ;;;       something before we check to see whether we can macroexpand it.
329 ;;;
330 ;;;   2 - Implementation x implements a Common Lisp macro as a special form.
331 ;;;
332 ;;;     * This is a screw, but not so bad, we save ourselves from it by
333 ;;;       defining extra templates for the macros which are *likely* to
334 ;;;       be implemented as special forms. [Note: As of sbcl-0.6.9, these
335 ;;;       extra templates have been deleted, since this is not a problem
336 ;;;       in SBCL and we no longer try to make this walker portable
337 ;;;       across other possibly-broken CL implementations.]
338 ;;;
339 ;;;   3 - Implementation x has a special form which is not on the list of
340 ;;;       Common Lisp special forms.
341 ;;;
342 ;;;     * This is a bad sort of a screw and happens more than I would 
343 ;;;       like to think, especially in the implementations which provide 
344 ;;;       more than just Common Lisp (3600, Xerox etc.).
345 ;;;       The fix is not terribly satisfactory, but will have to do for
346 ;;;       now. There is a hook in get walker-template which can get a
347 ;;;       template from the implementation's own walker. That template
348 ;;;       has to be converted, and so it may be that the right way to do
349 ;;;       this would actually be for that implementation to provide an
350 ;;;       interface to its walker which looks like the interface to this
351 ;;;       walker.
352
353 (defmacro get-walker-template-internal (x)
354   `(get ,x 'walker-template))
355
356 (defmacro define-walker-template (name
357                                   &optional (template '(nil repeat (eval))))
358   `(eval-when (:load-toplevel :execute)
359      (setf (get-walker-template-internal ',name) ',template)))
360
361 (defun get-walker-template (x context)
362   (cond ((symbolp x)
363          (get-walker-template-internal x))
364         ((and (listp x) (eq (car x) 'lambda))
365          '(lambda repeat (eval)))
366         (t
367          ;; FIXME: In an ideal world we would do something similar to
368          ;; COMPILER-ERROR here, replacing the form within the walker
369          ;; with an error-signalling form. This is slightly less
370          ;; pretty, but informative non the less. Best is the enemy of
371          ;; good, etc.
372          (error "Illegal function call in method body:~%  ~S"
373                 context))))
374 \f
375 ;;;; the actual templates
376
377 ;;; ANSI special forms
378 (define-walker-template block                (nil nil repeat (eval)))
379 (define-walker-template catch                (nil eval repeat (eval)))
380 (define-walker-template declare              walk-unexpected-declare)
381 (define-walker-template eval-when            (nil quote repeat (eval)))
382 (define-walker-template flet                 walk-flet)
383 (define-walker-template function             (nil call))
384 (define-walker-template go                   (nil quote))
385 (define-walker-template if                   walk-if)
386 (define-walker-template labels               walk-labels)
387 (define-walker-template lambda               walk-lambda)
388 (define-walker-template let                  walk-let)
389 (define-walker-template let*                 walk-let*)
390 (define-walker-template locally              walk-locally)
391 (define-walker-template macrolet             walk-macrolet)
392 (define-walker-template multiple-value-call  (nil eval repeat (eval)))
393 (define-walker-template multiple-value-prog1 (nil return repeat (eval)))
394 (define-walker-template multiple-value-setq  walk-multiple-value-setq)
395 (define-walker-template multiple-value-bind  walk-multiple-value-bind)
396 (define-walker-template progn                (nil repeat (eval)))
397 (define-walker-template progv                (nil eval eval repeat (eval)))
398 (define-walker-template quote                (nil quote))
399 (define-walker-template return-from          (nil quote repeat (return)))
400 (define-walker-template setq                 walk-setq)
401 (define-walker-template symbol-macrolet      walk-symbol-macrolet)
402 (define-walker-template tagbody              walk-tagbody)
403 (define-walker-template the                  (nil quote eval))
404 (define-walker-template throw                (nil eval eval))
405 (define-walker-template unwind-protect       (nil return repeat (eval)))
406
407 ;;; SBCL-only special forms
408 (define-walker-template sb!ext:truly-the     (nil quote eval))
409 ;;; FIXME: maybe we don't need this one any more, given that
410 ;;; NAMED-LAMBDA now expands into (FUNCTION (NAMED-LAMBDA ...))?
411 (define-walker-template named-lambda         walk-named-lambda)
412 \f
413 (defvar *walk-form-expand-macros-p* nil)
414
415 (defun walk-form (form
416                   &optional environment
417                             (walk-function
418                              (lambda (subform context env)
419                                (declare (ignore context env))
420                                subform)))
421   (walker-environment-bind (new-env environment :walk-function walk-function)
422     (walk-form-internal form :eval new-env)))
423
424 ;;; WALK-FORM-INTERNAL is the main driving function for the code
425 ;;; walker. It takes a form and the current context and walks the form
426 ;;; calling itself or the appropriate template recursively.
427 ;;;
428 ;;;   "It is recommended that a program-analyzing-program process a form
429 ;;;    that is a list whose car is a symbol as follows:
430 ;;;
431 ;;;     1. If the program has particular knowledge about the symbol,
432 ;;;        process the form using special-purpose code. All of the
433 ;;;        standard special forms should fall into this category.
434 ;;;     2. Otherwise, if MACRO-FUNCTION is true of the symbol apply
435 ;;;        either MACROEXPAND or MACROEXPAND-1 and start over.
436 ;;;     3. Otherwise, assume it is a function call. "
437 (defun walk-form-internal (form context env)
438   ;; First apply the walk-function to perform whatever translation
439   ;; the user wants to this form. If the second value returned
440   ;; by walk-function is T then we don't recurse...
441   (catch form
442     (multiple-value-bind (newform walk-no-more-p)
443         (funcall (env-walk-function env) form context env)
444       (catch newform
445         (cond
446          (walk-no-more-p newform)
447          ((not (eq form newform))
448           (walk-form-internal newform context env))
449          ((not (consp newform))
450           (let ((symmac (car (variable-symbol-macro-p newform env))))
451             (if symmac
452                 (let ((newnewform (walk-form-internal (cddr symmac)
453                                                       context
454                                                       env)))
455                   (if (eq newnewform (cddr symmac))
456                       (if *walk-form-expand-macros-p* newnewform newform)
457                       newnewform))
458                 newform)))
459          (t
460           (let* ((fn (car newform))
461                  (template (get-walker-template fn newform)))
462             (if template
463                 (if (symbolp template)
464                     (funcall template newform context env)
465                     (walk-template newform template context env))
466                 (multiple-value-bind (newnewform macrop)
467                     (walker-environment-bind
468                         (new-env env :walk-form newform)
469                       (sb-xc:macroexpand-1 newform new-env))
470                   (cond
471                    (macrop
472                     (let ((newnewnewform (walk-form-internal newnewform
473                                                              context
474                                                              env)))
475                       (if (eq newnewnewform newnewform)
476                           (if *walk-form-expand-macros-p* newnewform newform)
477                           newnewnewform)))
478                    ((and (symbolp fn)
479                          (not (fboundp fn))
480                          (special-operator-p fn))
481                     ;; This shouldn't happen, since this walker is now
482                     ;; maintained as part of SBCL, so it should know
483                     ;; about all the special forms that SBCL knows
484                     ;; about.
485                     (bug "unexpected special form ~S" fn))
486                    (t
487                     ;; Otherwise, walk the form as if it's just a
488                     ;; standard function call using a template for
489                     ;; standard function call.
490                     (walk-template
491                      newnewform '(call repeat (eval)) context env))))))))))))
492
493 (defun walk-template (form template context env)
494   (if (atom template)
495       (ecase template
496         ((eval function test effect return)
497          (walk-form-internal form :eval env))
498         ((quote nil) form)
499         (set
500           (walk-form-internal form :set env))
501         ((lambda call)
502          (cond ((legal-fun-name-p form)
503                 form)
504                (t (walk-form-internal form context env)))))
505       (case (car template)
506         (repeat
507           (walk-template-handle-repeat form
508                                        (cdr template)
509                                        ;; For the case where nothing
510                                        ;; happens after the repeat
511                                        ;; optimize away the call to
512                                        ;; LENGTH.
513                                        (if (null (cddr template))
514                                            ()
515                                            (nthcdr (- (length form)
516                                                       (length
517                                                         (cddr template)))
518                                                    form))
519                                        context
520                                        env))
521         (if
522           (walk-template form
523                          (if (if (listp (cadr template))
524                                  (eval (cadr template))
525                                  (funcall (cadr template) form))
526                              (caddr template)
527                              (cadddr template))
528                          context
529                          env))
530         (remote
531           (walk-template form (cadr template) context env))
532         (otherwise
533           (cond ((atom form) form)
534                 (t (recons form
535                            (walk-template
536                              (car form) (car template) context env)
537                            (walk-template
538                              (cdr form) (cdr template) context env))))))))
539
540 (defun walk-template-handle-repeat (form template stop-form context env)
541   (if (eq form stop-form)
542       (walk-template form (cdr template) context env)
543       (walk-template-handle-repeat-1 form
544                                      template
545                                      (car template)
546                                      stop-form
547                                      context
548                                      env)))
549
550 (defun walk-template-handle-repeat-1 (form template repeat-template
551                                            stop-form context env)
552   (cond ((null form) ())
553         ((eq form stop-form)
554          (if (null repeat-template)
555              (walk-template stop-form (cdr template) context env)
556              (error "while handling code walker REPEAT:
557                      ~%ran into STOP while still in REPEAT template")))
558         ((null repeat-template)
559          (walk-template-handle-repeat-1
560            form template (car template) stop-form context env))
561         (t
562          (recons form
563                  (walk-template (car form) (car repeat-template) context env)
564                  (walk-template-handle-repeat-1 (cdr form)
565                                                 template
566                                                 (cdr repeat-template)
567                                                 stop-form
568                                                 context
569                                                 env)))))
570
571 (defun walk-repeat-eval (form env)
572   (and form
573        (recons form
574                (walk-form-internal (car form) :eval env)
575                (walk-repeat-eval (cdr form) env))))
576
577 (defun recons (x car cdr)
578   (if (or (not (eq (car x) car))
579           (not (eq (cdr x) cdr)))
580       (cons car cdr)
581       x))
582
583 (defun relist (x &rest args)
584   (if (null args)
585       nil
586       (relist-internal x args nil)))
587
588 (defun relist* (x &rest args)
589   (relist-internal x args t))
590
591 (defun relist-internal (x args *p)
592   (if (null (cdr args))
593       (if *p
594           (car args)
595           (recons x (car args) nil))
596       (recons x
597               (car args)
598               (relist-internal (cdr x) (cdr args) *p))))
599 \f
600 ;;;; special walkers
601
602 (defun walk-declarations (body fn env
603                                &optional doc-string-p declarations old-body
604                                &aux (form (car body)) macrop new-form)
605   (cond ((and (stringp form)                    ;might be a doc string
606               (cdr body)                        ;isn't the returned value
607               (null doc-string-p)               ;no doc string yet
608               (null declarations))              ;no declarations yet
609          (recons body
610                  form
611                  (walk-declarations (cdr body) fn env t)))
612         ((and (listp form) (eq (car form) 'declare))
613          ;; We got ourselves a real live declaration. Record it, look
614          ;; for more.
615          (dolist (declaration (cdr form))
616            (let ((type (car declaration))
617                  (name (cadr declaration))
618                  (args (cddr declaration)))
619              (if (member type *var-declarations*)
620                  (note-declaration `(,type
621                                      ,(or (var-lexical-p name env) name)
622                                      ,.args)
623                                    env)
624                  (note-declaration declaration env))
625              (push declaration declarations)))
626          (recons body
627                  form
628                  (walk-declarations
629                    (cdr body) fn env doc-string-p declarations)))
630         ((and form
631               (listp form)
632               (null (get-walker-template (car form) form))
633               (progn
634                 (multiple-value-setq (new-form macrop)
635                                      (sb-xc:macroexpand-1 form env))
636                 macrop))
637          ;; This form was a call to a macro. Maybe it expanded
638          ;; into a declare?  Recurse to find out.
639          (walk-declarations (recons body new-form (cdr body))
640                             fn env doc-string-p declarations
641                             (or old-body body)))
642         (t
643          ;; Now that we have walked and recorded the declarations,
644          ;; call the function our caller provided to expand the body.
645          ;; We call that function rather than passing the real-body
646          ;; back, because we are RECONSING up the new body.
647          (funcall fn (or old-body body) env))))
648
649 (defun walk-unexpected-declare (form context env)
650   (declare (ignore context env))
651   (warn "encountered ~S ~_in a place where a DECLARE was not expected"
652         form)
653   form)
654
655 (defun walk-arglist (arglist context env &optional (destructuringp nil)
656                                          &aux arg)
657   (cond ((null arglist) ())
658         ((symbolp (setq arg (car arglist)))
659          (or (member arg lambda-list-keywords)
660              (note-lexical-binding arg env))
661          (recons arglist
662                  arg
663                  (walk-arglist (cdr arglist)
664                                context
665                                env
666                                (and destructuringp
667                                     (not (member arg
668                                                  lambda-list-keywords))))))
669         ((consp arg)
670          (prog1 (recons arglist
671                         (if destructuringp
672                             (walk-arglist arg context env destructuringp)
673                             (relist* arg
674                                      (car arg)
675                                      (walk-form-internal (cadr arg) :eval env)
676                                      (cddr arg)))
677                         (walk-arglist (cdr arglist) context env nil))
678                 (if (symbolp (car arg))
679                     (note-lexical-binding (car arg) env)
680                     (note-lexical-binding (cadar arg) env))
681                 (or (null (cddr arg))
682                     (not (symbolp (caddr arg)))
683                     (note-lexical-binding (caddr arg) env))))
684           (t
685            (error "can't understand something in the arglist ~S" arglist))))
686
687 (defun walk-let (form context env)
688   (walk-let/let* form context env nil))
689
690 (defun walk-let* (form context env)
691   (walk-let/let* form context env t))
692
693 (defun walk-let/let* (form context old-env sequentialp)
694   (walker-environment-bind (new-env old-env)
695     (let* ((let/let* (car form))
696            (bindings (cadr form))
697            (body (cddr form))
698            (walked-bindings
699              (walk-bindings-1 bindings
700                               old-env
701                               new-env
702                               context
703                               sequentialp))
704            (walked-body
705              (walk-declarations body #'walk-repeat-eval new-env)))
706       (relist*
707         form let/let* walked-bindings walked-body))))
708
709 (defun walk-locally (form context env)
710   (declare (ignore context))
711   (let* ((locally (car form))
712          (body (cdr form))
713          (walked-body
714           (walk-declarations body #'walk-repeat-eval env)))
715     (relist*
716      form locally walked-body)))
717
718 (defun walk-multiple-value-setq (form context env)
719   (let ((vars (cadr form)))
720     (if (some (lambda (var)
721                 (variable-symbol-macro-p var env))
722               vars)
723         (let* ((temps (mapcar (lambda (var)
724                                 (declare (ignore var))
725                                 (gensym))
726                               vars))
727                (sets (mapcar (lambda (var temp) `(setq ,var ,temp))
728                              vars
729                              temps))
730                (expanded `(multiple-value-bind ,temps ,(caddr form)
731                              ,@sets))
732                (walked (walk-form-internal expanded context env)))
733           (if (eq walked expanded)
734               form
735               walked))
736         (walk-template form '(nil (repeat (set)) eval) context env))))
737
738 (defun walk-multiple-value-bind (form context old-env)
739   (walker-environment-bind (new-env old-env)
740     (let* ((mvb (car form))
741            (bindings (cadr form))
742            (mv-form (walk-template (caddr form) 'eval context old-env))
743            (body (cdddr form))
744            walked-bindings
745            (walked-body
746              (walk-declarations
747                body
748                (lambda (real-body real-env)
749                  (setq walked-bindings
750                        (walk-bindings-1 bindings
751                                         old-env
752                                         new-env
753                                         context
754                                         nil))
755                  (walk-repeat-eval real-body real-env))
756                new-env)))
757       (relist* form mvb walked-bindings mv-form walked-body))))
758
759 (defun walk-bindings-1 (bindings old-env new-env context sequentialp)
760   (and bindings
761        (let ((binding (car bindings)))
762          (recons bindings
763                  (if (symbolp binding)
764                      (prog1 binding
765                             (note-lexical-binding binding new-env))
766                      (prog1 (relist* binding
767                                      (car binding)
768                                      (walk-form-internal (cadr binding)
769                                                          context
770                                                          (if sequentialp
771                                                              new-env
772                                                              old-env))
773                                      ;; Save cddr for DO/DO*; it is
774                                      ;; the next value form. Don't
775                                      ;; walk it now, though.
776                                      (cddr binding))    
777                             (note-lexical-binding (car binding) new-env)))
778                  (walk-bindings-1 (cdr bindings)
779                                   old-env
780                                   new-env
781                                   context
782                                   sequentialp)))))
783
784 (defun walk-bindings-2 (bindings walked-bindings context env)
785   (and bindings
786        (let ((binding (car bindings))
787              (walked-binding (car walked-bindings)))
788          (recons bindings
789                  (if (symbolp binding)
790                      binding
791                      (relist* binding
792                               (car walked-binding)
793                               (cadr walked-binding)
794                               (walk-template (cddr binding)
795                                              '(eval)
796                                              context
797                                              env)))
798                  (walk-bindings-2 (cdr bindings)
799                                   (cdr walked-bindings)
800                                   context
801                                   env)))))
802
803 (defun walk-lambda (form context old-env)
804   (walker-environment-bind (new-env old-env)
805     (let* ((arglist (cadr form))
806            (body (cddr form))
807            (walked-arglist (walk-arglist arglist context new-env))
808            (walked-body
809              (walk-declarations body #'walk-repeat-eval new-env)))
810       (relist* form
811                (car form)
812                walked-arglist
813                walked-body))))
814
815 (defun walk-named-lambda (form context old-env)
816   (walker-environment-bind (new-env old-env)
817     (let* ((name (second form))
818            (arglist (third form))
819            (body (cdddr form))
820            (walked-arglist (walk-arglist arglist context new-env))
821            (walked-body
822              (walk-declarations body #'walk-repeat-eval new-env)))
823       (relist* form
824                (car form)
825                name
826                walked-arglist
827                walked-body))))
828
829 (defun walk-setq (form context env)
830   (if (cdddr form)
831       (let* ((expanded (let ((rforms nil)
832                              (tail (cdr form)))
833                          (loop (when (null tail) (return (nreverse rforms)))
834                                (let ((var (pop tail)) (val (pop tail)))
835                                  (push `(setq ,var ,val) rforms)))))
836              (walked (walk-repeat-eval expanded env)))
837         (if (eq expanded walked)
838             form
839             `(progn ,@walked)))
840       (let* ((var (cadr form))
841              (val (caddr form))
842              (symmac (car (variable-symbol-macro-p var env))))
843         (if symmac
844             (let* ((expanded `(setf ,(cddr symmac) ,val))
845                    (walked (walk-form-internal expanded context env)))
846               (if (eq expanded walked)
847                   form
848                   walked))
849             (relist form 'setq
850                     (walk-form-internal var :set env)
851                     (walk-form-internal val :eval env))))))
852
853 (defun walk-symbol-macrolet (form context old-env)
854   (declare (ignore context))
855   (let* ((bindings (cadr form))
856          (body (cddr form)))
857     (walker-environment-bind
858         (new-env old-env
859                  :lexical-vars
860                  (append (mapcar (lambda (binding)
861                                    `(,(car binding)
862                                      sb!sys:macro . ,(cadr binding)))
863                                  bindings)
864                          (env-lexical-variables old-env)))
865       (relist* form 'symbol-macrolet bindings
866                (walk-declarations body #'walk-repeat-eval new-env)))))
867
868 (defun walk-tagbody (form context env)
869   (recons form (car form) (walk-tagbody-1 (cdr form) context env)))
870
871 (defun walk-tagbody-1 (form context env)
872   (and form
873        (recons form
874                (walk-form-internal (car form)
875                                    (if (symbolp (car form)) 'quote context)
876                                    env)
877                (walk-tagbody-1 (cdr form) context env))))
878
879 (defun walk-macrolet (form context old-env)
880   (walker-environment-bind (macro-env
881                             nil
882                             :walk-function (env-walk-function old-env))
883     (labels ((walk-definitions (definitions)
884                (and definitions
885                     (let ((definition (car definitions)))
886                       (recons definitions
887                               (relist* definition
888                                        (car definition)
889                                        (walk-arglist (cadr definition)
890                                                      context
891                                                      macro-env
892                                                      t)
893                                        (walk-declarations (cddr definition)
894                                                           #'walk-repeat-eval
895                                                           macro-env))
896                               (walk-definitions (cdr definitions)))))))
897       (with-new-definition-in-environment (new-env old-env form)
898         (relist* form
899                  (car form)
900                  (walk-definitions (cadr form))
901                  (walk-declarations (cddr form)
902                                     #'walk-repeat-eval
903                                     new-env))))))
904
905 (defun walk-flet (form context old-env)
906   (labels ((walk-definitions (definitions)
907              (if (null definitions)
908                  ()
909                  (recons definitions
910                          (walk-lambda (car definitions) context old-env)
911                          (walk-definitions (cdr definitions))))))
912     (recons form
913             (car form)
914             (recons (cdr form)
915                     (walk-definitions (cadr form))
916                     (with-new-definition-in-environment (new-env old-env form)
917                       (walk-declarations (cddr form)
918                                          #'walk-repeat-eval
919                                          new-env))))))
920
921 (defun walk-labels (form context old-env)
922   (with-new-definition-in-environment (new-env old-env form)
923     (labels ((walk-definitions (definitions)
924                (if (null definitions)
925                    ()
926                    (recons definitions
927                            (walk-lambda (car definitions) context new-env)
928                            (walk-definitions (cdr definitions))))))
929       (recons form
930               (car form)
931               (recons (cdr form)
932                       (walk-definitions (cadr form))
933                       (walk-declarations (cddr form)
934                                          #'walk-repeat-eval
935                                          new-env))))))
936
937 (defun walk-if (form context env)
938   (destructuring-bind (if predicate arm1 &optional arm2) form
939     (declare (ignore if)) ; should be 'IF
940     (relist form
941             'if
942             (walk-form-internal predicate context env)
943             (walk-form-internal arm1 context env)
944             (walk-form-internal arm2 context env))))
945 \f
946 ;;;; examples
947
948 #|
949 ;;; Here are some examples of the kinds of things you should be able
950 ;;; to do with your implementation of the macroexpansion environment
951 ;;; hacking mechanism.
952 ;;;
953 ;;; WITH-LEXICAL-MACROS is kind of like MACROLET, but it only takes
954 ;;; names of the macros and actual macroexpansion functions to use to
955 ;;; macroexpand them. The win about that is that for macros which want
956 ;;; to wrap several MACROLETs around their body, they can do this but
957 ;;; have the macroexpansion functions be compiled. See the WITH-RPUSH
958 ;;; example.
959 ;;;
960 ;;; If the implementation had a special way of communicating the
961 ;;; augmented environment back to the evaluator that would be totally
962 ;;; great. It would mean that we could just augment the environment
963 ;;; then pass control back to the implementations own compiler or
964 ;;; interpreter. We wouldn't have to call the actual walker. That
965 ;;; would make this much faster. Since the principal client of this is
966 ;;; defmethod it would make compiling defmethods faster and that would
967 ;;; certainly be a win.
968
969 (defmacro with-lexical-macros (macros &body body &environment old-env)
970   (with-augmented-environment (new-env old-env :macros macros)
971     (walk-form (cons 'progn body) :environment new-env)))
972
973 (defun expand-rpush (form env)
974   (declare (ignore env))
975   `(push ,(caddr form) ,(cadr form)))
976
977 (defmacro with-rpush (&body body)
978   `(with-lexical-macros ,(list (list 'rpush #'expand-rpush)) ,@body))
979 |#