Regenerate.
[emacs.git] / lisp / emacs-lisp / byte-opt.el
blobd4c21e5ddb85be13b3531eba59167ef88ed401a4
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, 2006, 2007, 2008 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 3, 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 ;; `byte-compile-splice-in-already-compiled-code'
280 ;; takes care of inlining the body.
281 (cons `(lambda ,(aref fn 0)
282 (byte-code ,string ,(aref fn 2) ,(aref fn 3)))
283 (cdr form)))
284 (if (eq (car-safe fn) 'lambda)
285 (cons fn (cdr form))
286 ;; Give up on inlining.
287 form))))))
289 ;; ((lambda ...) ...)
290 (defun byte-compile-unfold-lambda (form &optional name)
291 (or name (setq name "anonymous lambda"))
292 (let ((lambda (car form))
293 (values (cdr form)))
294 (if (byte-code-function-p lambda)
295 (setq lambda (list 'lambda (aref lambda 0)
296 (list 'byte-code (aref lambda 1)
297 (aref lambda 2) (aref lambda 3)))))
298 (let ((arglist (nth 1 lambda))
299 (body (cdr (cdr lambda)))
300 optionalp restp
301 bindings)
302 (if (and (stringp (car body)) (cdr body))
303 (setq body (cdr body)))
304 (if (and (consp (car body)) (eq 'interactive (car (car body))))
305 (setq body (cdr body)))
306 (while arglist
307 (cond ((eq (car arglist) '&optional)
308 ;; ok, I'll let this slide because funcall_lambda() does...
309 ;; (if optionalp (error "multiple &optional keywords in %s" name))
310 (if restp (error "&optional found after &rest in %s" name))
311 (if (null (cdr arglist))
312 (error "nothing after &optional in %s" name))
313 (setq optionalp t))
314 ((eq (car arglist) '&rest)
315 ;; ...but it is by no stretch of the imagination a reasonable
316 ;; thing that funcall_lambda() allows (&rest x y) and
317 ;; (&rest x &optional y) in arglists.
318 (if (null (cdr arglist))
319 (error "nothing after &rest in %s" name))
320 (if (cdr (cdr arglist))
321 (error "multiple vars after &rest in %s" name))
322 (setq restp t))
323 (restp
324 (setq bindings (cons (list (car arglist)
325 (and values (cons 'list values)))
326 bindings)
327 values nil))
328 ((and (not optionalp) (null values))
329 (byte-compile-warn "attempt to open-code `%s' with too few arguments" name)
330 (setq arglist nil values 'too-few))
332 (setq bindings (cons (list (car arglist) (car values))
333 bindings)
334 values (cdr values))))
335 (setq arglist (cdr arglist)))
336 (if values
337 (progn
338 (or (eq values 'too-few)
339 (byte-compile-warn
340 "attempt to open-code `%s' with too many arguments" name))
341 form)
343 ;; The following leads to infinite recursion when loading a
344 ;; file containing `(defsubst f () (f))', and then trying to
345 ;; byte-compile that file.
346 ;(setq body (mapcar 'byte-optimize-form body)))
348 (let ((newform
349 (if bindings
350 (cons 'let (cons (nreverse bindings) body))
351 (cons 'progn body))))
352 (byte-compile-log " %s\t==>\t%s" form newform)
353 newform)))))
356 ;;; implementing source-level optimizers
358 (defun byte-optimize-form-code-walker (form for-effect)
360 ;; For normal function calls, We can just mapcar the optimizer the cdr. But
361 ;; we need to have special knowledge of the syntax of the special forms
362 ;; like let and defun (that's why they're special forms :-). (Actually,
363 ;; the important aspect is that they are subrs that don't evaluate all of
364 ;; their args.)
366 (let ((fn (car-safe form))
367 tmp)
368 (cond ((not (consp form))
369 (if (not (and for-effect
370 (or byte-compile-delete-errors
371 (not (symbolp form))
372 (eq form t))))
373 form))
374 ((eq fn 'quote)
375 (if (cdr (cdr form))
376 (byte-compile-warn "malformed quote form: `%s'"
377 (prin1-to-string form)))
378 ;; map (quote nil) to nil to simplify optimizer logic.
379 ;; map quoted constants to nil if for-effect (just because).
380 (and (nth 1 form)
381 (not for-effect)
382 form))
383 ((or (byte-code-function-p fn)
384 (eq 'lambda (car-safe fn)))
385 (byte-compile-unfold-lambda form))
386 ((memq fn '(let let*))
387 ;; recursively enter the optimizer for the bindings and body
388 ;; of a let or let*. This for depth-firstness: forms that
389 ;; are more deeply nested are optimized first.
390 (cons fn
391 (cons
392 (mapcar (lambda (binding)
393 (if (symbolp binding)
394 binding
395 (if (cdr (cdr binding))
396 (byte-compile-warn "malformed let binding: `%s'"
397 (prin1-to-string binding)))
398 (list (car binding)
399 (byte-optimize-form (nth 1 binding) nil))))
400 (nth 1 form))
401 (byte-optimize-body (cdr (cdr form)) for-effect))))
402 ((eq fn 'cond)
403 (cons fn
404 (mapcar (lambda (clause)
405 (if (consp clause)
406 (cons
407 (byte-optimize-form (car clause) nil)
408 (byte-optimize-body (cdr clause) for-effect))
409 (byte-compile-warn "malformed cond form: `%s'"
410 (prin1-to-string clause))
411 clause))
412 (cdr form))))
413 ((eq fn 'progn)
414 ;; as an extra added bonus, this simplifies (progn <x>) --> <x>
415 (if (cdr (cdr form))
416 (progn
417 (setq tmp (byte-optimize-body (cdr form) for-effect))
418 (if (cdr tmp) (cons 'progn tmp) (car tmp)))
419 (byte-optimize-form (nth 1 form) for-effect)))
420 ((eq fn 'prog1)
421 (if (cdr (cdr form))
422 (cons 'prog1
423 (cons (byte-optimize-form (nth 1 form) for-effect)
424 (byte-optimize-body (cdr (cdr form)) t)))
425 (byte-optimize-form (nth 1 form) for-effect)))
426 ((eq fn 'prog2)
427 (cons 'prog2
428 (cons (byte-optimize-form (nth 1 form) t)
429 (cons (byte-optimize-form (nth 2 form) for-effect)
430 (byte-optimize-body (cdr (cdr (cdr form))) t)))))
432 ((memq fn '(save-excursion save-restriction save-current-buffer))
433 ;; those subrs which have an implicit progn; it's not quite good
434 ;; enough to treat these like normal function calls.
435 ;; This can turn (save-excursion ...) into (save-excursion) which
436 ;; will be optimized away in the lap-optimize pass.
437 (cons fn (byte-optimize-body (cdr form) for-effect)))
439 ((eq fn 'with-output-to-temp-buffer)
440 ;; this is just like the above, except for the first argument.
441 (cons fn
442 (cons
443 (byte-optimize-form (nth 1 form) nil)
444 (byte-optimize-body (cdr (cdr form)) for-effect))))
446 ((eq fn 'if)
447 (when (< (length form) 3)
448 (byte-compile-warn "too few arguments for `if'"))
449 (cons fn
450 (cons (byte-optimize-form (nth 1 form) nil)
451 (cons
452 (byte-optimize-form (nth 2 form) for-effect)
453 (byte-optimize-body (nthcdr 3 form) for-effect)))))
455 ((memq fn '(and or)) ; remember, and/or are control structures.
456 ;; take forms off the back until we can't any more.
457 ;; In the future it could conceivably be a problem that the
458 ;; subexpressions of these forms are optimized in the reverse
459 ;; order, but it's ok for now.
460 (if for-effect
461 (let ((backwards (reverse (cdr form))))
462 (while (and backwards
463 (null (setcar backwards
464 (byte-optimize-form (car backwards)
465 for-effect))))
466 (setq backwards (cdr backwards)))
467 (if (and (cdr form) (null backwards))
468 (byte-compile-log
469 " all subforms of %s called for effect; deleted" form))
470 (and backwards
471 (cons fn (nreverse (mapcar 'byte-optimize-form backwards)))))
472 (cons fn (mapcar 'byte-optimize-form (cdr form)))))
474 ((eq fn 'interactive)
475 (byte-compile-warn "misplaced interactive spec: `%s'"
476 (prin1-to-string form))
477 nil)
479 ((memq fn '(defun defmacro function
480 condition-case save-window-excursion))
481 ;; These forms are compiled as constants or by breaking out
482 ;; all the subexpressions and compiling them separately.
483 form)
485 ((eq fn 'unwind-protect)
486 ;; the "protected" part of an unwind-protect is compiled (and thus
487 ;; optimized) as a top-level form, so don't do it here. But the
488 ;; non-protected part has the same for-effect status as the
489 ;; unwind-protect itself. (The protected part is always for effect,
490 ;; but that isn't handled properly yet.)
491 (cons fn
492 (cons (byte-optimize-form (nth 1 form) for-effect)
493 (cdr (cdr form)))))
495 ((eq fn 'catch)
496 ;; the body of a catch is compiled (and thus optimized) as a
497 ;; top-level form, so don't do it here. The tag is never
498 ;; for-effect. The body should have the same for-effect status
499 ;; as the catch form itself, but that isn't handled properly yet.
500 (cons fn
501 (cons (byte-optimize-form (nth 1 form) nil)
502 (cdr (cdr form)))))
504 ((eq fn 'ignore)
505 ;; Don't treat the args to `ignore' as being
506 ;; computed for effect. We want to avoid the warnings
507 ;; that might occur if they were treated that way.
508 ;; However, don't actually bother calling `ignore'.
509 `(prog1 nil . ,(mapcar 'byte-optimize-form (cdr form))))
511 ;; If optimization is on, this is the only place that macros are
512 ;; expanded. If optimization is off, then macroexpansion happens
513 ;; in byte-compile-form. Otherwise, the macros are already expanded
514 ;; by the time that is reached.
515 ((not (eq form
516 (setq form (macroexpand form
517 byte-compile-macro-environment))))
518 (byte-optimize-form form for-effect))
520 ;; Support compiler macros as in cl.el.
521 ((and (fboundp 'compiler-macroexpand)
522 (symbolp (car-safe form))
523 (get (car-safe form) 'cl-compiler-macro)
524 (not (eq form
525 (with-no-warnings
526 (setq form (compiler-macroexpand form))))))
527 (byte-optimize-form form for-effect))
529 ((not (symbolp fn))
530 (byte-compile-warn "`%s' is a malformed function"
531 (prin1-to-string fn))
532 form)
534 ((and for-effect (setq tmp (get fn 'side-effect-free))
535 (or byte-compile-delete-errors
536 (eq tmp 'error-free)
537 ;; Detect the expansion of (pop foo).
538 ;; There is no need to compile the call to `car' there.
539 (and (eq fn 'car)
540 (eq (car-safe (cadr form)) 'prog1)
541 (let ((var (cadr (cadr form)))
542 (last (nth 2 (cadr form))))
543 (and (symbolp var)
544 (null (nthcdr 3 (cadr form)))
545 (eq (car-safe last) 'setq)
546 (eq (cadr last) var)
547 (eq (car-safe (nth 2 last)) 'cdr)
548 (eq (cadr (nth 2 last)) var))))
549 (progn
550 (byte-compile-warn "value returned from %s is unused"
551 (prin1-to-string form))
552 nil)))
553 (byte-compile-log " %s called for effect; deleted" fn)
554 ;; appending a nil here might not be necessary, but it can't hurt.
555 (byte-optimize-form
556 (cons 'progn (append (cdr form) '(nil))) t))
559 ;; Otherwise, no args can be considered to be for-effect,
560 ;; even if the called function is for-effect, because we
561 ;; don't know anything about that function.
562 (let ((args (mapcar #'byte-optimize-form (cdr form))))
563 (if (and (get fn 'pure)
564 (byte-optimize-all-constp args))
565 (list 'quote (apply fn (mapcar #'eval args)))
566 (cons fn args)))))))
568 (defun byte-optimize-all-constp (list)
569 "Non-nil if all elements of LIST satisfy `byte-compile-constp'."
570 (let ((constant t))
571 (while (and list constant)
572 (unless (byte-compile-constp (car list))
573 (setq constant nil))
574 (setq list (cdr list)))
575 constant))
577 (defun byte-optimize-form (form &optional for-effect)
578 "The source-level pass of the optimizer."
580 ;; First, optimize all sub-forms of this one.
581 (setq form (byte-optimize-form-code-walker form for-effect))
583 ;; after optimizing all subforms, optimize this form until it doesn't
584 ;; optimize any further. This means that some forms will be passed through
585 ;; the optimizer many times, but that's necessary to make the for-effect
586 ;; processing do as much as possible.
588 (let (opt new)
589 (if (and (consp form)
590 (symbolp (car form))
591 (or (and for-effect
592 ;; we don't have any of these yet, but we might.
593 (setq opt (get (car form) 'byte-for-effect-optimizer)))
594 (setq opt (get (car form) 'byte-optimizer)))
595 (not (eq form (setq new (funcall opt form)))))
596 (progn
597 ;; (if (equal form new) (error "bogus optimizer -- %s" opt))
598 (byte-compile-log " %s\t==>\t%s" form new)
599 (setq new (byte-optimize-form new for-effect))
600 new)
601 form)))
604 (defun byte-optimize-body (forms all-for-effect)
605 ;; optimize the cdr of a progn or implicit progn; all forms is a list of
606 ;; forms, all but the last of which are optimized with the assumption that
607 ;; they are being called for effect. the last is for-effect as well if
608 ;; all-for-effect is true. returns a new list of forms.
609 (let ((rest forms)
610 (result nil)
611 fe new)
612 (while rest
613 (setq fe (or all-for-effect (cdr rest)))
614 (setq new (and (car rest) (byte-optimize-form (car rest) fe)))
615 (if (or new (not fe))
616 (setq result (cons new result)))
617 (setq rest (cdr rest)))
618 (nreverse result)))
621 ;; some source-level optimizers
623 ;; when writing optimizers, be VERY careful that the optimizer returns
624 ;; something not EQ to its argument if and ONLY if it has made a change.
625 ;; This implies that you cannot simply destructively modify the list;
626 ;; you must return something not EQ to it if you make an optimization.
628 ;; It is now safe to optimize code such that it introduces new bindings.
630 ;; I'd like this to be a defsubst, but let's not be self-referential...
631 (defmacro byte-compile-trueconstp (form)
632 ;; Returns non-nil if FORM is a non-nil constant.
633 `(cond ((consp ,form) (eq (car ,form) 'quote))
634 ((not (symbolp ,form)))
635 ((eq ,form t))
636 ((keywordp ,form))))
638 ;; If the function is being called with constant numeric args,
639 ;; evaluate as much as possible at compile-time. This optimizer
640 ;; assumes that the function is associative, like + or *.
641 (defun byte-optimize-associative-math (form)
642 (let ((args nil)
643 (constants nil)
644 (rest (cdr form)))
645 (while rest
646 (if (numberp (car rest))
647 (setq constants (cons (car rest) constants))
648 (setq args (cons (car rest) args)))
649 (setq rest (cdr rest)))
650 (if (cdr constants)
651 (if args
652 (list (car form)
653 (apply (car form) constants)
654 (if (cdr args)
655 (cons (car form) (nreverse args))
656 (car args)))
657 (apply (car form) constants))
658 form)))
660 ;; If the function is being called with constant numeric args,
661 ;; evaluate as much as possible at compile-time. This optimizer
662 ;; assumes that the function satisfies
663 ;; (op x1 x2 ... xn) == (op ...(op (op x1 x2) x3) ...xn)
664 ;; like - and /.
665 (defun byte-optimize-nonassociative-math (form)
666 (if (or (not (numberp (car (cdr form))))
667 (not (numberp (car (cdr (cdr form))))))
668 form
669 (let ((constant (car (cdr form)))
670 (rest (cdr (cdr form))))
671 (while (numberp (car rest))
672 (setq constant (funcall (car form) constant (car rest))
673 rest (cdr rest)))
674 (if rest
675 (cons (car form) (cons constant rest))
676 constant))))
678 ;;(defun byte-optimize-associative-two-args-math (form)
679 ;; (setq form (byte-optimize-associative-math form))
680 ;; (if (consp form)
681 ;; (byte-optimize-two-args-left form)
682 ;; form))
684 ;;(defun byte-optimize-nonassociative-two-args-math (form)
685 ;; (setq form (byte-optimize-nonassociative-math form))
686 ;; (if (consp form)
687 ;; (byte-optimize-two-args-right form)
688 ;; form))
690 (defun byte-optimize-approx-equal (x y)
691 (<= (* (abs (- x y)) 100) (abs (+ x y))))
693 ;; Collect all the constants from FORM, after the STARTth arg,
694 ;; and apply FUN to them to make one argument at the end.
695 ;; For functions that can handle floats, that optimization
696 ;; can be incorrect because reordering can cause an overflow
697 ;; that would otherwise be avoided by encountering an arg that is a float.
698 ;; We avoid this problem by (1) not moving float constants and
699 ;; (2) not moving anything if it would cause an overflow.
700 (defun byte-optimize-delay-constants-math (form start fun)
701 ;; Merge all FORM's constants from number START, call FUN on them
702 ;; and put the result at the end.
703 (let ((rest (nthcdr (1- start) form))
704 (orig form)
705 ;; t means we must check for overflow.
706 (overflow (memq fun '(+ *))))
707 (while (cdr (setq rest (cdr rest)))
708 (if (integerp (car rest))
709 (let (constants)
710 (setq form (copy-sequence form)
711 rest (nthcdr (1- start) form))
712 (while (setq rest (cdr rest))
713 (cond ((integerp (car rest))
714 (setq constants (cons (car rest) constants))
715 (setcar rest nil))))
716 ;; If necessary, check now for overflow
717 ;; that might be caused by reordering.
718 (if (and overflow
719 ;; We have overflow if the result of doing the arithmetic
720 ;; on floats is not even close to the result
721 ;; of doing it on integers.
722 (not (byte-optimize-approx-equal
723 (apply fun (mapcar 'float constants))
724 (float (apply fun constants)))))
725 (setq form orig)
726 (setq form (nconc (delq nil form)
727 (list (apply fun (nreverse constants)))))))))
728 form))
730 (defun byte-optimize-plus (form)
731 (setq form (byte-optimize-delay-constants-math form 1 '+))
732 (if (memq 0 form) (setq form (delq 0 (copy-sequence form))))
733 ;;(setq form (byte-optimize-associative-two-args-math form))
734 (cond ((null (cdr form))
735 (condition-case ()
736 (eval form)
737 (error form)))
738 ;;; It is not safe to delete the function entirely
739 ;;; (actually, it would be safe if we know the sole arg
740 ;;; is not a marker).
741 ;;; ((null (cdr (cdr form))) (nth 1 form))
742 ((null (cddr form))
743 (if (numberp (nth 1 form))
744 (nth 1 form)
745 form))
746 ((and (null (nthcdr 3 form))
747 (or (memq (nth 1 form) '(1 -1))
748 (memq (nth 2 form) '(1 -1))))
749 ;; Optimize (+ x 1) into (1+ x) and (+ x -1) into (1- x).
750 (let ((integer
751 (if (memq (nth 1 form) '(1 -1))
752 (nth 1 form)
753 (nth 2 form)))
754 (other
755 (if (memq (nth 1 form) '(1 -1))
756 (nth 2 form)
757 (nth 1 form))))
758 (list (if (eq integer 1) '1+ '1-)
759 other)))
760 (t form)))
762 (defun byte-optimize-minus (form)
763 ;; Put constants at the end, except the last constant.
764 (setq form (byte-optimize-delay-constants-math form 2 '+))
765 ;; Now only first and last element can be a number.
766 (let ((last (car (reverse (nthcdr 3 form)))))
767 (cond ((eq 0 last)
768 ;; (- x y ... 0) --> (- x y ...)
769 (setq form (copy-sequence form))
770 (setcdr (cdr (cdr form)) (delq 0 (nthcdr 3 form))))
771 ((equal (nthcdr 2 form) '(1))
772 (setq form (list '1- (nth 1 form))))
773 ((equal (nthcdr 2 form) '(-1))
774 (setq form (list '1+ (nth 1 form))))
775 ;; If form is (- CONST foo... CONST), merge first and last.
776 ((and (numberp (nth 1 form))
777 (numberp last))
778 (setq form (nconc (list '- (- (nth 1 form) last) (nth 2 form))
779 (delq last (copy-sequence (nthcdr 3 form))))))))
780 ;;; It is not safe to delete the function entirely
781 ;;; (actually, it would be safe if we know the sole arg
782 ;;; is not a marker).
783 ;;; (if (eq (nth 2 form) 0)
784 ;;; (nth 1 form) ; (- x 0) --> x
785 (byte-optimize-predicate
786 (if (and (null (cdr (cdr (cdr form))))
787 (eq (nth 1 form) 0)) ; (- 0 x) --> (- x)
788 (cons (car form) (cdr (cdr form)))
789 form))
790 ;;; )
793 (defun byte-optimize-multiply (form)
794 (setq form (byte-optimize-delay-constants-math form 1 '*))
795 ;; If there is a constant in FORM, it is now the last element.
796 (cond ((null (cdr form)) 1)
797 ;;; It is not safe to delete the function entirely
798 ;;; (actually, it would be safe if we know the sole arg
799 ;;; is not a marker or if it appears in other arithmetic).
800 ;;; ((null (cdr (cdr form))) (nth 1 form))
801 ((let ((last (car (reverse form))))
802 (cond ((eq 0 last) (cons 'progn (cdr form)))
803 ((eq 1 last) (delq 1 (copy-sequence form)))
804 ((eq -1 last) (list '- (delq -1 (copy-sequence form))))
805 ((and (eq 2 last)
806 (memq t (mapcar 'symbolp (cdr form))))
807 (prog1 (setq form (delq 2 (copy-sequence form)))
808 (while (not (symbolp (car (setq form (cdr form))))))
809 (setcar form (list '+ (car form) (car form)))))
810 (form))))))
812 (defsubst byte-compile-butlast (form)
813 (nreverse (cdr (reverse form))))
815 (defun byte-optimize-divide (form)
816 (setq form (byte-optimize-delay-constants-math form 2 '*))
817 (let ((last (car (reverse (cdr (cdr form))))))
818 (if (numberp last)
819 (cond ((= (length form) 3)
820 (if (and (numberp (nth 1 form))
821 (not (zerop last))
822 (condition-case nil
823 (/ (nth 1 form) last)
824 (error nil)))
825 (setq form (list 'progn (/ (nth 1 form) last)))))
826 ((= last 1)
827 (setq form (byte-compile-butlast form)))
828 ((numberp (nth 1 form))
829 (setq form (cons (car form)
830 (cons (/ (nth 1 form) last)
831 (byte-compile-butlast (cdr (cdr form)))))
832 last nil))))
833 (cond
834 ;;; ((null (cdr (cdr form)))
835 ;;; (nth 1 form))
836 ((eq (nth 1 form) 0)
837 (append '(progn) (cdr (cdr form)) '(0)))
838 ((eq last -1)
839 (list '- (if (nthcdr 3 form)
840 (byte-compile-butlast form)
841 (nth 1 form))))
842 (form))))
844 (defun byte-optimize-logmumble (form)
845 (setq form (byte-optimize-delay-constants-math form 1 (car form)))
846 (byte-optimize-predicate
847 (cond ((memq 0 form)
848 (setq form (if (eq (car form) 'logand)
849 (cons 'progn (cdr form))
850 (delq 0 (copy-sequence form)))))
851 ((and (eq (car-safe form) 'logior)
852 (memq -1 form))
853 (cons 'progn (cdr form)))
854 (form))))
857 (defun byte-optimize-binary-predicate (form)
858 (if (byte-compile-constp (nth 1 form))
859 (if (byte-compile-constp (nth 2 form))
860 (condition-case ()
861 (list 'quote (eval form))
862 (error form))
863 ;; This can enable some lapcode optimizations.
864 (list (car form) (nth 2 form) (nth 1 form)))
865 form))
867 (defun byte-optimize-predicate (form)
868 (let ((ok t)
869 (rest (cdr form)))
870 (while (and rest ok)
871 (setq ok (byte-compile-constp (car rest))
872 rest (cdr rest)))
873 (if ok
874 (condition-case ()
875 (list 'quote (eval form))
876 (error form))
877 form)))
879 (defun byte-optimize-identity (form)
880 (if (and (cdr form) (null (cdr (cdr form))))
881 (nth 1 form)
882 (byte-compile-warn "identity called with %d arg%s, but requires 1"
883 (length (cdr form))
884 (if (= 1 (length (cdr form))) "" "s"))
885 form))
887 (put 'identity 'byte-optimizer 'byte-optimize-identity)
889 (put '+ 'byte-optimizer 'byte-optimize-plus)
890 (put '* 'byte-optimizer 'byte-optimize-multiply)
891 (put '- 'byte-optimizer 'byte-optimize-minus)
892 (put '/ 'byte-optimizer 'byte-optimize-divide)
893 (put 'max 'byte-optimizer 'byte-optimize-associative-math)
894 (put 'min 'byte-optimizer 'byte-optimize-associative-math)
896 (put '= 'byte-optimizer 'byte-optimize-binary-predicate)
897 (put 'eq 'byte-optimizer 'byte-optimize-binary-predicate)
898 (put 'equal 'byte-optimizer 'byte-optimize-binary-predicate)
899 (put 'string= 'byte-optimizer 'byte-optimize-binary-predicate)
900 (put 'string-equal 'byte-optimizer 'byte-optimize-binary-predicate)
902 (put '< 'byte-optimizer 'byte-optimize-predicate)
903 (put '> 'byte-optimizer 'byte-optimize-predicate)
904 (put '<= 'byte-optimizer 'byte-optimize-predicate)
905 (put '>= 'byte-optimizer 'byte-optimize-predicate)
906 (put '1+ 'byte-optimizer 'byte-optimize-predicate)
907 (put '1- 'byte-optimizer 'byte-optimize-predicate)
908 (put 'not 'byte-optimizer 'byte-optimize-predicate)
909 (put 'null 'byte-optimizer 'byte-optimize-predicate)
910 (put 'memq 'byte-optimizer 'byte-optimize-predicate)
911 (put 'consp 'byte-optimizer 'byte-optimize-predicate)
912 (put 'listp 'byte-optimizer 'byte-optimize-predicate)
913 (put 'symbolp 'byte-optimizer 'byte-optimize-predicate)
914 (put 'stringp 'byte-optimizer 'byte-optimize-predicate)
915 (put 'string< 'byte-optimizer 'byte-optimize-predicate)
916 (put 'string-lessp 'byte-optimizer 'byte-optimize-predicate)
918 (put 'logand 'byte-optimizer 'byte-optimize-logmumble)
919 (put 'logior 'byte-optimizer 'byte-optimize-logmumble)
920 (put 'logxor 'byte-optimizer 'byte-optimize-logmumble)
921 (put 'lognot 'byte-optimizer 'byte-optimize-predicate)
923 (put 'car 'byte-optimizer 'byte-optimize-predicate)
924 (put 'cdr 'byte-optimizer 'byte-optimize-predicate)
925 (put 'car-safe 'byte-optimizer 'byte-optimize-predicate)
926 (put 'cdr-safe 'byte-optimizer 'byte-optimize-predicate)
929 ;; I'm not convinced that this is necessary. Doesn't the optimizer loop
930 ;; take care of this? - Jamie
931 ;; I think this may some times be necessary to reduce ie (quote 5) to 5,
932 ;; so arithmetic optimizers recognize the numeric constant. - Hallvard
933 (put 'quote 'byte-optimizer 'byte-optimize-quote)
934 (defun byte-optimize-quote (form)
935 (if (or (consp (nth 1 form))
936 (and (symbolp (nth 1 form))
937 (not (byte-compile-const-symbol-p form))))
938 form
939 (nth 1 form)))
941 (defun byte-optimize-zerop (form)
942 (cond ((numberp (nth 1 form))
943 (eval form))
944 (byte-compile-delete-errors
945 (list '= (nth 1 form) 0))
946 (form)))
948 (put 'zerop 'byte-optimizer 'byte-optimize-zerop)
950 (defun byte-optimize-and (form)
951 ;; Simplify if less than 2 args.
952 ;; if there is a literal nil in the args to `and', throw it and following
953 ;; forms away, and surround the `and' with (progn ... nil).
954 (cond ((null (cdr form)))
955 ((memq nil form)
956 (list 'progn
957 (byte-optimize-and
958 (prog1 (setq form (copy-sequence form))
959 (while (nth 1 form)
960 (setq form (cdr form)))
961 (setcdr form nil)))
962 nil))
963 ((null (cdr (cdr form)))
964 (nth 1 form))
965 ((byte-optimize-predicate form))))
967 (defun byte-optimize-or (form)
968 ;; Throw away nil's, and simplify if less than 2 args.
969 ;; If there is a literal non-nil constant in the args to `or', throw away all
970 ;; following forms.
971 (if (memq nil form)
972 (setq form (delq nil (copy-sequence form))))
973 (let ((rest form))
974 (while (cdr (setq rest (cdr rest)))
975 (if (byte-compile-trueconstp (car rest))
976 (setq form (copy-sequence form)
977 rest (setcdr (memq (car rest) form) nil))))
978 (if (cdr (cdr form))
979 (byte-optimize-predicate form)
980 (nth 1 form))))
982 (defun byte-optimize-cond (form)
983 ;; if any clauses have a literal nil as their test, throw them away.
984 ;; if any clause has a literal non-nil constant as its test, throw
985 ;; away all following clauses.
986 (let (rest)
987 ;; This must be first, to reduce (cond (t ...) (nil)) to (progn t ...)
988 (while (setq rest (assq nil (cdr form)))
989 (setq form (delq rest (copy-sequence form))))
990 (if (memq nil (cdr form))
991 (setq form (delq nil (copy-sequence form))))
992 (setq rest form)
993 (while (setq rest (cdr rest))
994 (cond ((byte-compile-trueconstp (car-safe (car rest)))
995 (cond ((eq rest (cdr form))
996 (setq form
997 (if (cdr (car rest))
998 (if (cdr (cdr (car rest)))
999 (cons 'progn (cdr (car rest)))
1000 (nth 1 (car rest)))
1001 (car (car rest)))))
1002 ((cdr rest)
1003 (setq form (copy-sequence form))
1004 (setcdr (memq (car rest) form) nil)))
1005 (setq rest nil)))))
1007 ;; Turn (cond (( <x> )) ... ) into (or <x> (cond ... ))
1008 (if (eq 'cond (car-safe form))
1009 (let ((clauses (cdr form)))
1010 (if (and (consp (car clauses))
1011 (null (cdr (car clauses))))
1012 (list 'or (car (car clauses))
1013 (byte-optimize-cond
1014 (cons (car form) (cdr (cdr form)))))
1015 form))
1016 form))
1018 (defun byte-optimize-if (form)
1019 ;; (if <true-constant> <then> <else...>) ==> <then>
1020 ;; (if <false-constant> <then> <else...>) ==> (progn <else...>)
1021 ;; (if <test> nil <else...>) ==> (if (not <test>) (progn <else...>))
1022 ;; (if <test> <then> nil) ==> (if <test> <then>)
1023 (let ((clause (nth 1 form)))
1024 (cond ((byte-compile-trueconstp clause)
1025 (nth 2 form))
1026 ((null clause)
1027 (if (nthcdr 4 form)
1028 (cons 'progn (nthcdr 3 form))
1029 (nth 3 form)))
1030 ((nth 2 form)
1031 (if (equal '(nil) (nthcdr 3 form))
1032 (list 'if clause (nth 2 form))
1033 form))
1034 ((or (nth 3 form) (nthcdr 4 form))
1035 (list 'if
1036 ;; Don't make a double negative;
1037 ;; instead, take away the one that is there.
1038 (if (and (consp clause) (memq (car clause) '(not null))
1039 (= (length clause) 2)) ; (not xxxx) or (not (xxxx))
1040 (nth 1 clause)
1041 (list 'not clause))
1042 (if (nthcdr 4 form)
1043 (cons 'progn (nthcdr 3 form))
1044 (nth 3 form))))
1046 (list 'progn clause nil)))))
1048 (defun byte-optimize-while (form)
1049 (when (< (length form) 2)
1050 (byte-compile-warn "too few arguments for `while'"))
1051 (if (nth 1 form)
1052 form))
1054 (put 'and 'byte-optimizer 'byte-optimize-and)
1055 (put 'or 'byte-optimizer 'byte-optimize-or)
1056 (put 'cond 'byte-optimizer 'byte-optimize-cond)
1057 (put 'if 'byte-optimizer 'byte-optimize-if)
1058 (put 'while 'byte-optimizer 'byte-optimize-while)
1060 ;; byte-compile-negation-optimizer lives in bytecomp.el
1061 (put '/= 'byte-optimizer 'byte-compile-negation-optimizer)
1062 (put 'atom 'byte-optimizer 'byte-compile-negation-optimizer)
1063 (put 'nlistp 'byte-optimizer 'byte-compile-negation-optimizer)
1066 (defun byte-optimize-funcall (form)
1067 ;; (funcall (lambda ...) ...) ==> ((lambda ...) ...)
1068 ;; (funcall foo ...) ==> (foo ...)
1069 (let ((fn (nth 1 form)))
1070 (if (memq (car-safe fn) '(quote function))
1071 (cons (nth 1 fn) (cdr (cdr form)))
1072 form)))
1074 (defun byte-optimize-apply (form)
1075 ;; If the last arg is a literal constant, turn this into a funcall.
1076 ;; The funcall optimizer can then transform (funcall 'foo ...) -> (foo ...).
1077 (let ((fn (nth 1 form))
1078 (last (nth (1- (length form)) form))) ; I think this really is fastest
1079 (or (if (or (null last)
1080 (eq (car-safe last) 'quote))
1081 (if (listp (nth 1 last))
1082 (let ((butlast (nreverse (cdr (reverse (cdr (cdr form)))))))
1083 (nconc (list 'funcall fn) butlast
1084 (mapcar (lambda (x) (list 'quote x)) (nth 1 last))))
1085 (byte-compile-warn
1086 "last arg to apply can't be a literal atom: `%s'"
1087 (prin1-to-string last))
1088 nil))
1089 form)))
1091 (put 'funcall 'byte-optimizer 'byte-optimize-funcall)
1092 (put 'apply 'byte-optimizer 'byte-optimize-apply)
1095 (put 'let 'byte-optimizer 'byte-optimize-letX)
1096 (put 'let* 'byte-optimizer 'byte-optimize-letX)
1097 (defun byte-optimize-letX (form)
1098 (cond ((null (nth 1 form))
1099 ;; No bindings
1100 (cons 'progn (cdr (cdr form))))
1101 ((or (nth 2 form) (nthcdr 3 form))
1102 form)
1103 ;; The body is nil
1104 ((eq (car form) 'let)
1105 (append '(progn) (mapcar 'car-safe (mapcar 'cdr-safe (nth 1 form)))
1106 '(nil)))
1108 (let ((binds (reverse (nth 1 form))))
1109 (list 'let* (reverse (cdr binds)) (nth 1 (car binds)) nil)))))
1112 (put 'nth 'byte-optimizer 'byte-optimize-nth)
1113 (defun byte-optimize-nth (form)
1114 (if (= (safe-length form) 3)
1115 (if (memq (nth 1 form) '(0 1))
1116 (list 'car (if (zerop (nth 1 form))
1117 (nth 2 form)
1118 (list 'cdr (nth 2 form))))
1119 (byte-optimize-predicate form))
1120 form))
1122 (put 'nthcdr 'byte-optimizer 'byte-optimize-nthcdr)
1123 (defun byte-optimize-nthcdr (form)
1124 (if (= (safe-length form) 3)
1125 (if (memq (nth 1 form) '(0 1 2))
1126 (let ((count (nth 1 form)))
1127 (setq form (nth 2 form))
1128 (while (>= (setq count (1- count)) 0)
1129 (setq form (list 'cdr form)))
1130 form)
1131 (byte-optimize-predicate form))
1132 form))
1134 ;; Fixme: delete-char -> delete-region (byte-coded)
1135 ;; optimize string-as-unibyte, string-as-multibyte, string-make-unibyte,
1136 ;; string-make-multibyte for constant args.
1138 (put 'featurep 'byte-optimizer 'byte-optimize-featurep)
1139 (defun byte-optimize-featurep (form)
1140 ;; Emacs-21's byte-code doesn't run under XEmacs or SXEmacs anyway, so we
1141 ;; can safely optimize away this test.
1142 (if (member (cdr-safe form) '((quote xemacs) (quote sxemacs)))
1144 form))
1146 (put 'set 'byte-optimizer 'byte-optimize-set)
1147 (defun byte-optimize-set (form)
1148 (let ((var (car-safe (cdr-safe form))))
1149 (cond
1150 ((and (eq (car-safe var) 'quote) (consp (cdr var)))
1151 `(setq ,(cadr var) ,@(cddr form)))
1152 ((and (eq (car-safe var) 'make-local-variable)
1153 (eq (car-safe (setq var (car-safe (cdr var)))) 'quote)
1154 (consp (cdr var)))
1155 `(progn ,(cadr form) (setq ,(cadr var) ,@(cddr form))))
1156 (t form))))
1158 ;; enumerating those functions which need not be called if the returned
1159 ;; value is not used. That is, something like
1160 ;; (progn (list (something-with-side-effects) (yow))
1161 ;; (foo))
1162 ;; may safely be turned into
1163 ;; (progn (progn (something-with-side-effects) (yow))
1164 ;; (foo))
1165 ;; Further optimizations will turn (progn (list 1 2 3) 'foo) into 'foo.
1167 ;; Some of these functions have the side effect of allocating memory
1168 ;; and it would be incorrect to replace two calls with one.
1169 ;; But we don't try to do those kinds of optimizations,
1170 ;; so it is safe to list such functions here.
1171 ;; Some of these functions return values that depend on environment
1172 ;; state, so that constant folding them would be wrong,
1173 ;; but we don't do constant folding based on this list.
1175 ;; However, at present the only optimization we normally do
1176 ;; is delete calls that need not occur, and we only do that
1177 ;; with the error-free functions.
1179 ;; I wonder if I missed any :-\)
1180 (let ((side-effect-free-fns
1181 '(% * + - / /= 1+ 1- < <= = > >= abs acos append aref ash asin atan
1182 assoc assq
1183 boundp buffer-file-name buffer-local-variables buffer-modified-p
1184 buffer-substring byte-code-function-p
1185 capitalize car-less-than-car car cdr ceiling char-after char-before
1186 char-equal char-to-string char-width
1187 compare-strings concat coordinates-in-window-p
1188 copy-alist copy-sequence copy-marker cos count-lines
1189 decode-time default-boundp default-value documentation downcase
1190 elt exp expt encode-time error-message-string
1191 fboundp fceiling featurep ffloor
1192 file-directory-p file-exists-p file-locked-p file-name-absolute-p
1193 file-newer-than-file-p file-readable-p file-symlink-p file-writable-p
1194 float float-time floor format format-time-string frame-visible-p
1195 fround ftruncate
1196 get gethash get-buffer get-buffer-window getenv get-file-buffer
1197 hash-table-count
1198 int-to-string intern-soft
1199 keymap-parent
1200 length local-variable-if-set-p local-variable-p log log10 logand
1201 logb logior lognot logxor lsh
1202 make-list make-string make-symbol
1203 marker-buffer max member memq min mod multibyte-char-to-unibyte
1204 next-window nth nthcdr number-to-string
1205 parse-colon-path plist-get plist-member
1206 prefix-numeric-value previous-window prin1-to-string propertize
1207 radians-to-degrees rassq rassoc read-from-string regexp-quote
1208 region-beginning region-end reverse round
1209 sin sqrt string string< string= string-equal string-lessp string-to-char
1210 string-to-int string-to-number substring sxhash symbol-function
1211 symbol-name symbol-plist symbol-value string-make-unibyte
1212 string-make-multibyte string-as-multibyte string-as-unibyte
1213 tan truncate
1214 unibyte-char-to-multibyte upcase user-full-name
1215 user-login-name user-original-login-name user-variable-p
1216 vconcat
1217 window-buffer window-dedicated-p window-edges window-height
1218 window-hscroll window-minibuffer-p window-width
1219 zerop))
1220 (side-effect-and-error-free-fns
1221 '(arrayp atom
1222 bobp bolp bool-vector-p
1223 buffer-end buffer-list buffer-size buffer-string bufferp
1224 car-safe case-table-p cdr-safe char-or-string-p commandp cons consp
1225 current-buffer current-global-map current-indentation
1226 current-local-map current-minor-mode-maps current-time
1227 current-time-string current-time-zone
1228 eobp eolp eq equal eventp
1229 floatp following-char framep
1230 get-largest-window get-lru-window
1231 hash-table-p
1232 identity ignore integerp integer-or-marker-p interactive-p
1233 invocation-directory invocation-name
1234 keymapp
1235 line-beginning-position line-end-position list listp
1236 make-marker mark mark-marker markerp memory-limit minibuffer-window
1237 mouse-movement-p
1238 natnump nlistp not null number-or-marker-p numberp
1239 one-window-p overlayp
1240 point point-marker point-min point-max preceding-char processp
1241 recent-keys recursion-depth
1242 safe-length selected-frame selected-window sequencep
1243 standard-case-table standard-syntax-table stringp subrp symbolp
1244 syntax-table syntax-table-p
1245 this-command-keys this-command-keys-vector this-single-command-keys
1246 this-single-command-raw-keys
1247 user-real-login-name user-real-uid user-uid
1248 vector vectorp visible-frame-list
1249 wholenump window-configuration-p window-live-p windowp)))
1250 (while side-effect-free-fns
1251 (put (car side-effect-free-fns) 'side-effect-free t)
1252 (setq side-effect-free-fns (cdr side-effect-free-fns)))
1253 (while side-effect-and-error-free-fns
1254 (put (car side-effect-and-error-free-fns) 'side-effect-free 'error-free)
1255 (setq side-effect-and-error-free-fns (cdr side-effect-and-error-free-fns)))
1256 nil)
1259 ;; pure functions are side-effect free functions whose values depend
1260 ;; only on their arguments. For these functions, calls with constant
1261 ;; arguments can be evaluated at compile time. This may shift run time
1262 ;; errors to compile time.
1264 (let ((pure-fns
1265 '(concat symbol-name regexp-opt regexp-quote string-to-syntax)))
1266 (while pure-fns
1267 (put (car pure-fns) 'pure t)
1268 (setq pure-fns (cdr pure-fns)))
1269 nil)
1271 (defun byte-compile-splice-in-already-compiled-code (form)
1272 ;; form is (byte-code "..." [...] n)
1273 (if (not (memq byte-optimize '(t lap)))
1274 (byte-compile-normal-call form)
1275 (byte-inline-lapcode
1276 (byte-decompile-bytecode-1 (nth 1 form) (nth 2 form) t))
1277 (setq byte-compile-maxdepth (max (+ byte-compile-depth (nth 3 form))
1278 byte-compile-maxdepth))
1279 (setq byte-compile-depth (1+ byte-compile-depth))))
1281 (put 'byte-code 'byte-compile 'byte-compile-splice-in-already-compiled-code)
1284 (defconst byte-constref-ops
1285 '(byte-constant byte-constant2 byte-varref byte-varset byte-varbind))
1287 ;; This function extracts the bitfields from variable-length opcodes.
1288 ;; Originally defined in disass.el (which no longer uses it.)
1290 (defun disassemble-offset ()
1291 "Don't call this!"
1292 ;; fetch and return the offset for the current opcode.
1293 ;; return nil if this opcode has no offset
1294 ;; OP, PTR and BYTES are used and set dynamically
1295 (defvar op)
1296 (defvar ptr)
1297 (defvar bytes)
1298 (cond ((< op byte-nth)
1299 (let ((tem (logand op 7)))
1300 (setq op (logand op 248))
1301 (cond ((eq tem 6)
1302 (setq ptr (1+ ptr)) ;offset in next byte
1303 (aref bytes ptr))
1304 ((eq tem 7)
1305 (setq ptr (1+ ptr)) ;offset in next 2 bytes
1306 (+ (aref bytes ptr)
1307 (progn (setq ptr (1+ ptr))
1308 (lsh (aref bytes ptr) 8))))
1309 (t tem)))) ;offset was in opcode
1310 ((>= op byte-constant)
1311 (prog1 (- op byte-constant) ;offset in opcode
1312 (setq op byte-constant)))
1313 ((and (>= op byte-constant2)
1314 (<= op byte-goto-if-not-nil-else-pop))
1315 (setq ptr (1+ ptr)) ;offset in next 2 bytes
1316 (+ (aref bytes ptr)
1317 (progn (setq ptr (1+ ptr))
1318 (lsh (aref bytes ptr) 8))))
1319 ((and (>= op byte-listN)
1320 (<= op byte-insertN))
1321 (setq ptr (1+ ptr)) ;offset in next byte
1322 (aref bytes ptr))))
1325 ;; This de-compiler is used for inline expansion of compiled functions,
1326 ;; and by the disassembler.
1328 ;; This list contains numbers, which are pc values,
1329 ;; before each instruction.
1330 (defun byte-decompile-bytecode (bytes constvec)
1331 "Turns BYTECODE into lapcode, referring to CONSTVEC."
1332 (let ((byte-compile-constants nil)
1333 (byte-compile-variables nil)
1334 (byte-compile-tag-number 0))
1335 (byte-decompile-bytecode-1 bytes constvec)))
1337 ;; As byte-decompile-bytecode, but updates
1338 ;; byte-compile-{constants, variables, tag-number}.
1339 ;; If MAKE-SPLICEABLE is true, then `return' opcodes are replaced
1340 ;; with `goto's destined for the end of the code.
1341 ;; That is for use by the compiler.
1342 ;; If MAKE-SPLICEABLE is nil, we are being called for the disassembler.
1343 ;; In that case, we put a pc value into the list
1344 ;; before each insn (or its label).
1345 (defun byte-decompile-bytecode-1 (bytes constvec &optional make-spliceable)
1346 (let ((length (length bytes))
1347 (ptr 0) optr tags op offset
1348 lap tmp
1349 endtag)
1350 (while (not (= ptr length))
1351 (or make-spliceable
1352 (setq lap (cons ptr lap)))
1353 (setq op (aref bytes ptr)
1354 optr ptr
1355 offset (disassemble-offset)) ; this does dynamic-scope magic
1356 (setq op (aref byte-code-vector op))
1357 (cond ((memq op byte-goto-ops)
1358 ;; it's a pc
1359 (setq offset
1360 (cdr (or (assq offset tags)
1361 (car (setq tags
1362 (cons (cons offset
1363 (byte-compile-make-tag))
1364 tags)))))))
1365 ((cond ((eq op 'byte-constant2) (setq op 'byte-constant) t)
1366 ((memq op byte-constref-ops)))
1367 (setq tmp (if (>= offset (length constvec))
1368 (list 'out-of-range offset)
1369 (aref constvec offset))
1370 offset (if (eq op 'byte-constant)
1371 (byte-compile-get-constant tmp)
1372 (or (assq tmp byte-compile-variables)
1373 (car (setq byte-compile-variables
1374 (cons (list tmp)
1375 byte-compile-variables)))))))
1376 ((and make-spliceable
1377 (eq op 'byte-return))
1378 (if (= ptr (1- length))
1379 (setq op nil)
1380 (setq offset (or endtag (setq endtag (byte-compile-make-tag)))
1381 op 'byte-goto))))
1382 ;; lap = ( [ (pc . (op . arg)) ]* )
1383 (setq lap (cons (cons optr (cons op (or offset 0)))
1384 lap))
1385 (setq ptr (1+ ptr)))
1386 ;; take off the dummy nil op that we replaced a trailing "return" with.
1387 (let ((rest lap))
1388 (while rest
1389 (cond ((numberp (car rest)))
1390 ((setq tmp (assq (car (car rest)) tags))
1391 ;; this addr is jumped to
1392 (setcdr rest (cons (cons nil (cdr tmp))
1393 (cdr rest)))
1394 (setq tags (delq tmp tags))
1395 (setq rest (cdr rest))))
1396 (setq rest (cdr rest))))
1397 (if tags (error "optimizer error: missed tags %s" tags))
1398 (if (null (car (cdr (car lap))))
1399 (setq lap (cdr lap)))
1400 (if endtag
1401 (setq lap (cons (cons nil endtag) lap)))
1402 ;; remove addrs, lap = ( [ (op . arg) | (TAG tagno) ]* )
1403 (mapcar (function (lambda (elt)
1404 (if (numberp elt)
1406 (cdr elt))))
1407 (nreverse lap))))
1410 ;;; peephole optimizer
1412 (defconst byte-tagref-ops (cons 'TAG byte-goto-ops))
1414 (defconst byte-conditional-ops
1415 '(byte-goto-if-nil byte-goto-if-not-nil byte-goto-if-nil-else-pop
1416 byte-goto-if-not-nil-else-pop))
1418 (defconst byte-after-unbind-ops
1419 '(byte-constant byte-dup
1420 byte-symbolp byte-consp byte-stringp byte-listp byte-numberp byte-integerp
1421 byte-eq byte-not
1422 byte-cons byte-list1 byte-list2 ; byte-list3 byte-list4
1423 byte-interactive-p)
1424 ;; How about other side-effect-free-ops? Is it safe to move an
1425 ;; error invocation (such as from nth) out of an unwind-protect?
1426 ;; No, it is not, because the unwind-protect forms can alter
1427 ;; the inside of the object to which nth would apply.
1428 ;; For the same reason, byte-equal was deleted from this list.
1429 "Byte-codes that can be moved past an unbind.")
1431 (defconst byte-compile-side-effect-and-error-free-ops
1432 '(byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp
1433 byte-integerp byte-numberp byte-eq byte-equal byte-not byte-car-safe
1434 byte-cdr-safe byte-cons byte-list1 byte-list2 byte-point byte-point-max
1435 byte-point-min byte-following-char byte-preceding-char
1436 byte-current-column byte-eolp byte-eobp byte-bolp byte-bobp
1437 byte-current-buffer byte-interactive-p))
1439 (defconst byte-compile-side-effect-free-ops
1440 (nconc
1441 '(byte-varref byte-nth byte-memq byte-car byte-cdr byte-length byte-aref
1442 byte-symbol-value byte-get byte-concat2 byte-concat3 byte-sub1 byte-add1
1443 byte-eqlsign byte-gtr byte-lss byte-leq byte-geq byte-diff byte-negate
1444 byte-plus byte-max byte-min byte-mult byte-char-after byte-char-syntax
1445 byte-buffer-substring byte-string= byte-string< byte-nthcdr byte-elt
1446 byte-member byte-assq byte-quo byte-rem)
1447 byte-compile-side-effect-and-error-free-ops))
1449 ;; This crock is because of the way DEFVAR_BOOL variables work.
1450 ;; Consider the code
1452 ;; (defun foo (flag)
1453 ;; (let ((old-pop-ups pop-up-windows)
1454 ;; (pop-up-windows flag))
1455 ;; (cond ((not (eq pop-up-windows old-pop-ups))
1456 ;; (setq old-pop-ups pop-up-windows)
1457 ;; ...))))
1459 ;; Uncompiled, old-pop-ups will always be set to nil or t, even if FLAG is
1460 ;; something else. But if we optimize
1462 ;; varref flag
1463 ;; varbind pop-up-windows
1464 ;; varref pop-up-windows
1465 ;; not
1466 ;; to
1467 ;; varref flag
1468 ;; dup
1469 ;; varbind pop-up-windows
1470 ;; not
1472 ;; we break the program, because it will appear that pop-up-windows and
1473 ;; old-pop-ups are not EQ when really they are. So we have to know what
1474 ;; the BOOL variables are, and not perform this optimization on them.
1476 ;; The variable `byte-boolean-vars' is now primitive and updated
1477 ;; automatically by DEFVAR_BOOL.
1479 (defun byte-optimize-lapcode (lap &optional for-effect)
1480 "Simple peephole optimizer. LAP is both modified and returned.
1481 If FOR-EFFECT is non-nil, the return value is assumed to be of no importance."
1482 (let (lap0
1483 lap1
1484 lap2
1485 (keep-going 'first-time)
1486 (add-depth 0)
1487 rest tmp tmp2 tmp3
1488 (side-effect-free (if byte-compile-delete-errors
1489 byte-compile-side-effect-free-ops
1490 byte-compile-side-effect-and-error-free-ops)))
1491 (while keep-going
1492 (or (eq keep-going 'first-time)
1493 (byte-compile-log-lap " ---- next pass"))
1494 (setq rest lap
1495 keep-going nil)
1496 (while rest
1497 (setq lap0 (car rest)
1498 lap1 (nth 1 rest)
1499 lap2 (nth 2 rest))
1501 ;; You may notice that sequences like "dup varset discard" are
1502 ;; optimized but sequences like "dup varset TAG1: discard" are not.
1503 ;; You may be tempted to change this; resist that temptation.
1504 (cond ;;
1505 ;; <side-effect-free> pop --> <deleted>
1506 ;; ...including:
1507 ;; const-X pop --> <deleted>
1508 ;; varref-X pop --> <deleted>
1509 ;; dup pop --> <deleted>
1511 ((and (eq 'byte-discard (car lap1))
1512 (memq (car lap0) side-effect-free))
1513 (setq keep-going t)
1514 (setq tmp (aref byte-stack+-info (symbol-value (car lap0))))
1515 (setq rest (cdr rest))
1516 (cond ((= tmp 1)
1517 (byte-compile-log-lap
1518 " %s discard\t-->\t<deleted>" lap0)
1519 (setq lap (delq lap0 (delq lap1 lap))))
1520 ((= tmp 0)
1521 (byte-compile-log-lap
1522 " %s discard\t-->\t<deleted> discard" lap0)
1523 (setq lap (delq lap0 lap)))
1524 ((= tmp -1)
1525 (byte-compile-log-lap
1526 " %s discard\t-->\tdiscard discard" lap0)
1527 (setcar lap0 'byte-discard)
1528 (setcdr lap0 0))
1529 ((error "Optimizer error: too much on the stack"))))
1531 ;; goto*-X X: --> X:
1533 ((and (memq (car lap0) byte-goto-ops)
1534 (eq (cdr lap0) lap1))
1535 (cond ((eq (car lap0) 'byte-goto)
1536 (setq lap (delq lap0 lap))
1537 (setq tmp "<deleted>"))
1538 ((memq (car lap0) byte-goto-always-pop-ops)
1539 (setcar lap0 (setq tmp 'byte-discard))
1540 (setcdr lap0 0))
1541 ((error "Depth conflict at tag %d" (nth 2 lap0))))
1542 (and (memq byte-optimize-log '(t byte))
1543 (byte-compile-log " (goto %s) %s:\t-->\t%s %s:"
1544 (nth 1 lap1) (nth 1 lap1)
1545 tmp (nth 1 lap1)))
1546 (setq keep-going t))
1548 ;; varset-X varref-X --> dup varset-X
1549 ;; varbind-X varref-X --> dup varbind-X
1550 ;; const/dup varset-X varref-X --> const/dup varset-X const/dup
1551 ;; const/dup varbind-X varref-X --> const/dup varbind-X const/dup
1552 ;; The latter two can enable other optimizations.
1554 ((and (eq 'byte-varref (car lap2))
1555 (eq (cdr lap1) (cdr lap2))
1556 (memq (car lap1) '(byte-varset byte-varbind)))
1557 (if (and (setq tmp (memq (car (cdr lap2)) byte-boolean-vars))
1558 (not (eq (car lap0) 'byte-constant)))
1560 (setq keep-going t)
1561 (if (memq (car lap0) '(byte-constant byte-dup))
1562 (progn
1563 (setq tmp (if (or (not tmp)
1564 (byte-compile-const-symbol-p
1565 (car (cdr lap0))))
1566 (cdr lap0)
1567 (byte-compile-get-constant t)))
1568 (byte-compile-log-lap " %s %s %s\t-->\t%s %s %s"
1569 lap0 lap1 lap2 lap0 lap1
1570 (cons (car lap0) tmp))
1571 (setcar lap2 (car lap0))
1572 (setcdr lap2 tmp))
1573 (byte-compile-log-lap " %s %s\t-->\tdup %s" lap1 lap2 lap1)
1574 (setcar lap2 (car lap1))
1575 (setcar lap1 'byte-dup)
1576 (setcdr lap1 0)
1577 ;; The stack depth gets locally increased, so we will
1578 ;; increase maxdepth in case depth = maxdepth here.
1579 ;; This can cause the third argument to byte-code to
1580 ;; be larger than necessary.
1581 (setq add-depth 1))))
1583 ;; dup varset-X discard --> varset-X
1584 ;; dup varbind-X discard --> varbind-X
1585 ;; (the varbind variant can emerge from other optimizations)
1587 ((and (eq 'byte-dup (car lap0))
1588 (eq 'byte-discard (car lap2))
1589 (memq (car lap1) '(byte-varset byte-varbind)))
1590 (byte-compile-log-lap " dup %s discard\t-->\t%s" lap1 lap1)
1591 (setq keep-going t
1592 rest (cdr rest))
1593 (setq lap (delq lap0 (delq lap2 lap))))
1595 ;; not goto-X-if-nil --> goto-X-if-non-nil
1596 ;; not goto-X-if-non-nil --> goto-X-if-nil
1598 ;; it is wrong to do the same thing for the -else-pop variants.
1600 ((and (eq 'byte-not (car lap0))
1601 (or (eq 'byte-goto-if-nil (car lap1))
1602 (eq 'byte-goto-if-not-nil (car lap1))))
1603 (byte-compile-log-lap " not %s\t-->\t%s"
1604 lap1
1605 (cons
1606 (if (eq (car lap1) 'byte-goto-if-nil)
1607 'byte-goto-if-not-nil
1608 'byte-goto-if-nil)
1609 (cdr lap1)))
1610 (setcar lap1 (if (eq (car lap1) 'byte-goto-if-nil)
1611 'byte-goto-if-not-nil
1612 'byte-goto-if-nil))
1613 (setq lap (delq lap0 lap))
1614 (setq keep-going t))
1616 ;; goto-X-if-nil goto-Y X: --> goto-Y-if-non-nil X:
1617 ;; goto-X-if-non-nil goto-Y X: --> goto-Y-if-nil X:
1619 ;; it is wrong to do the same thing for the -else-pop variants.
1621 ((and (or (eq 'byte-goto-if-nil (car lap0))
1622 (eq 'byte-goto-if-not-nil (car lap0))) ; gotoX
1623 (eq 'byte-goto (car lap1)) ; gotoY
1624 (eq (cdr lap0) lap2)) ; TAG X
1625 (let ((inverse (if (eq 'byte-goto-if-nil (car lap0))
1626 'byte-goto-if-not-nil 'byte-goto-if-nil)))
1627 (byte-compile-log-lap " %s %s %s:\t-->\t%s %s:"
1628 lap0 lap1 lap2
1629 (cons inverse (cdr lap1)) lap2)
1630 (setq lap (delq lap0 lap))
1631 (setcar lap1 inverse)
1632 (setq keep-going t)))
1634 ;; const goto-if-* --> whatever
1636 ((and (eq 'byte-constant (car lap0))
1637 (memq (car lap1) byte-conditional-ops))
1638 (cond ((if (or (eq (car lap1) 'byte-goto-if-nil)
1639 (eq (car lap1) 'byte-goto-if-nil-else-pop))
1640 (car (cdr lap0))
1641 (not (car (cdr lap0))))
1642 (byte-compile-log-lap " %s %s\t-->\t<deleted>"
1643 lap0 lap1)
1644 (setq rest (cdr rest)
1645 lap (delq lap0 (delq lap1 lap))))
1647 (if (memq (car lap1) byte-goto-always-pop-ops)
1648 (progn
1649 (byte-compile-log-lap " %s %s\t-->\t%s"
1650 lap0 lap1 (cons 'byte-goto (cdr lap1)))
1651 (setq lap (delq lap0 lap)))
1652 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1
1653 (cons 'byte-goto (cdr lap1))))
1654 (setcar lap1 'byte-goto)))
1655 (setq keep-going t))
1657 ;; varref-X varref-X --> varref-X dup
1658 ;; varref-X [dup ...] varref-X --> varref-X [dup ...] dup
1659 ;; We don't optimize the const-X variations on this here,
1660 ;; because that would inhibit some goto optimizations; we
1661 ;; optimize the const-X case after all other optimizations.
1663 ((and (eq 'byte-varref (car lap0))
1664 (progn
1665 (setq tmp (cdr rest))
1666 (while (eq (car (car tmp)) 'byte-dup)
1667 (setq tmp (cdr tmp)))
1669 (eq (cdr lap0) (cdr (car tmp)))
1670 (eq 'byte-varref (car (car tmp))))
1671 (if (memq byte-optimize-log '(t byte))
1672 (let ((str ""))
1673 (setq tmp2 (cdr rest))
1674 (while (not (eq tmp tmp2))
1675 (setq tmp2 (cdr tmp2)
1676 str (concat str " dup")))
1677 (byte-compile-log-lap " %s%s %s\t-->\t%s%s dup"
1678 lap0 str lap0 lap0 str)))
1679 (setq keep-going t)
1680 (setcar (car tmp) 'byte-dup)
1681 (setcdr (car tmp) 0)
1682 (setq rest tmp))
1684 ;; TAG1: TAG2: --> TAG1: <deleted>
1685 ;; (and other references to TAG2 are replaced with TAG1)
1687 ((and (eq (car lap0) 'TAG)
1688 (eq (car lap1) 'TAG))
1689 (and (memq byte-optimize-log '(t byte))
1690 (byte-compile-log " adjacent tags %d and %d merged"
1691 (nth 1 lap1) (nth 1 lap0)))
1692 (setq tmp3 lap)
1693 (while (setq tmp2 (rassq lap0 tmp3))
1694 (setcdr tmp2 lap1)
1695 (setq tmp3 (cdr (memq tmp2 tmp3))))
1696 (setq lap (delq lap0 lap)
1697 keep-going t))
1699 ;; unused-TAG: --> <deleted>
1701 ((and (eq 'TAG (car lap0))
1702 (not (rassq lap0 lap)))
1703 (and (memq byte-optimize-log '(t byte))
1704 (byte-compile-log " unused tag %d removed" (nth 1 lap0)))
1705 (setq lap (delq lap0 lap)
1706 keep-going t))
1708 ;; goto ... --> goto <delete until TAG or end>
1709 ;; return ... --> return <delete until TAG or end>
1711 ((and (memq (car lap0) '(byte-goto byte-return))
1712 (not (memq (car lap1) '(TAG nil))))
1713 (setq tmp rest)
1714 (let ((i 0)
1715 (opt-p (memq byte-optimize-log '(t lap)))
1716 str deleted)
1717 (while (and (setq tmp (cdr tmp))
1718 (not (eq 'TAG (car (car tmp)))))
1719 (if opt-p (setq deleted (cons (car tmp) deleted)
1720 str (concat str " %s")
1721 i (1+ i))))
1722 (if opt-p
1723 (let ((tagstr
1724 (if (eq 'TAG (car (car tmp)))
1725 (format "%d:" (car (cdr (car tmp))))
1726 (or (car tmp) ""))))
1727 (if (< i 6)
1728 (apply 'byte-compile-log-lap-1
1729 (concat " %s" str
1730 " %s\t-->\t%s <deleted> %s")
1731 lap0
1732 (nconc (nreverse deleted)
1733 (list tagstr lap0 tagstr)))
1734 (byte-compile-log-lap
1735 " %s <%d unreachable op%s> %s\t-->\t%s <deleted> %s"
1736 lap0 i (if (= i 1) "" "s")
1737 tagstr lap0 tagstr))))
1738 (rplacd rest tmp))
1739 (setq keep-going t))
1741 ;; <safe-op> unbind --> unbind <safe-op>
1742 ;; (this may enable other optimizations.)
1744 ((and (eq 'byte-unbind (car lap1))
1745 (memq (car lap0) byte-after-unbind-ops))
1746 (byte-compile-log-lap " %s %s\t-->\t%s %s" lap0 lap1 lap1 lap0)
1747 (setcar rest lap1)
1748 (setcar (cdr rest) lap0)
1749 (setq keep-going t))
1751 ;; varbind-X unbind-N --> discard unbind-(N-1)
1752 ;; save-excursion unbind-N --> unbind-(N-1)
1753 ;; save-restriction unbind-N --> unbind-(N-1)
1755 ((and (eq 'byte-unbind (car lap1))
1756 (memq (car lap0) '(byte-varbind byte-save-excursion
1757 byte-save-restriction))
1758 (< 0 (cdr lap1)))
1759 (if (zerop (setcdr lap1 (1- (cdr lap1))))
1760 (delq lap1 rest))
1761 (if (eq (car lap0) 'byte-varbind)
1762 (setcar rest (cons 'byte-discard 0))
1763 (setq lap (delq lap0 lap)))
1764 (byte-compile-log-lap " %s %s\t-->\t%s %s"
1765 lap0 (cons (car lap1) (1+ (cdr lap1)))
1766 (if (eq (car lap0) 'byte-varbind)
1767 (car rest)
1768 (car (cdr rest)))
1769 (if (and (/= 0 (cdr lap1))
1770 (eq (car lap0) 'byte-varbind))
1771 (car (cdr rest))
1772 ""))
1773 (setq keep-going t))
1775 ;; goto*-X ... X: goto-Y --> goto*-Y
1776 ;; goto-X ... X: return --> return
1778 ((and (memq (car lap0) byte-goto-ops)
1779 (memq (car (setq tmp (nth 1 (memq (cdr lap0) lap))))
1780 '(byte-goto byte-return)))
1781 (cond ((and (not (eq tmp lap0))
1782 (or (eq (car lap0) 'byte-goto)
1783 (eq (car tmp) 'byte-goto)))
1784 (byte-compile-log-lap " %s [%s]\t-->\t%s"
1785 (car lap0) tmp tmp)
1786 (if (eq (car tmp) 'byte-return)
1787 (setcar lap0 'byte-return))
1788 (setcdr lap0 (cdr tmp))
1789 (setq keep-going t))))
1791 ;; goto-*-else-pop X ... X: goto-if-* --> whatever
1792 ;; goto-*-else-pop X ... X: discard --> whatever
1794 ((and (memq (car lap0) '(byte-goto-if-nil-else-pop
1795 byte-goto-if-not-nil-else-pop))
1796 (memq (car (car (setq tmp (cdr (memq (cdr lap0) lap)))))
1797 (eval-when-compile
1798 (cons 'byte-discard byte-conditional-ops)))
1799 (not (eq lap0 (car tmp))))
1800 (setq tmp2 (car tmp))
1801 (setq tmp3 (assq (car lap0) '((byte-goto-if-nil-else-pop
1802 byte-goto-if-nil)
1803 (byte-goto-if-not-nil-else-pop
1804 byte-goto-if-not-nil))))
1805 (if (memq (car tmp2) tmp3)
1806 (progn (setcar lap0 (car tmp2))
1807 (setcdr lap0 (cdr tmp2))
1808 (byte-compile-log-lap " %s-else-pop [%s]\t-->\t%s"
1809 (car lap0) tmp2 lap0))
1810 ;; Get rid of the -else-pop's and jump one step further.
1811 (or (eq 'TAG (car (nth 1 tmp)))
1812 (setcdr tmp (cons (byte-compile-make-tag)
1813 (cdr tmp))))
1814 (byte-compile-log-lap " %s [%s]\t-->\t%s <skip>"
1815 (car lap0) tmp2 (nth 1 tmp3))
1816 (setcar lap0 (nth 1 tmp3))
1817 (setcdr lap0 (nth 1 tmp)))
1818 (setq keep-going t))
1820 ;; const goto-X ... X: goto-if-* --> whatever
1821 ;; const goto-X ... X: discard --> whatever
1823 ((and (eq (car lap0) 'byte-constant)
1824 (eq (car lap1) 'byte-goto)
1825 (memq (car (car (setq tmp (cdr (memq (cdr lap1) lap)))))
1826 (eval-when-compile
1827 (cons 'byte-discard byte-conditional-ops)))
1828 (not (eq lap1 (car tmp))))
1829 (setq tmp2 (car tmp))
1830 (cond ((memq (car tmp2)
1831 (if (null (car (cdr lap0)))
1832 '(byte-goto-if-nil byte-goto-if-nil-else-pop)
1833 '(byte-goto-if-not-nil
1834 byte-goto-if-not-nil-else-pop)))
1835 (byte-compile-log-lap " %s goto [%s]\t-->\t%s %s"
1836 lap0 tmp2 lap0 tmp2)
1837 (setcar lap1 (car tmp2))
1838 (setcdr lap1 (cdr tmp2))
1839 ;; Let next step fix the (const,goto-if*) sequence.
1840 (setq rest (cons nil rest)))
1842 ;; Jump one step further
1843 (byte-compile-log-lap
1844 " %s goto [%s]\t-->\t<deleted> goto <skip>"
1845 lap0 tmp2)
1846 (or (eq 'TAG (car (nth 1 tmp)))
1847 (setcdr tmp (cons (byte-compile-make-tag)
1848 (cdr tmp))))
1849 (setcdr lap1 (car (cdr tmp)))
1850 (setq lap (delq lap0 lap))))
1851 (setq keep-going t))
1853 ;; X: varref-Y ... varset-Y goto-X -->
1854 ;; X: varref-Y Z: ... dup varset-Y goto-Z
1855 ;; (varset-X goto-BACK, BACK: varref-X --> copy the varref down.)
1856 ;; (This is so usual for while loops that it is worth handling).
1858 ((and (eq (car lap1) 'byte-varset)
1859 (eq (car lap2) 'byte-goto)
1860 (not (memq (cdr lap2) rest)) ;Backwards jump
1861 (eq (car (car (setq tmp (cdr (memq (cdr lap2) lap)))))
1862 'byte-varref)
1863 (eq (cdr (car tmp)) (cdr lap1))
1864 (not (memq (car (cdr lap1)) byte-boolean-vars)))
1865 ;;(byte-compile-log-lap " Pulled %s to end of loop" (car tmp))
1866 (let ((newtag (byte-compile-make-tag)))
1867 (byte-compile-log-lap
1868 " %s: %s ... %s %s\t-->\t%s: %s %s: ... %s %s %s"
1869 (nth 1 (cdr lap2)) (car tmp)
1870 lap1 lap2
1871 (nth 1 (cdr lap2)) (car tmp)
1872 (nth 1 newtag) 'byte-dup lap1
1873 (cons 'byte-goto newtag)
1875 (setcdr rest (cons (cons 'byte-dup 0) (cdr rest)))
1876 (setcdr tmp (cons (setcdr lap2 newtag) (cdr tmp))))
1877 (setq add-depth 1)
1878 (setq keep-going t))
1880 ;; goto-X Y: ... X: goto-if*-Y --> goto-if-not-*-X+1 Y:
1881 ;; (This can pull the loop test to the end of the loop)
1883 ((and (eq (car lap0) 'byte-goto)
1884 (eq (car lap1) 'TAG)
1885 (eq lap1
1886 (cdr (car (setq tmp (cdr (memq (cdr lap0) lap))))))
1887 (memq (car (car tmp))
1888 '(byte-goto byte-goto-if-nil byte-goto-if-not-nil
1889 byte-goto-if-nil-else-pop)))
1890 ;; (byte-compile-log-lap " %s %s, %s %s --> moved conditional"
1891 ;; lap0 lap1 (cdr lap0) (car tmp))
1892 (let ((newtag (byte-compile-make-tag)))
1893 (byte-compile-log-lap
1894 "%s %s: ... %s: %s\t-->\t%s ... %s:"
1895 lap0 (nth 1 lap1) (nth 1 (cdr lap0)) (car tmp)
1896 (cons (cdr (assq (car (car tmp))
1897 '((byte-goto-if-nil . byte-goto-if-not-nil)
1898 (byte-goto-if-not-nil . byte-goto-if-nil)
1899 (byte-goto-if-nil-else-pop .
1900 byte-goto-if-not-nil-else-pop)
1901 (byte-goto-if-not-nil-else-pop .
1902 byte-goto-if-nil-else-pop))))
1903 newtag)
1905 (nth 1 newtag)
1907 (setcdr tmp (cons (setcdr lap0 newtag) (cdr tmp)))
1908 (if (eq (car (car tmp)) 'byte-goto-if-nil-else-pop)
1909 ;; We can handle this case but not the -if-not-nil case,
1910 ;; because we won't know which non-nil constant to push.
1911 (setcdr rest (cons (cons 'byte-constant
1912 (byte-compile-get-constant nil))
1913 (cdr rest))))
1914 (setcar lap0 (nth 1 (memq (car (car tmp))
1915 '(byte-goto-if-nil-else-pop
1916 byte-goto-if-not-nil
1917 byte-goto-if-nil
1918 byte-goto-if-not-nil
1919 byte-goto byte-goto))))
1921 (setq keep-going t))
1923 (setq rest (cdr rest)))
1925 ;; Cleanup stage:
1926 ;; Rebuild byte-compile-constants / byte-compile-variables.
1927 ;; Simple optimizations that would inhibit other optimizations if they
1928 ;; were done in the optimizing loop, and optimizations which there is no
1929 ;; need to do more than once.
1930 (setq byte-compile-constants nil
1931 byte-compile-variables nil)
1932 (setq rest lap)
1933 (while rest
1934 (setq lap0 (car rest)
1935 lap1 (nth 1 rest))
1936 (if (memq (car lap0) byte-constref-ops)
1937 (if (or (eq (car lap0) 'byte-constant)
1938 (eq (car lap0) 'byte-constant2))
1939 (unless (memq (cdr lap0) byte-compile-constants)
1940 (setq byte-compile-constants (cons (cdr lap0)
1941 byte-compile-constants)))
1942 (unless (memq (cdr lap0) byte-compile-variables)
1943 (setq byte-compile-variables (cons (cdr lap0)
1944 byte-compile-variables)))))
1945 (cond (;;
1946 ;; const-C varset-X const-C --> const-C dup varset-X
1947 ;; const-C varbind-X const-C --> const-C dup varbind-X
1949 (and (eq (car lap0) 'byte-constant)
1950 (eq (car (nth 2 rest)) 'byte-constant)
1951 (eq (cdr lap0) (cdr (nth 2 rest)))
1952 (memq (car lap1) '(byte-varbind byte-varset)))
1953 (byte-compile-log-lap " %s %s %s\t-->\t%s dup %s"
1954 lap0 lap1 lap0 lap0 lap1)
1955 (setcar (cdr (cdr rest)) (cons (car lap1) (cdr lap1)))
1956 (setcar (cdr rest) (cons 'byte-dup 0))
1957 (setq add-depth 1))
1959 ;; const-X [dup/const-X ...] --> const-X [dup ...] dup
1960 ;; varref-X [dup/varref-X ...] --> varref-X [dup ...] dup
1962 ((memq (car lap0) '(byte-constant byte-varref))
1963 (setq tmp rest
1964 tmp2 nil)
1965 (while (progn
1966 (while (eq 'byte-dup (car (car (setq tmp (cdr tmp))))))
1967 (and (eq (cdr lap0) (cdr (car tmp)))
1968 (eq (car lap0) (car (car tmp)))))
1969 (setcar tmp (cons 'byte-dup 0))
1970 (setq tmp2 t))
1971 (if tmp2
1972 (byte-compile-log-lap
1973 " %s [dup/%s]...\t-->\t%s dup..." lap0 lap0 lap0)))
1975 ;; unbind-N unbind-M --> unbind-(N+M)
1977 ((and (eq 'byte-unbind (car lap0))
1978 (eq 'byte-unbind (car lap1)))
1979 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1
1980 (cons 'byte-unbind
1981 (+ (cdr lap0) (cdr lap1))))
1982 (setq keep-going t)
1983 (setq lap (delq lap0 lap))
1984 (setcdr lap1 (+ (cdr lap1) (cdr lap0))))
1986 (setq rest (cdr rest)))
1987 (setq byte-compile-maxdepth (+ byte-compile-maxdepth add-depth)))
1988 lap)
1990 (provide 'byte-opt)
1993 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when this file compiles
1994 ;; itself, compile some of its most used recursive functions (at load time).
1996 (eval-when-compile
1997 (or (byte-code-function-p (symbol-function 'byte-optimize-form))
1998 (assq 'byte-code (symbol-function 'byte-optimize-form))
1999 (let ((byte-optimize nil)
2000 (byte-compile-warnings nil))
2001 (mapcar (lambda (x)
2002 (or noninteractive (message "compiling %s..." x))
2003 (byte-compile x)
2004 (or noninteractive (message "compiling %s...done" x)))
2005 '(byte-optimize-form
2006 byte-optimize-body
2007 byte-optimize-predicate
2008 byte-optimize-binary-predicate
2009 ;; Inserted some more than necessary, to speed it up.
2010 byte-optimize-form-code-walker
2011 byte-optimize-lapcode))))
2012 nil)
2014 ;; arch-tag: 0f14076b-737e-4bef-aae6-908826ec1ff1
2015 ;;; byte-opt.el ends here