(easy-mmode-define-navigation): Put `definition-name' properties on the
[emacs.git] / lisp / emacs-lisp / byte-opt.el
blobb46366a94b97d66d06226cec93c65be7de334d6c
1 ;;; byte-opt.el --- the optimization passes of the emacs-lisp byte compiler
3 ;; Copyright (C) 1991, 1994, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005 Free Software Foundation, Inc.
6 ;; Author: Jamie Zawinski <jwz@lucid.com>
7 ;; Hallvard Furuseth <hbf@ulrik.uio.no>
8 ;; Maintainer: FSF
9 ;; Keywords: internal
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
28 ;;; Commentary:
30 ;; ========================================================================
31 ;; "No matter how hard you try, you can't make a racehorse out of a pig.
32 ;; You can, however, make a faster pig."
34 ;; Or, to put it another way, the emacs byte compiler is a VW Bug. This code
35 ;; makes it be a VW Bug with fuel injection and a turbocharger... You're
36 ;; still not going to make it go faster than 70 mph, but it might be easier
37 ;; to get it there.
40 ;; TO DO:
42 ;; (apply (lambda (x &rest y) ...) 1 (foo))
44 ;; maintain a list of functions known not to access any global variables
45 ;; (actually, give them a 'dynamically-safe property) and then
46 ;; (let ( v1 v2 ... vM vN ) <...dynamically-safe...> ) ==>
47 ;; (let ( v1 v2 ... vM ) vN <...dynamically-safe...> )
48 ;; by recursing on this, we might be able to eliminate the entire let.
49 ;; However certain variables should never have their bindings optimized
50 ;; away, because they affect everything.
51 ;; (put 'debug-on-error 'binding-is-magic t)
52 ;; (put 'debug-on-abort 'binding-is-magic t)
53 ;; (put 'debug-on-next-call 'binding-is-magic t)
54 ;; (put 'inhibit-quit 'binding-is-magic t)
55 ;; (put 'quit-flag 'binding-is-magic t)
56 ;; (put 't 'binding-is-magic t)
57 ;; (put 'nil 'binding-is-magic t)
58 ;; possibly also
59 ;; (put 'gc-cons-threshold 'binding-is-magic t)
60 ;; (put 'track-mouse 'binding-is-magic t)
61 ;; others?
63 ;; Simple defsubsts often produce forms like
64 ;; (let ((v1 (f1)) (v2 (f2)) ...)
65 ;; (FN v1 v2 ...))
66 ;; It would be nice if we could optimize this to
67 ;; (FN (f1) (f2) ...)
68 ;; but we can't unless FN is dynamically-safe (it might be dynamically
69 ;; referring to the bindings that the lambda arglist established.)
70 ;; One of the uncountable lossages introduced by dynamic scope...
72 ;; Maybe there should be a control-structure that says "turn on
73 ;; fast-and-loose type-assumptive optimizations here." Then when
74 ;; we see a form like (car foo) we can from then on assume that
75 ;; the variable foo is of type cons, and optimize based on that.
76 ;; But, this won't win much because of (you guessed it) dynamic
77 ;; scope. Anything down the stack could change the value.
78 ;; (Another reason it doesn't work is that it is perfectly valid
79 ;; to call car with a null argument.) A better approach might
80 ;; be to allow type-specification of the form
81 ;; (put 'foo 'arg-types '(float (list integer) dynamic))
82 ;; (put 'foo 'result-type 'bool)
83 ;; It should be possible to have these types checked to a certain
84 ;; degree.
86 ;; collapse common subexpressions
88 ;; It would be nice if redundant sequences could be factored out as well,
89 ;; when they are known to have no side-effects:
90 ;; (list (+ a b c) (+ a b c)) --> a b add c add dup list-2
91 ;; but beware of traps like
92 ;; (cons (list x y) (list x y))
94 ;; Tail-recursion elimination is not really possible in Emacs Lisp.
95 ;; Tail-recursion elimination is almost always impossible when all variables
96 ;; have dynamic scope, but given that the "return" byteop requires the
97 ;; binding stack to be empty (rather than emptying it itself), there can be
98 ;; no truly tail-recursive Emacs Lisp functions that take any arguments or
99 ;; make any bindings.
101 ;; Here is an example of an Emacs Lisp function which could safely be
102 ;; byte-compiled tail-recursively:
104 ;; (defun tail-map (fn list)
105 ;; (cond (list
106 ;; (funcall fn (car list))
107 ;; (tail-map fn (cdr list)))))
109 ;; However, if there was even a single let-binding around the COND,
110 ;; it could not be byte-compiled, because there would be an "unbind"
111 ;; byte-op between the final "call" and "return." Adding a
112 ;; Bunbind_all byteop would fix this.
114 ;; (defun foo (x y z) ... (foo a b c))
115 ;; ... (const foo) (varref a) (varref b) (varref c) (call 3) END: (return)
116 ;; ... (varref a) (varbind x) (varref b) (varbind y) (varref c) (varbind z) (goto 0) END: (unbind-all) (return)
117 ;; ... (varref a) (varset x) (varref b) (varset y) (varref c) (varset z) (goto 0) END: (return)
119 ;; this also can be considered tail recursion:
121 ;; ... (const foo) (varref a) (call 1) (goto X) ... X: (return)
122 ;; could generalize this by doing the optimization
123 ;; (goto X) ... X: (return) --> (return)
125 ;; But this doesn't solve all of the problems: although by doing tail-
126 ;; recursion elimination in this way, the call-stack does not grow, the
127 ;; binding-stack would grow with each recursive step, and would eventually
128 ;; overflow. I don't believe there is any way around this without lexical
129 ;; scope.
131 ;; Wouldn't it be nice if Emacs Lisp had lexical scope.
133 ;; Idea: the form (lexical-scope) in a file means that the file may be
134 ;; compiled lexically. This proclamation is file-local. Then, within
135 ;; that file, "let" would establish lexical bindings, and "let-dynamic"
136 ;; would do things the old way. (Or we could use CL "declare" forms.)
137 ;; We'd have to notice defvars and defconsts, since those variables should
138 ;; always be dynamic, and attempting to do a lexical binding of them
139 ;; should simply do a dynamic binding instead.
140 ;; But! We need to know about variables that were not necessarily defvarred
141 ;; in the file being compiled (doing a boundp check isn't good enough.)
142 ;; Fdefvar() would have to be modified to add something to the plist.
144 ;; A major disadvantage of this scheme is that the interpreter and compiler
145 ;; would have different semantics for files compiled with (dynamic-scope).
146 ;; Since this would be a file-local optimization, there would be no way to
147 ;; modify the interpreter to obey this (unless the loader was hacked
148 ;; in some grody way, but that's a really bad idea.)
150 ;; Other things to consider:
152 ;; ;; Associative math should recognize subcalls to identical function:
153 ;; (disassemble (lambda (x) (+ (+ (foo) 1) (+ (bar) 2))))
154 ;; ;; This should generate the same as (1+ x) and (1- x)
156 ;; (disassemble (lambda (x) (cons (+ x 1) (- x 1))))
157 ;; ;; An awful lot of functions always return a non-nil value. If they're
158 ;; ;; error free also they may act as true-constants.
160 ;; (disassemble (lambda (x) (and (point) (foo))))
161 ;; ;; When
162 ;; ;; - all but one arguments to a function are constant
163 ;; ;; - the non-constant argument is an if-expression (cond-expression?)
164 ;; ;; then the outer function can be distributed. If the guarding
165 ;; ;; condition is side-effect-free [assignment-free] then the other
166 ;; ;; arguments may be any expressions. Since, however, the code size
167 ;; ;; can increase this way they should be "simple". Compare:
169 ;; (disassemble (lambda (x) (eq (if (point) 'a 'b) 'c)))
170 ;; (disassemble (lambda (x) (if (point) (eq 'a 'c) (eq 'b 'c))))
172 ;; ;; (car (cons A B)) -> (prog1 A B)
173 ;; (disassemble (lambda (x) (car (cons (foo) 42))))
175 ;; ;; (cdr (cons A B)) -> (progn A B)
176 ;; (disassemble (lambda (x) (cdr (cons 42 (foo)))))
178 ;; ;; (car (list A B ...)) -> (prog1 A B ...)
179 ;; (disassemble (lambda (x) (car (list (foo) 42 (bar)))))
181 ;; ;; (cdr (list A B ...)) -> (progn A (list B ...))
182 ;; (disassemble (lambda (x) (cdr (list 42 (foo) (bar)))))
185 ;;; Code:
187 (require 'bytecomp)
189 (defun byte-compile-log-lap-1 (format &rest args)
190 (if (aref byte-code-vector 0)
191 (error "The old version of the disassembler is loaded. Reload new-bytecomp as well"))
192 (byte-compile-log-1
193 (apply 'format format
194 (let (c a)
195 (mapcar (lambda (arg)
196 (if (not (consp arg))
197 (if (and (symbolp arg)
198 (string-match "^byte-" (symbol-name arg)))
199 (intern (substring (symbol-name arg) 5))
200 arg)
201 (if (integerp (setq c (car arg)))
202 (error "non-symbolic byte-op %s" c))
203 (if (eq c 'TAG)
204 (setq c arg)
205 (setq a (cond ((memq c byte-goto-ops)
206 (car (cdr (cdr arg))))
207 ((memq c byte-constref-ops)
208 (car (cdr arg)))
209 (t (cdr arg))))
210 (setq c (symbol-name c))
211 (if (string-match "^byte-." c)
212 (setq c (intern (substring c 5)))))
213 (if (eq c 'constant) (setq c 'const))
214 (if (and (eq (cdr arg) 0)
215 (not (memq c '(unbind call const))))
217 (format "(%s %s)" c a))))
218 args)))))
220 (defmacro byte-compile-log-lap (format-string &rest args)
221 `(and (memq byte-optimize-log '(t byte))
222 (byte-compile-log-lap-1 ,format-string ,@args)))
225 ;;; byte-compile optimizers to support inlining
227 (put 'inline 'byte-optimizer 'byte-optimize-inline-handler)
229 (defun byte-optimize-inline-handler (form)
230 "byte-optimize-handler for the `inline' special-form."
231 (cons 'progn
232 (mapcar
233 (lambda (sexp)
234 (let ((f (car-safe sexp)))
235 (if (and (symbolp f)
236 (or (cdr (assq f byte-compile-function-environment))
237 (not (or (not (fboundp f))
238 (cdr (assq f byte-compile-macro-environment))
239 (and (consp (setq f (symbol-function f)))
240 (eq (car f) 'macro))
241 (subrp f)))))
242 (byte-compile-inline-expand sexp)
243 sexp)))
244 (cdr form))))
247 ;; Splice the given lap code into the current instruction stream.
248 ;; If it has any labels in it, you're responsible for making sure there
249 ;; are no collisions, and that byte-compile-tag-number is reasonable
250 ;; after this is spliced in. The provided list is destroyed.
251 (defun byte-inline-lapcode (lap)
252 (setq byte-compile-output (nconc (nreverse lap) byte-compile-output)))
254 (defun byte-compile-inline-expand (form)
255 (let* ((name (car form))
256 (fn (or (cdr (assq name byte-compile-function-environment))
257 (and (fboundp name) (symbol-function name)))))
258 (if (null fn)
259 (progn
260 (byte-compile-warn "attempt to inline `%s' before it was defined"
261 name)
262 form)
263 ;; else
264 (when (and (consp fn) (eq (car fn) 'autoload))
265 (load (nth 1 fn))
266 (setq fn (or (and (fboundp name) (symbol-function name))
267 (cdr (assq name byte-compile-function-environment)))))
268 (if (and (consp fn) (eq (car fn) 'autoload))
269 (error "File `%s' didn't define `%s'" (nth 1 fn) name))
270 (if (and (symbolp fn) (not (eq fn t)))
271 (byte-compile-inline-expand (cons fn (cdr form)))
272 (if (byte-code-function-p fn)
273 (let (string)
274 (fetch-bytecode fn)
275 (setq string (aref fn 1))
276 ;; Isn't it an error for `string' not to be unibyte?? --stef
277 (if (fboundp 'string-as-unibyte)
278 (setq string (string-as-unibyte string)))
279 (cons `(lambda ,(aref fn 0)
280 (byte-code ,string ,(aref fn 2) ,(aref fn 3)))
281 (cdr form)))
282 (if (eq (car-safe fn) 'lambda)
283 (cons fn (cdr form))
284 ;; Give up on inlining.
285 form))))))
287 ;; ((lambda ...) ...)
288 (defun byte-compile-unfold-lambda (form &optional name)
289 (or name (setq name "anonymous lambda"))
290 (let ((lambda (car form))
291 (values (cdr form)))
292 (if (byte-code-function-p lambda)
293 (setq lambda (list 'lambda (aref lambda 0)
294 (list 'byte-code (aref lambda 1)
295 (aref lambda 2) (aref lambda 3)))))
296 (let ((arglist (nth 1 lambda))
297 (body (cdr (cdr lambda)))
298 optionalp restp
299 bindings)
300 (if (and (stringp (car body)) (cdr body))
301 (setq body (cdr body)))
302 (if (and (consp (car body)) (eq 'interactive (car (car body))))
303 (setq body (cdr body)))
304 (while arglist
305 (cond ((eq (car arglist) '&optional)
306 ;; ok, I'll let this slide because funcall_lambda() does...
307 ;; (if optionalp (error "multiple &optional keywords in %s" name))
308 (if restp (error "&optional found after &rest in %s" name))
309 (if (null (cdr arglist))
310 (error "nothing after &optional in %s" name))
311 (setq optionalp t))
312 ((eq (car arglist) '&rest)
313 ;; ...but it is by no stretch of the imagination a reasonable
314 ;; thing that funcall_lambda() allows (&rest x y) and
315 ;; (&rest x &optional y) in arglists.
316 (if (null (cdr arglist))
317 (error "nothing after &rest in %s" name))
318 (if (cdr (cdr arglist))
319 (error "multiple vars after &rest in %s" name))
320 (setq restp t))
321 (restp
322 (setq bindings (cons (list (car arglist)
323 (and values (cons 'list values)))
324 bindings)
325 values nil))
326 ((and (not optionalp) (null values))
327 (byte-compile-warn "attempt to open-code `%s' with too few arguments" name)
328 (setq arglist nil values 'too-few))
330 (setq bindings (cons (list (car arglist) (car values))
331 bindings)
332 values (cdr values))))
333 (setq arglist (cdr arglist)))
334 (if values
335 (progn
336 (or (eq values 'too-few)
337 (byte-compile-warn
338 "attempt to open-code `%s' with too many arguments" name))
339 form)
341 ;; The following leads to infinite recursion when loading a
342 ;; file containing `(defsubst f () (f))', and then trying to
343 ;; byte-compile that file.
344 ;(setq body (mapcar 'byte-optimize-form body)))
346 (let ((newform
347 (if bindings
348 (cons 'let (cons (nreverse bindings) body))
349 (cons 'progn body))))
350 (byte-compile-log " %s\t==>\t%s" form newform)
351 newform)))))
354 ;;; implementing source-level optimizers
356 (defun byte-optimize-form-code-walker (form for-effect)
358 ;; For normal function calls, We can just mapcar the optimizer the cdr. But
359 ;; we need to have special knowledge of the syntax of the special forms
360 ;; like let and defun (that's why they're special forms :-). (Actually,
361 ;; the important aspect is that they are subrs that don't evaluate all of
362 ;; their args.)
364 (let ((fn (car-safe form))
365 tmp)
366 (cond ((not (consp form))
367 (if (not (and for-effect
368 (or byte-compile-delete-errors
369 (not (symbolp form))
370 (eq form t))))
371 form))
372 ((eq fn 'quote)
373 (if (cdr (cdr form))
374 (byte-compile-warn "malformed quote form: `%s'"
375 (prin1-to-string form)))
376 ;; map (quote nil) to nil to simplify optimizer logic.
377 ;; map quoted constants to nil if for-effect (just because).
378 (and (nth 1 form)
379 (not for-effect)
380 form))
381 ((or (byte-code-function-p fn)
382 (eq 'lambda (car-safe fn)))
383 (byte-compile-unfold-lambda form))
384 ((memq fn '(let let*))
385 ;; recursively enter the optimizer for the bindings and body
386 ;; of a let or let*. This for depth-firstness: forms that
387 ;; are more deeply nested are optimized first.
388 (cons fn
389 (cons
390 (mapcar (lambda (binding)
391 (if (symbolp binding)
392 binding
393 (if (cdr (cdr binding))
394 (byte-compile-warn "malformed let binding: `%s'"
395 (prin1-to-string binding)))
396 (list (car binding)
397 (byte-optimize-form (nth 1 binding) nil))))
398 (nth 1 form))
399 (byte-optimize-body (cdr (cdr form)) for-effect))))
400 ((eq fn 'cond)
401 (cons fn
402 (mapcar (lambda (clause)
403 (if (consp clause)
404 (cons
405 (byte-optimize-form (car clause) nil)
406 (byte-optimize-body (cdr clause) for-effect))
407 (byte-compile-warn "malformed cond form: `%s'"
408 (prin1-to-string clause))
409 clause))
410 (cdr form))))
411 ((eq fn 'progn)
412 ;; as an extra added bonus, this simplifies (progn <x>) --> <x>
413 (if (cdr (cdr form))
414 (progn
415 (setq tmp (byte-optimize-body (cdr form) for-effect))
416 (if (cdr tmp) (cons 'progn tmp) (car tmp)))
417 (byte-optimize-form (nth 1 form) for-effect)))
418 ((eq fn 'prog1)
419 (if (cdr (cdr form))
420 (cons 'prog1
421 (cons (byte-optimize-form (nth 1 form) for-effect)
422 (byte-optimize-body (cdr (cdr form)) t)))
423 (byte-optimize-form (nth 1 form) for-effect)))
424 ((eq fn 'prog2)
425 (cons 'prog2
426 (cons (byte-optimize-form (nth 1 form) t)
427 (cons (byte-optimize-form (nth 2 form) for-effect)
428 (byte-optimize-body (cdr (cdr (cdr form))) t)))))
430 ((memq fn '(save-excursion save-restriction save-current-buffer))
431 ;; those subrs which have an implicit progn; it's not quite good
432 ;; enough to treat these like normal function calls.
433 ;; This can turn (save-excursion ...) into (save-excursion) which
434 ;; will be optimized away in the lap-optimize pass.
435 (cons fn (byte-optimize-body (cdr form) for-effect)))
437 ((eq fn 'with-output-to-temp-buffer)
438 ;; this is just like the above, except for the first argument.
439 (cons fn
440 (cons
441 (byte-optimize-form (nth 1 form) nil)
442 (byte-optimize-body (cdr (cdr form)) for-effect))))
444 ((eq fn 'if)
445 (when (< (length form) 3)
446 (byte-compile-warn "too few arguments for `if'"))
447 (cons fn
448 (cons (byte-optimize-form (nth 1 form) nil)
449 (cons
450 (byte-optimize-form (nth 2 form) for-effect)
451 (byte-optimize-body (nthcdr 3 form) for-effect)))))
453 ((memq fn '(and or)) ; remember, and/or are control structures.
454 ;; take forms off the back until we can't any more.
455 ;; In the future it could conceivably be a problem that the
456 ;; subexpressions of these forms are optimized in the reverse
457 ;; order, but it's ok for now.
458 (if for-effect
459 (let ((backwards (reverse (cdr form))))
460 (while (and backwards
461 (null (setcar backwards
462 (byte-optimize-form (car backwards)
463 for-effect))))
464 (setq backwards (cdr backwards)))
465 (if (and (cdr form) (null backwards))
466 (byte-compile-log
467 " all subforms of %s called for effect; deleted" form))
468 (and backwards
469 (cons fn (nreverse (mapcar 'byte-optimize-form backwards)))))
470 (cons fn (mapcar 'byte-optimize-form (cdr form)))))
472 ((eq fn 'interactive)
473 (byte-compile-warn "misplaced interactive spec: `%s'"
474 (prin1-to-string form))
475 nil)
477 ((memq fn '(defun defmacro function
478 condition-case save-window-excursion))
479 ;; These forms are compiled as constants or by breaking out
480 ;; all the subexpressions and compiling them separately.
481 form)
483 ((eq fn 'unwind-protect)
484 ;; the "protected" part of an unwind-protect is compiled (and thus
485 ;; optimized) as a top-level form, so don't do it here. But the
486 ;; non-protected part has the same for-effect status as the
487 ;; unwind-protect itself. (The protected part is always for effect,
488 ;; but that isn't handled properly yet.)
489 (cons fn
490 (cons (byte-optimize-form (nth 1 form) for-effect)
491 (cdr (cdr form)))))
493 ((eq fn 'catch)
494 ;; the body of a catch is compiled (and thus optimized) as a
495 ;; top-level form, so don't do it here. The tag is never
496 ;; for-effect. The body should have the same for-effect status
497 ;; as the catch form itself, but that isn't handled properly yet.
498 (cons fn
499 (cons (byte-optimize-form (nth 1 form) nil)
500 (cdr (cdr form)))))
502 ((eq fn 'ignore)
503 ;; Don't treat the args to `ignore' as being
504 ;; computed for effect. We want to avoid the warnings
505 ;; that might occur if they were treated that way.
506 ;; However, don't actually bother calling `ignore'.
507 `(prog1 nil . ,(mapcar 'byte-optimize-form (cdr form))))
509 ;; If optimization is on, this is the only place that macros are
510 ;; expanded. If optimization is off, then macroexpansion happens
511 ;; in byte-compile-form. Otherwise, the macros are already expanded
512 ;; by the time that is reached.
513 ((not (eq form
514 (setq form (macroexpand form
515 byte-compile-macro-environment))))
516 (byte-optimize-form form for-effect))
518 ;; Support compiler macros as in cl.el.
519 ((and (fboundp 'compiler-macroexpand)
520 (symbolp (car-safe form))
521 (get (car-safe form) 'cl-compiler-macro)
522 (not (eq form
523 (with-no-warnings
524 (setq form (compiler-macroexpand form))))))
525 (byte-optimize-form form for-effect))
527 ((not (symbolp fn))
528 (byte-compile-warn "`%s' is a malformed function"
529 (prin1-to-string fn))
530 form)
532 ((and for-effect (setq tmp (get fn 'side-effect-free))
533 (or byte-compile-delete-errors
534 (eq tmp 'error-free)
535 ;; Detect the expansion of (pop foo).
536 ;; There is no need to compile the call to `car' there.
537 (and (eq fn 'car)
538 (eq (car-safe (cadr form)) 'prog1)
539 (let ((var (cadr (cadr form)))
540 (last (nth 2 (cadr form))))
541 (and (symbolp var)
542 (null (nthcdr 3 (cadr form)))
543 (eq (car-safe last) 'setq)
544 (eq (cadr last) var)
545 (eq (car-safe (nth 2 last)) 'cdr)
546 (eq (cadr (nth 2 last)) var))))
547 (progn
548 (byte-compile-warn "value returned by `%s' is not used"
549 (prin1-to-string (car form)))
550 nil)))
551 (byte-compile-log " %s called for effect; deleted" fn)
552 ;; appending a nil here might not be necessary, but it can't hurt.
553 (byte-optimize-form
554 (cons 'progn (append (cdr form) '(nil))) t))
557 ;; Otherwise, no args can be considered to be for-effect,
558 ;; even if the called function is for-effect, because we
559 ;; don't know anything about that function.
560 (cons fn (mapcar 'byte-optimize-form (cdr form)))))))
563 (defun byte-optimize-form (form &optional for-effect)
564 "The source-level pass of the optimizer."
566 ;; First, optimize all sub-forms of this one.
567 (setq form (byte-optimize-form-code-walker form for-effect))
569 ;; after optimizing all subforms, optimize this form until it doesn't
570 ;; optimize any further. This means that some forms will be passed through
571 ;; the optimizer many times, but that's necessary to make the for-effect
572 ;; processing do as much as possible.
574 (let (opt new)
575 (if (and (consp form)
576 (symbolp (car form))
577 (or (and for-effect
578 ;; we don't have any of these yet, but we might.
579 (setq opt (get (car form) 'byte-for-effect-optimizer)))
580 (setq opt (get (car form) 'byte-optimizer)))
581 (not (eq form (setq new (funcall opt form)))))
582 (progn
583 ;; (if (equal form new) (error "bogus optimizer -- %s" opt))
584 (byte-compile-log " %s\t==>\t%s" form new)
585 (setq new (byte-optimize-form new for-effect))
586 new)
587 form)))
590 (defun byte-optimize-body (forms all-for-effect)
591 ;; optimize the cdr of a progn or implicit progn; all forms is a list of
592 ;; forms, all but the last of which are optimized with the assumption that
593 ;; they are being called for effect. the last is for-effect as well if
594 ;; all-for-effect is true. returns a new list of forms.
595 (let ((rest forms)
596 (result nil)
597 fe new)
598 (while rest
599 (setq fe (or all-for-effect (cdr rest)))
600 (setq new (and (car rest) (byte-optimize-form (car rest) fe)))
601 (if (or new (not fe))
602 (setq result (cons new result)))
603 (setq rest (cdr rest)))
604 (nreverse result)))
607 ;; some source-level optimizers
609 ;; when writing optimizers, be VERY careful that the optimizer returns
610 ;; something not EQ to its argument if and ONLY if it has made a change.
611 ;; This implies that you cannot simply destructively modify the list;
612 ;; you must return something not EQ to it if you make an optimization.
614 ;; It is now safe to optimize code such that it introduces new bindings.
616 ;; I'd like this to be a defsubst, but let's not be self-referential...
617 (defmacro byte-compile-trueconstp (form)
618 ;; Returns non-nil if FORM is a non-nil constant.
619 `(cond ((consp ,form) (eq (car ,form) 'quote))
620 ((not (symbolp ,form)))
621 ((eq ,form t))
622 ((keywordp ,form))))
624 ;; If the function is being called with constant numeric args,
625 ;; evaluate as much as possible at compile-time. This optimizer
626 ;; assumes that the function is associative, like + or *.
627 (defun byte-optimize-associative-math (form)
628 (let ((args nil)
629 (constants nil)
630 (rest (cdr form)))
631 (while rest
632 (if (numberp (car rest))
633 (setq constants (cons (car rest) constants))
634 (setq args (cons (car rest) args)))
635 (setq rest (cdr rest)))
636 (if (cdr constants)
637 (if args
638 (list (car form)
639 (apply (car form) constants)
640 (if (cdr args)
641 (cons (car form) (nreverse args))
642 (car args)))
643 (apply (car form) constants))
644 form)))
646 ;; If the function is being called with constant numeric args,
647 ;; evaluate as much as possible at compile-time. This optimizer
648 ;; assumes that the function satisfies
649 ;; (op x1 x2 ... xn) == (op ...(op (op x1 x2) x3) ...xn)
650 ;; like - and /.
651 (defun byte-optimize-nonassociative-math (form)
652 (if (or (not (numberp (car (cdr form))))
653 (not (numberp (car (cdr (cdr form))))))
654 form
655 (let ((constant (car (cdr form)))
656 (rest (cdr (cdr form))))
657 (while (numberp (car rest))
658 (setq constant (funcall (car form) constant (car rest))
659 rest (cdr rest)))
660 (if rest
661 (cons (car form) (cons constant rest))
662 constant))))
664 ;;(defun byte-optimize-associative-two-args-math (form)
665 ;; (setq form (byte-optimize-associative-math form))
666 ;; (if (consp form)
667 ;; (byte-optimize-two-args-left form)
668 ;; form))
670 ;;(defun byte-optimize-nonassociative-two-args-math (form)
671 ;; (setq form (byte-optimize-nonassociative-math form))
672 ;; (if (consp form)
673 ;; (byte-optimize-two-args-right form)
674 ;; form))
676 (defun byte-optimize-approx-equal (x y)
677 (<= (* (abs (- x y)) 100) (abs (+ x y))))
679 ;; Collect all the constants from FORM, after the STARTth arg,
680 ;; and apply FUN to them to make one argument at the end.
681 ;; For functions that can handle floats, that optimization
682 ;; can be incorrect because reordering can cause an overflow
683 ;; that would otherwise be avoided by encountering an arg that is a float.
684 ;; We avoid this problem by (1) not moving float constants and
685 ;; (2) not moving anything if it would cause an overflow.
686 (defun byte-optimize-delay-constants-math (form start fun)
687 ;; Merge all FORM's constants from number START, call FUN on them
688 ;; and put the result at the end.
689 (let ((rest (nthcdr (1- start) form))
690 (orig form)
691 ;; t means we must check for overflow.
692 (overflow (memq fun '(+ *))))
693 (while (cdr (setq rest (cdr rest)))
694 (if (integerp (car rest))
695 (let (constants)
696 (setq form (copy-sequence form)
697 rest (nthcdr (1- start) form))
698 (while (setq rest (cdr rest))
699 (cond ((integerp (car rest))
700 (setq constants (cons (car rest) constants))
701 (setcar rest nil))))
702 ;; If necessary, check now for overflow
703 ;; that might be caused by reordering.
704 (if (and overflow
705 ;; We have overflow if the result of doing the arithmetic
706 ;; on floats is not even close to the result
707 ;; of doing it on integers.
708 (not (byte-optimize-approx-equal
709 (apply fun (mapcar 'float constants))
710 (float (apply fun constants)))))
711 (setq form orig)
712 (setq form (nconc (delq nil form)
713 (list (apply fun (nreverse constants)))))))))
714 form))
716 (defun byte-optimize-plus (form)
717 (setq form (byte-optimize-delay-constants-math form 1 '+))
718 (if (memq 0 form) (setq form (delq 0 (copy-sequence form))))
719 ;;(setq form (byte-optimize-associative-two-args-math form))
720 (cond ((null (cdr form))
721 (condition-case ()
722 (eval form)
723 (error form)))
724 ;;; It is not safe to delete the function entirely
725 ;;; (actually, it would be safe if we know the sole arg
726 ;;; is not a marker).
727 ;;; ((null (cdr (cdr form))) (nth 1 form))
728 ((null (cddr form))
729 (if (numberp (nth 1 form))
730 (nth 1 form)
731 form))
732 ((and (null (nthcdr 3 form))
733 (or (memq (nth 1 form) '(1 -1))
734 (memq (nth 2 form) '(1 -1))))
735 ;; Optimize (+ x 1) into (1+ x) and (+ x -1) into (1- x).
736 (let ((integer
737 (if (memq (nth 1 form) '(1 -1))
738 (nth 1 form)
739 (nth 2 form)))
740 (other
741 (if (memq (nth 1 form) '(1 -1))
742 (nth 2 form)
743 (nth 1 form))))
744 (list (if (eq integer 1) '1+ '1-)
745 other)))
746 (t form)))
748 (defun byte-optimize-minus (form)
749 ;; Put constants at the end, except the last constant.
750 (setq form (byte-optimize-delay-constants-math form 2 '+))
751 ;; Now only first and last element can be a number.
752 (let ((last (car (reverse (nthcdr 3 form)))))
753 (cond ((eq 0 last)
754 ;; (- x y ... 0) --> (- x y ...)
755 (setq form (copy-sequence form))
756 (setcdr (cdr (cdr form)) (delq 0 (nthcdr 3 form))))
757 ((equal (nthcdr 2 form) '(1))
758 (setq form (list '1- (nth 1 form))))
759 ((equal (nthcdr 2 form) '(-1))
760 (setq form (list '1+ (nth 1 form))))
761 ;; If form is (- CONST foo... CONST), merge first and last.
762 ((and (numberp (nth 1 form))
763 (numberp last))
764 (setq form (nconc (list '- (- (nth 1 form) last) (nth 2 form))
765 (delq last (copy-sequence (nthcdr 3 form))))))))
766 ;;; It is not safe to delete the function entirely
767 ;;; (actually, it would be safe if we know the sole arg
768 ;;; is not a marker).
769 ;;; (if (eq (nth 2 form) 0)
770 ;;; (nth 1 form) ; (- x 0) --> x
771 (byte-optimize-predicate
772 (if (and (null (cdr (cdr (cdr form))))
773 (eq (nth 1 form) 0)) ; (- 0 x) --> (- x)
774 (cons (car form) (cdr (cdr form)))
775 form))
776 ;;; )
779 (defun byte-optimize-multiply (form)
780 (setq form (byte-optimize-delay-constants-math form 1 '*))
781 ;; If there is a constant in FORM, it is now the last element.
782 (cond ((null (cdr form)) 1)
783 ;;; It is not safe to delete the function entirely
784 ;;; (actually, it would be safe if we know the sole arg
785 ;;; is not a marker or if it appears in other arithmetic).
786 ;;; ((null (cdr (cdr form))) (nth 1 form))
787 ((let ((last (car (reverse form))))
788 (cond ((eq 0 last) (cons 'progn (cdr form)))
789 ((eq 1 last) (delq 1 (copy-sequence form)))
790 ((eq -1 last) (list '- (delq -1 (copy-sequence form))))
791 ((and (eq 2 last)
792 (memq t (mapcar 'symbolp (cdr form))))
793 (prog1 (setq form (delq 2 (copy-sequence form)))
794 (while (not (symbolp (car (setq form (cdr form))))))
795 (setcar form (list '+ (car form) (car form)))))
796 (form))))))
798 (defsubst byte-compile-butlast (form)
799 (nreverse (cdr (reverse form))))
801 (defun byte-optimize-divide (form)
802 (setq form (byte-optimize-delay-constants-math form 2 '*))
803 (let ((last (car (reverse (cdr (cdr form))))))
804 (if (numberp last)
805 (cond ((= (length form) 3)
806 (if (and (numberp (nth 1 form))
807 (not (zerop last))
808 (condition-case nil
809 (/ (nth 1 form) last)
810 (error nil)))
811 (setq form (list 'progn (/ (nth 1 form) last)))))
812 ((= last 1)
813 (setq form (byte-compile-butlast form)))
814 ((numberp (nth 1 form))
815 (setq form (cons (car form)
816 (cons (/ (nth 1 form) last)
817 (byte-compile-butlast (cdr (cdr form)))))
818 last nil))))
819 (cond
820 ;;; ((null (cdr (cdr form)))
821 ;;; (nth 1 form))
822 ((eq (nth 1 form) 0)
823 (append '(progn) (cdr (cdr form)) '(0)))
824 ((eq last -1)
825 (list '- (if (nthcdr 3 form)
826 (byte-compile-butlast form)
827 (nth 1 form))))
828 (form))))
830 (defun byte-optimize-logmumble (form)
831 (setq form (byte-optimize-delay-constants-math form 1 (car form)))
832 (byte-optimize-predicate
833 (cond ((memq 0 form)
834 (setq form (if (eq (car form) 'logand)
835 (cons 'progn (cdr form))
836 (delq 0 (copy-sequence form)))))
837 ((and (eq (car-safe form) 'logior)
838 (memq -1 form))
839 (cons 'progn (cdr form)))
840 (form))))
843 (defun byte-optimize-binary-predicate (form)
844 (if (byte-compile-constp (nth 1 form))
845 (if (byte-compile-constp (nth 2 form))
846 (condition-case ()
847 (list 'quote (eval form))
848 (error form))
849 ;; This can enable some lapcode optimizations.
850 (list (car form) (nth 2 form) (nth 1 form)))
851 form))
853 (defun byte-optimize-predicate (form)
854 (let ((ok t)
855 (rest (cdr form)))
856 (while (and rest ok)
857 (setq ok (byte-compile-constp (car rest))
858 rest (cdr rest)))
859 (if ok
860 (condition-case ()
861 (list 'quote (eval form))
862 (error form))
863 form)))
865 (defun byte-optimize-identity (form)
866 (if (and (cdr form) (null (cdr (cdr form))))
867 (nth 1 form)
868 (byte-compile-warn "identity called with %d arg%s, but requires 1"
869 (length (cdr form))
870 (if (= 1 (length (cdr form))) "" "s"))
871 form))
873 (put 'identity 'byte-optimizer 'byte-optimize-identity)
875 (put '+ 'byte-optimizer 'byte-optimize-plus)
876 (put '* 'byte-optimizer 'byte-optimize-multiply)
877 (put '- 'byte-optimizer 'byte-optimize-minus)
878 (put '/ 'byte-optimizer 'byte-optimize-divide)
879 (put 'max 'byte-optimizer 'byte-optimize-associative-math)
880 (put 'min 'byte-optimizer 'byte-optimize-associative-math)
882 (put '= 'byte-optimizer 'byte-optimize-binary-predicate)
883 (put 'eq 'byte-optimizer 'byte-optimize-binary-predicate)
884 (put 'equal 'byte-optimizer 'byte-optimize-binary-predicate)
885 (put 'string= 'byte-optimizer 'byte-optimize-binary-predicate)
886 (put 'string-equal 'byte-optimizer 'byte-optimize-binary-predicate)
888 (put '< 'byte-optimizer 'byte-optimize-predicate)
889 (put '> 'byte-optimizer 'byte-optimize-predicate)
890 (put '<= 'byte-optimizer 'byte-optimize-predicate)
891 (put '>= 'byte-optimizer 'byte-optimize-predicate)
892 (put '1+ 'byte-optimizer 'byte-optimize-predicate)
893 (put '1- 'byte-optimizer 'byte-optimize-predicate)
894 (put 'not 'byte-optimizer 'byte-optimize-predicate)
895 (put 'null 'byte-optimizer 'byte-optimize-predicate)
896 (put 'memq 'byte-optimizer 'byte-optimize-predicate)
897 (put 'consp 'byte-optimizer 'byte-optimize-predicate)
898 (put 'listp 'byte-optimizer 'byte-optimize-predicate)
899 (put 'symbolp 'byte-optimizer 'byte-optimize-predicate)
900 (put 'stringp 'byte-optimizer 'byte-optimize-predicate)
901 (put 'string< 'byte-optimizer 'byte-optimize-predicate)
902 (put 'string-lessp 'byte-optimizer 'byte-optimize-predicate)
904 (put 'logand 'byte-optimizer 'byte-optimize-logmumble)
905 (put 'logior 'byte-optimizer 'byte-optimize-logmumble)
906 (put 'logxor 'byte-optimizer 'byte-optimize-logmumble)
907 (put 'lognot 'byte-optimizer 'byte-optimize-predicate)
909 (put 'car 'byte-optimizer 'byte-optimize-predicate)
910 (put 'cdr 'byte-optimizer 'byte-optimize-predicate)
911 (put 'car-safe 'byte-optimizer 'byte-optimize-predicate)
912 (put 'cdr-safe 'byte-optimizer 'byte-optimize-predicate)
915 ;; I'm not convinced that this is necessary. Doesn't the optimizer loop
916 ;; take care of this? - Jamie
917 ;; I think this may some times be necessary to reduce ie (quote 5) to 5,
918 ;; so arithmetic optimizers recognize the numeric constant. - Hallvard
919 (put 'quote 'byte-optimizer 'byte-optimize-quote)
920 (defun byte-optimize-quote (form)
921 (if (or (consp (nth 1 form))
922 (and (symbolp (nth 1 form))
923 (not (byte-compile-const-symbol-p form))))
924 form
925 (nth 1 form)))
927 (defun byte-optimize-zerop (form)
928 (cond ((numberp (nth 1 form))
929 (eval form))
930 (byte-compile-delete-errors
931 (list '= (nth 1 form) 0))
932 (form)))
934 (put 'zerop 'byte-optimizer 'byte-optimize-zerop)
936 (defun byte-optimize-and (form)
937 ;; Simplify if less than 2 args.
938 ;; if there is a literal nil in the args to `and', throw it and following
939 ;; forms away, and surround the `and' with (progn ... nil).
940 (cond ((null (cdr form)))
941 ((memq nil form)
942 (list 'progn
943 (byte-optimize-and
944 (prog1 (setq form (copy-sequence form))
945 (while (nth 1 form)
946 (setq form (cdr form)))
947 (setcdr form nil)))
948 nil))
949 ((null (cdr (cdr form)))
950 (nth 1 form))
951 ((byte-optimize-predicate form))))
953 (defun byte-optimize-or (form)
954 ;; Throw away nil's, and simplify if less than 2 args.
955 ;; If there is a literal non-nil constant in the args to `or', throw away all
956 ;; following forms.
957 (if (memq nil form)
958 (setq form (delq nil (copy-sequence form))))
959 (let ((rest form))
960 (while (cdr (setq rest (cdr rest)))
961 (if (byte-compile-trueconstp (car rest))
962 (setq form (copy-sequence form)
963 rest (setcdr (memq (car rest) form) nil))))
964 (if (cdr (cdr form))
965 (byte-optimize-predicate form)
966 (nth 1 form))))
968 (defun byte-optimize-cond (form)
969 ;; if any clauses have a literal nil as their test, throw them away.
970 ;; if any clause has a literal non-nil constant as its test, throw
971 ;; away all following clauses.
972 (let (rest)
973 ;; This must be first, to reduce (cond (t ...) (nil)) to (progn t ...)
974 (while (setq rest (assq nil (cdr form)))
975 (setq form (delq rest (copy-sequence form))))
976 (if (memq nil (cdr form))
977 (setq form (delq nil (copy-sequence form))))
978 (setq rest form)
979 (while (setq rest (cdr rest))
980 (cond ((byte-compile-trueconstp (car-safe (car rest)))
981 (cond ((eq rest (cdr form))
982 (setq form
983 (if (cdr (car rest))
984 (if (cdr (cdr (car rest)))
985 (cons 'progn (cdr (car rest)))
986 (nth 1 (car rest)))
987 (car (car rest)))))
988 ((cdr rest)
989 (setq form (copy-sequence form))
990 (setcdr (memq (car rest) form) nil)))
991 (setq rest nil)))))
993 ;; Turn (cond (( <x> )) ... ) into (or <x> (cond ... ))
994 (if (eq 'cond (car-safe form))
995 (let ((clauses (cdr form)))
996 (if (and (consp (car clauses))
997 (null (cdr (car clauses))))
998 (list 'or (car (car clauses))
999 (byte-optimize-cond
1000 (cons (car form) (cdr (cdr form)))))
1001 form))
1002 form))
1004 (defun byte-optimize-if (form)
1005 ;; (if <true-constant> <then> <else...>) ==> <then>
1006 ;; (if <false-constant> <then> <else...>) ==> (progn <else...>)
1007 ;; (if <test> nil <else...>) ==> (if (not <test>) (progn <else...>))
1008 ;; (if <test> <then> nil) ==> (if <test> <then>)
1009 (let ((clause (nth 1 form)))
1010 (cond ((byte-compile-trueconstp clause)
1011 (nth 2 form))
1012 ((null clause)
1013 (if (nthcdr 4 form)
1014 (cons 'progn (nthcdr 3 form))
1015 (nth 3 form)))
1016 ((nth 2 form)
1017 (if (equal '(nil) (nthcdr 3 form))
1018 (list 'if clause (nth 2 form))
1019 form))
1020 ((or (nth 3 form) (nthcdr 4 form))
1021 (list 'if
1022 ;; Don't make a double negative;
1023 ;; instead, take away the one that is there.
1024 (if (and (consp clause) (memq (car clause) '(not null))
1025 (= (length clause) 2)) ; (not xxxx) or (not (xxxx))
1026 (nth 1 clause)
1027 (list 'not clause))
1028 (if (nthcdr 4 form)
1029 (cons 'progn (nthcdr 3 form))
1030 (nth 3 form))))
1032 (list 'progn clause nil)))))
1034 (defun byte-optimize-while (form)
1035 (when (< (length form) 2)
1036 (byte-compile-warn "too few arguments for `while'"))
1037 (if (nth 1 form)
1038 form))
1040 (put 'and 'byte-optimizer 'byte-optimize-and)
1041 (put 'or 'byte-optimizer 'byte-optimize-or)
1042 (put 'cond 'byte-optimizer 'byte-optimize-cond)
1043 (put 'if 'byte-optimizer 'byte-optimize-if)
1044 (put 'while 'byte-optimizer 'byte-optimize-while)
1046 ;; byte-compile-negation-optimizer lives in bytecomp.el
1047 (put '/= 'byte-optimizer 'byte-compile-negation-optimizer)
1048 (put 'atom 'byte-optimizer 'byte-compile-negation-optimizer)
1049 (put 'nlistp 'byte-optimizer 'byte-compile-negation-optimizer)
1052 (defun byte-optimize-funcall (form)
1053 ;; (funcall (lambda ...) ...) ==> ((lambda ...) ...)
1054 ;; (funcall foo ...) ==> (foo ...)
1055 (let ((fn (nth 1 form)))
1056 (if (memq (car-safe fn) '(quote function))
1057 (cons (nth 1 fn) (cdr (cdr form)))
1058 form)))
1060 (defun byte-optimize-apply (form)
1061 ;; If the last arg is a literal constant, turn this into a funcall.
1062 ;; The funcall optimizer can then transform (funcall 'foo ...) -> (foo ...).
1063 (let ((fn (nth 1 form))
1064 (last (nth (1- (length form)) form))) ; I think this really is fastest
1065 (or (if (or (null last)
1066 (eq (car-safe last) 'quote))
1067 (if (listp (nth 1 last))
1068 (let ((butlast (nreverse (cdr (reverse (cdr (cdr form)))))))
1069 (nconc (list 'funcall fn) butlast
1070 (mapcar (lambda (x) (list 'quote x)) (nth 1 last))))
1071 (byte-compile-warn
1072 "last arg to apply can't be a literal atom: `%s'"
1073 (prin1-to-string last))
1074 nil))
1075 form)))
1077 (put 'funcall 'byte-optimizer 'byte-optimize-funcall)
1078 (put 'apply 'byte-optimizer 'byte-optimize-apply)
1081 (put 'let 'byte-optimizer 'byte-optimize-letX)
1082 (put 'let* 'byte-optimizer 'byte-optimize-letX)
1083 (defun byte-optimize-letX (form)
1084 (cond ((null (nth 1 form))
1085 ;; No bindings
1086 (cons 'progn (cdr (cdr form))))
1087 ((or (nth 2 form) (nthcdr 3 form))
1088 form)
1089 ;; The body is nil
1090 ((eq (car form) 'let)
1091 (append '(progn) (mapcar 'car-safe (mapcar 'cdr-safe (nth 1 form)))
1092 '(nil)))
1094 (let ((binds (reverse (nth 1 form))))
1095 (list 'let* (reverse (cdr binds)) (nth 1 (car binds)) nil)))))
1098 (put 'nth 'byte-optimizer 'byte-optimize-nth)
1099 (defun byte-optimize-nth (form)
1100 (if (= (safe-length form) 3)
1101 (if (memq (nth 1 form) '(0 1))
1102 (list 'car (if (zerop (nth 1 form))
1103 (nth 2 form)
1104 (list 'cdr (nth 2 form))))
1105 (byte-optimize-predicate form))
1106 form))
1108 (put 'nthcdr 'byte-optimizer 'byte-optimize-nthcdr)
1109 (defun byte-optimize-nthcdr (form)
1110 (if (= (safe-length form) 3)
1111 (if (memq (nth 1 form) '(0 1 2))
1112 (let ((count (nth 1 form)))
1113 (setq form (nth 2 form))
1114 (while (>= (setq count (1- count)) 0)
1115 (setq form (list 'cdr form)))
1116 form)
1117 (byte-optimize-predicate form))
1118 form))
1120 (put 'concat 'byte-optimizer 'byte-optimize-pure-func)
1121 (put 'symbol-name 'byte-optimizer 'byte-optimize-pure-func)
1122 (put 'regexp-opt 'byte-optimizer 'byte-optimize-pure-func)
1123 (put 'regexp-quote 'byte-optimizer 'byte-optimize-pure-func)
1124 (put 'string-to-syntax 'byte-optimizer 'byte-optimize-pure-func)
1125 (defun byte-optimize-pure-func (form)
1126 "Do constant folding for pure functions.
1127 This assumes that the function will not have any side-effects and that
1128 its return value depends solely on its arguments.
1129 If the function can signal an error, this might change the semantics
1130 of FORM by signaling the error at compile-time."
1131 (let ((args (cdr form))
1132 (constant t))
1133 (while (and args constant)
1134 (or (byte-compile-constp (car args))
1135 (setq constant nil))
1136 (setq args (cdr args)))
1137 (if constant
1138 (list 'quote (eval form))
1139 form)))
1141 ;; Avoid having to write forward-... with a negative arg for speed.
1142 ;; Fixme: don't be limited to constant args.
1143 (put 'backward-char 'byte-optimizer 'byte-optimize-backward-char)
1144 (defun byte-optimize-backward-char (form)
1145 (cond ((and (= 2 (safe-length form))
1146 (numberp (nth 1 form)))
1147 (list 'forward-char (eval (- (nth 1 form)))))
1148 ((= 1 (safe-length form))
1149 '(forward-char -1))
1150 (t form)))
1152 (put 'backward-word 'byte-optimizer 'byte-optimize-backward-word)
1153 (defun byte-optimize-backward-word (form)
1154 (cond ((and (= 2 (safe-length form))
1155 (numberp (nth 1 form)))
1156 (list 'forward-word (eval (- (nth 1 form)))))
1157 ((= 1 (safe-length form))
1158 '(forward-word -1))
1159 (t form)))
1161 (put 'char-before 'byte-optimizer 'byte-optimize-char-before)
1162 (defun byte-optimize-char-before (form)
1163 (cond ((= 2 (safe-length form))
1164 `(char-after (1- ,(nth 1 form))))
1165 ((= 1 (safe-length form))
1166 '(char-after (1- (point))))
1167 (t form)))
1169 ;; Fixme: delete-char -> delete-region (byte-coded)
1170 ;; optimize string-as-unibyte, string-as-multibyte, string-make-unibyte,
1171 ;; string-make-multibyte for constant args.
1173 (put 'featurep 'byte-optimizer 'byte-optimize-featurep)
1174 (defun byte-optimize-featurep (form)
1175 ;; Emacs-21's byte-code doesn't run under XEmacs anyway, so we can
1176 ;; safely optimize away this test.
1177 (if (equal '((quote xemacs)) (cdr-safe form))
1179 form))
1181 (put 'set 'byte-optimizer 'byte-optimize-set)
1182 (defun byte-optimize-set (form)
1183 (let ((var (car-safe (cdr-safe form))))
1184 (cond
1185 ((and (eq (car-safe var) 'quote) (consp (cdr var)))
1186 `(setq ,(cadr var) ,@(cddr form)))
1187 ((and (eq (car-safe var) 'make-local-variable)
1188 (eq (car-safe (setq var (car-safe (cdr var)))) 'quote)
1189 (consp (cdr var)))
1190 `(progn ,(cadr form) (setq ,(cadr var) ,@(cddr form))))
1191 (t form))))
1193 ;; enumerating those functions which need not be called if the returned
1194 ;; value is not used. That is, something like
1195 ;; (progn (list (something-with-side-effects) (yow))
1196 ;; (foo))
1197 ;; may safely be turned into
1198 ;; (progn (progn (something-with-side-effects) (yow))
1199 ;; (foo))
1200 ;; Further optimizations will turn (progn (list 1 2 3) 'foo) into 'foo.
1202 ;; Some of these functions have the side effect of allocating memory
1203 ;; and it would be incorrect to replace two calls with one.
1204 ;; But we don't try to do those kinds of optimizations,
1205 ;; so it is safe to list such functions here.
1206 ;; Some of these functions return values that depend on environment
1207 ;; state, so that constant folding them would be wrong,
1208 ;; but we don't do constant folding based on this list.
1210 ;; However, at present the only optimization we normally do
1211 ;; is delete calls that need not occur, and we only do that
1212 ;; with the error-free functions.
1214 ;; I wonder if I missed any :-\)
1215 (let ((side-effect-free-fns
1216 '(% * + - / /= 1+ 1- < <= = > >= abs acos append aref ash asin atan
1217 assoc assq
1218 boundp buffer-file-name buffer-local-variables buffer-modified-p
1219 buffer-substring byte-code-function-p
1220 capitalize car-less-than-car car cdr ceiling char-after char-before
1221 char-equal char-to-string char-width
1222 compare-strings concat coordinates-in-window-p
1223 copy-alist copy-sequence copy-marker cos count-lines
1224 decode-time default-boundp default-value documentation downcase
1225 elt exp expt encode-time error-message-string
1226 fboundp fceiling featurep ffloor
1227 file-directory-p file-exists-p file-locked-p file-name-absolute-p
1228 file-newer-than-file-p file-readable-p file-symlink-p file-writable-p
1229 float float-time floor format format-time-string frame-visible-p
1230 fround ftruncate
1231 get gethash get-buffer get-buffer-window getenv get-file-buffer
1232 hash-table-count
1233 int-to-string intern-soft
1234 keymap-parent
1235 length local-variable-if-set-p local-variable-p log log10 logand
1236 logb logior lognot logxor lsh
1237 make-list make-string make-symbol
1238 marker-buffer max member memq min mod multibyte-char-to-unibyte
1239 next-window nth nthcdr number-to-string
1240 parse-colon-path plist-get plist-member
1241 prefix-numeric-value previous-window prin1-to-string propertize
1242 radians-to-degrees rassq rassoc read-from-string regexp-quote
1243 region-beginning region-end reverse round
1244 sin sqrt string string< string= string-equal string-lessp string-to-char
1245 string-to-int string-to-number substring sxhash symbol-function
1246 symbol-name symbol-plist symbol-value string-make-unibyte
1247 string-make-multibyte string-as-multibyte string-as-unibyte
1248 tan truncate
1249 unibyte-char-to-multibyte upcase user-full-name
1250 user-login-name user-original-login-name user-variable-p
1251 vconcat
1252 window-buffer window-dedicated-p window-edges window-height
1253 window-hscroll window-minibuffer-p window-width
1254 zerop))
1255 (side-effect-and-error-free-fns
1256 '(arrayp atom
1257 bobp bolp bool-vector-p
1258 buffer-end buffer-list buffer-size buffer-string bufferp
1259 car-safe case-table-p cdr-safe char-or-string-p commandp cons consp
1260 current-buffer current-global-map current-indentation
1261 current-local-map current-minor-mode-maps current-time
1262 current-time-string current-time-zone
1263 eobp eolp eq equal eventp
1264 floatp following-char framep
1265 get-largest-window get-lru-window
1266 hash-table-p
1267 identity ignore integerp integer-or-marker-p interactive-p
1268 invocation-directory invocation-name
1269 keymapp
1270 line-beginning-position line-end-position list listp
1271 make-marker mark mark-marker markerp memory-limit minibuffer-window
1272 mouse-movement-p
1273 natnump nlistp not null number-or-marker-p numberp
1274 one-window-p overlayp
1275 point point-marker point-min point-max preceding-char processp
1276 recent-keys recursion-depth
1277 safe-length selected-frame selected-window sequencep
1278 standard-case-table standard-syntax-table stringp subrp symbolp
1279 syntax-table syntax-table-p
1280 this-command-keys this-command-keys-vector this-single-command-keys
1281 this-single-command-raw-keys
1282 user-real-login-name user-real-uid user-uid
1283 vector vectorp visible-frame-list
1284 wholenump window-configuration-p window-live-p windowp)))
1285 (while side-effect-free-fns
1286 (put (car side-effect-free-fns) 'side-effect-free t)
1287 (setq side-effect-free-fns (cdr side-effect-free-fns)))
1288 (while side-effect-and-error-free-fns
1289 (put (car side-effect-and-error-free-fns) 'side-effect-free 'error-free)
1290 (setq side-effect-and-error-free-fns (cdr side-effect-and-error-free-fns)))
1291 nil)
1294 (defun byte-compile-splice-in-already-compiled-code (form)
1295 ;; form is (byte-code "..." [...] n)
1296 (if (not (memq byte-optimize '(t lap)))
1297 (byte-compile-normal-call form)
1298 (byte-inline-lapcode
1299 (byte-decompile-bytecode-1 (nth 1 form) (nth 2 form) t))
1300 (setq byte-compile-maxdepth (max (+ byte-compile-depth (nth 3 form))
1301 byte-compile-maxdepth))
1302 (setq byte-compile-depth (1+ byte-compile-depth))))
1304 (put 'byte-code 'byte-compile 'byte-compile-splice-in-already-compiled-code)
1307 (defconst byte-constref-ops
1308 '(byte-constant byte-constant2 byte-varref byte-varset byte-varbind))
1310 ;; This function extracts the bitfields from variable-length opcodes.
1311 ;; Originally defined in disass.el (which no longer uses it.)
1313 (defun disassemble-offset ()
1314 "Don't call this!"
1315 ;; fetch and return the offset for the current opcode.
1316 ;; return nil if this opcode has no offset
1317 ;; OP, PTR and BYTES are used and set dynamically
1318 (defvar op)
1319 (defvar ptr)
1320 (defvar bytes)
1321 (cond ((< op byte-nth)
1322 (let ((tem (logand op 7)))
1323 (setq op (logand op 248))
1324 (cond ((eq tem 6)
1325 (setq ptr (1+ ptr)) ;offset in next byte
1326 (aref bytes ptr))
1327 ((eq tem 7)
1328 (setq ptr (1+ ptr)) ;offset in next 2 bytes
1329 (+ (aref bytes ptr)
1330 (progn (setq ptr (1+ ptr))
1331 (lsh (aref bytes ptr) 8))))
1332 (t tem)))) ;offset was in opcode
1333 ((>= op byte-constant)
1334 (prog1 (- op byte-constant) ;offset in opcode
1335 (setq op byte-constant)))
1336 ((and (>= op byte-constant2)
1337 (<= op byte-goto-if-not-nil-else-pop))
1338 (setq ptr (1+ ptr)) ;offset in next 2 bytes
1339 (+ (aref bytes ptr)
1340 (progn (setq ptr (1+ ptr))
1341 (lsh (aref bytes ptr) 8))))
1342 ((and (>= op byte-listN)
1343 (<= op byte-insertN))
1344 (setq ptr (1+ ptr)) ;offset in next byte
1345 (aref bytes ptr))))
1348 ;; This de-compiler is used for inline expansion of compiled functions,
1349 ;; and by the disassembler.
1351 ;; This list contains numbers, which are pc values,
1352 ;; before each instruction.
1353 (defun byte-decompile-bytecode (bytes constvec)
1354 "Turns BYTECODE into lapcode, referring to CONSTVEC."
1355 (let ((byte-compile-constants nil)
1356 (byte-compile-variables nil)
1357 (byte-compile-tag-number 0))
1358 (byte-decompile-bytecode-1 bytes constvec)))
1360 ;; As byte-decompile-bytecode, but updates
1361 ;; byte-compile-{constants, variables, tag-number}.
1362 ;; If MAKE-SPLICEABLE is true, then `return' opcodes are replaced
1363 ;; with `goto's destined for the end of the code.
1364 ;; That is for use by the compiler.
1365 ;; If MAKE-SPLICEABLE is nil, we are being called for the disassembler.
1366 ;; In that case, we put a pc value into the list
1367 ;; before each insn (or its label).
1368 (defun byte-decompile-bytecode-1 (bytes constvec &optional make-spliceable)
1369 (let ((length (length bytes))
1370 (ptr 0) optr tags op offset
1371 lap tmp
1372 endtag)
1373 (while (not (= ptr length))
1374 (or make-spliceable
1375 (setq lap (cons ptr lap)))
1376 (setq op (aref bytes ptr)
1377 optr ptr
1378 offset (disassemble-offset)) ; this does dynamic-scope magic
1379 (setq op (aref byte-code-vector op))
1380 (cond ((memq op byte-goto-ops)
1381 ;; it's a pc
1382 (setq offset
1383 (cdr (or (assq offset tags)
1384 (car (setq tags
1385 (cons (cons offset
1386 (byte-compile-make-tag))
1387 tags)))))))
1388 ((cond ((eq op 'byte-constant2) (setq op 'byte-constant) t)
1389 ((memq op byte-constref-ops)))
1390 (setq tmp (if (>= offset (length constvec))
1391 (list 'out-of-range offset)
1392 (aref constvec offset))
1393 offset (if (eq op 'byte-constant)
1394 (byte-compile-get-constant tmp)
1395 (or (assq tmp byte-compile-variables)
1396 (car (setq byte-compile-variables
1397 (cons (list tmp)
1398 byte-compile-variables)))))))
1399 ((and make-spliceable
1400 (eq op 'byte-return))
1401 (if (= ptr (1- length))
1402 (setq op nil)
1403 (setq offset (or endtag (setq endtag (byte-compile-make-tag)))
1404 op 'byte-goto))))
1405 ;; lap = ( [ (pc . (op . arg)) ]* )
1406 (setq lap (cons (cons optr (cons op (or offset 0)))
1407 lap))
1408 (setq ptr (1+ ptr)))
1409 ;; take off the dummy nil op that we replaced a trailing "return" with.
1410 (let ((rest lap))
1411 (while rest
1412 (cond ((numberp (car rest)))
1413 ((setq tmp (assq (car (car rest)) tags))
1414 ;; this addr is jumped to
1415 (setcdr rest (cons (cons nil (cdr tmp))
1416 (cdr rest)))
1417 (setq tags (delq tmp tags))
1418 (setq rest (cdr rest))))
1419 (setq rest (cdr rest))))
1420 (if tags (error "optimizer error: missed tags %s" tags))
1421 (if (null (car (cdr (car lap))))
1422 (setq lap (cdr lap)))
1423 (if endtag
1424 (setq lap (cons (cons nil endtag) lap)))
1425 ;; remove addrs, lap = ( [ (op . arg) | (TAG tagno) ]* )
1426 (mapcar (function (lambda (elt)
1427 (if (numberp elt)
1429 (cdr elt))))
1430 (nreverse lap))))
1433 ;;; peephole optimizer
1435 (defconst byte-tagref-ops (cons 'TAG byte-goto-ops))
1437 (defconst byte-conditional-ops
1438 '(byte-goto-if-nil byte-goto-if-not-nil byte-goto-if-nil-else-pop
1439 byte-goto-if-not-nil-else-pop))
1441 (defconst byte-after-unbind-ops
1442 '(byte-constant byte-dup
1443 byte-symbolp byte-consp byte-stringp byte-listp byte-numberp byte-integerp
1444 byte-eq byte-not
1445 byte-cons byte-list1 byte-list2 ; byte-list3 byte-list4
1446 byte-interactive-p)
1447 ;; How about other side-effect-free-ops? Is it safe to move an
1448 ;; error invocation (such as from nth) out of an unwind-protect?
1449 ;; No, it is not, because the unwind-protect forms can alter
1450 ;; the inside of the object to which nth would apply.
1451 ;; For the same reason, byte-equal was deleted from this list.
1452 "Byte-codes that can be moved past an unbind.")
1454 (defconst byte-compile-side-effect-and-error-free-ops
1455 '(byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp
1456 byte-integerp byte-numberp byte-eq byte-equal byte-not byte-car-safe
1457 byte-cdr-safe byte-cons byte-list1 byte-list2 byte-point byte-point-max
1458 byte-point-min byte-following-char byte-preceding-char
1459 byte-current-column byte-eolp byte-eobp byte-bolp byte-bobp
1460 byte-current-buffer byte-interactive-p))
1462 (defconst byte-compile-side-effect-free-ops
1463 (nconc
1464 '(byte-varref byte-nth byte-memq byte-car byte-cdr byte-length byte-aref
1465 byte-symbol-value byte-get byte-concat2 byte-concat3 byte-sub1 byte-add1
1466 byte-eqlsign byte-gtr byte-lss byte-leq byte-geq byte-diff byte-negate
1467 byte-plus byte-max byte-min byte-mult byte-char-after byte-char-syntax
1468 byte-buffer-substring byte-string= byte-string< byte-nthcdr byte-elt
1469 byte-member byte-assq byte-quo byte-rem)
1470 byte-compile-side-effect-and-error-free-ops))
1472 ;; This crock is because of the way DEFVAR_BOOL variables work.
1473 ;; Consider the code
1475 ;; (defun foo (flag)
1476 ;; (let ((old-pop-ups pop-up-windows)
1477 ;; (pop-up-windows flag))
1478 ;; (cond ((not (eq pop-up-windows old-pop-ups))
1479 ;; (setq old-pop-ups pop-up-windows)
1480 ;; ...))))
1482 ;; Uncompiled, old-pop-ups will always be set to nil or t, even if FLAG is
1483 ;; something else. But if we optimize
1485 ;; varref flag
1486 ;; varbind pop-up-windows
1487 ;; varref pop-up-windows
1488 ;; not
1489 ;; to
1490 ;; varref flag
1491 ;; dup
1492 ;; varbind pop-up-windows
1493 ;; not
1495 ;; we break the program, because it will appear that pop-up-windows and
1496 ;; old-pop-ups are not EQ when really they are. So we have to know what
1497 ;; the BOOL variables are, and not perform this optimization on them.
1499 ;; The variable `byte-boolean-vars' is now primitive and updated
1500 ;; automatically by DEFVAR_BOOL.
1502 (defun byte-optimize-lapcode (lap &optional for-effect)
1503 "Simple peephole optimizer. LAP is both modified and returned.
1504 If FOR-EFFECT is non-nil, the return value is assumed to be of no importance."
1505 (let (lap0
1506 lap1
1507 lap2
1508 (keep-going 'first-time)
1509 (add-depth 0)
1510 rest tmp tmp2 tmp3
1511 (side-effect-free (if byte-compile-delete-errors
1512 byte-compile-side-effect-free-ops
1513 byte-compile-side-effect-and-error-free-ops)))
1514 (while keep-going
1515 (or (eq keep-going 'first-time)
1516 (byte-compile-log-lap " ---- next pass"))
1517 (setq rest lap
1518 keep-going nil)
1519 (while rest
1520 (setq lap0 (car rest)
1521 lap1 (nth 1 rest)
1522 lap2 (nth 2 rest))
1524 ;; You may notice that sequences like "dup varset discard" are
1525 ;; optimized but sequences like "dup varset TAG1: discard" are not.
1526 ;; You may be tempted to change this; resist that temptation.
1527 (cond ;;
1528 ;; <side-effect-free> pop --> <deleted>
1529 ;; ...including:
1530 ;; const-X pop --> <deleted>
1531 ;; varref-X pop --> <deleted>
1532 ;; dup pop --> <deleted>
1534 ((and (eq 'byte-discard (car lap1))
1535 (memq (car lap0) side-effect-free))
1536 (setq keep-going t)
1537 (setq tmp (aref byte-stack+-info (symbol-value (car lap0))))
1538 (setq rest (cdr rest))
1539 (cond ((= tmp 1)
1540 (byte-compile-log-lap
1541 " %s discard\t-->\t<deleted>" lap0)
1542 (setq lap (delq lap0 (delq lap1 lap))))
1543 ((= tmp 0)
1544 (byte-compile-log-lap
1545 " %s discard\t-->\t<deleted> discard" lap0)
1546 (setq lap (delq lap0 lap)))
1547 ((= tmp -1)
1548 (byte-compile-log-lap
1549 " %s discard\t-->\tdiscard discard" lap0)
1550 (setcar lap0 'byte-discard)
1551 (setcdr lap0 0))
1552 ((error "Optimizer error: too much on the stack"))))
1554 ;; goto*-X X: --> X:
1556 ((and (memq (car lap0) byte-goto-ops)
1557 (eq (cdr lap0) lap1))
1558 (cond ((eq (car lap0) 'byte-goto)
1559 (setq lap (delq lap0 lap))
1560 (setq tmp "<deleted>"))
1561 ((memq (car lap0) byte-goto-always-pop-ops)
1562 (setcar lap0 (setq tmp 'byte-discard))
1563 (setcdr lap0 0))
1564 ((error "Depth conflict at tag %d" (nth 2 lap0))))
1565 (and (memq byte-optimize-log '(t byte))
1566 (byte-compile-log " (goto %s) %s:\t-->\t%s %s:"
1567 (nth 1 lap1) (nth 1 lap1)
1568 tmp (nth 1 lap1)))
1569 (setq keep-going t))
1571 ;; varset-X varref-X --> dup varset-X
1572 ;; varbind-X varref-X --> dup varbind-X
1573 ;; const/dup varset-X varref-X --> const/dup varset-X const/dup
1574 ;; const/dup varbind-X varref-X --> const/dup varbind-X const/dup
1575 ;; The latter two can enable other optimizations.
1577 ((and (eq 'byte-varref (car lap2))
1578 (eq (cdr lap1) (cdr lap2))
1579 (memq (car lap1) '(byte-varset byte-varbind)))
1580 (if (and (setq tmp (memq (car (cdr lap2)) byte-boolean-vars))
1581 (not (eq (car lap0) 'byte-constant)))
1583 (setq keep-going t)
1584 (if (memq (car lap0) '(byte-constant byte-dup))
1585 (progn
1586 (setq tmp (if (or (not tmp)
1587 (byte-compile-const-symbol-p
1588 (car (cdr lap0))))
1589 (cdr lap0)
1590 (byte-compile-get-constant t)))
1591 (byte-compile-log-lap " %s %s %s\t-->\t%s %s %s"
1592 lap0 lap1 lap2 lap0 lap1
1593 (cons (car lap0) tmp))
1594 (setcar lap2 (car lap0))
1595 (setcdr lap2 tmp))
1596 (byte-compile-log-lap " %s %s\t-->\tdup %s" lap1 lap2 lap1)
1597 (setcar lap2 (car lap1))
1598 (setcar lap1 'byte-dup)
1599 (setcdr lap1 0)
1600 ;; The stack depth gets locally increased, so we will
1601 ;; increase maxdepth in case depth = maxdepth here.
1602 ;; This can cause the third argument to byte-code to
1603 ;; be larger than necessary.
1604 (setq add-depth 1))))
1606 ;; dup varset-X discard --> varset-X
1607 ;; dup varbind-X discard --> varbind-X
1608 ;; (the varbind variant can emerge from other optimizations)
1610 ((and (eq 'byte-dup (car lap0))
1611 (eq 'byte-discard (car lap2))
1612 (memq (car lap1) '(byte-varset byte-varbind)))
1613 (byte-compile-log-lap " dup %s discard\t-->\t%s" lap1 lap1)
1614 (setq keep-going t
1615 rest (cdr rest))
1616 (setq lap (delq lap0 (delq lap2 lap))))
1618 ;; not goto-X-if-nil --> goto-X-if-non-nil
1619 ;; not goto-X-if-non-nil --> goto-X-if-nil
1621 ;; it is wrong to do the same thing for the -else-pop variants.
1623 ((and (eq 'byte-not (car lap0))
1624 (or (eq 'byte-goto-if-nil (car lap1))
1625 (eq 'byte-goto-if-not-nil (car lap1))))
1626 (byte-compile-log-lap " not %s\t-->\t%s"
1627 lap1
1628 (cons
1629 (if (eq (car lap1) 'byte-goto-if-nil)
1630 'byte-goto-if-not-nil
1631 'byte-goto-if-nil)
1632 (cdr lap1)))
1633 (setcar lap1 (if (eq (car lap1) 'byte-goto-if-nil)
1634 'byte-goto-if-not-nil
1635 'byte-goto-if-nil))
1636 (setq lap (delq lap0 lap))
1637 (setq keep-going t))
1639 ;; goto-X-if-nil goto-Y X: --> goto-Y-if-non-nil X:
1640 ;; goto-X-if-non-nil goto-Y X: --> goto-Y-if-nil X:
1642 ;; it is wrong to do the same thing for the -else-pop variants.
1644 ((and (or (eq 'byte-goto-if-nil (car lap0))
1645 (eq 'byte-goto-if-not-nil (car lap0))) ; gotoX
1646 (eq 'byte-goto (car lap1)) ; gotoY
1647 (eq (cdr lap0) lap2)) ; TAG X
1648 (let ((inverse (if (eq 'byte-goto-if-nil (car lap0))
1649 'byte-goto-if-not-nil 'byte-goto-if-nil)))
1650 (byte-compile-log-lap " %s %s %s:\t-->\t%s %s:"
1651 lap0 lap1 lap2
1652 (cons inverse (cdr lap1)) lap2)
1653 (setq lap (delq lap0 lap))
1654 (setcar lap1 inverse)
1655 (setq keep-going t)))
1657 ;; const goto-if-* --> whatever
1659 ((and (eq 'byte-constant (car lap0))
1660 (memq (car lap1) byte-conditional-ops))
1661 (cond ((if (or (eq (car lap1) 'byte-goto-if-nil)
1662 (eq (car lap1) 'byte-goto-if-nil-else-pop))
1663 (car (cdr lap0))
1664 (not (car (cdr lap0))))
1665 (byte-compile-log-lap " %s %s\t-->\t<deleted>"
1666 lap0 lap1)
1667 (setq rest (cdr rest)
1668 lap (delq lap0 (delq lap1 lap))))
1670 (if (memq (car lap1) byte-goto-always-pop-ops)
1671 (progn
1672 (byte-compile-log-lap " %s %s\t-->\t%s"
1673 lap0 lap1 (cons 'byte-goto (cdr lap1)))
1674 (setq lap (delq lap0 lap)))
1675 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1
1676 (cons 'byte-goto (cdr lap1))))
1677 (setcar lap1 'byte-goto)))
1678 (setq keep-going t))
1680 ;; varref-X varref-X --> varref-X dup
1681 ;; varref-X [dup ...] varref-X --> varref-X [dup ...] dup
1682 ;; We don't optimize the const-X variations on this here,
1683 ;; because that would inhibit some goto optimizations; we
1684 ;; optimize the const-X case after all other optimizations.
1686 ((and (eq 'byte-varref (car lap0))
1687 (progn
1688 (setq tmp (cdr rest))
1689 (while (eq (car (car tmp)) 'byte-dup)
1690 (setq tmp (cdr tmp)))
1692 (eq (cdr lap0) (cdr (car tmp)))
1693 (eq 'byte-varref (car (car tmp))))
1694 (if (memq byte-optimize-log '(t byte))
1695 (let ((str ""))
1696 (setq tmp2 (cdr rest))
1697 (while (not (eq tmp tmp2))
1698 (setq tmp2 (cdr tmp2)
1699 str (concat str " dup")))
1700 (byte-compile-log-lap " %s%s %s\t-->\t%s%s dup"
1701 lap0 str lap0 lap0 str)))
1702 (setq keep-going t)
1703 (setcar (car tmp) 'byte-dup)
1704 (setcdr (car tmp) 0)
1705 (setq rest tmp))
1707 ;; TAG1: TAG2: --> TAG1: <deleted>
1708 ;; (and other references to TAG2 are replaced with TAG1)
1710 ((and (eq (car lap0) 'TAG)
1711 (eq (car lap1) 'TAG))
1712 (and (memq byte-optimize-log '(t byte))
1713 (byte-compile-log " adjacent tags %d and %d merged"
1714 (nth 1 lap1) (nth 1 lap0)))
1715 (setq tmp3 lap)
1716 (while (setq tmp2 (rassq lap0 tmp3))
1717 (setcdr tmp2 lap1)
1718 (setq tmp3 (cdr (memq tmp2 tmp3))))
1719 (setq lap (delq lap0 lap)
1720 keep-going t))
1722 ;; unused-TAG: --> <deleted>
1724 ((and (eq 'TAG (car lap0))
1725 (not (rassq lap0 lap)))
1726 (and (memq byte-optimize-log '(t byte))
1727 (byte-compile-log " unused tag %d removed" (nth 1 lap0)))
1728 (setq lap (delq lap0 lap)
1729 keep-going t))
1731 ;; goto ... --> goto <delete until TAG or end>
1732 ;; return ... --> return <delete until TAG or end>
1734 ((and (memq (car lap0) '(byte-goto byte-return))
1735 (not (memq (car lap1) '(TAG nil))))
1736 (setq tmp rest)
1737 (let ((i 0)
1738 (opt-p (memq byte-optimize-log '(t lap)))
1739 str deleted)
1740 (while (and (setq tmp (cdr tmp))
1741 (not (eq 'TAG (car (car tmp)))))
1742 (if opt-p (setq deleted (cons (car tmp) deleted)
1743 str (concat str " %s")
1744 i (1+ i))))
1745 (if opt-p
1746 (let ((tagstr
1747 (if (eq 'TAG (car (car tmp)))
1748 (format "%d:" (car (cdr (car tmp))))
1749 (or (car tmp) ""))))
1750 (if (< i 6)
1751 (apply 'byte-compile-log-lap-1
1752 (concat " %s" str
1753 " %s\t-->\t%s <deleted> %s")
1754 lap0
1755 (nconc (nreverse deleted)
1756 (list tagstr lap0 tagstr)))
1757 (byte-compile-log-lap
1758 " %s <%d unreachable op%s> %s\t-->\t%s <deleted> %s"
1759 lap0 i (if (= i 1) "" "s")
1760 tagstr lap0 tagstr))))
1761 (rplacd rest tmp))
1762 (setq keep-going t))
1764 ;; <safe-op> unbind --> unbind <safe-op>
1765 ;; (this may enable other optimizations.)
1767 ((and (eq 'byte-unbind (car lap1))
1768 (memq (car lap0) byte-after-unbind-ops))
1769 (byte-compile-log-lap " %s %s\t-->\t%s %s" lap0 lap1 lap1 lap0)
1770 (setcar rest lap1)
1771 (setcar (cdr rest) lap0)
1772 (setq keep-going t))
1774 ;; varbind-X unbind-N --> discard unbind-(N-1)
1775 ;; save-excursion unbind-N --> unbind-(N-1)
1776 ;; save-restriction unbind-N --> unbind-(N-1)
1778 ((and (eq 'byte-unbind (car lap1))
1779 (memq (car lap0) '(byte-varbind byte-save-excursion
1780 byte-save-restriction))
1781 (< 0 (cdr lap1)))
1782 (if (zerop (setcdr lap1 (1- (cdr lap1))))
1783 (delq lap1 rest))
1784 (if (eq (car lap0) 'byte-varbind)
1785 (setcar rest (cons 'byte-discard 0))
1786 (setq lap (delq lap0 lap)))
1787 (byte-compile-log-lap " %s %s\t-->\t%s %s"
1788 lap0 (cons (car lap1) (1+ (cdr lap1)))
1789 (if (eq (car lap0) 'byte-varbind)
1790 (car rest)
1791 (car (cdr rest)))
1792 (if (and (/= 0 (cdr lap1))
1793 (eq (car lap0) 'byte-varbind))
1794 (car (cdr rest))
1795 ""))
1796 (setq keep-going t))
1798 ;; goto*-X ... X: goto-Y --> goto*-Y
1799 ;; goto-X ... X: return --> return
1801 ((and (memq (car lap0) byte-goto-ops)
1802 (memq (car (setq tmp (nth 1 (memq (cdr lap0) lap))))
1803 '(byte-goto byte-return)))
1804 (cond ((and (not (eq tmp lap0))
1805 (or (eq (car lap0) 'byte-goto)
1806 (eq (car tmp) 'byte-goto)))
1807 (byte-compile-log-lap " %s [%s]\t-->\t%s"
1808 (car lap0) tmp tmp)
1809 (if (eq (car tmp) 'byte-return)
1810 (setcar lap0 'byte-return))
1811 (setcdr lap0 (cdr tmp))
1812 (setq keep-going t))))
1814 ;; goto-*-else-pop X ... X: goto-if-* --> whatever
1815 ;; goto-*-else-pop X ... X: discard --> whatever
1817 ((and (memq (car lap0) '(byte-goto-if-nil-else-pop
1818 byte-goto-if-not-nil-else-pop))
1819 (memq (car (car (setq tmp (cdr (memq (cdr lap0) lap)))))
1820 (eval-when-compile
1821 (cons 'byte-discard byte-conditional-ops)))
1822 (not (eq lap0 (car tmp))))
1823 (setq tmp2 (car tmp))
1824 (setq tmp3 (assq (car lap0) '((byte-goto-if-nil-else-pop
1825 byte-goto-if-nil)
1826 (byte-goto-if-not-nil-else-pop
1827 byte-goto-if-not-nil))))
1828 (if (memq (car tmp2) tmp3)
1829 (progn (setcar lap0 (car tmp2))
1830 (setcdr lap0 (cdr tmp2))
1831 (byte-compile-log-lap " %s-else-pop [%s]\t-->\t%s"
1832 (car lap0) tmp2 lap0))
1833 ;; Get rid of the -else-pop's and jump one step further.
1834 (or (eq 'TAG (car (nth 1 tmp)))
1835 (setcdr tmp (cons (byte-compile-make-tag)
1836 (cdr tmp))))
1837 (byte-compile-log-lap " %s [%s]\t-->\t%s <skip>"
1838 (car lap0) tmp2 (nth 1 tmp3))
1839 (setcar lap0 (nth 1 tmp3))
1840 (setcdr lap0 (nth 1 tmp)))
1841 (setq keep-going t))
1843 ;; const goto-X ... X: goto-if-* --> whatever
1844 ;; const goto-X ... X: discard --> whatever
1846 ((and (eq (car lap0) 'byte-constant)
1847 (eq (car lap1) 'byte-goto)
1848 (memq (car (car (setq tmp (cdr (memq (cdr lap1) lap)))))
1849 (eval-when-compile
1850 (cons 'byte-discard byte-conditional-ops)))
1851 (not (eq lap1 (car tmp))))
1852 (setq tmp2 (car tmp))
1853 (cond ((memq (car tmp2)
1854 (if (null (car (cdr lap0)))
1855 '(byte-goto-if-nil byte-goto-if-nil-else-pop)
1856 '(byte-goto-if-not-nil
1857 byte-goto-if-not-nil-else-pop)))
1858 (byte-compile-log-lap " %s goto [%s]\t-->\t%s %s"
1859 lap0 tmp2 lap0 tmp2)
1860 (setcar lap1 (car tmp2))
1861 (setcdr lap1 (cdr tmp2))
1862 ;; Let next step fix the (const,goto-if*) sequence.
1863 (setq rest (cons nil rest)))
1865 ;; Jump one step further
1866 (byte-compile-log-lap
1867 " %s goto [%s]\t-->\t<deleted> goto <skip>"
1868 lap0 tmp2)
1869 (or (eq 'TAG (car (nth 1 tmp)))
1870 (setcdr tmp (cons (byte-compile-make-tag)
1871 (cdr tmp))))
1872 (setcdr lap1 (car (cdr tmp)))
1873 (setq lap (delq lap0 lap))))
1874 (setq keep-going t))
1876 ;; X: varref-Y ... varset-Y goto-X -->
1877 ;; X: varref-Y Z: ... dup varset-Y goto-Z
1878 ;; (varset-X goto-BACK, BACK: varref-X --> copy the varref down.)
1879 ;; (This is so usual for while loops that it is worth handling).
1881 ((and (eq (car lap1) 'byte-varset)
1882 (eq (car lap2) 'byte-goto)
1883 (not (memq (cdr lap2) rest)) ;Backwards jump
1884 (eq (car (car (setq tmp (cdr (memq (cdr lap2) lap)))))
1885 'byte-varref)
1886 (eq (cdr (car tmp)) (cdr lap1))
1887 (not (memq (car (cdr lap1)) byte-boolean-vars)))
1888 ;;(byte-compile-log-lap " Pulled %s to end of loop" (car tmp))
1889 (let ((newtag (byte-compile-make-tag)))
1890 (byte-compile-log-lap
1891 " %s: %s ... %s %s\t-->\t%s: %s %s: ... %s %s %s"
1892 (nth 1 (cdr lap2)) (car tmp)
1893 lap1 lap2
1894 (nth 1 (cdr lap2)) (car tmp)
1895 (nth 1 newtag) 'byte-dup lap1
1896 (cons 'byte-goto newtag)
1898 (setcdr rest (cons (cons 'byte-dup 0) (cdr rest)))
1899 (setcdr tmp (cons (setcdr lap2 newtag) (cdr tmp))))
1900 (setq add-depth 1)
1901 (setq keep-going t))
1903 ;; goto-X Y: ... X: goto-if*-Y --> goto-if-not-*-X+1 Y:
1904 ;; (This can pull the loop test to the end of the loop)
1906 ((and (eq (car lap0) 'byte-goto)
1907 (eq (car lap1) 'TAG)
1908 (eq lap1
1909 (cdr (car (setq tmp (cdr (memq (cdr lap0) lap))))))
1910 (memq (car (car tmp))
1911 '(byte-goto byte-goto-if-nil byte-goto-if-not-nil
1912 byte-goto-if-nil-else-pop)))
1913 ;; (byte-compile-log-lap " %s %s, %s %s --> moved conditional"
1914 ;; lap0 lap1 (cdr lap0) (car tmp))
1915 (let ((newtag (byte-compile-make-tag)))
1916 (byte-compile-log-lap
1917 "%s %s: ... %s: %s\t-->\t%s ... %s:"
1918 lap0 (nth 1 lap1) (nth 1 (cdr lap0)) (car tmp)
1919 (cons (cdr (assq (car (car tmp))
1920 '((byte-goto-if-nil . byte-goto-if-not-nil)
1921 (byte-goto-if-not-nil . byte-goto-if-nil)
1922 (byte-goto-if-nil-else-pop .
1923 byte-goto-if-not-nil-else-pop)
1924 (byte-goto-if-not-nil-else-pop .
1925 byte-goto-if-nil-else-pop))))
1926 newtag)
1928 (nth 1 newtag)
1930 (setcdr tmp (cons (setcdr lap0 newtag) (cdr tmp)))
1931 (if (eq (car (car tmp)) 'byte-goto-if-nil-else-pop)
1932 ;; We can handle this case but not the -if-not-nil case,
1933 ;; because we won't know which non-nil constant to push.
1934 (setcdr rest (cons (cons 'byte-constant
1935 (byte-compile-get-constant nil))
1936 (cdr rest))))
1937 (setcar lap0 (nth 1 (memq (car (car tmp))
1938 '(byte-goto-if-nil-else-pop
1939 byte-goto-if-not-nil
1940 byte-goto-if-nil
1941 byte-goto-if-not-nil
1942 byte-goto byte-goto))))
1944 (setq keep-going t))
1946 (setq rest (cdr rest)))
1948 ;; Cleanup stage:
1949 ;; Rebuild byte-compile-constants / byte-compile-variables.
1950 ;; Simple optimizations that would inhibit other optimizations if they
1951 ;; were done in the optimizing loop, and optimizations which there is no
1952 ;; need to do more than once.
1953 (setq byte-compile-constants nil
1954 byte-compile-variables nil)
1955 (setq rest lap)
1956 (while rest
1957 (setq lap0 (car rest)
1958 lap1 (nth 1 rest))
1959 (if (memq (car lap0) byte-constref-ops)
1960 (if (or (eq (car lap0) 'byte-constant)
1961 (eq (car lap0) 'byte-constant2))
1962 (unless (memq (cdr lap0) byte-compile-constants)
1963 (setq byte-compile-constants (cons (cdr lap0)
1964 byte-compile-constants)))
1965 (unless (memq (cdr lap0) byte-compile-variables)
1966 (setq byte-compile-variables (cons (cdr lap0)
1967 byte-compile-variables)))))
1968 (cond (;;
1969 ;; const-C varset-X const-C --> const-C dup varset-X
1970 ;; const-C varbind-X const-C --> const-C dup varbind-X
1972 (and (eq (car lap0) 'byte-constant)
1973 (eq (car (nth 2 rest)) 'byte-constant)
1974 (eq (cdr lap0) (cdr (nth 2 rest)))
1975 (memq (car lap1) '(byte-varbind byte-varset)))
1976 (byte-compile-log-lap " %s %s %s\t-->\t%s dup %s"
1977 lap0 lap1 lap0 lap0 lap1)
1978 (setcar (cdr (cdr rest)) (cons (car lap1) (cdr lap1)))
1979 (setcar (cdr rest) (cons 'byte-dup 0))
1980 (setq add-depth 1))
1982 ;; const-X [dup/const-X ...] --> const-X [dup ...] dup
1983 ;; varref-X [dup/varref-X ...] --> varref-X [dup ...] dup
1985 ((memq (car lap0) '(byte-constant byte-varref))
1986 (setq tmp rest
1987 tmp2 nil)
1988 (while (progn
1989 (while (eq 'byte-dup (car (car (setq tmp (cdr tmp))))))
1990 (and (eq (cdr lap0) (cdr (car tmp)))
1991 (eq (car lap0) (car (car tmp)))))
1992 (setcar tmp (cons 'byte-dup 0))
1993 (setq tmp2 t))
1994 (if tmp2
1995 (byte-compile-log-lap
1996 " %s [dup/%s]...\t-->\t%s dup..." lap0 lap0 lap0)))
1998 ;; unbind-N unbind-M --> unbind-(N+M)
2000 ((and (eq 'byte-unbind (car lap0))
2001 (eq 'byte-unbind (car lap1)))
2002 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1
2003 (cons 'byte-unbind
2004 (+ (cdr lap0) (cdr lap1))))
2005 (setq keep-going t)
2006 (setq lap (delq lap0 lap))
2007 (setcdr lap1 (+ (cdr lap1) (cdr lap0))))
2009 (setq rest (cdr rest)))
2010 (setq byte-compile-maxdepth (+ byte-compile-maxdepth add-depth)))
2011 lap)
2013 (provide 'byte-opt)
2016 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when this file compiles
2017 ;; itself, compile some of its most used recursive functions (at load time).
2019 (eval-when-compile
2020 (or (byte-code-function-p (symbol-function 'byte-optimize-form))
2021 (assq 'byte-code (symbol-function 'byte-optimize-form))
2022 (let ((byte-optimize nil)
2023 (byte-compile-warnings nil))
2024 (mapcar (lambda (x)
2025 (or noninteractive (message "compiling %s..." x))
2026 (byte-compile x)
2027 (or noninteractive (message "compiling %s...done" x)))
2028 '(byte-optimize-form
2029 byte-optimize-body
2030 byte-optimize-predicate
2031 byte-optimize-binary-predicate
2032 ;; Inserted some more than necessary, to speed it up.
2033 byte-optimize-form-code-walker
2034 byte-optimize-lapcode))))
2035 nil)
2037 ;; arch-tag: 0f14076b-737e-4bef-aae6-908826ec1ff1
2038 ;;; byte-opt.el ends here