Merge from trunk
[emacs.git] / lisp / emacs-lisp / byte-opt.el
blob9ce3c2eb323299bf17eeb6887a223c2bda9b8289
1 ;;; byte-opt.el --- the optimization passes of the emacs-lisp byte compiler
3 ;; Copyright (C) 1991, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
4 ;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Jamie Zawinski <jwz@lucid.com>
7 ;; Hallvard Furuseth <hbf@ulrik.uio.no>
8 ;; Maintainer: FSF
9 ;; Keywords: internal
10 ;; Package: emacs
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;;; Commentary:
29 ;; ========================================================================
30 ;; "No matter how hard you try, you can't make a racehorse out of a pig.
31 ;; You can, however, make a faster pig."
33 ;; Or, to put it another way, the Emacs byte compiler is a VW Bug. This code
34 ;; makes it be a VW Bug with fuel injection and a turbocharger... You're
35 ;; still not going to make it go faster than 70 mph, but it might be easier
36 ;; to get it there.
39 ;; TO DO:
41 ;; (apply (lambda (x &rest y) ...) 1 (foo))
43 ;; maintain a list of functions known not to access any global variables
44 ;; (actually, give them a 'dynamically-safe property) and then
45 ;; (let ( v1 v2 ... vM vN ) <...dynamically-safe...> ) ==>
46 ;; (let ( v1 v2 ... vM ) vN <...dynamically-safe...> )
47 ;; by recursing on this, we might be able to eliminate the entire let.
48 ;; However certain variables should never have their bindings optimized
49 ;; away, because they affect everything.
50 ;; (put 'debug-on-error 'binding-is-magic t)
51 ;; (put 'debug-on-abort 'binding-is-magic t)
52 ;; (put 'debug-on-next-call 'binding-is-magic t)
53 ;; (put 'inhibit-quit 'binding-is-magic t)
54 ;; (put 'quit-flag 'binding-is-magic t)
55 ;; (put 't 'binding-is-magic t)
56 ;; (put 'nil 'binding-is-magic t)
57 ;; possibly also
58 ;; (put 'gc-cons-threshold 'binding-is-magic t)
59 ;; (put 'track-mouse 'binding-is-magic t)
60 ;; others?
62 ;; Simple defsubsts often produce forms like
63 ;; (let ((v1 (f1)) (v2 (f2)) ...)
64 ;; (FN v1 v2 ...))
65 ;; It would be nice if we could optimize this to
66 ;; (FN (f1) (f2) ...)
67 ;; but we can't unless FN is dynamically-safe (it might be dynamically
68 ;; referring to the bindings that the lambda arglist established.)
69 ;; One of the uncountable lossages introduced by dynamic scope...
71 ;; Maybe there should be a control-structure that says "turn on
72 ;; fast-and-loose type-assumptive optimizations here." Then when
73 ;; we see a form like (car foo) we can from then on assume that
74 ;; the variable foo is of type cons, and optimize based on that.
75 ;; But, this won't win much because of (you guessed it) dynamic
76 ;; scope. Anything down the stack could change the value.
77 ;; (Another reason it doesn't work is that it is perfectly valid
78 ;; to call car with a null argument.) A better approach might
79 ;; be to allow type-specification of the form
80 ;; (put 'foo 'arg-types '(float (list integer) dynamic))
81 ;; (put 'foo 'result-type 'bool)
82 ;; It should be possible to have these types checked to a certain
83 ;; degree.
85 ;; collapse common subexpressions
87 ;; It would be nice if redundant sequences could be factored out as well,
88 ;; when they are known to have no side-effects:
89 ;; (list (+ a b c) (+ a b c)) --> a b add c add dup list-2
90 ;; but beware of traps like
91 ;; (cons (list x y) (list x y))
93 ;; Tail-recursion elimination is not really possible in Emacs Lisp.
94 ;; Tail-recursion elimination is almost always impossible when all variables
95 ;; have dynamic scope, but given that the "return" byteop requires the
96 ;; binding stack to be empty (rather than emptying it itself), there can be
97 ;; no truly tail-recursive Emacs Lisp functions that take any arguments or
98 ;; make any bindings.
100 ;; Here is an example of an Emacs Lisp function which could safely be
101 ;; byte-compiled tail-recursively:
103 ;; (defun tail-map (fn list)
104 ;; (cond (list
105 ;; (funcall fn (car list))
106 ;; (tail-map fn (cdr list)))))
108 ;; However, if there was even a single let-binding around the COND,
109 ;; it could not be byte-compiled, because there would be an "unbind"
110 ;; byte-op between the final "call" and "return." Adding a
111 ;; Bunbind_all byteop would fix this.
113 ;; (defun foo (x y z) ... (foo a b c))
114 ;; ... (const foo) (varref a) (varref b) (varref c) (call 3) END: (return)
115 ;; ... (varref a) (varbind x) (varref b) (varbind y) (varref c) (varbind z) (goto 0) END: (unbind-all) (return)
116 ;; ... (varref a) (varset x) (varref b) (varset y) (varref c) (varset z) (goto 0) END: (return)
118 ;; this also can be considered tail recursion:
120 ;; ... (const foo) (varref a) (call 1) (goto X) ... X: (return)
121 ;; could generalize this by doing the optimization
122 ;; (goto X) ... X: (return) --> (return)
124 ;; But this doesn't solve all of the problems: although by doing tail-
125 ;; recursion elimination in this way, the call-stack does not grow, the
126 ;; binding-stack would grow with each recursive step, and would eventually
127 ;; overflow. I don't believe there is any way around this without lexical
128 ;; scope.
130 ;; Wouldn't it be nice if Emacs Lisp had lexical scope.
132 ;; Idea: the form (lexical-scope) in a file means that the file may be
133 ;; compiled lexically. This proclamation is file-local. Then, within
134 ;; that file, "let" would establish lexical bindings, and "let-dynamic"
135 ;; would do things the old way. (Or we could use CL "declare" forms.)
136 ;; We'd have to notice defvars and defconsts, since those variables should
137 ;; always be dynamic, and attempting to do a lexical binding of them
138 ;; should simply do a dynamic binding instead.
139 ;; But! We need to know about variables that were not necessarily defvarred
140 ;; in the file being compiled (doing a boundp check isn't good enough.)
141 ;; Fdefvar() would have to be modified to add something to the plist.
143 ;; A major disadvantage of this scheme is that the interpreter and compiler
144 ;; would have different semantics for files compiled with (dynamic-scope).
145 ;; Since this would be a file-local optimization, there would be no way to
146 ;; modify the interpreter to obey this (unless the loader was hacked
147 ;; in some grody way, but that's a really bad idea.)
149 ;; Other things to consider:
151 ;; ;; Associative math should recognize subcalls to identical function:
152 ;; (disassemble (lambda (x) (+ (+ (foo) 1) (+ (bar) 2))))
153 ;; ;; This should generate the same as (1+ x) and (1- x)
155 ;; (disassemble (lambda (x) (cons (+ x 1) (- x 1))))
156 ;; ;; An awful lot of functions always return a non-nil value. If they're
157 ;; ;; error free also they may act as true-constants.
159 ;; (disassemble (lambda (x) (and (point) (foo))))
160 ;; ;; When
161 ;; ;; - all but one arguments to a function are constant
162 ;; ;; - the non-constant argument is an if-expression (cond-expression?)
163 ;; ;; then the outer function can be distributed. If the guarding
164 ;; ;; condition is side-effect-free [assignment-free] then the other
165 ;; ;; arguments may be any expressions. Since, however, the code size
166 ;; ;; can increase this way they should be "simple". Compare:
168 ;; (disassemble (lambda (x) (eq (if (point) 'a 'b) 'c)))
169 ;; (disassemble (lambda (x) (if (point) (eq 'a 'c) (eq 'b 'c))))
171 ;; ;; (car (cons A B)) -> (prog1 A B)
172 ;; (disassemble (lambda (x) (car (cons (foo) 42))))
174 ;; ;; (cdr (cons A B)) -> (progn A B)
175 ;; (disassemble (lambda (x) (cdr (cons 42 (foo)))))
177 ;; ;; (car (list A B ...)) -> (prog1 A B ...)
178 ;; (disassemble (lambda (x) (car (list (foo) 42 (bar)))))
180 ;; ;; (cdr (list A B ...)) -> (progn A (list B ...))
181 ;; (disassemble (lambda (x) (cdr (list 42 (foo) (bar)))))
184 ;;; Code:
186 (require 'bytecomp)
187 (eval-when-compile (require 'cl))
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 (macroexpand-all (cons fn (cdr form))
286 byte-compile-macro-environment)
287 ;; Give up on inlining.
288 form))))))
290 ;; ((lambda ...) ...)
291 (defun byte-compile-unfold-lambda (form &optional name)
292 (or name (setq name "anonymous lambda"))
293 (let ((lambda (car form))
294 (values (cdr form)))
295 (if (byte-code-function-p lambda)
296 (setq lambda (list 'lambda (aref lambda 0)
297 (list 'byte-code (aref lambda 1)
298 (aref lambda 2) (aref lambda 3)))))
299 (let ((arglist (nth 1 lambda))
300 (body (cdr (cdr lambda)))
301 optionalp restp
302 bindings)
303 (if (and (stringp (car body)) (cdr body))
304 (setq body (cdr body)))
305 (if (and (consp (car body)) (eq 'interactive (car (car body))))
306 (setq body (cdr body)))
307 (while arglist
308 (cond ((eq (car arglist) '&optional)
309 ;; ok, I'll let this slide because funcall_lambda() does...
310 ;; (if optionalp (error "multiple &optional keywords in %s" name))
311 (if restp (error "&optional found after &rest in %s" name))
312 (if (null (cdr arglist))
313 (error "nothing after &optional in %s" name))
314 (setq optionalp t))
315 ((eq (car arglist) '&rest)
316 ;; ...but it is by no stretch of the imagination a reasonable
317 ;; thing that funcall_lambda() allows (&rest x y) and
318 ;; (&rest x &optional y) in arglists.
319 (if (null (cdr arglist))
320 (error "nothing after &rest in %s" name))
321 (if (cdr (cdr arglist))
322 (error "multiple vars after &rest in %s" name))
323 (setq restp t))
324 (restp
325 (setq bindings (cons (list (car arglist)
326 (and values (cons 'list values)))
327 bindings)
328 values nil))
329 ((and (not optionalp) (null values))
330 (byte-compile-warn "attempt to open-code `%s' with too few arguments" name)
331 (setq arglist nil values 'too-few))
333 (setq bindings (cons (list (car arglist) (car values))
334 bindings)
335 values (cdr values))))
336 (setq arglist (cdr arglist)))
337 (if values
338 (progn
339 (or (eq values 'too-few)
340 (byte-compile-warn
341 "attempt to open-code `%s' with too many arguments" name))
342 form)
344 ;; The following leads to infinite recursion when loading a
345 ;; file containing `(defsubst f () (f))', and then trying to
346 ;; byte-compile that file.
347 ;(setq body (mapcar 'byte-optimize-form body)))
349 (let ((newform
350 (if bindings
351 (cons 'let (cons (nreverse bindings) body))
352 (cons 'progn body))))
353 (byte-compile-log " %s\t==>\t%s" form newform)
354 newform)))))
357 ;;; implementing source-level optimizers
359 (defun byte-optimize-form-code-walker (form for-effect)
361 ;; For normal function calls, We can just mapcar the optimizer the cdr. But
362 ;; we need to have special knowledge of the syntax of the special forms
363 ;; like let and defun (that's why they're special forms :-). (Actually,
364 ;; the important aspect is that they are subrs that don't evaluate all of
365 ;; their args.)
367 (let ((fn (car-safe form))
368 tmp)
369 (cond ((not (consp form))
370 (if (not (and for-effect
371 (or byte-compile-delete-errors
372 (not (symbolp form))
373 (eq form t))))
374 form))
375 ((eq fn 'quote)
376 (if (cdr (cdr form))
377 (byte-compile-warn "malformed quote form: `%s'"
378 (prin1-to-string form)))
379 ;; map (quote nil) to nil to simplify optimizer logic.
380 ;; map quoted constants to nil if for-effect (just because).
381 (and (nth 1 form)
382 (not for-effect)
383 form))
384 ((or (byte-code-function-p fn)
385 (eq 'lambda (car-safe fn)))
386 (byte-optimize-form-code-walker
387 (byte-compile-unfold-lambda form)
388 for-effect))
389 ((memq fn '(let let*))
390 ;; recursively enter the optimizer for the bindings and body
391 ;; of a let or let*. This for depth-firstness: forms that
392 ;; are more deeply nested are optimized first.
393 (cons fn
394 (cons
395 (mapcar (lambda (binding)
396 (if (symbolp binding)
397 binding
398 (if (cdr (cdr binding))
399 (byte-compile-warn "malformed let binding: `%s'"
400 (prin1-to-string binding)))
401 (list (car binding)
402 (byte-optimize-form (nth 1 binding) nil))))
403 (nth 1 form))
404 (byte-optimize-body (cdr (cdr form)) for-effect))))
405 ((eq fn 'cond)
406 (cons fn
407 (mapcar (lambda (clause)
408 (if (consp clause)
409 (cons
410 (byte-optimize-form (car clause) nil)
411 (byte-optimize-body (cdr clause) for-effect))
412 (byte-compile-warn "malformed cond form: `%s'"
413 (prin1-to-string clause))
414 clause))
415 (cdr form))))
416 ((eq fn 'progn)
417 ;; as an extra added bonus, this simplifies (progn <x>) --> <x>
418 (if (cdr (cdr form))
419 (progn
420 (setq tmp (byte-optimize-body (cdr form) for-effect))
421 (if (cdr tmp) (cons 'progn tmp) (car tmp)))
422 (byte-optimize-form (nth 1 form) for-effect)))
423 ((eq fn 'prog1)
424 (if (cdr (cdr form))
425 (cons 'prog1
426 (cons (byte-optimize-form (nth 1 form) for-effect)
427 (byte-optimize-body (cdr (cdr form)) t)))
428 (byte-optimize-form (nth 1 form) for-effect)))
429 ((eq fn 'prog2)
430 (cons 'prog2
431 (cons (byte-optimize-form (nth 1 form) t)
432 (cons (byte-optimize-form (nth 2 form) for-effect)
433 (byte-optimize-body (cdr (cdr (cdr form))) t)))))
435 ((memq fn '(save-excursion save-restriction save-current-buffer))
436 ;; those subrs which have an implicit progn; it's not quite good
437 ;; enough to treat these like normal function calls.
438 ;; This can turn (save-excursion ...) into (save-excursion) which
439 ;; will be optimized away in the lap-optimize pass.
440 (cons fn (byte-optimize-body (cdr form) for-effect)))
442 ((eq fn 'with-output-to-temp-buffer)
443 ;; this is just like the above, except for the first argument.
444 (cons fn
445 (cons
446 (byte-optimize-form (nth 1 form) nil)
447 (byte-optimize-body (cdr (cdr form)) for-effect))))
449 ((eq fn 'if)
450 (when (< (length form) 3)
451 (byte-compile-warn "too few arguments for `if'"))
452 (cons fn
453 (cons (byte-optimize-form (nth 1 form) nil)
454 (cons
455 (byte-optimize-form (nth 2 form) for-effect)
456 (byte-optimize-body (nthcdr 3 form) for-effect)))))
458 ((memq fn '(and or)) ; remember, and/or are control structures.
459 ;; take forms off the back until we can't any more.
460 ;; In the future it could conceivably be a problem that the
461 ;; subexpressions of these forms are optimized in the reverse
462 ;; order, but it's ok for now.
463 (if for-effect
464 (let ((backwards (reverse (cdr form))))
465 (while (and backwards
466 (null (setcar backwards
467 (byte-optimize-form (car backwards)
468 for-effect))))
469 (setq backwards (cdr backwards)))
470 (if (and (cdr form) (null backwards))
471 (byte-compile-log
472 " all subforms of %s called for effect; deleted" form))
473 (and backwards
474 (cons fn (nreverse (mapcar 'byte-optimize-form backwards)))))
475 (cons fn (mapcar 'byte-optimize-form (cdr form)))))
477 ((eq fn 'interactive)
478 (byte-compile-warn "misplaced interactive spec: `%s'"
479 (prin1-to-string form))
480 nil)
482 ((memq fn '(defun defmacro function
483 condition-case save-window-excursion))
484 ;; These forms are compiled as constants or by breaking out
485 ;; all the subexpressions and compiling them separately.
486 form)
488 ((eq fn 'unwind-protect)
489 ;; the "protected" part of an unwind-protect is compiled (and thus
490 ;; optimized) as a top-level form, so don't do it here. But the
491 ;; non-protected part has the same for-effect status as the
492 ;; unwind-protect itself. (The protected part is always for effect,
493 ;; but that isn't handled properly yet.)
494 (cons fn
495 (cons (byte-optimize-form (nth 1 form) for-effect)
496 (cdr (cdr form)))))
498 ((eq fn 'catch)
499 ;; the body of a catch is compiled (and thus optimized) as a
500 ;; top-level form, so don't do it here. The tag is never
501 ;; for-effect. The body should have the same for-effect status
502 ;; as the catch form itself, but that isn't handled properly yet.
503 (cons fn
504 (cons (byte-optimize-form (nth 1 form) nil)
505 (cdr (cdr form)))))
507 ((eq fn 'ignore)
508 ;; Don't treat the args to `ignore' as being
509 ;; computed for effect. We want to avoid the warnings
510 ;; that might occur if they were treated that way.
511 ;; However, don't actually bother calling `ignore'.
512 `(prog1 nil . ,(mapcar 'byte-optimize-form (cdr form))))
514 ;; If optimization is on, this is the only place that macros are
515 ;; expanded. If optimization is off, then macroexpansion happens
516 ;; in byte-compile-form. Otherwise, the macros are already expanded
517 ;; by the time that is reached.
518 ((not (eq form
519 (setq form (macroexpand form
520 byte-compile-macro-environment))))
521 (byte-optimize-form form for-effect))
523 ;; Support compiler macros as in cl.el.
524 ((and (fboundp 'compiler-macroexpand)
525 (symbolp (car-safe form))
526 (get (car-safe form) 'cl-compiler-macro)
527 (not (eq form
528 (with-no-warnings
529 (setq form (compiler-macroexpand form))))))
530 (byte-optimize-form form for-effect))
532 ((not (symbolp fn))
533 (byte-compile-warn "`%s' is a malformed function"
534 (prin1-to-string fn))
535 form)
537 ((and for-effect (setq tmp (get fn 'side-effect-free))
538 (or byte-compile-delete-errors
539 (eq tmp 'error-free)
540 ;; Detect the expansion of (pop foo).
541 ;; There is no need to compile the call to `car' there.
542 (and (eq fn 'car)
543 (eq (car-safe (cadr form)) 'prog1)
544 (let ((var (cadr (cadr form)))
545 (last (nth 2 (cadr form))))
546 (and (symbolp var)
547 (null (nthcdr 3 (cadr form)))
548 (eq (car-safe last) 'setq)
549 (eq (cadr last) var)
550 (eq (car-safe (nth 2 last)) 'cdr)
551 (eq (cadr (nth 2 last)) var))))
552 (progn
553 (byte-compile-warn "value returned from %s is unused"
554 (prin1-to-string form))
555 nil)))
556 (byte-compile-log " %s called for effect; deleted" fn)
557 ;; appending a nil here might not be necessary, but it can't hurt.
558 (byte-optimize-form
559 (cons 'progn (append (cdr form) '(nil))) t))
562 ;; Otherwise, no args can be considered to be for-effect,
563 ;; even if the called function is for-effect, because we
564 ;; don't know anything about that function.
565 (let ((args (mapcar #'byte-optimize-form (cdr form))))
566 (if (and (get fn 'pure)
567 (byte-optimize-all-constp args))
568 (list 'quote (apply fn (mapcar #'eval args)))
569 (cons fn args)))))))
571 (defun byte-optimize-all-constp (list)
572 "Non-nil if all elements of LIST satisfy `byte-compile-constp'."
573 (let ((constant t))
574 (while (and list constant)
575 (unless (byte-compile-constp (car list))
576 (setq constant nil))
577 (setq list (cdr list)))
578 constant))
580 (defun byte-optimize-form (form &optional for-effect)
581 "The source-level pass of the optimizer."
583 ;; First, optimize all sub-forms of this one.
584 (setq form (byte-optimize-form-code-walker form for-effect))
586 ;; after optimizing all subforms, optimize this form until it doesn't
587 ;; optimize any further. This means that some forms will be passed through
588 ;; the optimizer many times, but that's necessary to make the for-effect
589 ;; processing do as much as possible.
591 (let (opt new)
592 (if (and (consp form)
593 (symbolp (car form))
594 (or (and for-effect
595 ;; we don't have any of these yet, but we might.
596 (setq opt (get (car form) 'byte-for-effect-optimizer)))
597 (setq opt (get (car form) 'byte-optimizer)))
598 (not (eq form (setq new (funcall opt form)))))
599 (progn
600 ;; (if (equal form new) (error "bogus optimizer -- %s" opt))
601 (byte-compile-log " %s\t==>\t%s" form new)
602 (setq new (byte-optimize-form new for-effect))
603 new)
604 form)))
607 (defun byte-optimize-body (forms all-for-effect)
608 ;; optimize the cdr of a progn or implicit progn; all forms is a list of
609 ;; forms, all but the last of which are optimized with the assumption that
610 ;; they are being called for effect. the last is for-effect as well if
611 ;; all-for-effect is true. returns a new list of forms.
612 (let ((rest forms)
613 (result nil)
614 fe new)
615 (while rest
616 (setq fe (or all-for-effect (cdr rest)))
617 (setq new (and (car rest) (byte-optimize-form (car rest) fe)))
618 (if (or new (not fe))
619 (setq result (cons new result)))
620 (setq rest (cdr rest)))
621 (nreverse result)))
624 ;; some source-level optimizers
626 ;; when writing optimizers, be VERY careful that the optimizer returns
627 ;; something not EQ to its argument if and ONLY if it has made a change.
628 ;; This implies that you cannot simply destructively modify the list;
629 ;; you must return something not EQ to it if you make an optimization.
631 ;; It is now safe to optimize code such that it introduces new bindings.
633 (defsubst byte-compile-trueconstp (form)
634 "Return non-nil if FORM always evaluates to a non-nil value."
635 (while (eq (car-safe form) 'progn)
636 (setq form (car (last (cdr form)))))
637 (cond ((consp form)
638 (case (car form)
639 (quote (cadr form))
640 ;; Can't use recursion in a defsubst.
641 ;; (progn (byte-compile-trueconstp (car (last (cdr form)))))
643 ((not (symbolp form)))
644 ((eq form t))
645 ((keywordp form))))
647 (defsubst byte-compile-nilconstp (form)
648 "Return non-nil if FORM always evaluates to a nil value."
649 (while (eq (car-safe form) 'progn)
650 (setq form (car (last (cdr form)))))
651 (cond ((consp form)
652 (case (car form)
653 (quote (null (cadr form)))
654 ;; Can't use recursion in a defsubst.
655 ;; (progn (byte-compile-nilconstp (car (last (cdr form)))))
657 ((not (symbolp form)) nil)
658 ((null 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 is associative, like + or *.
663 (defun byte-optimize-associative-math (form)
664 (let ((args nil)
665 (constants nil)
666 (rest (cdr form)))
667 (while rest
668 (if (numberp (car rest))
669 (setq constants (cons (car rest) constants))
670 (setq args (cons (car rest) args)))
671 (setq rest (cdr rest)))
672 (if (cdr constants)
673 (if args
674 (list (car form)
675 (apply (car form) constants)
676 (if (cdr args)
677 (cons (car form) (nreverse args))
678 (car args)))
679 (apply (car form) constants))
680 form)))
682 ;; If the function is being called with constant numeric args,
683 ;; evaluate as much as possible at compile-time. This optimizer
684 ;; assumes that the function satisfies
685 ;; (op x1 x2 ... xn) == (op ...(op (op x1 x2) x3) ...xn)
686 ;; like - and /.
687 (defun byte-optimize-nonassociative-math (form)
688 (if (or (not (numberp (car (cdr form))))
689 (not (numberp (car (cdr (cdr form))))))
690 form
691 (let ((constant (car (cdr form)))
692 (rest (cdr (cdr form))))
693 (while (numberp (car rest))
694 (setq constant (funcall (car form) constant (car rest))
695 rest (cdr rest)))
696 (if rest
697 (cons (car form) (cons constant rest))
698 constant))))
700 ;;(defun byte-optimize-associative-two-args-math (form)
701 ;; (setq form (byte-optimize-associative-math form))
702 ;; (if (consp form)
703 ;; (byte-optimize-two-args-left form)
704 ;; form))
706 ;;(defun byte-optimize-nonassociative-two-args-math (form)
707 ;; (setq form (byte-optimize-nonassociative-math form))
708 ;; (if (consp form)
709 ;; (byte-optimize-two-args-right form)
710 ;; form))
712 (defun byte-optimize-approx-equal (x y)
713 (<= (* (abs (- x y)) 100) (abs (+ x y))))
715 ;; Collect all the constants from FORM, after the STARTth arg,
716 ;; and apply FUN to them to make one argument at the end.
717 ;; For functions that can handle floats, that optimization
718 ;; can be incorrect because reordering can cause an overflow
719 ;; that would otherwise be avoided by encountering an arg that is a float.
720 ;; We avoid this problem by (1) not moving float constants and
721 ;; (2) not moving anything if it would cause an overflow.
722 (defun byte-optimize-delay-constants-math (form start fun)
723 ;; Merge all FORM's constants from number START, call FUN on them
724 ;; and put the result at the end.
725 (let ((rest (nthcdr (1- start) form))
726 (orig form)
727 ;; t means we must check for overflow.
728 (overflow (memq fun '(+ *))))
729 (while (cdr (setq rest (cdr rest)))
730 (if (integerp (car rest))
731 (let (constants)
732 (setq form (copy-sequence form)
733 rest (nthcdr (1- start) form))
734 (while (setq rest (cdr rest))
735 (cond ((integerp (car rest))
736 (setq constants (cons (car rest) constants))
737 (setcar rest nil))))
738 ;; If necessary, check now for overflow
739 ;; that might be caused by reordering.
740 (if (and overflow
741 ;; We have overflow if the result of doing the arithmetic
742 ;; on floats is not even close to the result
743 ;; of doing it on integers.
744 (not (byte-optimize-approx-equal
745 (apply fun (mapcar 'float constants))
746 (float (apply fun constants)))))
747 (setq form orig)
748 (setq form (nconc (delq nil form)
749 (list (apply fun (nreverse constants)))))))))
750 form))
752 (defsubst byte-compile-butlast (form)
753 (nreverse (cdr (reverse form))))
755 (defun byte-optimize-plus (form)
756 ;; Don't call `byte-optimize-delay-constants-math' (bug#1334).
757 ;;(setq form (byte-optimize-delay-constants-math form 1 '+))
758 (if (memq 0 form) (setq form (delq 0 (copy-sequence form))))
759 ;; For (+ constants...), byte-optimize-predicate does the work.
760 (when (memq nil (mapcar 'numberp (cdr form)))
761 (cond
762 ;; (+ x 1) --> (1+ x) and (+ x -1) --> (1- x).
763 ((and (= (length form) 3)
764 (or (memq (nth 1 form) '(1 -1))
765 (memq (nth 2 form) '(1 -1))))
766 (let (integer other)
767 (if (memq (nth 1 form) '(1 -1))
768 (setq integer (nth 1 form) other (nth 2 form))
769 (setq integer (nth 2 form) other (nth 1 form)))
770 (setq form
771 (list (if (eq integer 1) '1+ '1-) other))))
772 ;; Here, we could also do
773 ;; (+ x y ... 1) --> (1+ (+ x y ...))
774 ;; (+ x y ... -1) --> (1- (+ x y ...))
775 ;; The resulting bytecode is smaller, but is it faster? -- cyd
777 (byte-optimize-predicate form))
779 (defun byte-optimize-minus (form)
780 ;; Don't call `byte-optimize-delay-constants-math' (bug#1334).
781 ;;(setq form (byte-optimize-delay-constants-math form 2 '+))
782 ;; Remove zeros.
783 (when (and (nthcdr 3 form)
784 (memq 0 (cddr form)))
785 (setq form (nconc (list (car form) (cadr form))
786 (delq 0 (copy-sequence (cddr form)))))
787 ;; After the above, we must turn (- x) back into (- x 0)
788 (or (cddr form)
789 (setq form (nconc form (list 0)))))
790 ;; For (- constants..), byte-optimize-predicate does the work.
791 (when (memq nil (mapcar 'numberp (cdr form)))
792 (cond
793 ;; (- x 1) --> (1- x)
794 ((equal (nthcdr 2 form) '(1))
795 (setq form (list '1- (nth 1 form))))
796 ;; (- x -1) --> (1+ x)
797 ((equal (nthcdr 2 form) '(-1))
798 (setq form (list '1+ (nth 1 form))))
799 ;; (- 0 x) --> (- x)
800 ((and (eq (nth 1 form) 0)
801 (= (length form) 3))
802 (setq form (list '- (nth 2 form))))
803 ;; Here, we could also do
804 ;; (- x y ... 1) --> (1- (- x y ...))
805 ;; (- x y ... -1) --> (1+ (- x y ...))
806 ;; The resulting bytecode is smaller, but is it faster? -- cyd
808 (byte-optimize-predicate form))
810 (defun byte-optimize-multiply (form)
811 (setq form (byte-optimize-delay-constants-math form 1 '*))
812 ;; For (* constants..), byte-optimize-predicate does the work.
813 (when (memq nil (mapcar 'numberp (cdr form)))
814 ;; After `byte-optimize-predicate', if there is a INTEGER constant
815 ;; in FORM, it is in the last element.
816 (let ((last (car (reverse (cdr form)))))
817 (cond
818 ;; Would handling (* ... 0) here cause floating point errors?
819 ;; See bug#1334.
820 ((eq 1 last) (setq form (byte-compile-butlast form)))
821 ((eq -1 last)
822 (setq form (list '- (if (nthcdr 3 form)
823 (byte-compile-butlast form)
824 (nth 1 form))))))))
825 (byte-optimize-predicate form))
827 (defun byte-optimize-divide (form)
828 (setq form (byte-optimize-delay-constants-math form 2 '*))
829 ;; After `byte-optimize-predicate', if there is a INTEGER constant
830 ;; in FORM, it is in the last element.
831 (let ((last (car (reverse (cdr (cdr form))))))
832 (cond
833 ;; Runtime error (leave it intact).
834 ((or (null last)
835 (eq last 0)
836 (memql 0.0 (cddr form))))
837 ;; No constants in expression
838 ((not (numberp last)))
839 ;; For (* constants..), byte-optimize-predicate does the work.
840 ((null (memq nil (mapcar 'numberp (cdr form)))))
841 ;; (/ x y.. 1) --> (/ x y..)
842 ((and (eq last 1) (nthcdr 3 form))
843 (setq form (byte-compile-butlast form)))
844 ;; (/ x -1), (/ x .. -1) --> (- x), (- (/ x ..))
845 ((eq last -1)
846 (setq form (list '- (if (nthcdr 3 form)
847 (byte-compile-butlast form)
848 (nth 1 form)))))))
849 (byte-optimize-predicate form))
851 (defun byte-optimize-logmumble (form)
852 (setq form (byte-optimize-delay-constants-math form 1 (car form)))
853 (byte-optimize-predicate
854 (cond ((memq 0 form)
855 (setq form (if (eq (car form) 'logand)
856 (cons 'progn (cdr form))
857 (delq 0 (copy-sequence form)))))
858 ((and (eq (car-safe form) 'logior)
859 (memq -1 form))
860 (cons 'progn (cdr form)))
861 (form))))
864 (defun byte-optimize-binary-predicate (form)
865 (if (byte-compile-constp (nth 1 form))
866 (if (byte-compile-constp (nth 2 form))
867 (condition-case ()
868 (list 'quote (eval form))
869 (error form))
870 ;; This can enable some lapcode optimizations.
871 (list (car form) (nth 2 form) (nth 1 form)))
872 form))
874 (defun byte-optimize-predicate (form)
875 (let ((ok t)
876 (rest (cdr form)))
877 (while (and rest ok)
878 (setq ok (byte-compile-constp (car rest))
879 rest (cdr rest)))
880 (if ok
881 (condition-case ()
882 (list 'quote (eval form))
883 (error form))
884 form)))
886 (defun byte-optimize-identity (form)
887 (if (and (cdr form) (null (cdr (cdr form))))
888 (nth 1 form)
889 (byte-compile-warn "identity called with %d arg%s, but requires 1"
890 (length (cdr form))
891 (if (= 1 (length (cdr form))) "" "s"))
892 form))
894 (put 'identity 'byte-optimizer 'byte-optimize-identity)
896 (put '+ 'byte-optimizer 'byte-optimize-plus)
897 (put '* 'byte-optimizer 'byte-optimize-multiply)
898 (put '- 'byte-optimizer 'byte-optimize-minus)
899 (put '/ 'byte-optimizer 'byte-optimize-divide)
900 (put 'max 'byte-optimizer 'byte-optimize-associative-math)
901 (put 'min 'byte-optimizer 'byte-optimize-associative-math)
903 (put '= 'byte-optimizer 'byte-optimize-binary-predicate)
904 (put 'eq 'byte-optimizer 'byte-optimize-binary-predicate)
905 (put 'equal 'byte-optimizer 'byte-optimize-binary-predicate)
906 (put 'string= 'byte-optimizer 'byte-optimize-binary-predicate)
907 (put 'string-equal 'byte-optimizer 'byte-optimize-binary-predicate)
909 (put '< 'byte-optimizer 'byte-optimize-predicate)
910 (put '> 'byte-optimizer 'byte-optimize-predicate)
911 (put '<= 'byte-optimizer 'byte-optimize-predicate)
912 (put '>= 'byte-optimizer 'byte-optimize-predicate)
913 (put '1+ 'byte-optimizer 'byte-optimize-predicate)
914 (put '1- 'byte-optimizer 'byte-optimize-predicate)
915 (put 'not 'byte-optimizer 'byte-optimize-predicate)
916 (put 'null 'byte-optimizer 'byte-optimize-predicate)
917 (put 'memq 'byte-optimizer 'byte-optimize-predicate)
918 (put 'consp 'byte-optimizer 'byte-optimize-predicate)
919 (put 'listp 'byte-optimizer 'byte-optimize-predicate)
920 (put 'symbolp 'byte-optimizer 'byte-optimize-predicate)
921 (put 'stringp 'byte-optimizer 'byte-optimize-predicate)
922 (put 'string< 'byte-optimizer 'byte-optimize-predicate)
923 (put 'string-lessp 'byte-optimizer 'byte-optimize-predicate)
925 (put 'logand 'byte-optimizer 'byte-optimize-logmumble)
926 (put 'logior 'byte-optimizer 'byte-optimize-logmumble)
927 (put 'logxor 'byte-optimizer 'byte-optimize-logmumble)
928 (put 'lognot 'byte-optimizer 'byte-optimize-predicate)
930 (put 'car 'byte-optimizer 'byte-optimize-predicate)
931 (put 'cdr 'byte-optimizer 'byte-optimize-predicate)
932 (put 'car-safe 'byte-optimizer 'byte-optimize-predicate)
933 (put 'cdr-safe 'byte-optimizer 'byte-optimize-predicate)
936 ;; I'm not convinced that this is necessary. Doesn't the optimizer loop
937 ;; take care of this? - Jamie
938 ;; I think this may some times be necessary to reduce ie (quote 5) to 5,
939 ;; so arithmetic optimizers recognize the numeric constant. - Hallvard
940 (put 'quote 'byte-optimizer 'byte-optimize-quote)
941 (defun byte-optimize-quote (form)
942 (if (or (consp (nth 1 form))
943 (and (symbolp (nth 1 form))
944 (not (byte-compile-const-symbol-p form))))
945 form
946 (nth 1 form)))
948 (defun byte-optimize-zerop (form)
949 (cond ((numberp (nth 1 form))
950 (eval form))
951 (byte-compile-delete-errors
952 (list '= (nth 1 form) 0))
953 (form)))
955 (put 'zerop 'byte-optimizer 'byte-optimize-zerop)
957 (defun byte-optimize-and (form)
958 ;; Simplify if less than 2 args.
959 ;; if there is a literal nil in the args to `and', throw it and following
960 ;; forms away, and surround the `and' with (progn ... nil).
961 (cond ((null (cdr form)))
962 ((memq nil form)
963 (list 'progn
964 (byte-optimize-and
965 (prog1 (setq form (copy-sequence form))
966 (while (nth 1 form)
967 (setq form (cdr form)))
968 (setcdr form nil)))
969 nil))
970 ((null (cdr (cdr form)))
971 (nth 1 form))
972 ((byte-optimize-predicate form))))
974 (defun byte-optimize-or (form)
975 ;; Throw away nil's, and simplify if less than 2 args.
976 ;; If there is a literal non-nil constant in the args to `or', throw away all
977 ;; following forms.
978 (if (memq nil form)
979 (setq form (delq nil (copy-sequence form))))
980 (let ((rest form))
981 (while (cdr (setq rest (cdr rest)))
982 (if (byte-compile-trueconstp (car rest))
983 (setq form (copy-sequence form)
984 rest (setcdr (memq (car rest) form) nil))))
985 (if (cdr (cdr form))
986 (byte-optimize-predicate form)
987 (nth 1 form))))
989 (defun byte-optimize-cond (form)
990 ;; if any clauses have a literal nil as their test, throw them away.
991 ;; if any clause has a literal non-nil constant as its test, throw
992 ;; away all following clauses.
993 (let (rest)
994 ;; This must be first, to reduce (cond (t ...) (nil)) to (progn t ...)
995 (while (setq rest (assq nil (cdr form)))
996 (setq form (delq rest (copy-sequence form))))
997 (if (memq nil (cdr form))
998 (setq form (delq nil (copy-sequence form))))
999 (setq rest form)
1000 (while (setq rest (cdr rest))
1001 (cond ((byte-compile-trueconstp (car-safe (car rest)))
1002 ;; This branch will always be taken: kill the subsequent ones.
1003 (cond ((eq rest (cdr form)) ;First branch of `cond'.
1004 (setq form `(progn ,@(car rest))))
1005 ((cdr rest)
1006 (setq form (copy-sequence form))
1007 (setcdr (memq (car rest) form) nil)))
1008 (setq rest nil))
1009 ((and (consp (car rest))
1010 (byte-compile-nilconstp (caar rest)))
1011 ;; This branch will never be taken: kill its body.
1012 (setcdr (car rest) nil)))))
1014 ;; Turn (cond (( <x> )) ... ) into (or <x> (cond ... ))
1015 (if (eq 'cond (car-safe form))
1016 (let ((clauses (cdr form)))
1017 (if (and (consp (car clauses))
1018 (null (cdr (car clauses))))
1019 (list 'or (car (car clauses))
1020 (byte-optimize-cond
1021 (cons (car form) (cdr (cdr form)))))
1022 form))
1023 form))
1025 (defun byte-optimize-if (form)
1026 ;; (if (progn <insts> <test>) <rest>) ==> (progn <insts> (if <test> <rest>))
1027 ;; (if <true-constant> <then> <else...>) ==> <then>
1028 ;; (if <false-constant> <then> <else...>) ==> (progn <else...>)
1029 ;; (if <test> nil <else...>) ==> (if (not <test>) (progn <else...>))
1030 ;; (if <test> <then> nil) ==> (if <test> <then>)
1031 (let ((clause (nth 1 form)))
1032 (cond ((and (eq (car-safe clause) 'progn)
1033 ;; `clause' is a proper list.
1034 (null (cdr (last clause))))
1035 (if (null (cddr clause))
1036 ;; A trivial `progn'.
1037 (byte-optimize-if `(if ,(cadr clause) ,@(nthcdr 2 form)))
1038 (nconc (butlast clause)
1039 (list
1040 (byte-optimize-if
1041 `(if ,(car (last clause)) ,@(nthcdr 2 form)))))))
1042 ((byte-compile-trueconstp clause)
1043 `(progn ,clause ,(nth 2 form)))
1044 ((byte-compile-nilconstp clause)
1045 `(progn ,clause ,@(nthcdr 3 form)))
1046 ((nth 2 form)
1047 (if (equal '(nil) (nthcdr 3 form))
1048 (list 'if clause (nth 2 form))
1049 form))
1050 ((or (nth 3 form) (nthcdr 4 form))
1051 (list 'if
1052 ;; Don't make a double negative;
1053 ;; instead, take away the one that is there.
1054 (if (and (consp clause) (memq (car clause) '(not null))
1055 (= (length clause) 2)) ; (not xxxx) or (not (xxxx))
1056 (nth 1 clause)
1057 (list 'not clause))
1058 (if (nthcdr 4 form)
1059 (cons 'progn (nthcdr 3 form))
1060 (nth 3 form))))
1062 (list 'progn clause nil)))))
1064 (defun byte-optimize-while (form)
1065 (when (< (length form) 2)
1066 (byte-compile-warn "too few arguments for `while'"))
1067 (if (nth 1 form)
1068 form))
1070 (put 'and 'byte-optimizer 'byte-optimize-and)
1071 (put 'or 'byte-optimizer 'byte-optimize-or)
1072 (put 'cond 'byte-optimizer 'byte-optimize-cond)
1073 (put 'if 'byte-optimizer 'byte-optimize-if)
1074 (put 'while 'byte-optimizer 'byte-optimize-while)
1076 ;; byte-compile-negation-optimizer lives in bytecomp.el
1077 (put '/= 'byte-optimizer 'byte-compile-negation-optimizer)
1078 (put 'atom 'byte-optimizer 'byte-compile-negation-optimizer)
1079 (put 'nlistp 'byte-optimizer 'byte-compile-negation-optimizer)
1082 (defun byte-optimize-funcall (form)
1083 ;; (funcall (lambda ...) ...) ==> ((lambda ...) ...)
1084 ;; (funcall foo ...) ==> (foo ...)
1085 (let ((fn (nth 1 form)))
1086 (if (memq (car-safe fn) '(quote function))
1087 (cons (nth 1 fn) (cdr (cdr form)))
1088 form)))
1090 (defun byte-optimize-apply (form)
1091 ;; If the last arg is a literal constant, turn this into a funcall.
1092 ;; The funcall optimizer can then transform (funcall 'foo ...) -> (foo ...).
1093 (let ((fn (nth 1 form))
1094 (last (nth (1- (length form)) form))) ; I think this really is fastest
1095 (or (if (or (null last)
1096 (eq (car-safe last) 'quote))
1097 (if (listp (nth 1 last))
1098 (let ((butlast (nreverse (cdr (reverse (cdr (cdr form)))))))
1099 (nconc (list 'funcall fn) butlast
1100 (mapcar (lambda (x) (list 'quote x)) (nth 1 last))))
1101 (byte-compile-warn
1102 "last arg to apply can't be a literal atom: `%s'"
1103 (prin1-to-string last))
1104 nil))
1105 form)))
1107 (put 'funcall 'byte-optimizer 'byte-optimize-funcall)
1108 (put 'apply 'byte-optimizer 'byte-optimize-apply)
1111 (put 'let 'byte-optimizer 'byte-optimize-letX)
1112 (put 'let* 'byte-optimizer 'byte-optimize-letX)
1113 (defun byte-optimize-letX (form)
1114 (cond ((null (nth 1 form))
1115 ;; No bindings
1116 (cons 'progn (cdr (cdr form))))
1117 ((or (nth 2 form) (nthcdr 3 form))
1118 form)
1119 ;; The body is nil
1120 ((eq (car form) 'let)
1121 (append '(progn) (mapcar 'car-safe (mapcar 'cdr-safe (nth 1 form)))
1122 '(nil)))
1124 (let ((binds (reverse (nth 1 form))))
1125 (list 'let* (reverse (cdr binds)) (nth 1 (car binds)) nil)))))
1128 (put 'nth 'byte-optimizer 'byte-optimize-nth)
1129 (defun byte-optimize-nth (form)
1130 (if (= (safe-length form) 3)
1131 (if (memq (nth 1 form) '(0 1))
1132 (list 'car (if (zerop (nth 1 form))
1133 (nth 2 form)
1134 (list 'cdr (nth 2 form))))
1135 (byte-optimize-predicate form))
1136 form))
1138 (put 'nthcdr 'byte-optimizer 'byte-optimize-nthcdr)
1139 (defun byte-optimize-nthcdr (form)
1140 (if (= (safe-length form) 3)
1141 (if (memq (nth 1 form) '(0 1 2))
1142 (let ((count (nth 1 form)))
1143 (setq form (nth 2 form))
1144 (while (>= (setq count (1- count)) 0)
1145 (setq form (list 'cdr form)))
1146 form)
1147 (byte-optimize-predicate form))
1148 form))
1150 ;; Fixme: delete-char -> delete-region (byte-coded)
1151 ;; optimize string-as-unibyte, string-as-multibyte, string-make-unibyte,
1152 ;; string-make-multibyte for constant args.
1154 (put 'featurep 'byte-optimizer 'byte-optimize-featurep)
1155 (defun byte-optimize-featurep (form)
1156 ;; Emacs-21's byte-code doesn't run under XEmacs or SXEmacs anyway, so we
1157 ;; can safely optimize away this test.
1158 (if (member (cdr-safe form) '(((quote xemacs)) ((quote sxemacs))))
1160 (if (member (cdr-safe form) '(((quote emacs))))
1162 form)))
1164 (put 'set 'byte-optimizer 'byte-optimize-set)
1165 (defun byte-optimize-set (form)
1166 (let ((var (car-safe (cdr-safe form))))
1167 (cond
1168 ((and (eq (car-safe var) 'quote) (consp (cdr var)))
1169 `(setq ,(cadr var) ,@(cddr form)))
1170 ((and (eq (car-safe var) 'make-local-variable)
1171 (eq (car-safe (setq var (car-safe (cdr var)))) 'quote)
1172 (consp (cdr var)))
1173 `(progn ,(cadr form) (setq ,(cadr var) ,@(cddr form))))
1174 (t form))))
1176 ;; enumerating those functions which need not be called if the returned
1177 ;; value is not used. That is, something like
1178 ;; (progn (list (something-with-side-effects) (yow))
1179 ;; (foo))
1180 ;; may safely be turned into
1181 ;; (progn (progn (something-with-side-effects) (yow))
1182 ;; (foo))
1183 ;; Further optimizations will turn (progn (list 1 2 3) 'foo) into 'foo.
1185 ;; Some of these functions have the side effect of allocating memory
1186 ;; and it would be incorrect to replace two calls with one.
1187 ;; But we don't try to do those kinds of optimizations,
1188 ;; so it is safe to list such functions here.
1189 ;; Some of these functions return values that depend on environment
1190 ;; state, so that constant folding them would be wrong,
1191 ;; but we don't do constant folding based on this list.
1193 ;; However, at present the only optimization we normally do
1194 ;; is delete calls that need not occur, and we only do that
1195 ;; with the error-free functions.
1197 ;; I wonder if I missed any :-\)
1198 (let ((side-effect-free-fns
1199 '(% * + - / /= 1+ 1- < <= = > >= abs acos append aref ash asin atan
1200 assoc assq
1201 boundp buffer-file-name buffer-local-variables buffer-modified-p
1202 buffer-substring byte-code-function-p
1203 capitalize car-less-than-car car cdr ceiling char-after char-before
1204 char-equal char-to-string char-width
1205 compare-strings concat coordinates-in-window-p
1206 copy-alist copy-sequence copy-marker cos count-lines
1207 decode-char
1208 decode-time default-boundp default-value documentation downcase
1209 elt encode-char exp expt encode-time error-message-string
1210 fboundp fceiling featurep ffloor
1211 file-directory-p file-exists-p file-locked-p file-name-absolute-p
1212 file-newer-than-file-p file-readable-p file-symlink-p file-writable-p
1213 float float-time floor format format-time-string frame-visible-p
1214 fround ftruncate
1215 get gethash get-buffer get-buffer-window getenv get-file-buffer
1216 hash-table-count
1217 int-to-string intern-soft
1218 keymap-parent
1219 length local-variable-if-set-p local-variable-p log log10 logand
1220 logb logior lognot logxor lsh langinfo
1221 make-list make-string make-symbol
1222 marker-buffer max member memq min mod multibyte-char-to-unibyte
1223 next-window nth nthcdr number-to-string
1224 parse-colon-path plist-get plist-member
1225 prefix-numeric-value previous-window prin1-to-string propertize
1226 degrees-to-radians
1227 radians-to-degrees rassq rassoc read-from-string regexp-quote
1228 region-beginning region-end reverse round
1229 sin sqrt string string< string= string-equal string-lessp string-to-char
1230 string-to-int string-to-number substring sxhash symbol-function
1231 symbol-name symbol-plist symbol-value string-make-unibyte
1232 string-make-multibyte string-as-multibyte string-as-unibyte
1233 string-to-multibyte
1234 tan truncate
1235 unibyte-char-to-multibyte upcase user-full-name
1236 user-login-name user-original-login-name user-variable-p
1237 vconcat
1238 window-buffer window-dedicated-p window-edges window-height
1239 window-hscroll window-minibuffer-p window-width
1240 zerop))
1241 (side-effect-and-error-free-fns
1242 '(arrayp atom
1243 bobp bolp bool-vector-p
1244 buffer-end buffer-list buffer-size buffer-string bufferp
1245 car-safe case-table-p cdr-safe char-or-string-p characterp
1246 charsetp commandp cons consp
1247 current-buffer current-global-map current-indentation
1248 current-local-map current-minor-mode-maps current-time
1249 current-time-string current-time-zone
1250 eobp eolp eq equal eventp
1251 floatp following-char framep
1252 get-largest-window get-lru-window
1253 hash-table-p
1254 identity ignore integerp integer-or-marker-p interactive-p
1255 invocation-directory invocation-name
1256 keymapp
1257 line-beginning-position line-end-position list listp
1258 make-marker mark mark-marker markerp max-char
1259 memory-limit minibuffer-window
1260 mouse-movement-p
1261 natnump nlistp not null number-or-marker-p numberp
1262 one-window-p overlayp
1263 point point-marker point-min point-max preceding-char primary-charset
1264 processp
1265 recent-keys recursion-depth
1266 safe-length selected-frame selected-window sequencep
1267 standard-case-table standard-syntax-table stringp subrp symbolp
1268 syntax-table syntax-table-p
1269 this-command-keys this-command-keys-vector this-single-command-keys
1270 this-single-command-raw-keys
1271 user-real-login-name user-real-uid user-uid
1272 vector vectorp visible-frame-list
1273 wholenump window-configuration-p window-live-p windowp)))
1274 (while side-effect-free-fns
1275 (put (car side-effect-free-fns) 'side-effect-free t)
1276 (setq side-effect-free-fns (cdr side-effect-free-fns)))
1277 (while side-effect-and-error-free-fns
1278 (put (car side-effect-and-error-free-fns) 'side-effect-free 'error-free)
1279 (setq side-effect-and-error-free-fns (cdr side-effect-and-error-free-fns)))
1280 nil)
1283 ;; pure functions are side-effect free functions whose values depend
1284 ;; only on their arguments. For these functions, calls with constant
1285 ;; arguments can be evaluated at compile time. This may shift run time
1286 ;; errors to compile time.
1288 (let ((pure-fns
1289 '(concat symbol-name regexp-opt regexp-quote string-to-syntax)))
1290 (while pure-fns
1291 (put (car pure-fns) 'pure t)
1292 (setq pure-fns (cdr pure-fns)))
1293 nil)
1295 (defun byte-compile-splice-in-already-compiled-code (form)
1296 ;; form is (byte-code "..." [...] n)
1297 (if (not (memq byte-optimize '(t lap)))
1298 (byte-compile-normal-call form)
1299 (byte-inline-lapcode
1300 (byte-decompile-bytecode-1 (nth 1 form) (nth 2 form) t))
1301 (setq byte-compile-maxdepth (max (+ byte-compile-depth (nth 3 form))
1302 byte-compile-maxdepth))
1303 (setq byte-compile-depth (1+ byte-compile-depth))))
1305 (put 'byte-code 'byte-compile 'byte-compile-splice-in-already-compiled-code)
1308 (defconst byte-constref-ops
1309 '(byte-constant byte-constant2 byte-varref byte-varset byte-varbind))
1311 ;; This function extracts the bitfields from variable-length opcodes.
1312 ;; Originally defined in disass.el (which no longer uses it.)
1314 (defun disassemble-offset ()
1315 "Don't call this!"
1316 ;; fetch and return the offset for the current opcode.
1317 ;; return nil if this opcode has no offset
1318 ;; OP, PTR and BYTES are used and set dynamically
1319 (defvar op)
1320 (defvar ptr)
1321 (defvar bytes)
1322 (cond ((< op byte-nth)
1323 (let ((tem (logand op 7)))
1324 (setq op (logand op 248))
1325 (cond ((eq tem 6)
1326 (setq ptr (1+ ptr)) ;offset in next byte
1327 (aref bytes ptr))
1328 ((eq tem 7)
1329 (setq ptr (1+ ptr)) ;offset in next 2 bytes
1330 (+ (aref bytes ptr)
1331 (progn (setq ptr (1+ ptr))
1332 (lsh (aref bytes ptr) 8))))
1333 (t tem)))) ;offset was in opcode
1334 ((>= op byte-constant)
1335 (prog1 (- op byte-constant) ;offset in opcode
1336 (setq op byte-constant)))
1337 ((or (and (>= op byte-constant2)
1338 (<= op byte-goto-if-not-nil-else-pop))
1339 (= op byte-stack-set2))
1340 (setq ptr (1+ ptr)) ;offset in next 2 bytes
1341 (+ (aref bytes ptr)
1342 (progn (setq ptr (1+ ptr))
1343 (lsh (aref bytes ptr) 8))))
1344 ((and (>= op byte-listN)
1345 (<= op byte-discardN))
1346 (setq ptr (1+ ptr)) ;offset in next byte
1347 (aref bytes ptr))))
1350 ;; This de-compiler is used for inline expansion of compiled functions,
1351 ;; and by the disassembler.
1353 ;; This list contains numbers, which are pc values,
1354 ;; before each instruction.
1355 (defun byte-decompile-bytecode (bytes constvec)
1356 "Turn BYTECODE into lapcode, referring to CONSTVEC."
1357 (let ((byte-compile-constants nil)
1358 (byte-compile-variables nil)
1359 (byte-compile-tag-number 0))
1360 (byte-decompile-bytecode-1 bytes constvec)))
1362 ;; As byte-decompile-bytecode, but updates
1363 ;; byte-compile-{constants, variables, tag-number}.
1364 ;; If MAKE-SPLICEABLE is true, then `return' opcodes are replaced
1365 ;; with `goto's destined for the end of the code.
1366 ;; That is for use by the compiler.
1367 ;; If MAKE-SPLICEABLE is nil, we are being called for the disassembler.
1368 ;; In that case, we put a pc value into the list
1369 ;; before each insn (or its label).
1370 (defun byte-decompile-bytecode-1 (bytes constvec &optional make-spliceable)
1371 (let ((length (length bytes))
1372 (ptr 0) optr tags op offset
1373 lap tmp
1374 endtag)
1375 (while (not (= ptr length))
1376 (or make-spliceable
1377 (setq lap (cons ptr lap)))
1378 (setq op (aref bytes ptr)
1379 optr ptr
1380 offset (disassemble-offset)) ; this does dynamic-scope magic
1381 (setq op (aref byte-code-vector op))
1382 (cond ((memq op byte-goto-ops)
1383 ;; it's a pc
1384 (setq offset
1385 (cdr (or (assq offset tags)
1386 (car (setq tags
1387 (cons (cons offset
1388 (byte-compile-make-tag))
1389 tags)))))))
1390 ((cond ((eq op 'byte-constant2) (setq op 'byte-constant) t)
1391 ((memq op byte-constref-ops)))
1392 (setq tmp (if (>= offset (length constvec))
1393 (list 'out-of-range offset)
1394 (aref constvec offset))
1395 offset (if (eq op 'byte-constant)
1396 (byte-compile-get-constant tmp)
1397 (or (assq tmp byte-compile-variables)
1398 (car (setq byte-compile-variables
1399 (cons (list tmp)
1400 byte-compile-variables)))))))
1401 ((and make-spliceable
1402 (eq op 'byte-return))
1403 (if (= ptr (1- length))
1404 (setq op nil)
1405 (setq offset (or endtag (setq endtag (byte-compile-make-tag)))
1406 op 'byte-goto)))
1407 ((eq op 'byte-stack-set2)
1408 (setq op 'byte-stack-set))
1409 ((and (eq op 'byte-discardN) (>= offset #x80))
1410 ;; The top bit of the operand for byte-discardN is a flag,
1411 ;; saying whether the top-of-stack is preserved. In
1412 ;; lapcode, we represent this by using a different opcode
1413 ;; (with the flag removed from the operand).
1414 (setq op 'byte-discardN-preserve-tos)
1415 (setq offset (- offset #x80))))
1416 ;; lap = ( [ (pc . (op . arg)) ]* )
1417 (setq lap (cons (cons optr (cons op (or offset 0)))
1418 lap))
1419 (setq ptr (1+ ptr)))
1420 ;; take off the dummy nil op that we replaced a trailing "return" with.
1421 (let ((rest lap))
1422 (while rest
1423 (cond ((numberp (car rest)))
1424 ((setq tmp (assq (car (car rest)) tags))
1425 ;; this addr is jumped to
1426 (setcdr rest (cons (cons nil (cdr tmp))
1427 (cdr rest)))
1428 (setq tags (delq tmp tags))
1429 (setq rest (cdr rest))))
1430 (setq rest (cdr rest))))
1431 (if tags (error "optimizer error: missed tags %s" tags))
1432 (if (null (car (cdr (car lap))))
1433 (setq lap (cdr lap)))
1434 (if endtag
1435 (setq lap (cons (cons nil endtag) lap)))
1436 ;; remove addrs, lap = ( [ (op . arg) | (TAG tagno) ]* )
1437 (mapcar (function (lambda (elt)
1438 (if (numberp elt)
1440 (cdr elt))))
1441 (nreverse lap))))
1444 ;;; peephole optimizer
1446 (defconst byte-tagref-ops (cons 'TAG byte-goto-ops))
1448 (defconst byte-conditional-ops
1449 '(byte-goto-if-nil byte-goto-if-not-nil byte-goto-if-nil-else-pop
1450 byte-goto-if-not-nil-else-pop))
1452 (defconst byte-after-unbind-ops
1453 '(byte-constant byte-dup
1454 byte-symbolp byte-consp byte-stringp byte-listp byte-numberp byte-integerp
1455 byte-eq byte-not
1456 byte-cons byte-list1 byte-list2 ; byte-list3 byte-list4
1457 byte-interactive-p)
1458 ;; How about other side-effect-free-ops? Is it safe to move an
1459 ;; error invocation (such as from nth) out of an unwind-protect?
1460 ;; No, it is not, because the unwind-protect forms can alter
1461 ;; the inside of the object to which nth would apply.
1462 ;; For the same reason, byte-equal was deleted from this list.
1463 "Byte-codes that can be moved past an unbind.")
1465 (defconst byte-compile-side-effect-and-error-free-ops
1466 '(byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp
1467 byte-integerp byte-numberp byte-eq byte-equal byte-not byte-car-safe
1468 byte-cdr-safe byte-cons byte-list1 byte-list2 byte-point byte-point-max
1469 byte-point-min byte-following-char byte-preceding-char
1470 byte-current-column byte-eolp byte-eobp byte-bolp byte-bobp
1471 byte-current-buffer byte-interactive-p byte-stack-ref))
1473 (defconst byte-compile-side-effect-free-ops
1474 (nconc
1475 '(byte-varref byte-nth byte-memq byte-car byte-cdr byte-length byte-aref
1476 byte-symbol-value byte-get byte-concat2 byte-concat3 byte-sub1 byte-add1
1477 byte-eqlsign byte-gtr byte-lss byte-leq byte-geq byte-diff byte-negate
1478 byte-plus byte-max byte-min byte-mult byte-char-after byte-char-syntax
1479 byte-buffer-substring byte-string= byte-string< byte-nthcdr byte-elt
1480 byte-member byte-assq byte-quo byte-rem byte-vec-ref)
1481 byte-compile-side-effect-and-error-free-ops))
1483 ;; This crock is because of the way DEFVAR_BOOL variables work.
1484 ;; Consider the code
1486 ;; (defun foo (flag)
1487 ;; (let ((old-pop-ups pop-up-windows)
1488 ;; (pop-up-windows flag))
1489 ;; (cond ((not (eq pop-up-windows old-pop-ups))
1490 ;; (setq old-pop-ups pop-up-windows)
1491 ;; ...))))
1493 ;; Uncompiled, old-pop-ups will always be set to nil or t, even if FLAG is
1494 ;; something else. But if we optimize
1496 ;; varref flag
1497 ;; varbind pop-up-windows
1498 ;; varref pop-up-windows
1499 ;; not
1500 ;; to
1501 ;; varref flag
1502 ;; dup
1503 ;; varbind pop-up-windows
1504 ;; not
1506 ;; we break the program, because it will appear that pop-up-windows and
1507 ;; old-pop-ups are not EQ when really they are. So we have to know what
1508 ;; the BOOL variables are, and not perform this optimization on them.
1510 ;; The variable `byte-boolean-vars' is now primitive and updated
1511 ;; automatically by DEFVAR_BOOL.
1513 (defmacro byte-opt-update-stack-params (stack-adjust stack-depth lap0 rest lap)
1514 "...macro used by byte-optimize-lapcode..."
1515 `(progn
1516 (byte-compile-log-lap "Before %s [depth = %s]" ,lap0 ,stack-depth)
1517 (cond ((eq (car ,lap0) 'TAG)
1518 ;; A tag can encode the expected stack depth.
1519 (when (cddr ,lap0)
1520 ;; First, check to see if our notion of the current stack
1521 ;; depth agrees with this tag. We don't check at the
1522 ;; beginning of the function, because the presence of
1523 ;; lexical arguments means the first tag will have a
1524 ;; non-zero offset.
1525 (when (and (not (eq ,rest ,lap)) ; not at first insn
1526 ,stack-depth ; not just after a goto
1527 (not (= (cddr ,lap0) ,stack-depth)))
1528 (error "Compiler error: optimizer is confused about %s:
1529 %s != %s at lapcode %s" ',stack-depth (cddr ,lap0) ,stack-depth ,lap0))
1530 ;; Now set out current depth from this tag
1531 (setq ,stack-depth (cddr ,lap0)))
1532 (setq ,stack-adjust 0))
1533 ((memq (car ,lap0) '(byte-goto byte-return))
1534 ;; These insns leave us in an unknown state
1535 (setq ,stack-adjust nil))
1536 ((car ,lap0)
1537 ;; Not a no-op, set ,stack-adjust for lap0. ,stack-adjust will
1538 ;; be added to ,stack-depth at the end of the loop, so any code
1539 ;; that modifies the instruction sequence must adjust this too.
1540 (setq ,stack-adjust
1541 (byte-compile-stack-adjustment (car ,lap0) (cdr ,lap0)))))
1542 (byte-compile-log-lap "Before %s [depth => %s, adj = %s]" ,lap0 ,stack-depth ,stack-adjust)
1545 (defun byte-optimize-lapcode (lap &optional for-effect)
1546 "Simple peephole optimizer. LAP is both modified and returned.
1547 If FOR-EFFECT is non-nil, the return value is assumed to be of no importance."
1548 (let (lap0
1549 lap1
1550 lap2
1551 stack-adjust
1552 stack-depth
1553 (initial-stack-depth
1554 (if (and lap (eq (car (car lap)) 'TAG))
1555 (cdr (cdr (car lap)))
1557 (keep-going 'first-time)
1558 (add-depth 0)
1559 rest tmp tmp2 tmp3
1560 (side-effect-free (if byte-compile-delete-errors
1561 byte-compile-side-effect-free-ops
1562 byte-compile-side-effect-and-error-free-ops)))
1563 (while keep-going
1564 (or (eq keep-going 'first-time)
1565 (byte-compile-log-lap " ---- next pass"))
1566 (setq rest lap
1567 stack-depth initial-stack-depth
1568 keep-going nil)
1569 (while rest
1570 (setq lap0 (car rest)
1571 lap1 (nth 1 rest)
1572 lap2 (nth 2 rest))
1574 (byte-opt-update-stack-params stack-adjust stack-depth lap0 rest lap)
1576 ;; You may notice that sequences like "dup varset discard" are
1577 ;; optimized but sequences like "dup varset TAG1: discard" are not.
1578 ;; You may be tempted to change this; resist that temptation.
1579 (cond ;;
1580 ;; <side-effect-free> pop --> <deleted>
1581 ;; ...including:
1582 ;; const-X pop --> <deleted>
1583 ;; varref-X pop --> <deleted>
1584 ;; dup pop --> <deleted>
1586 ((and (eq 'byte-discard (car lap1))
1587 (memq (car lap0) side-effect-free))
1588 (setq keep-going t)
1589 (setq rest (cdr rest))
1590 (cond ((= stack-adjust 1)
1591 (byte-compile-log-lap
1592 " %s discard\t-->\t<deleted>" lap0)
1593 (setq lap (delq lap0 (delq lap1 lap))))
1594 ((= stack-adjust 0)
1595 (byte-compile-log-lap
1596 " %s discard\t-->\t<deleted> discard" lap0)
1597 (setq lap (delq lap0 lap)))
1598 ((= stack-adjust -1)
1599 (byte-compile-log-lap
1600 " %s discard\t-->\tdiscard discard" lap0)
1601 (setcar lap0 'byte-discard)
1602 (setcdr lap0 0))
1603 ((error "Optimizer error: too much on the stack")))
1604 (setq stack-adjust (1- stack-adjust)))
1606 ;; goto*-X X: --> X:
1608 ((and (memq (car lap0) byte-goto-ops)
1609 (eq (cdr lap0) lap1))
1610 (cond ((eq (car lap0) 'byte-goto)
1611 (setq lap (delq lap0 lap))
1612 (setq tmp "<deleted>"))
1613 ((memq (car lap0) byte-goto-always-pop-ops)
1614 (setcar lap0 (setq tmp 'byte-discard))
1615 (setcdr lap0 0))
1616 ((error "Depth conflict at tag %d" (nth 2 lap0))))
1617 (and (memq byte-optimize-log '(t byte))
1618 (byte-compile-log " (goto %s) %s:\t-->\t%s %s:"
1619 (nth 1 lap1) (nth 1 lap1)
1620 tmp (nth 1 lap1)))
1621 (setq keep-going t))
1623 ;; varset-X varref-X --> dup varset-X
1624 ;; varbind-X varref-X --> dup varbind-X
1625 ;; const/dup varset-X varref-X --> const/dup varset-X const/dup
1626 ;; const/dup varbind-X varref-X --> const/dup varbind-X const/dup
1627 ;; The latter two can enable other optimizations.
1629 ((or (and (eq 'byte-varref (car lap2))
1630 (eq (cdr lap1) (cdr lap2))
1631 (memq (car lap1) '(byte-varset byte-varbind)))
1632 (and (eq (car lap2) 'byte-stack-ref)
1633 (eq (car lap1) 'byte-stack-set)
1634 (eq (cdr lap1) (cdr lap2))))
1635 (if (and (eq 'byte-varref (car lap2))
1636 (setq tmp (memq (car (cdr lap2)) byte-boolean-vars))
1637 (not (eq (car lap0) 'byte-constant)))
1639 (setq keep-going t)
1640 (if (memq (car lap0) '(byte-constant byte-dup))
1641 (progn
1642 (setq tmp (if (or (not tmp)
1643 (byte-compile-const-symbol-p
1644 (car (cdr lap0))))
1645 (cdr lap0)
1646 (byte-compile-get-constant t)))
1647 (byte-compile-log-lap " %s %s %s\t-->\t%s %s %s"
1648 lap0 lap1 lap2 lap0 lap1
1649 (cons (car lap0) tmp))
1650 (setcar lap2 (car lap0))
1651 (setcdr lap2 tmp))
1652 (byte-compile-log-lap " %s %s\t-->\tdup %s" lap1 lap2 lap1)
1653 (setcar lap2 (car lap1))
1654 (setcar lap1 'byte-dup)
1655 (setcdr lap1 0)
1656 ;; The stack depth gets locally increased, so we will
1657 ;; increase maxdepth in case depth = maxdepth here.
1658 ;; This can cause the third argument to byte-code to
1659 ;; be larger than necessary.
1660 (setq add-depth 1))))
1662 ;; dup varset-X discard --> varset-X
1663 ;; dup varbind-X discard --> varbind-X
1664 ;; (the varbind variant can emerge from other optimizations)
1666 ((and (eq 'byte-dup (car lap0))
1667 (eq 'byte-discard (car lap2))
1668 (memq (car lap1) '(byte-varset byte-varbind byte-stack-set byte-vec-set)))
1669 (byte-compile-log-lap " dup %s discard\t-->\t%s" lap1 lap1)
1670 (setq keep-going t
1671 rest (cdr rest)
1672 stack-adjust -1)
1673 (setq lap (delq lap0 (delq lap2 lap))))
1675 ;; not goto-X-if-nil --> goto-X-if-non-nil
1676 ;; not goto-X-if-non-nil --> goto-X-if-nil
1678 ;; it is wrong to do the same thing for the -else-pop variants.
1680 ((and (eq 'byte-not (car lap0))
1681 (or (eq 'byte-goto-if-nil (car lap1))
1682 (eq 'byte-goto-if-not-nil (car lap1))))
1683 (byte-compile-log-lap " not %s\t-->\t%s"
1684 lap1
1685 (cons
1686 (if (eq (car lap1) 'byte-goto-if-nil)
1687 'byte-goto-if-not-nil
1688 'byte-goto-if-nil)
1689 (cdr lap1)))
1690 (setcar lap1 (if (eq (car lap1) 'byte-goto-if-nil)
1691 'byte-goto-if-not-nil
1692 'byte-goto-if-nil))
1693 (setq lap (delq lap0 lap))
1694 (setq keep-going t
1695 stack-adjust 0))
1697 ;; goto-X-if-nil goto-Y X: --> goto-Y-if-non-nil X:
1698 ;; goto-X-if-non-nil goto-Y X: --> goto-Y-if-nil X:
1700 ;; it is wrong to do the same thing for the -else-pop variants.
1702 ((and (or (eq 'byte-goto-if-nil (car lap0))
1703 (eq 'byte-goto-if-not-nil (car lap0))) ; gotoX
1704 (eq 'byte-goto (car lap1)) ; gotoY
1705 (eq (cdr lap0) lap2)) ; TAG X
1706 (let ((inverse (if (eq 'byte-goto-if-nil (car lap0))
1707 'byte-goto-if-not-nil 'byte-goto-if-nil)))
1708 (byte-compile-log-lap " %s %s %s:\t-->\t%s %s:"
1709 lap0 lap1 lap2
1710 (cons inverse (cdr lap1)) lap2)
1711 (setq lap (delq lap0 lap)
1712 stack-adjust 0)
1713 (setcar lap1 inverse)
1714 (setq keep-going t)))
1716 ;; const goto-if-* --> whatever
1718 ((and (eq 'byte-constant (car lap0))
1719 (memq (car lap1) byte-conditional-ops))
1720 (cond ((if (or (eq (car lap1) 'byte-goto-if-nil)
1721 (eq (car lap1) 'byte-goto-if-nil-else-pop))
1722 (car (cdr lap0))
1723 (not (car (cdr lap0))))
1724 (byte-compile-log-lap " %s %s\t-->\t<deleted>"
1725 lap0 lap1)
1726 (setq rest (cdr rest)
1727 lap (delq lap0 (delq lap1 lap))))
1729 (byte-compile-log-lap " %s %s\t-->\t%s"
1730 lap0 lap1
1731 (cons 'byte-goto (cdr lap1)))
1732 (when (memq (car lap1) byte-goto-always-pop-ops)
1733 (setq lap (delq lap0 lap)))
1734 (setcar lap1 'byte-goto)))
1735 (setq keep-going t
1736 stack-adjust 0))
1738 ;; varref-X varref-X --> varref-X dup
1739 ;; varref-X [dup ...] varref-X --> varref-X [dup ...] dup
1740 ;; We don't optimize the const-X variations on this here,
1741 ;; because that would inhibit some goto optimizations; we
1742 ;; optimize the const-X case after all other optimizations.
1744 ((and (memq (car lap0) '(byte-varref byte-stack-ref))
1745 (progn
1746 (setq tmp (cdr rest) tmp2 0)
1747 (while (eq (car (car tmp)) 'byte-dup)
1748 (setq tmp (cdr tmp) tmp2 (1+ tmp2)))
1750 (eq (car lap0) (car (car tmp)))
1751 (eq (cdr lap0) (cdr (car tmp))))
1752 (if (memq byte-optimize-log '(t byte))
1753 (let ((str ""))
1754 (setq tmp2 (cdr rest))
1755 (while (not (eq tmp tmp2))
1756 (setq tmp2 (cdr tmp2)
1757 str (concat str " dup")))
1758 (byte-compile-log-lap " %s%s %s\t-->\t%s%s dup"
1759 lap0 str lap0 lap0 str)))
1760 (setq keep-going t)
1761 (setcar (car tmp) 'byte-dup)
1762 (setcdr (car tmp) 0)
1763 (setq rest tmp
1764 stack-adjust (+ 2 tmp2)))
1766 ;; TAG1: TAG2: --> TAG1: <deleted>
1767 ;; (and other references to TAG2 are replaced with TAG1)
1769 ((and (eq (car lap0) 'TAG)
1770 (eq (car lap1) 'TAG))
1771 (and (memq byte-optimize-log '(t byte))
1772 (byte-compile-log " adjacent tags %d and %d merged"
1773 (nth 1 lap1) (nth 1 lap0)))
1774 (setq tmp3 lap)
1775 (while (setq tmp2 (rassq lap0 tmp3))
1776 (setcdr tmp2 lap1)
1777 (setq tmp3 (cdr (memq tmp2 tmp3))))
1778 (setq lap (delq lap0 lap)
1779 keep-going t))
1781 ;; unused-TAG: --> <deleted>
1783 ((and (eq 'TAG (car lap0))
1784 (not (rassq lap0 lap)))
1785 (and (memq byte-optimize-log '(t byte))
1786 (byte-compile-log " unused tag %d removed" (nth 1 lap0)))
1787 (setq lap (delq lap0 lap)
1788 keep-going t))
1790 ;; goto ... --> goto <delete until TAG or end>
1791 ;; return ... --> return <delete until TAG or end>
1793 ((and (memq (car lap0) '(byte-goto byte-return))
1794 (not (memq (car lap1) '(TAG nil))))
1795 (setq tmp rest)
1796 (let ((i 0)
1797 (opt-p (memq byte-optimize-log '(t lap)))
1798 str deleted)
1799 (while (and (setq tmp (cdr tmp))
1800 (not (eq 'TAG (car (car tmp)))))
1801 (if opt-p (setq deleted (cons (car tmp) deleted)
1802 str (concat str " %s")
1803 i (1+ i))))
1804 (if opt-p
1805 (let ((tagstr
1806 (if (eq 'TAG (car (car tmp)))
1807 (format "%d:" (car (cdr (car tmp))))
1808 (or (car tmp) ""))))
1809 (if (< i 6)
1810 (apply 'byte-compile-log-lap-1
1811 (concat " %s" str
1812 " %s\t-->\t%s <deleted> %s")
1813 lap0
1814 (nconc (nreverse deleted)
1815 (list tagstr lap0 tagstr)))
1816 (byte-compile-log-lap
1817 " %s <%d unreachable op%s> %s\t-->\t%s <deleted> %s"
1818 lap0 i (if (= i 1) "" "s")
1819 tagstr lap0 tagstr))))
1820 (rplacd rest tmp))
1821 (setq keep-going t))
1823 ;; <safe-op> unbind --> unbind <safe-op>
1824 ;; (this may enable other optimizations.)
1826 ((and (eq 'byte-unbind (car lap1))
1827 (memq (car lap0) byte-after-unbind-ops))
1828 (byte-compile-log-lap " %s %s\t-->\t%s %s" lap0 lap1 lap1 lap0)
1829 (setcar rest lap1)
1830 (setcar (cdr rest) lap0)
1831 (setq keep-going t
1832 stack-adjust 0))
1834 ;; varbind-X unbind-N --> discard unbind-(N-1)
1835 ;; save-excursion unbind-N --> unbind-(N-1)
1836 ;; save-restriction unbind-N --> unbind-(N-1)
1838 ((and (eq 'byte-unbind (car lap1))
1839 (memq (car lap0) '(byte-varbind byte-save-excursion
1840 byte-save-restriction))
1841 (< 0 (cdr lap1)))
1842 (if (zerop (setcdr lap1 (1- (cdr lap1))))
1843 (delq lap1 rest))
1844 (if (eq (car lap0) 'byte-varbind)
1845 (setcar rest (cons 'byte-discard 0))
1846 (setq lap (delq lap0 lap)))
1847 (byte-compile-log-lap " %s %s\t-->\t%s %s"
1848 lap0 (cons (car lap1) (1+ (cdr lap1)))
1849 (if (eq (car lap0) 'byte-varbind)
1850 (car rest)
1851 (car (cdr rest)))
1852 (if (and (/= 0 (cdr lap1))
1853 (eq (car lap0) 'byte-varbind))
1854 (car (cdr rest))
1855 ""))
1856 (setq keep-going t))
1858 ;; stack-ref-N --> dup ; where N is TOS
1860 ((and (eq (car lap0) 'byte-stack-ref)
1861 (= (cdr lap0) (1- stack-depth)))
1862 (setcar lap0 'byte-dup)
1863 (setcdr lap0 nil)
1864 (setq keep-going t))
1866 ;; goto*-X ... X: goto-Y --> goto*-Y
1867 ;; goto-X ... X: return --> return
1869 ((and (memq (car lap0) byte-goto-ops)
1870 (memq (car (setq tmp (nth 1 (memq (cdr lap0) lap))))
1871 '(byte-goto byte-return)))
1872 (cond ((and (not (eq tmp lap0))
1873 (or (eq (car lap0) 'byte-goto)
1874 (eq (car tmp) 'byte-goto)))
1875 (byte-compile-log-lap " %s [%s]\t-->\t%s"
1876 (car lap0) tmp tmp)
1877 (if (eq (car tmp) 'byte-return)
1878 (setcar lap0 'byte-return))
1879 (setcdr lap0 (cdr tmp))
1880 (setq keep-going t))))
1882 ;; goto-*-else-pop X ... X: goto-if-* --> whatever
1883 ;; goto-*-else-pop X ... X: discard --> whatever
1885 ((and (memq (car lap0) '(byte-goto-if-nil-else-pop
1886 byte-goto-if-not-nil-else-pop))
1887 (memq (car (car (setq tmp (cdr (memq (cdr lap0) lap)))))
1888 (eval-when-compile
1889 (cons 'byte-discard byte-conditional-ops)))
1890 (not (eq lap0 (car tmp))))
1891 (setq tmp2 (car tmp))
1892 (setq tmp3 (assq (car lap0) '((byte-goto-if-nil-else-pop
1893 byte-goto-if-nil)
1894 (byte-goto-if-not-nil-else-pop
1895 byte-goto-if-not-nil))))
1896 (if (memq (car tmp2) tmp3)
1897 (progn (setcar lap0 (car tmp2))
1898 (setcdr lap0 (cdr tmp2))
1899 (byte-compile-log-lap " %s-else-pop [%s]\t-->\t%s"
1900 (car lap0) tmp2 lap0))
1901 ;; Get rid of the -else-pop's and jump one step further.
1902 (or (eq 'TAG (car (nth 1 tmp)))
1903 (setcdr tmp (cons (byte-compile-make-tag)
1904 (cdr tmp))))
1905 (byte-compile-log-lap " %s [%s]\t-->\t%s <skip>"
1906 (car lap0) tmp2 (nth 1 tmp3))
1907 (setcar lap0 (nth 1 tmp3))
1908 (setcdr lap0 (nth 1 tmp)))
1909 (setq keep-going t))
1911 ;; const goto-X ... X: goto-if-* --> whatever
1912 ;; const goto-X ... X: discard --> whatever
1914 ((and (eq (car lap0) 'byte-constant)
1915 (eq (car lap1) 'byte-goto)
1916 (memq (car (car (setq tmp (cdr (memq (cdr lap1) lap)))))
1917 (eval-when-compile
1918 (cons 'byte-discard byte-conditional-ops)))
1919 (not (eq lap1 (car tmp))))
1920 (setq tmp2 (car tmp))
1921 (cond ((memq (car tmp2)
1922 (if (null (car (cdr lap0)))
1923 '(byte-goto-if-nil byte-goto-if-nil-else-pop)
1924 '(byte-goto-if-not-nil
1925 byte-goto-if-not-nil-else-pop)))
1926 (byte-compile-log-lap " %s goto [%s]\t-->\t%s %s"
1927 lap0 tmp2 lap0 tmp2)
1928 (setcar lap1 (car tmp2))
1929 (setcdr lap1 (cdr tmp2))
1930 ;; Let next step fix the (const,goto-if*) sequence.
1931 (setq rest (cons nil rest)))
1933 ;; Jump one step further
1934 (byte-compile-log-lap
1935 " %s goto [%s]\t-->\t<deleted> goto <skip>"
1936 lap0 tmp2)
1937 (or (eq 'TAG (car (nth 1 tmp)))
1938 (setcdr tmp (cons (byte-compile-make-tag)
1939 (cdr tmp))))
1940 (setcdr lap1 (car (cdr tmp)))
1941 (setq lap (delq lap0 lap))))
1942 (setq keep-going t
1943 stack-adjust 0))
1945 ;; X: varref-Y ... varset-Y goto-X -->
1946 ;; X: varref-Y Z: ... dup varset-Y goto-Z
1947 ;; (varset-X goto-BACK, BACK: varref-X --> copy the varref down.)
1948 ;; (This is so usual for while loops that it is worth handling).
1950 ((and (memq (car lap1) '(byte-varset byte-stack-set))
1951 (eq (car lap2) 'byte-goto)
1952 (not (memq (cdr lap2) rest)) ;Backwards jump
1953 (eq (car (car (setq tmp (cdr (memq (cdr lap2) lap)))))
1954 (if (eq (car lap1) 'byte-varset) 'byte-varref 'byte-stack-ref))
1955 (eq (cdr (car tmp)) (cdr lap1))
1956 (not (and (eq (car lap1) 'byte-varref)
1957 (memq (car (cdr lap1)) byte-boolean-vars))))
1958 ;;(byte-compile-log-lap " Pulled %s to end of loop" (car tmp))
1959 (let ((newtag (byte-compile-make-tag)))
1960 (byte-compile-log-lap
1961 " %s: %s ... %s %s\t-->\t%s: %s %s: ... %s %s %s"
1962 (nth 1 (cdr lap2)) (car tmp)
1963 lap1 lap2
1964 (nth 1 (cdr lap2)) (car tmp)
1965 (nth 1 newtag) 'byte-dup lap1
1966 (cons 'byte-goto newtag)
1968 (setcdr rest (cons (cons 'byte-dup 0) (cdr rest)))
1969 (setcdr tmp (cons (setcdr lap2 newtag) (cdr tmp))))
1970 (setq add-depth 1)
1971 (setq keep-going t))
1973 ;; goto-X Y: ... X: goto-if*-Y --> goto-if-not-*-X+1 Y:
1974 ;; (This can pull the loop test to the end of the loop)
1976 ((and (eq (car lap0) 'byte-goto)
1977 (eq (car lap1) 'TAG)
1978 (eq lap1
1979 (cdr (car (setq tmp (cdr (memq (cdr lap0) lap))))))
1980 (memq (car (car tmp))
1981 '(byte-goto byte-goto-if-nil byte-goto-if-not-nil
1982 byte-goto-if-nil-else-pop)))
1983 ;; (byte-compile-log-lap " %s %s, %s %s --> moved conditional"
1984 ;; lap0 lap1 (cdr lap0) (car tmp))
1985 (let ((newtag (byte-compile-make-tag)))
1986 (byte-compile-log-lap
1987 "%s %s: ... %s: %s\t-->\t%s ... %s:"
1988 lap0 (nth 1 lap1) (nth 1 (cdr lap0)) (car tmp)
1989 (cons (cdr (assq (car (car tmp))
1990 '((byte-goto-if-nil . byte-goto-if-not-nil)
1991 (byte-goto-if-not-nil . byte-goto-if-nil)
1992 (byte-goto-if-nil-else-pop .
1993 byte-goto-if-not-nil-else-pop)
1994 (byte-goto-if-not-nil-else-pop .
1995 byte-goto-if-nil-else-pop))))
1996 newtag)
1998 (nth 1 newtag)
2000 (setcdr tmp (cons (setcdr lap0 newtag) (cdr tmp)))
2001 (if (eq (car (car tmp)) 'byte-goto-if-nil-else-pop)
2002 ;; We can handle this case but not the -if-not-nil case,
2003 ;; because we won't know which non-nil constant to push.
2004 (setcdr rest (cons (cons 'byte-constant
2005 (byte-compile-get-constant nil))
2006 (cdr rest))))
2007 (setcar lap0 (nth 1 (memq (car (car tmp))
2008 '(byte-goto-if-nil-else-pop
2009 byte-goto-if-not-nil
2010 byte-goto-if-nil
2011 byte-goto-if-not-nil
2012 byte-goto byte-goto))))
2014 (setq keep-going t
2015 stack-adjust (and (not (eq (car lap0) 'byte-goto)) -1)))
2018 (setq stack-depth
2019 (and stack-depth stack-adjust (+ stack-depth stack-adjust)))
2020 (setq rest (cdr rest)))
2023 ;; Cleanup stage:
2024 ;; Rebuild byte-compile-constants / byte-compile-variables.
2025 ;; Simple optimizations that would inhibit other optimizations if they
2026 ;; were done in the optimizing loop, and optimizations which there is no
2027 ;; need to do more than once.
2028 (setq byte-compile-constants nil
2029 byte-compile-variables nil)
2030 (setq rest lap
2031 stack-depth initial-stack-depth)
2032 (byte-compile-log-lap " ---- final pass")
2033 (while rest
2034 (setq lap0 (car rest)
2035 lap1 (nth 1 rest))
2036 (byte-opt-update-stack-params stack-adjust stack-depth lap0 rest lap)
2037 (if (memq (car lap0) byte-constref-ops)
2038 (if (or (eq (car lap0) 'byte-constant)
2039 (eq (car lap0) 'byte-constant2))
2040 (unless (memq (cdr lap0) byte-compile-constants)
2041 (setq byte-compile-constants (cons (cdr lap0)
2042 byte-compile-constants)))
2043 (unless (memq (cdr lap0) byte-compile-variables)
2044 (setq byte-compile-variables (cons (cdr lap0)
2045 byte-compile-variables)))))
2046 (cond (;;
2047 ;; const-C varset-X const-C --> const-C dup varset-X
2048 ;; const-C varbind-X const-C --> const-C dup varbind-X
2050 (and (eq (car lap0) 'byte-constant)
2051 (eq (car (nth 2 rest)) 'byte-constant)
2052 (eq (cdr lap0) (cdr (nth 2 rest)))
2053 (memq (car lap1) '(byte-varbind byte-varset)))
2054 (byte-compile-log-lap " %s %s %s\t-->\t%s dup %s"
2055 lap0 lap1 lap0 lap0 lap1)
2056 (setcar (cdr (cdr rest)) (cons (car lap1) (cdr lap1)))
2057 (setcar (cdr rest) (cons 'byte-dup 0))
2058 (setq add-depth 1))
2060 ;; const-X [dup/const-X ...] --> const-X [dup ...] dup
2061 ;; varref-X [dup/varref-X ...] --> varref-X [dup ...] dup
2063 ((memq (car lap0) '(byte-constant byte-varref))
2064 (setq tmp rest
2065 tmp2 nil)
2066 (while (progn
2067 (while (eq 'byte-dup (car (car (setq tmp (cdr tmp))))))
2068 (and (eq (cdr lap0) (cdr (car tmp)))
2069 (eq (car lap0) (car (car tmp)))))
2070 (setcar tmp (cons 'byte-dup 0))
2071 (setq tmp2 t))
2072 (if tmp2
2073 (byte-compile-log-lap
2074 " %s [dup/%s]...\t-->\t%s dup..." lap0 lap0 lap0)))
2076 ;; unbind-N unbind-M --> unbind-(N+M)
2078 ((and (eq 'byte-unbind (car lap0))
2079 (eq 'byte-unbind (car lap1)))
2080 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1
2081 (cons 'byte-unbind
2082 (+ (cdr lap0) (cdr lap1))))
2083 (setq lap (delq lap0 lap))
2084 (setcdr lap1 (+ (cdr lap1) (cdr lap0))))
2087 ;; stack-set-M [discard/discardN ...] --> discardN-preserve-tos
2088 ;; stack-set-M [discard/discardN ...] --> discardN
2090 ((and (eq (car lap0) 'byte-stack-set)
2091 (memq (car lap1) '(byte-discard byte-discardN))
2092 (progn
2093 ;; See if enough discard operations follow to expose or
2094 ;; destroy the value stored by the stack-set.
2095 (setq tmp (cdr rest))
2096 (setq tmp2 (- stack-depth 2 (cdr lap0)))
2097 (setq tmp3 0)
2098 (while (memq (car (car tmp)) '(byte-discard byte-discardN))
2099 (if (eq (car (car tmp)) 'byte-discard)
2100 (setq tmp3 (1+ tmp3))
2101 (setq tmp3 (+ tmp3 (cdr (car tmp)))))
2102 (setq tmp (cdr tmp)))
2103 (>= tmp3 tmp2)))
2104 ;; Do the optimization
2105 (setq lap (delq lap0 lap))
2106 (cond ((= tmp2 tmp3)
2107 ;; The value stored is the new TOS, so pop one more value
2108 ;; (to get rid of the old value) using the TOS-preserving
2109 ;; discard operator.
2110 (setcar lap1 'byte-discardN-preserve-tos)
2111 (setcdr lap1 (1+ tmp3)))
2113 ;; Otherwise, the value stored is lost, so just use a
2114 ;; normal discard.
2115 (setcar lap1 'byte-discardN)
2116 (setcdr lap1 tmp3)))
2117 (setcdr (cdr rest) tmp)
2118 (setq stack-adjust 0)
2119 (byte-compile-log-lap " %s [discard/discardN]...\t-->\t%s"
2120 lap0 lap1))
2123 ;; discard/discardN/discardN-preserve-tos-X discard/discardN-Y -->
2124 ;; discardN-(X+Y)
2126 ((and (memq (car lap0)
2127 '(byte-discard
2128 byte-discardN
2129 byte-discardN-preserve-tos))
2130 (memq (car lap1) '(byte-discard byte-discardN)))
2131 (setq lap (delq lap0 lap))
2132 (byte-compile-log-lap
2133 " %s %s\t-->\t(discardN %s)"
2134 lap0 lap1
2135 (+ (if (eq (car lap0) 'byte-discard) 1 (cdr lap0))
2136 (if (eq (car lap1) 'byte-discard) 1 (cdr lap1))))
2137 (setcdr lap1 (+ (if (eq (car lap0) 'byte-discard) 1 (cdr lap0))
2138 (if (eq (car lap1) 'byte-discard) 1 (cdr lap1))))
2139 (setcar lap1 'byte-discardN)
2140 (setq stack-adjust 0))
2143 ;; discardN-preserve-tos-X discardN-preserve-tos-Y -->
2144 ;; discardN-preserve-tos-(X+Y)
2146 ((and (eq (car lap0) 'byte-discardN-preserve-tos)
2147 (eq (car lap1) 'byte-discardN-preserve-tos))
2148 (setq lap (delq lap0 lap))
2149 (setcdr lap1 (+ (cdr lap0) (cdr lap1)))
2150 (setq stack-adjust 0)
2151 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1 (car rest)))
2154 ;; discardN-preserve-tos return --> return
2155 ;; dup return --> return
2156 ;; stack-set-N return --> return ; where N is TOS-1
2158 ((and (eq (car lap1) 'byte-return)
2159 (or (memq (car lap0) '(byte-discardN-preserve-tos byte-dup))
2160 (and (eq (car lap0) 'byte-stack-set)
2161 (= (cdr lap0) (- stack-depth 2)))))
2162 ;; the byte-code interpreter will pop the stack for us, so
2163 ;; we can just leave stuff on it
2164 (setq lap (delq lap0 lap))
2165 (setq stack-adjust 0)
2166 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1 lap1))
2169 ;; dup stack-set-N return --> return ; where N is TOS
2171 ((and (eq (car lap0) 'byte-dup)
2172 (eq (car lap1) 'byte-stack-set)
2173 (eq (car (car (cdr (cdr rest)))) 'byte-return)
2174 (= (cdr lap1) (1- stack-depth)))
2175 (setq lap (delq lap0 (delq lap1 lap)))
2176 (setq rest (cdr rest))
2177 (setq stack-adjust 0)
2178 (byte-compile-log-lap " dup %s return\t-->\treturn" lap1))
2181 (setq stack-depth
2182 (and stack-depth stack-adjust (+ stack-depth stack-adjust)))
2183 (setq rest (cdr rest)))
2185 (setq byte-compile-maxdepth (+ byte-compile-maxdepth add-depth)))
2186 lap)
2188 (provide 'byte-opt)
2191 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when this file compiles
2192 ;; itself, compile some of its most used recursive functions (at load time).
2194 (eval-when-compile
2195 (or (byte-code-function-p (symbol-function 'byte-optimize-form))
2196 (assq 'byte-code (symbol-function 'byte-optimize-form))
2197 (let ((byte-optimize nil)
2198 (byte-compile-warnings nil))
2199 (mapc (lambda (x)
2200 (or noninteractive (message "compiling %s..." x))
2201 (byte-compile x)
2202 (or noninteractive (message "compiling %s...done" x)))
2203 '(byte-optimize-form
2204 byte-optimize-body
2205 byte-optimize-predicate
2206 byte-optimize-binary-predicate
2207 ;; Inserted some more than necessary, to speed it up.
2208 byte-optimize-form-code-walker
2209 byte-optimize-lapcode))))
2210 nil)
2212 ;; arch-tag: 0f14076b-737e-4bef-aae6-908826ec1ff1
2213 ;;; byte-opt.el ends here