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