Mercurial > emacs
annotate lisp/emacs-lisp/byte-opt.el @ 42811:cf0c0ef57504
*** empty log message ***
| author | Jason Rumney <jasonr@gnu.org> |
|---|---|
| date | Thu, 17 Jan 2002 19:29:24 +0000 |
| parents | 76d12dafa83d |
| children | 8788778fec51 f3dd1dced03a |
| rev | line source |
|---|---|
|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Jan?k <Pavel@Janik.cz>
parents:
37908
diff
changeset
|
1 ;;; byte-opt.el --- the optimization passes of the emacs-lisp byte compiler |
| 848 | 2 |
| 36999 | 3 ;;; Copyright (c) 1991, 1994, 2000, 2001 Free Software Foundation, Inc. |
| 848 | 4 |
| 5 ;; Author: Jamie Zawinski <jwz@lucid.com> | |
| 6 ;; Hallvard Furuseth <hbf@ulrik.uio.no> | |
| 27823 | 7 ;; Maintainer: FSF |
| 848 | 8 ;; Keywords: internal |
| 757 | 9 |
| 10 ;; This file is part of GNU Emacs. | |
| 11 | |
| 12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 13 ;; it under the terms of the GNU General Public License as published by | |
| 848 | 14 ;; the Free Software Foundation; either version 2, or (at your option) |
| 757 | 15 ;; any later version. |
| 16 | |
| 17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 ;; GNU General Public License for more details. | |
| 21 | |
| 22 ;; You should have received a copy of the GNU General Public License | |
| 14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 25 ;; Boston, MA 02111-1307, USA. | |
| 757 | 26 |
| 848 | 27 ;;; Commentary: |
| 28 | |
| 14169 | 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." | |
| 32 ;; | |
| 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. | |
| 37 ;; | |
| 757 | 38 |
| 14169 | 39 ;; TO DO: |
| 40 ;; | |
|
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
41 ;; (apply (lambda (x &rest y) ...) 1 (foo)) |
| 14169 | 42 ;; |
| 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? | |
| 61 ;; | |
| 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... | |
| 70 ;; | |
| 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. | |
| 84 ;; | |
| 85 ;; collapse common subexpressions | |
| 86 ;; | |
| 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)) | |
| 92 ;; | |
| 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. | |
| 99 ;; | |
| 100 ;; Here is an example of an Emacs Lisp function which could safely be | |
| 101 ;; byte-compiled tail-recursively: | |
| 102 ;; | |
| 103 ;; (defun tail-map (fn list) | |
| 104 ;; (cond (list | |
| 105 ;; (funcall fn (car list)) | |
| 106 ;; (tail-map fn (cdr list))))) | |
| 107 ;; | |
| 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. | |
| 112 ;; | |
| 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) | |
| 117 ;; | |
| 118 ;; this also can be considered tail recursion: | |
| 119 ;; | |
| 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) | |
| 123 ;; | |
| 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. | |
| 129 ;; | |
| 130 ;; Wouldn't it be nice if Emacs Lisp had lexical scope. | |
| 131 ;; | |
| 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. | |
| 142 ;; | |
| 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.) | |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
148 |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
149 ;; Other things to consider: |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
150 |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
151 ;;;;; Associative math should recognize subcalls to identical function: |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
152 ;;;(disassemble (lambda (x) (+ (+ (foo) 1) (+ (bar) 2)))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
153 ;;;;; This should generate the same as (1+ x) and (1- x) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
154 |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
155 ;;;(disassemble (lambda (x) (cons (+ x 1) (- x 1)))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
156 ;;;;; An awful lot of functions always return a non-nil value. If they're |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
157 ;;;;; error free also they may act as true-constants. |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
158 |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
159 ;;;(disassemble (lambda (x) (and (point) (foo)))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
160 ;;;;; When |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
161 ;;;;; - all but one arguments to a function are constant |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
162 ;;;;; - the non-constant argument is an if-expression (cond-expression?) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
163 ;;;;; then the outer function can be distributed. If the guarding |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
164 ;;;;; condition is side-effect-free [assignment-free] then the other |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
165 ;;;;; arguments may be any expressions. Since, however, the code size |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
166 ;;;;; can increase this way they should be "simple". Compare: |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
167 |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
168 ;;;(disassemble (lambda (x) (eq (if (point) 'a 'b) 'c))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
169 ;;;(disassemble (lambda (x) (if (point) (eq 'a 'c) (eq 'b 'c)))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
170 |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
171 ;;;;; (car (cons A B)) -> (progn B A) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
172 ;;;(disassemble (lambda (x) (car (cons (foo) 42)))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
173 |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
174 ;;;;; (cdr (cons A B)) -> (progn A B) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
175 ;;;(disassemble (lambda (x) (cdr (cons 42 (foo))))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
176 |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
177 ;;;;; (car (list A B ...)) -> (progn B ... A) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
178 ;;;(disassemble (lambda (x) (car (list (foo) 42 (bar))))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
179 |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
180 ;;;;; (cdr (list A B ...)) -> (progn A (list B ...)) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
181 ;;;(disassemble (lambda (x) (cdr (list 42 (foo) (bar))))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
182 |
| 757 | 183 |
| 848 | 184 ;;; Code: |
| 757 | 185 |
|
23822
34fa38b26638
Require bytecomp for byte-goto-ops.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
23177
diff
changeset
|
186 (require 'bytecomp) |
|
34fa38b26638
Require bytecomp for byte-goto-ops.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
23177
diff
changeset
|
187 |
| 757 | 188 (defun byte-compile-log-lap-1 (format &rest args) |
| 189 (if (aref byte-code-vector 0) | |
|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Jan?k <Pavel@Janik.cz>
parents:
37908
diff
changeset
|
190 (error "The old version of the disassembler is loaded. Reload new-bytecomp as well")) |
| 757 | 191 (byte-compile-log-1 |
| 192 (apply 'format format | |
| 193 (let (c a) | |
|
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
194 (mapcar (lambda (arg) |
| 757 | 195 (if (not (consp arg)) |
| 196 (if (and (symbolp arg) | |
| 197 (string-match "^byte-" (symbol-name arg))) | |
| 198 (intern (substring (symbol-name arg) 5)) | |
| 199 arg) | |
| 200 (if (integerp (setq c (car arg))) | |
| 201 (error "non-symbolic byte-op %s" c)) | |
| 202 (if (eq c 'TAG) | |
| 203 (setq c arg) | |
| 204 (setq a (cond ((memq c byte-goto-ops) | |
| 205 (car (cdr (cdr arg)))) | |
| 206 ((memq c byte-constref-ops) | |
| 207 (car (cdr arg))) | |
| 208 (t (cdr arg)))) | |
| 209 (setq c (symbol-name c)) | |
| 210 (if (string-match "^byte-." c) | |
| 211 (setq c (intern (substring c 5))))) | |
| 212 (if (eq c 'constant) (setq c 'const)) | |
| 213 (if (and (eq (cdr arg) 0) | |
| 214 (not (memq c '(unbind call const)))) | |
| 215 c | |
| 216 (format "(%s %s)" c a)))) | |
| 217 args))))) | |
| 218 | |
| 219 (defmacro byte-compile-log-lap (format-string &rest args) | |
| 220 (list 'and | |
| 221 '(memq byte-optimize-log '(t byte)) | |
| 222 (cons 'byte-compile-log-lap-1 | |
| 223 (cons format-string args)))) | |
| 224 | |
| 225 | |
| 226 ;;; byte-compile optimizers to support inlining | |
| 227 | |
| 228 (put 'inline 'byte-optimizer 'byte-optimize-inline-handler) | |
| 229 | |
| 230 (defun byte-optimize-inline-handler (form) | |
| 231 "byte-optimize-handler for the `inline' special-form." | |
| 232 (cons 'progn | |
| 233 (mapcar | |
|
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
234 (lambda (sexp) |
| 757 | 235 (let ((fn (car-safe sexp))) |
| 236 (if (and (symbolp fn) | |
| 237 (or (cdr (assq fn byte-compile-function-environment)) | |
| 238 (and (fboundp fn) | |
| 239 (not (or (cdr (assq fn byte-compile-macro-environment)) | |
| 240 (and (consp (setq fn (symbol-function fn))) | |
| 241 (eq (car fn) 'macro)) | |
| 242 (subrp fn)))))) | |
| 243 (byte-compile-inline-expand sexp) | |
| 244 sexp))) | |
| 245 (cdr form)))) | |
| 246 | |
| 247 | |
|
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
248 ;; Splice the given lap code into the current instruction stream. |
|
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
249 ;; If it has any labels in it, you're responsible for making sure there |
|
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
250 ;; are no collisions, and that byte-compile-tag-number is reasonable |
|
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
251 ;; after this is spliced in. The provided list is destroyed. |
| 757 | 252 (defun byte-inline-lapcode (lap) |
| 253 (setq byte-compile-output (nconc (nreverse lap) byte-compile-output))) | |
| 254 | |
| 255 | |
| 256 (defun byte-compile-inline-expand (form) | |
| 257 (let* ((name (car form)) | |
| 258 (fn (or (cdr (assq name byte-compile-function-environment)) | |
| 259 (and (fboundp name) (symbol-function name))))) | |
| 260 (if (null fn) | |
| 261 (progn | |
| 39770 | 262 (byte-compile-warn "attempt to inline `%s' before it was defined" |
|
28423
6b92fbc04c23
(byte-compile-inline-expand): Fix bug
Gerd Moellmann <gerd@gnu.org>
parents:
27823
diff
changeset
|
263 name) |
| 757 | 264 form) |
| 265 ;; else | |
|
28440
45337208670b
(byte-compile-inline-expand): Look
Gerd Moellmann <gerd@gnu.org>
parents:
28423
diff
changeset
|
266 (when (and (consp fn) (eq (car fn) 'autoload)) |
|
37907
a8fffaec8725
(byte-compile-inline-expand): Fix the arg of `load' again.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37904
diff
changeset
|
267 (load (nth 1 fn)) |
|
28440
45337208670b
(byte-compile-inline-expand): Look
Gerd Moellmann <gerd@gnu.org>
parents:
28423
diff
changeset
|
268 (setq fn (or (and (fboundp name) (symbol-function name)) |
|
45337208670b
(byte-compile-inline-expand): Look
Gerd Moellmann <gerd@gnu.org>
parents:
28423
diff
changeset
|
269 (cdr (assq name byte-compile-function-environment))))) |
| 757 | 270 (if (and (consp fn) (eq (car fn) 'autoload)) |
|
37908
ba28e6b7a67b
(byte-compile-inline-expand): Complete Dave's
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37907
diff
changeset
|
271 (error "File `%s' didn't define `%s'" (nth 1 fn) name)) |
| 757 | 272 (if (symbolp fn) |
| 273 (byte-compile-inline-expand (cons fn (cdr form))) | |
|
1818
7e3322619e46
compiled-function-p has been renamed to byte-code-function-p.
Jim Blandy <jimb@redhat.com>
parents:
957
diff
changeset
|
274 (if (byte-code-function-p fn) |
|
20778
6d7fffd02e26
(byte-compile-inline-expand): Use string-as-unibyte, if it is defined.
Richard M. Stallman <rms@gnu.org>
parents:
20749
diff
changeset
|
275 (let (string) |
|
11203
31b8e30c1afb
(byte-compile-inline-expand): Fetch actual bytecode
Karl Heuer <kwzh@gnu.org>
parents:
8466
diff
changeset
|
276 (fetch-bytecode fn) |
|
20778
6d7fffd02e26
(byte-compile-inline-expand): Use string-as-unibyte, if it is defined.
Richard M. Stallman <rms@gnu.org>
parents:
20749
diff
changeset
|
277 (setq string (aref fn 1)) |
|
6d7fffd02e26
(byte-compile-inline-expand): Use string-as-unibyte, if it is defined.
Richard M. Stallman <rms@gnu.org>
parents:
20749
diff
changeset
|
278 (if (fboundp 'string-as-unibyte) |
|
6d7fffd02e26
(byte-compile-inline-expand): Use string-as-unibyte, if it is defined.
Richard M. Stallman <rms@gnu.org>
parents:
20749
diff
changeset
|
279 (setq string (string-as-unibyte string))) |
|
11203
31b8e30c1afb
(byte-compile-inline-expand): Fetch actual bytecode
Karl Heuer <kwzh@gnu.org>
parents:
8466
diff
changeset
|
280 (cons (list 'lambda (aref fn 0) |
|
20778
6d7fffd02e26
(byte-compile-inline-expand): Use string-as-unibyte, if it is defined.
Richard M. Stallman <rms@gnu.org>
parents:
20749
diff
changeset
|
281 (list 'byte-code string (aref fn 2) (aref fn 3))) |
|
11203
31b8e30c1afb
(byte-compile-inline-expand): Fetch actual bytecode
Karl Heuer <kwzh@gnu.org>
parents:
8466
diff
changeset
|
282 (cdr form))) |
| 23177 | 283 (if (eq (car-safe fn) 'lambda) |
| 284 (cons fn (cdr form)) | |
| 285 ;; Give up on inlining. | |
| 286 form)))))) | |
| 757 | 287 |
| 288 ;;; ((lambda ...) ...) | |
| 289 ;;; | |
| 290 (defun byte-compile-unfold-lambda (form &optional name) | |
| 291 (or name (setq name "anonymous lambda")) | |
| 292 (let ((lambda (car form)) | |
| 293 (values (cdr form))) | |
|
1818
7e3322619e46
compiled-function-p has been renamed to byte-code-function-p.
Jim Blandy <jimb@redhat.com>
parents:
957
diff
changeset
|
294 (if (byte-code-function-p lambda) |
| 957 | 295 (setq lambda (list 'lambda (aref lambda 0) |
| 296 (list 'byte-code (aref lambda 1) | |
| 297 (aref lambda 2) (aref lambda 3))))) | |
| 757 | 298 (let ((arglist (nth 1 lambda)) |
| 299 (body (cdr (cdr lambda))) | |
| 300 optionalp restp | |
| 301 bindings) | |
| 302 (if (and (stringp (car body)) (cdr body)) | |
| 303 (setq body (cdr body))) | |
| 304 (if (and (consp (car body)) (eq 'interactive (car (car body)))) | |
| 305 (setq body (cdr body))) | |
| 306 (while arglist | |
| 307 (cond ((eq (car arglist) '&optional) | |
| 308 ;; ok, I'll let this slide because funcall_lambda() does... | |
| 309 ;; (if optionalp (error "multiple &optional keywords in %s" name)) | |
| 310 (if restp (error "&optional found after &rest in %s" name)) | |
| 311 (if (null (cdr arglist)) | |
| 312 (error "nothing after &optional in %s" name)) | |
| 313 (setq optionalp t)) | |
| 314 ((eq (car arglist) '&rest) | |
| 315 ;; ...but it is by no stretch of the imagination a reasonable | |
| 316 ;; thing that funcall_lambda() allows (&rest x y) and | |
| 317 ;; (&rest x &optional y) in arglists. | |
| 318 (if (null (cdr arglist)) | |
| 319 (error "nothing after &rest in %s" name)) | |
| 320 (if (cdr (cdr arglist)) | |
| 321 (error "multiple vars after &rest in %s" name)) | |
| 322 (setq restp t)) | |
| 323 (restp | |
| 324 (setq bindings (cons (list (car arglist) | |
| 325 (and values (cons 'list values))) | |
| 326 bindings) | |
| 327 values nil)) | |
| 328 ((and (not optionalp) (null values)) | |
| 39770 | 329 (byte-compile-warn "attempt to open-code `%s' with too few arguments" name) |
| 757 | 330 (setq arglist nil values 'too-few)) |
| 331 (t | |
| 332 (setq bindings (cons (list (car arglist) (car values)) | |
| 333 bindings) | |
| 334 values (cdr values)))) | |
| 335 (setq arglist (cdr arglist))) | |
| 336 (if values | |
| 337 (progn | |
| 338 (or (eq values 'too-few) | |
| 339 (byte-compile-warn | |
| 39770 | 340 "attempt to open-code `%s' with too many arguments" name)) |
| 757 | 341 form) |
|
33458
f1c913d16f4c
(byte-compile-unfold-lambda): Don't
Gerd Moellmann <gerd@gnu.org>
parents:
32078
diff
changeset
|
342 |
|
f1c913d16f4c
(byte-compile-unfold-lambda): Don't
Gerd Moellmann <gerd@gnu.org>
parents:
32078
diff
changeset
|
343 ;; The following leads to infinite recursion when loading a |
|
f1c913d16f4c
(byte-compile-unfold-lambda): Don't
Gerd Moellmann <gerd@gnu.org>
parents:
32078
diff
changeset
|
344 ;; file containing `(defsubst f () (f))', and then trying to |
|
f1c913d16f4c
(byte-compile-unfold-lambda): Don't
Gerd Moellmann <gerd@gnu.org>
parents:
32078
diff
changeset
|
345 ;; byte-compile that file. |
|
f1c913d16f4c
(byte-compile-unfold-lambda): Don't
Gerd Moellmann <gerd@gnu.org>
parents:
32078
diff
changeset
|
346 ;(setq body (mapcar 'byte-optimize-form body))) |
|
f1c913d16f4c
(byte-compile-unfold-lambda): Don't
Gerd Moellmann <gerd@gnu.org>
parents:
32078
diff
changeset
|
347 |
| 757 | 348 (let ((newform |
| 349 (if bindings | |
| 350 (cons 'let (cons (nreverse bindings) body)) | |
| 351 (cons 'progn body)))) | |
| 352 (byte-compile-log " %s\t==>\t%s" form newform) | |
| 353 newform))))) | |
| 354 | |
| 355 | |
| 356 ;;; implementing source-level optimizers | |
| 357 | |
| 358 (defun byte-optimize-form-code-walker (form for-effect) | |
| 359 ;; | |
| 360 ;; For normal function calls, We can just mapcar the optimizer the cdr. But | |
| 361 ;; we need to have special knowledge of the syntax of the special forms | |
| 362 ;; like let and defun (that's why they're special forms :-). (Actually, | |
| 363 ;; the important aspect is that they are subrs that don't evaluate all of | |
| 364 ;; their args.) | |
| 365 ;; | |
| 366 (let ((fn (car-safe form)) | |
| 367 tmp) | |
| 368 (cond ((not (consp form)) | |
| 369 (if (not (and for-effect | |
| 370 (or byte-compile-delete-errors | |
| 371 (not (symbolp form)) | |
| 372 (eq form t)))) | |
| 373 form)) | |
| 374 ((eq fn 'quote) | |
| 375 (if (cdr (cdr form)) | |
| 39770 | 376 (byte-compile-warn "malformed quote form: `%s'" |
| 757 | 377 (prin1-to-string form))) |
| 378 ;; map (quote nil) to nil to simplify optimizer logic. | |
| 379 ;; map quoted constants to nil if for-effect (just because). | |
| 380 (and (nth 1 form) | |
| 381 (not for-effect) | |
| 382 form)) | |
|
1818
7e3322619e46
compiled-function-p has been renamed to byte-code-function-p.
Jim Blandy <jimb@redhat.com>
parents:
957
diff
changeset
|
383 ((or (byte-code-function-p fn) |
| 757 | 384 (eq 'lambda (car-safe fn))) |
| 385 (byte-compile-unfold-lambda form)) | |
| 386 ((memq fn '(let let*)) | |
| 387 ;; recursively enter the optimizer for the bindings and body | |
| 388 ;; of a let or let*. This for depth-firstness: forms that | |
| 389 ;; are more deeply nested are optimized first. | |
| 390 (cons fn | |
| 391 (cons | |
|
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
392 (mapcar (lambda (binding) |
| 757 | 393 (if (symbolp binding) |
| 394 binding | |
| 395 (if (cdr (cdr binding)) | |
| 39770 | 396 (byte-compile-warn "malformed let binding: `%s'" |
| 757 | 397 (prin1-to-string binding))) |
| 398 (list (car binding) | |
| 399 (byte-optimize-form (nth 1 binding) nil)))) | |
| 400 (nth 1 form)) | |
| 401 (byte-optimize-body (cdr (cdr form)) for-effect)))) | |
| 402 ((eq fn 'cond) | |
| 403 (cons fn | |
|
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
404 (mapcar (lambda (clause) |
| 757 | 405 (if (consp clause) |
| 406 (cons | |
| 407 (byte-optimize-form (car clause) nil) | |
| 408 (byte-optimize-body (cdr clause) for-effect)) | |
| 39770 | 409 (byte-compile-warn "malformed cond form: `%s'" |
| 757 | 410 (prin1-to-string clause)) |
| 411 clause)) | |
| 412 (cdr form)))) | |
| 413 ((eq fn 'progn) | |
| 414 ;; as an extra added bonus, this simplifies (progn <x>) --> <x> | |
| 415 (if (cdr (cdr form)) | |
| 416 (progn | |
| 417 (setq tmp (byte-optimize-body (cdr form) for-effect)) | |
| 418 (if (cdr tmp) (cons 'progn tmp) (car tmp))) | |
| 419 (byte-optimize-form (nth 1 form) for-effect))) | |
| 420 ((eq fn 'prog1) | |
| 421 (if (cdr (cdr form)) | |
| 422 (cons 'prog1 | |
| 423 (cons (byte-optimize-form (nth 1 form) for-effect) | |
| 424 (byte-optimize-body (cdr (cdr form)) t))) | |
| 425 (byte-optimize-form (nth 1 form) for-effect))) | |
| 426 ((eq fn 'prog2) | |
| 427 (cons 'prog2 | |
| 428 (cons (byte-optimize-form (nth 1 form) t) | |
| 429 (cons (byte-optimize-form (nth 2 form) for-effect) | |
| 430 (byte-optimize-body (cdr (cdr (cdr form))) t))))) | |
| 431 | |
|
16276
f98b8c0b6414
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
14641
diff
changeset
|
432 ((memq fn '(save-excursion save-restriction save-current-buffer)) |
| 757 | 433 ;; those subrs which have an implicit progn; it's not quite good |
| 434 ;; enough to treat these like normal function calls. | |
| 435 ;; This can turn (save-excursion ...) into (save-excursion) which | |
| 436 ;; will be optimized away in the lap-optimize pass. | |
| 437 (cons fn (byte-optimize-body (cdr form) for-effect))) | |
| 438 | |
| 439 ((eq fn 'with-output-to-temp-buffer) | |
| 440 ;; this is just like the above, except for the first argument. | |
| 441 (cons fn | |
| 442 (cons | |
| 443 (byte-optimize-form (nth 1 form) nil) | |
| 444 (byte-optimize-body (cdr (cdr form)) for-effect)))) | |
| 445 | |
| 446 ((eq fn 'if) | |
| 36999 | 447 (when (< (length form) 3) |
| 39770 | 448 (byte-compile-warn "too few arguments for `if'")) |
| 757 | 449 (cons fn |
| 450 (cons (byte-optimize-form (nth 1 form) nil) | |
| 451 (cons | |
| 452 (byte-optimize-form (nth 2 form) for-effect) | |
| 453 (byte-optimize-body (nthcdr 3 form) for-effect))))) | |
| 454 | |
| 455 ((memq fn '(and or)) ; remember, and/or are control structures. | |
| 456 ;; take forms off the back until we can't any more. | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3138
diff
changeset
|
457 ;; In the future it could conceivably be a problem that the |
| 757 | 458 ;; subexpressions of these forms are optimized in the reverse |
| 459 ;; order, but it's ok for now. | |
| 460 (if for-effect | |
| 461 (let ((backwards (reverse (cdr form)))) | |
| 462 (while (and backwards | |
| 463 (null (setcar backwards | |
| 464 (byte-optimize-form (car backwards) | |
| 465 for-effect)))) | |
| 466 (setq backwards (cdr backwards))) | |
| 467 (if (and (cdr form) (null backwards)) | |
| 468 (byte-compile-log | |
| 469 " all subforms of %s called for effect; deleted" form)) | |
| 470 (and backwards | |
| 471 (cons fn (nreverse backwards)))) | |
| 472 (cons fn (mapcar 'byte-optimize-form (cdr form))))) | |
| 473 | |
| 474 ((eq fn 'interactive) | |
| 39770 | 475 (byte-compile-warn "misplaced interactive spec: `%s'" |
| 757 | 476 (prin1-to-string form)) |
| 477 nil) | |
| 478 | |
| 479 ((memq fn '(defun defmacro function | |
| 480 condition-case save-window-excursion)) | |
| 481 ;; These forms are compiled as constants or by breaking out | |
| 482 ;; all the subexpressions and compiling them separately. | |
| 483 form) | |
| 484 | |
| 485 ((eq fn 'unwind-protect) | |
| 486 ;; the "protected" part of an unwind-protect is compiled (and thus | |
| 487 ;; optimized) as a top-level form, so don't do it here. But the | |
| 488 ;; non-protected part has the same for-effect status as the | |
| 489 ;; unwind-protect itself. (The protected part is always for effect, | |
| 490 ;; but that isn't handled properly yet.) | |
| 491 (cons fn | |
| 492 (cons (byte-optimize-form (nth 1 form) for-effect) | |
| 493 (cdr (cdr form))))) | |
| 494 | |
| 495 ((eq fn 'catch) | |
| 496 ;; the body of a catch is compiled (and thus optimized) as a | |
| 497 ;; top-level form, so don't do it here. The tag is never | |
| 498 ;; for-effect. The body should have the same for-effect status | |
| 499 ;; as the catch form itself, but that isn't handled properly yet. | |
| 500 (cons fn | |
| 501 (cons (byte-optimize-form (nth 1 form) nil) | |
| 502 (cdr (cdr form))))) | |
| 503 | |
| 504 ;; If optimization is on, this is the only place that macros are | |
| 505 ;; expanded. If optimization is off, then macroexpansion happens | |
| 506 ;; in byte-compile-form. Otherwise, the macros are already expanded | |
| 507 ;; by the time that is reached. | |
| 508 ((not (eq form | |
| 509 (setq form (macroexpand form | |
| 510 byte-compile-macro-environment)))) | |
| 511 (byte-optimize-form form for-effect)) | |
|
20749
e87544dbfacb
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
20414
diff
changeset
|
512 |
|
e87544dbfacb
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
20414
diff
changeset
|
513 ;; Support compiler macros as in cl.el. |
|
e87544dbfacb
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
20414
diff
changeset
|
514 ((and (fboundp 'compiler-macroexpand) |
|
20874
223c220043af
(byte-optimize-form-code-walker): Only call compiler-macroexpand if
Richard M. Stallman <rms@gnu.org>
parents:
20780
diff
changeset
|
515 (symbolp (car-safe form)) |
|
223c220043af
(byte-optimize-form-code-walker): Only call compiler-macroexpand if
Richard M. Stallman <rms@gnu.org>
parents:
20780
diff
changeset
|
516 (get (car-safe form) 'cl-compiler-macro) |
|
20749
e87544dbfacb
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
20414
diff
changeset
|
517 (not (eq form |
|
20780
24c546c71f29
(byte-optimize-form-code-walker): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
20778
diff
changeset
|
518 (setq form (compiler-macroexpand form))))) |
|
20749
e87544dbfacb
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
20414
diff
changeset
|
519 (byte-optimize-form form for-effect)) |
| 757 | 520 |
| 521 ((not (symbolp fn)) | |
|
42267
76d12dafa83d
(byte-optimize-form-code-walker): Remove mocklisp case.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42206
diff
changeset
|
522 (byte-compile-warn "`%s' is a malformed function" |
|
76d12dafa83d
(byte-optimize-form-code-walker): Remove mocklisp case.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42206
diff
changeset
|
523 (prin1-to-string fn)) |
| 757 | 524 form) |
| 525 | |
| 526 ((and for-effect (setq tmp (get fn 'side-effect-free)) | |
| 527 (or byte-compile-delete-errors | |
| 528 (eq tmp 'error-free) | |
| 529 (progn | |
|
28440
45337208670b
(byte-compile-inline-expand): Look
Gerd Moellmann <gerd@gnu.org>
parents:
28423
diff
changeset
|
530 (byte-compile-warn "`%s' called for effect" |
| 757 | 531 (prin1-to-string form)) |
| 532 nil))) | |
| 533 (byte-compile-log " %s called for effect; deleted" fn) | |
| 534 ;; appending a nil here might not be necessary, but it can't hurt. | |
| 535 (byte-optimize-form | |
| 536 (cons 'progn (append (cdr form) '(nil))) t)) | |
| 537 | |
| 538 (t | |
| 539 ;; Otherwise, no args can be considered to be for-effect, | |
| 540 ;; even if the called function is for-effect, because we | |
| 541 ;; don't know anything about that function. | |
| 542 (cons fn (mapcar 'byte-optimize-form (cdr form))))))) | |
| 543 | |
| 544 | |
| 545 (defun byte-optimize-form (form &optional for-effect) | |
| 546 "The source-level pass of the optimizer." | |
| 547 ;; | |
| 548 ;; First, optimize all sub-forms of this one. | |
| 549 (setq form (byte-optimize-form-code-walker form for-effect)) | |
| 550 ;; | |
| 551 ;; after optimizing all subforms, optimize this form until it doesn't | |
| 552 ;; optimize any further. This means that some forms will be passed through | |
| 553 ;; the optimizer many times, but that's necessary to make the for-effect | |
| 554 ;; processing do as much as possible. | |
| 555 ;; | |
| 556 (let (opt new) | |
| 557 (if (and (consp form) | |
| 558 (symbolp (car form)) | |
| 559 (or (and for-effect | |
| 560 ;; we don't have any of these yet, but we might. | |
| 561 (setq opt (get (car form) 'byte-for-effect-optimizer))) | |
| 562 (setq opt (get (car form) 'byte-optimizer))) | |
| 563 (not (eq form (setq new (funcall opt form))))) | |
| 564 (progn | |
| 565 ;; (if (equal form new) (error "bogus optimizer -- %s" opt)) | |
| 566 (byte-compile-log " %s\t==>\t%s" form new) | |
| 567 (setq new (byte-optimize-form new for-effect)) | |
| 568 new) | |
| 569 form))) | |
| 570 | |
| 571 | |
| 572 (defun byte-optimize-body (forms all-for-effect) | |
| 573 ;; optimize the cdr of a progn or implicit progn; all forms is a list of | |
| 574 ;; forms, all but the last of which are optimized with the assumption that | |
| 575 ;; they are being called for effect. the last is for-effect as well if | |
| 576 ;; all-for-effect is true. returns a new list of forms. | |
| 577 (let ((rest forms) | |
| 578 (result nil) | |
| 579 fe new) | |
| 580 (while rest | |
| 581 (setq fe (or all-for-effect (cdr rest))) | |
| 582 (setq new (and (car rest) (byte-optimize-form (car rest) fe))) | |
| 583 (if (or new (not fe)) | |
| 584 (setq result (cons new result))) | |
| 585 (setq rest (cdr rest))) | |
| 586 (nreverse result))) | |
| 587 | |
| 588 | |
| 589 ;;; some source-level optimizers | |
| 590 ;;; | |
| 591 ;;; when writing optimizers, be VERY careful that the optimizer returns | |
| 592 ;;; something not EQ to its argument if and ONLY if it has made a change. | |
| 593 ;;; This implies that you cannot simply destructively modify the list; | |
| 594 ;;; you must return something not EQ to it if you make an optimization. | |
| 595 ;;; | |
| 596 ;;; It is now safe to optimize code such that it introduces new bindings. | |
| 597 | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3138
diff
changeset
|
598 ;; I'd like this to be a defsubst, but let's not be self-referential... |
| 757 | 599 (defmacro byte-compile-trueconstp (form) |
| 600 ;; Returns non-nil if FORM is a non-nil constant. | |
| 27823 | 601 `(cond ((consp ,form) (eq (car ,form) 'quote)) |
| 602 ((not (symbolp ,form))) | |
| 603 ((eq ,form t)) | |
| 604 ((keywordp ,form)))) | |
| 757 | 605 |
|
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
606 ;; If the function is being called with constant numeric args, |
|
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
607 ;; evaluate as much as possible at compile-time. This optimizer |
|
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
608 ;; assumes that the function is associative, like + or *. |
| 757 | 609 (defun byte-optimize-associative-math (form) |
| 610 (let ((args nil) | |
| 611 (constants nil) | |
| 612 (rest (cdr form))) | |
| 613 (while rest | |
| 614 (if (numberp (car rest)) | |
| 615 (setq constants (cons (car rest) constants)) | |
| 616 (setq args (cons (car rest) args))) | |
| 617 (setq rest (cdr rest))) | |
| 618 (if (cdr constants) | |
| 619 (if args | |
| 620 (list (car form) | |
| 621 (apply (car form) constants) | |
| 622 (if (cdr args) | |
| 623 (cons (car form) (nreverse args)) | |
| 624 (car args))) | |
| 625 (apply (car form) constants)) | |
| 626 form))) | |
| 627 | |
|
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
628 ;; If the function is being called with constant numeric args, |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
629 ;; evaluate as much as possible at compile-time. This optimizer |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
630 ;; assumes that the function satisfies |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
631 ;; (op x1 x2 ... xn) == (op ...(op (op x1 x2) x3) ...xn) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
632 ;; like - and /. |
| 757 | 633 (defun byte-optimize-nonassociative-math (form) |
| 634 (if (or (not (numberp (car (cdr form)))) | |
| 635 (not (numberp (car (cdr (cdr form)))))) | |
| 636 form | |
| 637 (let ((constant (car (cdr form))) | |
| 638 (rest (cdr (cdr form)))) | |
| 639 (while (numberp (car rest)) | |
| 640 (setq constant (funcall (car form) constant (car rest)) | |
| 641 rest (cdr rest))) | |
| 642 (if rest | |
| 643 (cons (car form) (cons constant rest)) | |
| 644 constant)))) | |
| 645 | |
| 646 ;;(defun byte-optimize-associative-two-args-math (form) | |
| 647 ;; (setq form (byte-optimize-associative-math form)) | |
| 648 ;; (if (consp form) | |
| 649 ;; (byte-optimize-two-args-left form) | |
| 650 ;; form)) | |
| 651 | |
| 652 ;;(defun byte-optimize-nonassociative-two-args-math (form) | |
| 653 ;; (setq form (byte-optimize-nonassociative-math form)) | |
| 654 ;; (if (consp form) | |
| 655 ;; (byte-optimize-two-args-right form) | |
| 656 ;; form)) | |
| 657 | |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
658 (defun byte-optimize-approx-equal (x y) |
|
17680
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
659 (<= (* (abs (- x y)) 100) (abs (+ x y)))) |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
660 |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
661 ;; Collect all the constants from FORM, after the STARTth arg, |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
662 ;; and apply FUN to them to make one argument at the end. |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
663 ;; For functions that can handle floats, that optimization |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
664 ;; can be incorrect because reordering can cause an overflow |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
665 ;; that would otherwise be avoided by encountering an arg that is a float. |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
666 ;; We avoid this problem by (1) not moving float constants and |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
667 ;; (2) not moving anything if it would cause an overflow. |
| 757 | 668 (defun byte-optimize-delay-constants-math (form start fun) |
| 669 ;; Merge all FORM's constants from number START, call FUN on them | |
| 670 ;; and put the result at the end. | |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
671 (let ((rest (nthcdr (1- start) form)) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
672 (orig form) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
673 ;; t means we must check for overflow. |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
674 (overflow (memq fun '(+ *)))) |
| 757 | 675 (while (cdr (setq rest (cdr rest))) |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
676 (if (integerp (car rest)) |
| 757 | 677 (let (constants) |
| 678 (setq form (copy-sequence form) | |
| 679 rest (nthcdr (1- start) form)) | |
| 680 (while (setq rest (cdr rest)) | |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
681 (cond ((integerp (car rest)) |
| 757 | 682 (setq constants (cons (car rest) constants)) |
| 683 (setcar rest nil)))) | |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
684 ;; If necessary, check now for overflow |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
685 ;; that might be caused by reordering. |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
686 (if (and overflow |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
687 ;; We have overflow if the result of doing the arithmetic |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
688 ;; on floats is not even close to the result |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
689 ;; of doing it on integers. |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
690 (not (byte-optimize-approx-equal |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
691 (apply fun (mapcar 'float constants)) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
692 (float (apply fun constants))))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
693 (setq form orig) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
694 (setq form (nconc (delq nil form) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
695 (list (apply fun (nreverse constants))))))))) |
| 757 | 696 form)) |
| 697 | |
| 698 (defun byte-optimize-plus (form) | |
| 699 (setq form (byte-optimize-delay-constants-math form 1 '+)) | |
| 700 (if (memq 0 form) (setq form (delq 0 (copy-sequence form)))) | |
| 701 ;;(setq form (byte-optimize-associative-two-args-math form)) | |
| 702 (cond ((null (cdr form)) | |
| 703 (condition-case () | |
| 704 (eval form) | |
| 705 (error form))) | |
|
902
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
706 ;;; It is not safe to delete the function entirely |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
707 ;;; (actually, it would be safe if we know the sole arg |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
708 ;;; is not a marker). |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
709 ;; ((null (cdr (cdr form))) (nth 1 form)) |
|
24734
1a05fdaa603b
(byte-optimize-plus): Fix 1-arg case.
Richard M. Stallman <rms@gnu.org>
parents:
24713
diff
changeset
|
710 ((null (cddr form)) |
|
1a05fdaa603b
(byte-optimize-plus): Fix 1-arg case.
Richard M. Stallman <rms@gnu.org>
parents:
24713
diff
changeset
|
711 (if (numberp (nth 1 form)) |
|
1a05fdaa603b
(byte-optimize-plus): Fix 1-arg case.
Richard M. Stallman <rms@gnu.org>
parents:
24713
diff
changeset
|
712 (nth 1 form) |
|
1a05fdaa603b
(byte-optimize-plus): Fix 1-arg case.
Richard M. Stallman <rms@gnu.org>
parents:
24713
diff
changeset
|
713 form)) |
|
17680
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
714 ((and (null (nthcdr 3 form)) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
715 (or (memq (nth 1 form) '(1 -1)) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
716 (memq (nth 2 form) '(1 -1)))) |
|
20210
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
717 ;; Optimize (+ x 1) into (1+ x) and (+ x -1) into (1- x). |
|
17680
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
718 (let ((integer |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
719 (if (memq (nth 1 form) '(1 -1)) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
720 (nth 1 form) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
721 (nth 2 form))) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
722 (other |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
723 (if (memq (nth 1 form) '(1 -1)) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
724 (nth 2 form) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
725 (nth 1 form)))) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
726 (list (if (eq integer 1) '1+ '1-) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
727 other))) |
| 757 | 728 (t form))) |
| 729 | |
| 730 (defun byte-optimize-minus (form) | |
| 731 ;; Put constants at the end, except the last constant. | |
| 732 (setq form (byte-optimize-delay-constants-math form 2 '+)) | |
| 733 ;; Now only first and last element can be a number. | |
| 734 (let ((last (car (reverse (nthcdr 3 form))))) | |
| 735 (cond ((eq 0 last) | |
| 736 ;; (- x y ... 0) --> (- x y ...) | |
| 737 (setq form (copy-sequence form)) | |
| 738 (setcdr (cdr (cdr form)) (delq 0 (nthcdr 3 form)))) | |
|
17680
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
739 ((equal (nthcdr 2 form) '(1)) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
740 (setq form (list '1- (nth 1 form)))) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
741 ((equal (nthcdr 2 form) '(-1)) |
|
fdb29fa454bf
(byte-optimize-approx-equal): Use <=, not <.
Richard M. Stallman <rms@gnu.org>
parents:
16941
diff
changeset
|
742 (setq form (list '1+ (nth 1 form)))) |
| 757 | 743 ;; If form is (- CONST foo... CONST), merge first and last. |
| 744 ((and (numberp (nth 1 form)) | |
| 745 (numberp last)) | |
| 746 (setq form (nconc (list '- (- (nth 1 form) last) (nth 2 form)) | |
| 747 (delq last (copy-sequence (nthcdr 3 form)))))))) | |
|
902
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
748 ;;; It is not safe to delete the function entirely |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
749 ;;; (actually, it would be safe if we know the sole arg |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
750 ;;; is not a marker). |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
751 ;;; (if (eq (nth 2 form) 0) |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
752 ;;; (nth 1 form) ; (- x 0) --> x |
| 757 | 753 (byte-optimize-predicate |
| 754 (if (and (null (cdr (cdr (cdr form)))) | |
| 755 (eq (nth 1 form) 0)) ; (- 0 x) --> (- x) | |
| 756 (cons (car form) (cdr (cdr form))) | |
|
902
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
757 form)) |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
758 ;;; ) |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
759 ) |
| 757 | 760 |
| 761 (defun byte-optimize-multiply (form) | |
| 762 (setq form (byte-optimize-delay-constants-math form 1 '*)) | |
| 763 ;; If there is a constant in FORM, it is now the last element. | |
| 764 (cond ((null (cdr form)) 1) | |
|
902
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
765 ;;; It is not safe to delete the function entirely |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
766 ;;; (actually, it would be safe if we know the sole arg |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
767 ;;; is not a marker or if it appears in other arithmetic). |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
768 ;;; ((null (cdr (cdr form))) (nth 1 form)) |
| 757 | 769 ((let ((last (car (reverse form)))) |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
770 (cond ((eq 0 last) (cons 'progn (cdr form))) |
| 757 | 771 ((eq 1 last) (delq 1 (copy-sequence form))) |
| 772 ((eq -1 last) (list '- (delq -1 (copy-sequence form)))) | |
| 773 ((and (eq 2 last) | |
| 774 (memq t (mapcar 'symbolp (cdr form)))) | |
| 775 (prog1 (setq form (delq 2 (copy-sequence form))) | |
| 776 (while (not (symbolp (car (setq form (cdr form)))))) | |
| 777 (setcar form (list '+ (car form) (car form))))) | |
| 778 (form)))))) | |
| 779 | |
| 780 (defsubst byte-compile-butlast (form) | |
| 781 (nreverse (cdr (reverse form)))) | |
| 782 | |
| 783 (defun byte-optimize-divide (form) | |
| 784 (setq form (byte-optimize-delay-constants-math form 2 '*)) | |
| 785 (let ((last (car (reverse (cdr (cdr form)))))) | |
| 786 (if (numberp last) | |
|
3138
80ce80f189f7
(byte-optimize-divide): Don't optimize to less than two arguments.
Richard M. Stallman <rms@gnu.org>
parents:
1818
diff
changeset
|
787 (cond ((= (length form) 3) |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
788 (if (and (numberp (nth 1 form)) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
789 (not (zerop last)) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
790 (condition-case nil |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
791 (/ (nth 1 form) last) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
792 (error nil))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
793 (setq form (list 'progn (/ (nth 1 form) last))))) |
|
3138
80ce80f189f7
(byte-optimize-divide): Don't optimize to less than two arguments.
Richard M. Stallman <rms@gnu.org>
parents:
1818
diff
changeset
|
794 ((= last 1) |
| 757 | 795 (setq form (byte-compile-butlast form))) |
| 796 ((numberp (nth 1 form)) | |
| 797 (setq form (cons (car form) | |
| 798 (cons (/ (nth 1 form) last) | |
| 799 (byte-compile-butlast (cdr (cdr form))))) | |
| 800 last nil)))) | |
|
902
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
801 (cond |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
802 ;;; ((null (cdr (cdr form))) |
|
c81d26e85bef
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
803 ;;; (nth 1 form)) |
| 757 | 804 ((eq (nth 1 form) 0) |
| 805 (append '(progn) (cdr (cdr form)) '(0))) | |
| 806 ((eq last -1) | |
| 807 (list '- (if (nthcdr 3 form) | |
| 808 (byte-compile-butlast form) | |
| 809 (nth 1 form)))) | |
| 810 (form)))) | |
| 811 | |
| 812 (defun byte-optimize-logmumble (form) | |
| 813 (setq form (byte-optimize-delay-constants-math form 1 (car form))) | |
| 814 (byte-optimize-predicate | |
| 815 (cond ((memq 0 form) | |
| 816 (setq form (if (eq (car form) 'logand) | |
| 817 (cons 'progn (cdr form)) | |
| 818 (delq 0 (copy-sequence form))))) | |
| 819 ((and (eq (car-safe form) 'logior) | |
| 820 (memq -1 form)) | |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
821 (cons 'progn (cdr form))) |
| 757 | 822 (form)))) |
| 823 | |
| 824 | |
| 825 (defun byte-optimize-binary-predicate (form) | |
| 826 (if (byte-compile-constp (nth 1 form)) | |
| 827 (if (byte-compile-constp (nth 2 form)) | |
| 828 (condition-case () | |
| 829 (list 'quote (eval form)) | |
| 830 (error form)) | |
| 831 ;; This can enable some lapcode optimizations. | |
| 832 (list (car form) (nth 2 form) (nth 1 form))) | |
| 833 form)) | |
| 834 | |
| 835 (defun byte-optimize-predicate (form) | |
| 836 (let ((ok t) | |
| 837 (rest (cdr form))) | |
| 838 (while (and rest ok) | |
| 839 (setq ok (byte-compile-constp (car rest)) | |
| 840 rest (cdr rest))) | |
| 841 (if ok | |
| 842 (condition-case () | |
| 843 (list 'quote (eval form)) | |
| 844 (error form)) | |
| 845 form))) | |
| 846 | |
| 847 (defun byte-optimize-identity (form) | |
| 848 (if (and (cdr form) (null (cdr (cdr form)))) | |
| 849 (nth 1 form) | |
| 39770 | 850 (byte-compile-warn "identity called with %d arg%s, but requires 1" |
| 757 | 851 (length (cdr form)) |
| 852 (if (= 1 (length (cdr form))) "" "s")) | |
| 853 form)) | |
| 854 | |
| 855 (put 'identity 'byte-optimizer 'byte-optimize-identity) | |
| 856 | |
| 857 (put '+ 'byte-optimizer 'byte-optimize-plus) | |
| 858 (put '* 'byte-optimizer 'byte-optimize-multiply) | |
| 859 (put '- 'byte-optimizer 'byte-optimize-minus) | |
| 860 (put '/ 'byte-optimizer 'byte-optimize-divide) | |
| 861 (put 'max 'byte-optimizer 'byte-optimize-associative-math) | |
| 862 (put 'min 'byte-optimizer 'byte-optimize-associative-math) | |
| 863 | |
| 864 (put '= 'byte-optimizer 'byte-optimize-binary-predicate) | |
| 865 (put 'eq 'byte-optimizer 'byte-optimize-binary-predicate) | |
| 866 (put 'equal 'byte-optimizer 'byte-optimize-binary-predicate) | |
| 867 (put 'string= 'byte-optimizer 'byte-optimize-binary-predicate) | |
| 868 (put 'string-equal 'byte-optimizer 'byte-optimize-binary-predicate) | |
| 869 | |
| 870 (put '< 'byte-optimizer 'byte-optimize-predicate) | |
| 871 (put '> 'byte-optimizer 'byte-optimize-predicate) | |
| 872 (put '<= 'byte-optimizer 'byte-optimize-predicate) | |
| 873 (put '>= 'byte-optimizer 'byte-optimize-predicate) | |
| 874 (put '1+ 'byte-optimizer 'byte-optimize-predicate) | |
| 875 (put '1- 'byte-optimizer 'byte-optimize-predicate) | |
| 876 (put 'not 'byte-optimizer 'byte-optimize-predicate) | |
| 877 (put 'null 'byte-optimizer 'byte-optimize-predicate) | |
| 878 (put 'memq 'byte-optimizer 'byte-optimize-predicate) | |
| 879 (put 'consp 'byte-optimizer 'byte-optimize-predicate) | |
| 880 (put 'listp 'byte-optimizer 'byte-optimize-predicate) | |
| 881 (put 'symbolp 'byte-optimizer 'byte-optimize-predicate) | |
| 882 (put 'stringp 'byte-optimizer 'byte-optimize-predicate) | |
| 883 (put 'string< 'byte-optimizer 'byte-optimize-predicate) | |
| 884 (put 'string-lessp 'byte-optimizer 'byte-optimize-predicate) | |
| 885 | |
| 886 (put 'logand 'byte-optimizer 'byte-optimize-logmumble) | |
| 887 (put 'logior 'byte-optimizer 'byte-optimize-logmumble) | |
| 888 (put 'logxor 'byte-optimizer 'byte-optimize-logmumble) | |
| 889 (put 'lognot 'byte-optimizer 'byte-optimize-predicate) | |
| 890 | |
| 891 (put 'car 'byte-optimizer 'byte-optimize-predicate) | |
| 892 (put 'cdr 'byte-optimizer 'byte-optimize-predicate) | |
| 893 (put 'car-safe 'byte-optimizer 'byte-optimize-predicate) | |
| 894 (put 'cdr-safe 'byte-optimizer 'byte-optimize-predicate) | |
| 895 | |
| 896 | |
| 897 ;; I'm not convinced that this is necessary. Doesn't the optimizer loop | |
| 898 ;; take care of this? - Jamie | |
| 899 ;; I think this may some times be necessary to reduce ie (quote 5) to 5, | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3138
diff
changeset
|
900 ;; so arithmetic optimizers recognize the numeric constant. - Hallvard |
| 757 | 901 (put 'quote 'byte-optimizer 'byte-optimize-quote) |
| 902 (defun byte-optimize-quote (form) | |
| 903 (if (or (consp (nth 1 form)) | |
| 904 (and (symbolp (nth 1 form)) | |
| 27823 | 905 (not (byte-compile-const-symbol-p form)))) |
| 757 | 906 form |
| 907 (nth 1 form))) | |
| 908 | |
| 909 (defun byte-optimize-zerop (form) | |
| 910 (cond ((numberp (nth 1 form)) | |
| 911 (eval form)) | |
| 912 (byte-compile-delete-errors | |
| 913 (list '= (nth 1 form) 0)) | |
| 914 (form))) | |
| 915 | |
| 916 (put 'zerop 'byte-optimizer 'byte-optimize-zerop) | |
| 917 | |
| 918 (defun byte-optimize-and (form) | |
| 919 ;; Simplify if less than 2 args. | |
| 920 ;; if there is a literal nil in the args to `and', throw it and following | |
| 921 ;; forms away, and surround the `and' with (progn ... nil). | |
| 922 (cond ((null (cdr form))) | |
| 923 ((memq nil form) | |
| 924 (list 'progn | |
| 925 (byte-optimize-and | |
| 926 (prog1 (setq form (copy-sequence form)) | |
| 927 (while (nth 1 form) | |
| 928 (setq form (cdr form))) | |
| 929 (setcdr form nil))) | |
| 930 nil)) | |
| 931 ((null (cdr (cdr form))) | |
| 932 (nth 1 form)) | |
| 933 ((byte-optimize-predicate form)))) | |
| 934 | |
| 935 (defun byte-optimize-or (form) | |
| 936 ;; Throw away nil's, and simplify if less than 2 args. | |
| 937 ;; If there is a literal non-nil constant in the args to `or', throw away all | |
| 938 ;; following forms. | |
| 939 (if (memq nil form) | |
| 940 (setq form (delq nil (copy-sequence form)))) | |
| 941 (let ((rest form)) | |
| 942 (while (cdr (setq rest (cdr rest))) | |
| 943 (if (byte-compile-trueconstp (car rest)) | |
| 944 (setq form (copy-sequence form) | |
| 945 rest (setcdr (memq (car rest) form) nil)))) | |
| 946 (if (cdr (cdr form)) | |
| 947 (byte-optimize-predicate form) | |
| 948 (nth 1 form)))) | |
| 949 | |
| 950 (defun byte-optimize-cond (form) | |
| 951 ;; if any clauses have a literal nil as their test, throw them away. | |
| 952 ;; if any clause has a literal non-nil constant as its test, throw | |
| 953 ;; away all following clauses. | |
| 954 (let (rest) | |
| 955 ;; This must be first, to reduce (cond (t ...) (nil)) to (progn t ...) | |
| 956 (while (setq rest (assq nil (cdr form))) | |
| 957 (setq form (delq rest (copy-sequence form)))) | |
| 958 (if (memq nil (cdr form)) | |
| 959 (setq form (delq nil (copy-sequence form)))) | |
| 960 (setq rest form) | |
| 961 (while (setq rest (cdr rest)) | |
| 962 (cond ((byte-compile-trueconstp (car-safe (car rest))) | |
| 963 (cond ((eq rest (cdr form)) | |
| 964 (setq form | |
| 965 (if (cdr (car rest)) | |
| 966 (if (cdr (cdr (car rest))) | |
| 967 (cons 'progn (cdr (car rest))) | |
| 968 (nth 1 (car rest))) | |
| 969 (car (car rest))))) | |
| 970 ((cdr rest) | |
| 971 (setq form (copy-sequence form)) | |
| 972 (setcdr (memq (car rest) form) nil))) | |
| 973 (setq rest nil))))) | |
| 974 ;; | |
| 975 ;; Turn (cond (( <x> )) ... ) into (or <x> (cond ... )) | |
| 976 (if (eq 'cond (car-safe form)) | |
| 977 (let ((clauses (cdr form))) | |
| 978 (if (and (consp (car clauses)) | |
| 979 (null (cdr (car clauses)))) | |
| 980 (list 'or (car (car clauses)) | |
| 981 (byte-optimize-cond | |
| 982 (cons (car form) (cdr (cdr form))))) | |
| 983 form)) | |
| 984 form)) | |
| 985 | |
| 986 (defun byte-optimize-if (form) | |
| 987 ;; (if <true-constant> <then> <else...>) ==> <then> | |
| 988 ;; (if <false-constant> <then> <else...>) ==> (progn <else...>) | |
| 989 ;; (if <test> nil <else...>) ==> (if (not <test>) (progn <else...>)) | |
| 990 ;; (if <test> <then> nil) ==> (if <test> <then>) | |
| 991 (let ((clause (nth 1 form))) | |
| 992 (cond ((byte-compile-trueconstp clause) | |
| 993 (nth 2 form)) | |
| 994 ((null clause) | |
| 995 (if (nthcdr 4 form) | |
| 996 (cons 'progn (nthcdr 3 form)) | |
| 997 (nth 3 form))) | |
| 998 ((nth 2 form) | |
| 999 (if (equal '(nil) (nthcdr 3 form)) | |
| 1000 (list 'if clause (nth 2 form)) | |
| 1001 form)) | |
| 1002 ((or (nth 3 form) (nthcdr 4 form)) | |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1003 (list 'if |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1004 ;; Don't make a double negative; |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1005 ;; instead, take away the one that is there. |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1006 (if (and (consp clause) (memq (car clause) '(not null)) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1007 (= (length clause) 2)) ; (not xxxx) or (not (xxxx)) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1008 (nth 1 clause) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1009 (list 'not clause)) |
| 757 | 1010 (if (nthcdr 4 form) |
| 1011 (cons 'progn (nthcdr 3 form)) | |
| 1012 (nth 3 form)))) | |
| 1013 (t | |
| 1014 (list 'progn clause nil))))) | |
| 1015 | |
| 1016 (defun byte-optimize-while (form) | |
| 36999 | 1017 (when (< (length form) 2) |
| 39770 | 1018 (byte-compile-warn "too few arguments for `while'")) |
| 757 | 1019 (if (nth 1 form) |
| 1020 form)) | |
| 1021 | |
| 1022 (put 'and 'byte-optimizer 'byte-optimize-and) | |
| 1023 (put 'or 'byte-optimizer 'byte-optimize-or) | |
| 1024 (put 'cond 'byte-optimizer 'byte-optimize-cond) | |
| 1025 (put 'if 'byte-optimizer 'byte-optimize-if) | |
| 1026 (put 'while 'byte-optimizer 'byte-optimize-while) | |
| 1027 | |
| 1028 ;; byte-compile-negation-optimizer lives in bytecomp.el | |
| 1029 (put '/= 'byte-optimizer 'byte-compile-negation-optimizer) | |
| 1030 (put 'atom 'byte-optimizer 'byte-compile-negation-optimizer) | |
| 1031 (put 'nlistp 'byte-optimizer 'byte-compile-negation-optimizer) | |
| 1032 | |
| 1033 | |
| 1034 (defun byte-optimize-funcall (form) | |
|
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1035 ;; (funcall (lambda ...) ...) ==> ((lambda ...) ...) |
|
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1036 ;; (funcall foo ...) ==> (foo ...) |
| 757 | 1037 (let ((fn (nth 1 form))) |
| 1038 (if (memq (car-safe fn) '(quote function)) | |
| 1039 (cons (nth 1 fn) (cdr (cdr form))) | |
| 1040 form))) | |
| 1041 | |
| 1042 (defun byte-optimize-apply (form) | |
| 1043 ;; If the last arg is a literal constant, turn this into a funcall. | |
| 1044 ;; The funcall optimizer can then transform (funcall 'foo ...) -> (foo ...). | |
| 1045 (let ((fn (nth 1 form)) | |
| 1046 (last (nth (1- (length form)) form))) ; I think this really is fastest | |
| 1047 (or (if (or (null last) | |
| 1048 (eq (car-safe last) 'quote)) | |
| 1049 (if (listp (nth 1 last)) | |
| 1050 (let ((butlast (nreverse (cdr (reverse (cdr (cdr form))))))) | |
| 957 | 1051 (nconc (list 'funcall fn) butlast |
|
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1052 (mapcar (lambda (x) (list 'quote x)) (nth 1 last)))) |
| 757 | 1053 (byte-compile-warn |
| 39770 | 1054 "last arg to apply can't be a literal atom: `%s'" |
| 757 | 1055 (prin1-to-string last)) |
| 1056 nil)) | |
| 1057 form))) | |
| 1058 | |
| 1059 (put 'funcall 'byte-optimizer 'byte-optimize-funcall) | |
| 1060 (put 'apply 'byte-optimizer 'byte-optimize-apply) | |
| 1061 | |
| 1062 | |
| 1063 (put 'let 'byte-optimizer 'byte-optimize-letX) | |
| 1064 (put 'let* 'byte-optimizer 'byte-optimize-letX) | |
| 1065 (defun byte-optimize-letX (form) | |
| 1066 (cond ((null (nth 1 form)) | |
| 1067 ;; No bindings | |
| 1068 (cons 'progn (cdr (cdr form)))) | |
| 1069 ((or (nth 2 form) (nthcdr 3 form)) | |
| 1070 form) | |
| 1071 ;; The body is nil | |
| 1072 ((eq (car form) 'let) | |
|
11509
853f52a85d11
(byte-optimize-letX): Use car-safe and cdr-safe.
Richard M. Stallman <rms@gnu.org>
parents:
11203
diff
changeset
|
1073 (append '(progn) (mapcar 'car-safe (mapcar 'cdr-safe (nth 1 form))) |
|
853f52a85d11
(byte-optimize-letX): Use car-safe and cdr-safe.
Richard M. Stallman <rms@gnu.org>
parents:
11203
diff
changeset
|
1074 '(nil))) |
| 757 | 1075 (t |
| 1076 (let ((binds (reverse (nth 1 form)))) | |
| 1077 (list 'let* (reverse (cdr binds)) (nth 1 (car binds)) nil))))) | |
| 1078 | |
| 1079 | |
| 1080 (put 'nth 'byte-optimizer 'byte-optimize-nth) | |
| 1081 (defun byte-optimize-nth (form) | |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1082 (if (and (= (safe-length form) 3) (memq (nth 1 form) '(0 1))) |
| 757 | 1083 (list 'car (if (zerop (nth 1 form)) |
| 1084 (nth 2 form) | |
| 1085 (list 'cdr (nth 2 form)))) | |
| 1086 (byte-optimize-predicate form))) | |
| 1087 | |
| 1088 (put 'nthcdr 'byte-optimizer 'byte-optimize-nthcdr) | |
| 1089 (defun byte-optimize-nthcdr (form) | |
|
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1090 (if (and (= (safe-length form) 3) (not (memq (nth 1 form) '(0 1 2)))) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1091 (byte-optimize-predicate form) |
|
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1092 (let ((count (nth 1 form))) |
| 757 | 1093 (setq form (nth 2 form)) |
|
12737
7b804de92243
(byte-optimize-nthcdr): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
12638
diff
changeset
|
1094 (while (>= (setq count (1- count)) 0) |
| 757 | 1095 (setq form (list 'cdr form))) |
| 1096 form))) | |
|
20210
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1097 |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1098 (put 'concat 'byte-optimizer 'byte-optimize-concat) |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1099 (defun byte-optimize-concat (form) |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1100 (let ((args (cdr form)) |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1101 (constant t)) |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1102 (while (and args constant) |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1103 (or (byte-compile-constp (car args)) |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1104 (setq constant nil)) |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1105 (setq args (cdr args))) |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1106 (if constant |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1107 (eval form) |
|
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1108 form))) |
|
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1109 |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1110 ;; Avoid having to write forward-... with a negative arg for speed. |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1111 (put 'backward-char 'byte-optimizer 'byte-optimize-backward-char) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1112 (defun byte-optimize-backward-char (form) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1113 (cond ((and (= 2 (safe-length form)) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1114 (numberp (nth 1 form))) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1115 (list 'forward-char (eval (- (nth 1 form))))) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1116 ((= 1 (safe-length form)) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1117 '(forward-char -1)) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1118 (t form))) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1119 |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1120 (put 'backward-word 'byte-optimizer 'byte-optimize-backward-word) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1121 (defun byte-optimize-backward-word (form) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1122 (cond ((and (= 2 (safe-length form)) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1123 (numberp (nth 1 form))) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1124 (list 'forward-word (eval (- (nth 1 form))))) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1125 ((= 1 (safe-length form)) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1126 '(forward-char -1)) |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1127 (t form))) |
| 27823 | 1128 |
| 1129 (put 'char-before 'byte-optimizer 'byte-optimize-char-before) | |
| 1130 (defun byte-optimize-char-before (form) | |
| 1131 (cond ((= 2 (safe-length form)) | |
| 1132 `(char-after (1- ,(nth 1 form)))) | |
| 1133 ((= 1 (safe-length form)) | |
| 1134 '(char-after (1- (point)))) | |
| 1135 (t form))) | |
| 757 | 1136 |
| 1137 ;;; enumerating those functions which need not be called if the returned | |
| 1138 ;;; value is not used. That is, something like | |
| 1139 ;;; (progn (list (something-with-side-effects) (yow)) | |
| 1140 ;;; (foo)) | |
| 1141 ;;; may safely be turned into | |
| 1142 ;;; (progn (progn (something-with-side-effects) (yow)) | |
| 1143 ;;; (foo)) | |
| 1144 ;;; Further optimizations will turn (progn (list 1 2 3) 'foo) into 'foo. | |
| 1145 | |
| 1146 ;;; I wonder if I missed any :-\) | |
| 1147 (let ((side-effect-free-fns | |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1148 '(% * + - / /= 1+ 1- < <= = > >= abs acos append aref ash asin atan |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1149 assoc assq |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1150 boundp buffer-file-name buffer-local-variables buffer-modified-p |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1151 buffer-substring |
|
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1152 capitalize car-less-than-car car cdr ceiling char-after char-before |
|
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1153 concat coordinates-in-window-p |
|
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1154 char-width copy-marker cos count-lines |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1155 default-boundp default-value documentation downcase |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1156 elt exp expt fboundp featurep |
| 757 | 1157 file-directory-p file-exists-p file-locked-p file-name-absolute-p |
| 1158 file-newer-than-file-p file-readable-p file-symlink-p file-writable-p | |
|
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1159 float floor format frame-visible-p |
|
26941
8584ef89a2bd
Don't put optimization info on `eql'.
Dave Love <fx@gnu.org>
parents:
25621
diff
changeset
|
1160 get gethash get-buffer get-buffer-window getenv get-file-buffer |
|
8584ef89a2bd
Don't put optimization info on `eql'.
Dave Love <fx@gnu.org>
parents:
25621
diff
changeset
|
1161 hash-table-count |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1162 int-to-string |
|
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1163 keymap-parent |
| 27823 | 1164 length local-variable-if-set-p local-variable-p log log10 logand |
| 1165 logb logior lognot logxor lsh | |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1166 marker-buffer max member memq min mod |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1167 next-window nth nthcdr number-to-string |
|
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1168 parse-colon-path prefix-numeric-value previous-window propertize |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1169 radians-to-degrees rassq regexp-quote reverse round |
|
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1170 sin sqrt string string< string= string-equal string-lessp string-to-char |
|
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1171 string-to-int string-to-number substring symbol-function symbol-plist |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1172 symbol-value |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1173 tan unibyte-char-to-multibyte upcase user-variable-p vconcat |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1174 window-buffer window-dedicated-p window-edges window-height |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1175 window-hscroll window-minibuffer-p window-width |
| 757 | 1176 zerop)) |
| 1177 (side-effect-and-error-free-fns | |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1178 '(arrayp atom |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1179 bobp bolp buffer-end buffer-list buffer-size buffer-string bufferp |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1180 car-safe case-table-p cdr-safe char-or-string-p commandp cons consp |
|
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1181 current-buffer current-global-map current-indentation |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1182 current-local-map current-minor-mode-maps |
|
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1183 dot dot-marker eobp eolp eq equal eventp |
|
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1184 floatp following-char framep |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1185 get-largest-window get-lru-window |
|
26941
8584ef89a2bd
Don't put optimization info on `eql'.
Dave Love <fx@gnu.org>
parents:
25621
diff
changeset
|
1186 hash-table-p |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1187 identity ignore integerp integer-or-marker-p interactive-p |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1188 invocation-directory invocation-name |
|
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1189 keymapp |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1190 line-beginning-position line-end-position list listp |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1191 make-marker mark mark-marker markerp memory-limit minibuffer-window |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1192 mouse-movement-p |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1193 natnump nlistp not null number-or-marker-p numberp |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1194 one-window-p overlayp |
|
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1195 point point-marker point-min point-max preceding-char processp |
|
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1196 recent-keys recursion-depth |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1197 selected-frame selected-window sequencep stringp subrp symbolp |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1198 standard-case-table standard-syntax-table syntax-table-p |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1199 this-command-keys this-command-keys-vector this-single-command-keys |
|
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1200 this-single-command-raw-keys |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1201 user-full-name user-login-name user-original-login-name |
|
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1202 user-real-login-name user-real-uid user-uid |
|
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1203 vector vectorp visible-frame-list |
|
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1204 window-configuration-p window-live-p windowp))) |
| 757 | 1205 (while side-effect-free-fns |
| 1206 (put (car side-effect-free-fns) 'side-effect-free t) | |
| 1207 (setq side-effect-free-fns (cdr side-effect-free-fns))) | |
| 1208 (while side-effect-and-error-free-fns | |
| 1209 (put (car side-effect-and-error-free-fns) 'side-effect-free 'error-free) | |
| 1210 (setq side-effect-and-error-free-fns (cdr side-effect-and-error-free-fns))) | |
| 1211 nil) | |
| 1212 | |
| 1213 | |
| 1214 (defun byte-compile-splice-in-already-compiled-code (form) | |
| 1215 ;; form is (byte-code "..." [...] n) | |
| 1216 (if (not (memq byte-optimize '(t lap))) | |
| 1217 (byte-compile-normal-call form) | |
| 1218 (byte-inline-lapcode | |
| 1219 (byte-decompile-bytecode-1 (nth 1 form) (nth 2 form) t)) | |
| 1220 (setq byte-compile-maxdepth (max (+ byte-compile-depth (nth 3 form)) | |
| 1221 byte-compile-maxdepth)) | |
| 1222 (setq byte-compile-depth (1+ byte-compile-depth)))) | |
| 1223 | |
| 1224 (put 'byte-code 'byte-compile 'byte-compile-splice-in-already-compiled-code) | |
| 1225 | |
| 1226 | |
| 1227 (defconst byte-constref-ops | |
| 1228 '(byte-constant byte-constant2 byte-varref byte-varset byte-varbind)) | |
| 1229 | |
| 1230 ;;; This function extracts the bitfields from variable-length opcodes. | |
| 1231 ;;; Originally defined in disass.el (which no longer uses it.) | |
| 1232 | |
| 1233 (defun disassemble-offset () | |
| 1234 "Don't call this!" | |
| 1235 ;; fetch and return the offset for the current opcode. | |
| 42206 | 1236 ;; return nil if this opcode has no offset |
| 757 | 1237 ;; OP, PTR and BYTES are used and set dynamically |
| 1238 (defvar op) | |
| 1239 (defvar ptr) | |
| 1240 (defvar bytes) | |
| 1241 (cond ((< op byte-nth) | |
| 1242 (let ((tem (logand op 7))) | |
| 1243 (setq op (logand op 248)) | |
| 1244 (cond ((eq tem 6) | |
| 1245 (setq ptr (1+ ptr)) ;offset in next byte | |
| 1246 (aref bytes ptr)) | |
| 1247 ((eq tem 7) | |
| 1248 (setq ptr (1+ ptr)) ;offset in next 2 bytes | |
| 1249 (+ (aref bytes ptr) | |
| 1250 (progn (setq ptr (1+ ptr)) | |
| 1251 (lsh (aref bytes ptr) 8)))) | |
| 1252 (t tem)))) ;offset was in opcode | |
| 1253 ((>= op byte-constant) | |
| 1254 (prog1 (- op byte-constant) ;offset in opcode | |
| 1255 (setq op byte-constant))) | |
| 1256 ((and (>= op byte-constant2) | |
| 1257 (<= op byte-goto-if-not-nil-else-pop)) | |
| 1258 (setq ptr (1+ ptr)) ;offset in next 2 bytes | |
| 1259 (+ (aref bytes ptr) | |
| 1260 (progn (setq ptr (1+ ptr)) | |
| 1261 (lsh (aref bytes ptr) 8)))) | |
| 848 | 1262 ((and (>= op byte-listN) |
| 757 | 1263 (<= op byte-insertN)) |
| 1264 (setq ptr (1+ ptr)) ;offset in next byte | |
| 1265 (aref bytes ptr)))) | |
| 1266 | |
| 1267 | |
| 1268 ;;; This de-compiler is used for inline expansion of compiled functions, | |
| 1269 ;;; and by the disassembler. | |
| 1270 ;;; | |
|
8292
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1271 ;;; This list contains numbers, which are pc values, |
|
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1272 ;;; before each instruction. |
| 757 | 1273 (defun byte-decompile-bytecode (bytes constvec) |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3138
diff
changeset
|
1274 "Turns BYTECODE into lapcode, referring to CONSTVEC." |
| 757 | 1275 (let ((byte-compile-constants nil) |
| 1276 (byte-compile-variables nil) | |
| 1277 (byte-compile-tag-number 0)) | |
| 1278 (byte-decompile-bytecode-1 bytes constvec))) | |
| 1279 | |
|
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1280 ;; As byte-decompile-bytecode, but updates |
|
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1281 ;; byte-compile-{constants, variables, tag-number}. |
|
8294
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1282 ;; If MAKE-SPLICEABLE is true, then `return' opcodes are replaced |
|
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1283 ;; with `goto's destined for the end of the code. |
|
8294
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1284 ;; That is for use by the compiler. |
|
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1285 ;; If MAKE-SPLICEABLE is nil, we are being called for the disassembler. |
|
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1286 ;; In that case, we put a pc value into the list |
|
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1287 ;; before each insn (or its label). |
|
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1288 (defun byte-decompile-bytecode-1 (bytes constvec &optional make-spliceable) |
| 757 | 1289 (let ((length (length bytes)) |
| 1290 (ptr 0) optr tag tags op offset | |
| 1291 lap tmp | |
| 1292 endtag | |
| 1293 (retcount 0)) | |
| 1294 (while (not (= ptr length)) | |
|
8294
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1295 (or make-spliceable |
|
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1296 (setq lap (cons ptr lap))) |
| 757 | 1297 (setq op (aref bytes ptr) |
| 1298 optr ptr | |
| 1299 offset (disassemble-offset)) ; this does dynamic-scope magic | |
| 1300 (setq op (aref byte-code-vector op)) | |
| 848 | 1301 (cond ((memq op byte-goto-ops) |
| 757 | 1302 ;; it's a pc |
| 1303 (setq offset | |
| 1304 (cdr (or (assq offset tags) | |
| 1305 (car (setq tags | |
| 1306 (cons (cons offset | |
| 1307 (byte-compile-make-tag)) | |
| 1308 tags))))))) | |
| 1309 ((cond ((eq op 'byte-constant2) (setq op 'byte-constant) t) | |
| 1310 ((memq op byte-constref-ops))) | |
|
22074
b52cdd6c996e
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
21590
diff
changeset
|
1311 (setq tmp (if (>= offset (length constvec)) |
|
b52cdd6c996e
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
21590
diff
changeset
|
1312 (list 'out-of-range offset) |
|
b52cdd6c996e
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
21590
diff
changeset
|
1313 (aref constvec offset)) |
| 757 | 1314 offset (if (eq op 'byte-constant) |
| 1315 (byte-compile-get-constant tmp) | |
| 1316 (or (assq tmp byte-compile-variables) | |
| 1317 (car (setq byte-compile-variables | |
| 1318 (cons (list tmp) | |
| 1319 byte-compile-variables))))))) | |
|
8294
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1320 ((and make-spliceable |
| 757 | 1321 (eq op 'byte-return)) |
| 1322 (if (= ptr (1- length)) | |
| 1323 (setq op nil) | |
| 1324 (setq offset (or endtag (setq endtag (byte-compile-make-tag))) | |
| 1325 op 'byte-goto)))) | |
| 1326 ;; lap = ( [ (pc . (op . arg)) ]* ) | |
| 1327 (setq lap (cons (cons optr (cons op (or offset 0))) | |
| 1328 lap)) | |
| 1329 (setq ptr (1+ ptr))) | |
| 1330 ;; take off the dummy nil op that we replaced a trailing "return" with. | |
| 1331 (let ((rest lap)) | |
| 1332 (while rest | |
|
8292
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1333 (cond ((numberp (car rest))) |
|
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1334 ((setq tmp (assq (car (car rest)) tags)) |
| 757 | 1335 ;; this addr is jumped to |
| 1336 (setcdr rest (cons (cons nil (cdr tmp)) | |
| 1337 (cdr rest))) | |
| 1338 (setq tags (delq tmp tags)) | |
| 1339 (setq rest (cdr rest)))) | |
| 1340 (setq rest (cdr rest)))) | |
| 1341 (if tags (error "optimizer error: missed tags %s" tags)) | |
| 1342 (if (null (car (cdr (car lap)))) | |
| 1343 (setq lap (cdr lap))) | |
| 1344 (if endtag | |
| 1345 (setq lap (cons (cons nil endtag) lap))) | |
| 1346 ;; remove addrs, lap = ( [ (op . arg) | (TAG tagno) ]* ) | |
|
8292
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1347 (mapcar (function (lambda (elt) |
|
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1348 (if (numberp elt) |
|
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1349 elt |
|
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1350 (cdr elt)))) |
|
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1351 (nreverse lap)))) |
| 757 | 1352 |
| 1353 | |
| 1354 ;;; peephole optimizer | |
| 1355 | |
| 1356 (defconst byte-tagref-ops (cons 'TAG byte-goto-ops)) | |
| 1357 | |
| 1358 (defconst byte-conditional-ops | |
| 1359 '(byte-goto-if-nil byte-goto-if-not-nil byte-goto-if-nil-else-pop | |
| 1360 byte-goto-if-not-nil-else-pop)) | |
| 1361 | |
| 1362 (defconst byte-after-unbind-ops | |
| 1363 '(byte-constant byte-dup | |
| 1364 byte-symbolp byte-consp byte-stringp byte-listp byte-numberp byte-integerp | |
|
21590
ef61a9126a73
(byte-after-unbind-ops): Delete byte-equal.
Richard M. Stallman <rms@gnu.org>
parents:
20874
diff
changeset
|
1365 byte-eq byte-not |
| 757 | 1366 byte-cons byte-list1 byte-list2 ; byte-list3 byte-list4 |
|
8466
3cca823100db
(byte-after-unbind-ops): Fix paren error wrt doc string.
Richard M. Stallman <rms@gnu.org>
parents:
8294
diff
changeset
|
1367 byte-interactive-p) |
|
3cca823100db
(byte-after-unbind-ops): Fix paren error wrt doc string.
Richard M. Stallman <rms@gnu.org>
parents:
8294
diff
changeset
|
1368 ;; How about other side-effect-free-ops? Is it safe to move an |
|
3cca823100db
(byte-after-unbind-ops): Fix paren error wrt doc string.
Richard M. Stallman <rms@gnu.org>
parents:
8294
diff
changeset
|
1369 ;; error invocation (such as from nth) out of an unwind-protect? |
|
21590
ef61a9126a73
(byte-after-unbind-ops): Delete byte-equal.
Richard M. Stallman <rms@gnu.org>
parents:
20874
diff
changeset
|
1370 ;; No, it is not, because the unwind-protect forms can alter |
|
ef61a9126a73
(byte-after-unbind-ops): Delete byte-equal.
Richard M. Stallman <rms@gnu.org>
parents:
20874
diff
changeset
|
1371 ;; the inside of the object to which nth would apply. |
|
ef61a9126a73
(byte-after-unbind-ops): Delete byte-equal.
Richard M. Stallman <rms@gnu.org>
parents:
20874
diff
changeset
|
1372 ;; For the same reason, byte-equal was deleted from this list. |
|
8466
3cca823100db
(byte-after-unbind-ops): Fix paren error wrt doc string.
Richard M. Stallman <rms@gnu.org>
parents:
8294
diff
changeset
|
1373 "Byte-codes that can be moved past an unbind.") |
| 757 | 1374 |
| 1375 (defconst byte-compile-side-effect-and-error-free-ops | |
| 1376 '(byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp | |
| 1377 byte-integerp byte-numberp byte-eq byte-equal byte-not byte-car-safe | |
| 1378 byte-cdr-safe byte-cons byte-list1 byte-list2 byte-point byte-point-max | |
| 1379 byte-point-min byte-following-char byte-preceding-char | |
| 1380 byte-current-column byte-eolp byte-eobp byte-bolp byte-bobp | |
| 1381 byte-current-buffer byte-interactive-p)) | |
| 1382 | |
| 1383 (defconst byte-compile-side-effect-free-ops | |
| 1384 (nconc | |
| 1385 '(byte-varref byte-nth byte-memq byte-car byte-cdr byte-length byte-aref | |
| 1386 byte-symbol-value byte-get byte-concat2 byte-concat3 byte-sub1 byte-add1 | |
| 1387 byte-eqlsign byte-gtr byte-lss byte-leq byte-geq byte-diff byte-negate | |
| 1388 byte-plus byte-max byte-min byte-mult byte-char-after byte-char-syntax | |
| 1389 byte-buffer-substring byte-string= byte-string< byte-nthcdr byte-elt | |
| 1390 byte-member byte-assq byte-quo byte-rem) | |
| 1391 byte-compile-side-effect-and-error-free-ops)) | |
| 1392 | |
| 14641 | 1393 ;;; This crock is because of the way DEFVAR_BOOL variables work. |
| 757 | 1394 ;;; Consider the code |
| 1395 ;;; | |
| 1396 ;;; (defun foo (flag) | |
| 1397 ;;; (let ((old-pop-ups pop-up-windows) | |
| 1398 ;;; (pop-up-windows flag)) | |
| 1399 ;;; (cond ((not (eq pop-up-windows old-pop-ups)) | |
| 1400 ;;; (setq old-pop-ups pop-up-windows) | |
| 1401 ;;; ...)))) | |
| 1402 ;;; | |
| 1403 ;;; Uncompiled, old-pop-ups will always be set to nil or t, even if FLAG is | |
| 1404 ;;; something else. But if we optimize | |
| 1405 ;;; | |
| 1406 ;;; varref flag | |
| 1407 ;;; varbind pop-up-windows | |
| 1408 ;;; varref pop-up-windows | |
| 1409 ;;; not | |
| 1410 ;;; to | |
| 1411 ;;; varref flag | |
| 1412 ;;; dup | |
| 1413 ;;; varbind pop-up-windows | |
| 1414 ;;; not | |
| 1415 ;;; | |
| 1416 ;;; we break the program, because it will appear that pop-up-windows and | |
| 1417 ;;; old-pop-ups are not EQ when really they are. So we have to know what | |
| 1418 ;;; the BOOL variables are, and not perform this optimization on them. | |
|
25557
5eb4b90c57b0
(byte-boolean-vars): Removed. (Now primitive.)
Dave Love <fx@gnu.org>
parents:
25471
diff
changeset
|
1419 |
|
5eb4b90c57b0
(byte-boolean-vars): Removed. (Now primitive.)
Dave Love <fx@gnu.org>
parents:
25471
diff
changeset
|
1420 ;;; The variable `byte-boolean-vars' is now primitive and updated |
|
5eb4b90c57b0
(byte-boolean-vars): Removed. (Now primitive.)
Dave Love <fx@gnu.org>
parents:
25471
diff
changeset
|
1421 ;;; automatically by DEFVAR_BOOL. |
| 757 | 1422 |
| 1423 (defun byte-optimize-lapcode (lap &optional for-effect) | |
| 1424 "Simple peephole optimizer. LAP is both modified and returned." | |
|
32078
038a08ffb9f8
(byte-optimize-lapcode): Don't bind
Dave Love <fx@gnu.org>
parents:
29580
diff
changeset
|
1425 (let (lap0 |
|
038a08ffb9f8
(byte-optimize-lapcode): Don't bind
Dave Love <fx@gnu.org>
parents:
29580
diff
changeset
|
1426 lap1 |
|
038a08ffb9f8
(byte-optimize-lapcode): Don't bind
Dave Love <fx@gnu.org>
parents:
29580
diff
changeset
|
1427 lap2 |
| 757 | 1428 (keep-going 'first-time) |
| 1429 (add-depth 0) | |
| 1430 rest tmp tmp2 tmp3 | |
| 1431 (side-effect-free (if byte-compile-delete-errors | |
| 1432 byte-compile-side-effect-free-ops | |
| 1433 byte-compile-side-effect-and-error-free-ops))) | |
| 1434 (while keep-going | |
| 1435 (or (eq keep-going 'first-time) | |
| 1436 (byte-compile-log-lap " ---- next pass")) | |
| 1437 (setq rest lap | |
| 1438 keep-going nil) | |
| 1439 (while rest | |
| 1440 (setq lap0 (car rest) | |
| 1441 lap1 (nth 1 rest) | |
| 1442 lap2 (nth 2 rest)) | |
| 1443 | |
| 1444 ;; You may notice that sequences like "dup varset discard" are | |
| 1445 ;; optimized but sequences like "dup varset TAG1: discard" are not. | |
| 1446 ;; You may be tempted to change this; resist that temptation. | |
| 1447 (cond ;; | |
| 1448 ;; <side-effect-free> pop --> <deleted> | |
| 1449 ;; ...including: | |
| 1450 ;; const-X pop --> <deleted> | |
| 1451 ;; varref-X pop --> <deleted> | |
| 1452 ;; dup pop --> <deleted> | |
| 1453 ;; | |
| 1454 ((and (eq 'byte-discard (car lap1)) | |
| 1455 (memq (car lap0) side-effect-free)) | |
| 1456 (setq keep-going t) | |
| 1457 (setq tmp (aref byte-stack+-info (symbol-value (car lap0)))) | |
| 1458 (setq rest (cdr rest)) | |
| 1459 (cond ((= tmp 1) | |
| 1460 (byte-compile-log-lap | |
| 1461 " %s discard\t-->\t<deleted>" lap0) | |
| 1462 (setq lap (delq lap0 (delq lap1 lap)))) | |
| 1463 ((= tmp 0) | |
| 1464 (byte-compile-log-lap | |
| 1465 " %s discard\t-->\t<deleted> discard" lap0) | |
| 1466 (setq lap (delq lap0 lap))) | |
| 1467 ((= tmp -1) | |
| 1468 (byte-compile-log-lap | |
| 1469 " %s discard\t-->\tdiscard discard" lap0) | |
| 1470 (setcar lap0 'byte-discard) | |
| 1471 (setcdr lap0 0)) | |
| 1472 ((error "Optimizer error: too much on the stack")))) | |
| 1473 ;; | |
| 1474 ;; goto*-X X: --> X: | |
| 1475 ;; | |
| 1476 ((and (memq (car lap0) byte-goto-ops) | |
| 1477 (eq (cdr lap0) lap1)) | |
| 1478 (cond ((eq (car lap0) 'byte-goto) | |
| 1479 (setq lap (delq lap0 lap)) | |
| 1480 (setq tmp "<deleted>")) | |
| 1481 ((memq (car lap0) byte-goto-always-pop-ops) | |
| 1482 (setcar lap0 (setq tmp 'byte-discard)) | |
| 1483 (setcdr lap0 0)) | |
| 1484 ((error "Depth conflict at tag %d" (nth 2 lap0)))) | |
| 1485 (and (memq byte-optimize-log '(t byte)) | |
| 1486 (byte-compile-log " (goto %s) %s:\t-->\t%s %s:" | |
| 1487 (nth 1 lap1) (nth 1 lap1) | |
| 1488 tmp (nth 1 lap1))) | |
| 1489 (setq keep-going t)) | |
| 1490 ;; | |
| 1491 ;; varset-X varref-X --> dup varset-X | |
| 1492 ;; varbind-X varref-X --> dup varbind-X | |
| 1493 ;; const/dup varset-X varref-X --> const/dup varset-X const/dup | |
| 1494 ;; const/dup varbind-X varref-X --> const/dup varbind-X const/dup | |
| 1495 ;; The latter two can enable other optimizations. | |
| 1496 ;; | |
| 1497 ((and (eq 'byte-varref (car lap2)) | |
| 1498 (eq (cdr lap1) (cdr lap2)) | |
| 1499 (memq (car lap1) '(byte-varset byte-varbind))) | |
| 1500 (if (and (setq tmp (memq (car (cdr lap2)) byte-boolean-vars)) | |
| 1501 (not (eq (car lap0) 'byte-constant))) | |
| 1502 nil | |
| 1503 (setq keep-going t) | |
| 1504 (if (memq (car lap0) '(byte-constant byte-dup)) | |
| 1505 (progn | |
| 1506 (setq tmp (if (or (not tmp) | |
| 27823 | 1507 (byte-compile-const-symbol-p |
| 1508 (car (cdr lap0)))) | |
| 757 | 1509 (cdr lap0) |
| 1510 (byte-compile-get-constant t))) | |
| 1511 (byte-compile-log-lap " %s %s %s\t-->\t%s %s %s" | |
| 1512 lap0 lap1 lap2 lap0 lap1 | |
| 1513 (cons (car lap0) tmp)) | |
| 1514 (setcar lap2 (car lap0)) | |
| 1515 (setcdr lap2 tmp)) | |
| 1516 (byte-compile-log-lap " %s %s\t-->\tdup %s" lap1 lap2 lap1) | |
| 1517 (setcar lap2 (car lap1)) | |
| 1518 (setcar lap1 'byte-dup) | |
| 1519 (setcdr lap1 0) | |
| 1520 ;; The stack depth gets locally increased, so we will | |
| 1521 ;; increase maxdepth in case depth = maxdepth here. | |
| 1522 ;; This can cause the third argument to byte-code to | |
| 1523 ;; be larger than necessary. | |
| 1524 (setq add-depth 1)))) | |
| 1525 ;; | |
| 1526 ;; dup varset-X discard --> varset-X | |
| 1527 ;; dup varbind-X discard --> varbind-X | |
| 1528 ;; (the varbind variant can emerge from other optimizations) | |
| 1529 ;; | |
| 1530 ((and (eq 'byte-dup (car lap0)) | |
| 1531 (eq 'byte-discard (car lap2)) | |
| 1532 (memq (car lap1) '(byte-varset byte-varbind))) | |
| 1533 (byte-compile-log-lap " dup %s discard\t-->\t%s" lap1 lap1) | |
| 1534 (setq keep-going t | |
| 1535 rest (cdr rest)) | |
| 1536 (setq lap (delq lap0 (delq lap2 lap)))) | |
| 1537 ;; | |
| 1538 ;; not goto-X-if-nil --> goto-X-if-non-nil | |
| 1539 ;; not goto-X-if-non-nil --> goto-X-if-nil | |
| 1540 ;; | |
| 1541 ;; it is wrong to do the same thing for the -else-pop variants. | |
| 1542 ;; | |
| 1543 ((and (eq 'byte-not (car lap0)) | |
| 1544 (or (eq 'byte-goto-if-nil (car lap1)) | |
| 1545 (eq 'byte-goto-if-not-nil (car lap1)))) | |
| 1546 (byte-compile-log-lap " not %s\t-->\t%s" | |
| 1547 lap1 | |
| 1548 (cons | |
| 1549 (if (eq (car lap1) 'byte-goto-if-nil) | |
| 1550 'byte-goto-if-not-nil | |
| 1551 'byte-goto-if-nil) | |
| 1552 (cdr lap1))) | |
| 1553 (setcar lap1 (if (eq (car lap1) 'byte-goto-if-nil) | |
| 1554 'byte-goto-if-not-nil | |
| 1555 'byte-goto-if-nil)) | |
| 1556 (setq lap (delq lap0 lap)) | |
| 1557 (setq keep-going t)) | |
| 1558 ;; | |
| 1559 ;; goto-X-if-nil goto-Y X: --> goto-Y-if-non-nil X: | |
| 1560 ;; goto-X-if-non-nil goto-Y X: --> goto-Y-if-nil X: | |
| 1561 ;; | |
| 1562 ;; it is wrong to do the same thing for the -else-pop variants. | |
| 1563 ;; | |
| 1564 ((and (or (eq 'byte-goto-if-nil (car lap0)) | |
| 1565 (eq 'byte-goto-if-not-nil (car lap0))) ; gotoX | |
| 1566 (eq 'byte-goto (car lap1)) ; gotoY | |
| 1567 (eq (cdr lap0) lap2)) ; TAG X | |
| 1568 (let ((inverse (if (eq 'byte-goto-if-nil (car lap0)) | |
| 1569 'byte-goto-if-not-nil 'byte-goto-if-nil))) | |
| 1570 (byte-compile-log-lap " %s %s %s:\t-->\t%s %s:" | |
| 1571 lap0 lap1 lap2 | |
| 1572 (cons inverse (cdr lap1)) lap2) | |
| 1573 (setq lap (delq lap0 lap)) | |
| 1574 (setcar lap1 inverse) | |
| 1575 (setq keep-going t))) | |
| 1576 ;; | |
| 1577 ;; const goto-if-* --> whatever | |
| 1578 ;; | |
| 1579 ((and (eq 'byte-constant (car lap0)) | |
| 1580 (memq (car lap1) byte-conditional-ops)) | |
| 1581 (cond ((if (or (eq (car lap1) 'byte-goto-if-nil) | |
| 1582 (eq (car lap1) 'byte-goto-if-nil-else-pop)) | |
| 1583 (car (cdr lap0)) | |
| 1584 (not (car (cdr lap0)))) | |
| 1585 (byte-compile-log-lap " %s %s\t-->\t<deleted>" | |
| 1586 lap0 lap1) | |
| 1587 (setq rest (cdr rest) | |
| 1588 lap (delq lap0 (delq lap1 lap)))) | |
| 1589 (t | |
| 1590 (if (memq (car lap1) byte-goto-always-pop-ops) | |
| 1591 (progn | |
| 1592 (byte-compile-log-lap " %s %s\t-->\t%s" | |
| 1593 lap0 lap1 (cons 'byte-goto (cdr lap1))) | |
| 1594 (setq lap (delq lap0 lap))) | |
| 1595 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1 | |
| 1596 (cons 'byte-goto (cdr lap1)))) | |
| 1597 (setcar lap1 'byte-goto))) | |
| 1598 (setq keep-going t)) | |
| 1599 ;; | |
| 1600 ;; varref-X varref-X --> varref-X dup | |
| 1601 ;; varref-X [dup ...] varref-X --> varref-X [dup ...] dup | |
| 1602 ;; We don't optimize the const-X variations on this here, | |
| 1603 ;; because that would inhibit some goto optimizations; we | |
| 1604 ;; optimize the const-X case after all other optimizations. | |
| 1605 ;; | |
| 1606 ((and (eq 'byte-varref (car lap0)) | |
| 1607 (progn | |
| 1608 (setq tmp (cdr rest)) | |
| 1609 (while (eq (car (car tmp)) 'byte-dup) | |
| 1610 (setq tmp (cdr tmp))) | |
| 1611 t) | |
| 1612 (eq (cdr lap0) (cdr (car tmp))) | |
| 1613 (eq 'byte-varref (car (car tmp)))) | |
| 1614 (if (memq byte-optimize-log '(t byte)) | |
| 1615 (let ((str "")) | |
| 1616 (setq tmp2 (cdr rest)) | |
| 1617 (while (not (eq tmp tmp2)) | |
| 1618 (setq tmp2 (cdr tmp2) | |
| 1619 str (concat str " dup"))) | |
| 1620 (byte-compile-log-lap " %s%s %s\t-->\t%s%s dup" | |
| 1621 lap0 str lap0 lap0 str))) | |
| 1622 (setq keep-going t) | |
| 1623 (setcar (car tmp) 'byte-dup) | |
| 1624 (setcdr (car tmp) 0) | |
| 1625 (setq rest tmp)) | |
| 1626 ;; | |
| 1627 ;; TAG1: TAG2: --> TAG1: <deleted> | |
| 1628 ;; (and other references to TAG2 are replaced with TAG1) | |
| 1629 ;; | |
| 1630 ((and (eq (car lap0) 'TAG) | |
| 1631 (eq (car lap1) 'TAG)) | |
| 1632 (and (memq byte-optimize-log '(t byte)) | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3138
diff
changeset
|
1633 (byte-compile-log " adjacent tags %d and %d merged" |
| 757 | 1634 (nth 1 lap1) (nth 1 lap0))) |
| 1635 (setq tmp3 lap) | |
| 1636 (while (setq tmp2 (rassq lap0 tmp3)) | |
| 1637 (setcdr tmp2 lap1) | |
| 1638 (setq tmp3 (cdr (memq tmp2 tmp3)))) | |
| 1639 (setq lap (delq lap0 lap) | |
| 1640 keep-going t)) | |
| 1641 ;; | |
| 1642 ;; unused-TAG: --> <deleted> | |
| 1643 ;; | |
| 1644 ((and (eq 'TAG (car lap0)) | |
| 1645 (not (rassq lap0 lap))) | |
| 1646 (and (memq byte-optimize-log '(t byte)) | |
| 1647 (byte-compile-log " unused tag %d removed" (nth 1 lap0))) | |
| 1648 (setq lap (delq lap0 lap) | |
| 1649 keep-going t)) | |
| 1650 ;; | |
| 1651 ;; goto ... --> goto <delete until TAG or end> | |
| 1652 ;; return ... --> return <delete until TAG or end> | |
| 1653 ;; | |
| 1654 ((and (memq (car lap0) '(byte-goto byte-return)) | |
| 1655 (not (memq (car lap1) '(TAG nil)))) | |
| 1656 (setq tmp rest) | |
| 1657 (let ((i 0) | |
| 1658 (opt-p (memq byte-optimize-log '(t lap))) | |
| 1659 str deleted) | |
| 1660 (while (and (setq tmp (cdr tmp)) | |
| 1661 (not (eq 'TAG (car (car tmp))))) | |
| 1662 (if opt-p (setq deleted (cons (car tmp) deleted) | |
| 1663 str (concat str " %s") | |
| 1664 i (1+ i)))) | |
| 1665 (if opt-p | |
| 1666 (let ((tagstr | |
| 1667 (if (eq 'TAG (car (car tmp))) | |
|
12638
4adf53113ec9
(byte-optimize-lapcode): Fix format calls.
Richard M. Stallman <rms@gnu.org>
parents:
12550
diff
changeset
|
1668 (format "%d:" (car (cdr (car tmp)))) |
| 757 | 1669 (or (car tmp) "")))) |
| 1670 (if (< i 6) | |
| 1671 (apply 'byte-compile-log-lap-1 | |
| 1672 (concat " %s" str | |
| 1673 " %s\t-->\t%s <deleted> %s") | |
| 1674 lap0 | |
| 1675 (nconc (nreverse deleted) | |
| 1676 (list tagstr lap0 tagstr))) | |
| 1677 (byte-compile-log-lap | |
| 1678 " %s <%d unreachable op%s> %s\t-->\t%s <deleted> %s" | |
| 1679 lap0 i (if (= i 1) "" "s") | |
| 1680 tagstr lap0 tagstr)))) | |
| 1681 (rplacd rest tmp)) | |
| 1682 (setq keep-going t)) | |
| 1683 ;; | |
| 1684 ;; <safe-op> unbind --> unbind <safe-op> | |
| 1685 ;; (this may enable other optimizations.) | |
| 1686 ;; | |
| 1687 ((and (eq 'byte-unbind (car lap1)) | |
| 1688 (memq (car lap0) byte-after-unbind-ops)) | |
| 1689 (byte-compile-log-lap " %s %s\t-->\t%s %s" lap0 lap1 lap1 lap0) | |
| 1690 (setcar rest lap1) | |
| 1691 (setcar (cdr rest) lap0) | |
| 1692 (setq keep-going t)) | |
| 1693 ;; | |
| 1694 ;; varbind-X unbind-N --> discard unbind-(N-1) | |
| 1695 ;; save-excursion unbind-N --> unbind-(N-1) | |
| 1696 ;; save-restriction unbind-N --> unbind-(N-1) | |
| 1697 ;; | |
| 1698 ((and (eq 'byte-unbind (car lap1)) | |
| 1699 (memq (car lap0) '(byte-varbind byte-save-excursion | |
| 1700 byte-save-restriction)) | |
| 1701 (< 0 (cdr lap1))) | |
| 1702 (if (zerop (setcdr lap1 (1- (cdr lap1)))) | |
| 1703 (delq lap1 rest)) | |
| 1704 (if (eq (car lap0) 'byte-varbind) | |
| 1705 (setcar rest (cons 'byte-discard 0)) | |
| 1706 (setq lap (delq lap0 lap))) | |
| 1707 (byte-compile-log-lap " %s %s\t-->\t%s %s" | |
| 1708 lap0 (cons (car lap1) (1+ (cdr lap1))) | |
| 1709 (if (eq (car lap0) 'byte-varbind) | |
| 1710 (car rest) | |
| 1711 (car (cdr rest))) | |
| 1712 (if (and (/= 0 (cdr lap1)) | |
| 1713 (eq (car lap0) 'byte-varbind)) | |
| 1714 (car (cdr rest)) | |
| 1715 "")) | |
| 1716 (setq keep-going t)) | |
| 1717 ;; | |
| 1718 ;; goto*-X ... X: goto-Y --> goto*-Y | |
| 1719 ;; goto-X ... X: return --> return | |
| 1720 ;; | |
| 1721 ((and (memq (car lap0) byte-goto-ops) | |
| 1722 (memq (car (setq tmp (nth 1 (memq (cdr lap0) lap)))) | |
| 1723 '(byte-goto byte-return))) | |
| 1724 (cond ((and (not (eq tmp lap0)) | |
| 1725 (or (eq (car lap0) 'byte-goto) | |
| 1726 (eq (car tmp) 'byte-goto))) | |
| 1727 (byte-compile-log-lap " %s [%s]\t-->\t%s" | |
| 1728 (car lap0) tmp tmp) | |
| 1729 (if (eq (car tmp) 'byte-return) | |
| 1730 (setcar lap0 'byte-return)) | |
| 1731 (setcdr lap0 (cdr tmp)) | |
| 1732 (setq keep-going t)))) | |
| 1733 ;; | |
| 1734 ;; goto-*-else-pop X ... X: goto-if-* --> whatever | |
| 1735 ;; goto-*-else-pop X ... X: discard --> whatever | |
| 1736 ;; | |
| 1737 ((and (memq (car lap0) '(byte-goto-if-nil-else-pop | |
| 1738 byte-goto-if-not-nil-else-pop)) | |
| 1739 (memq (car (car (setq tmp (cdr (memq (cdr lap0) lap))))) | |
| 1740 (eval-when-compile | |
| 1741 (cons 'byte-discard byte-conditional-ops))) | |
| 1742 (not (eq lap0 (car tmp)))) | |
| 1743 (setq tmp2 (car tmp)) | |
| 1744 (setq tmp3 (assq (car lap0) '((byte-goto-if-nil-else-pop | |
| 1745 byte-goto-if-nil) | |
| 1746 (byte-goto-if-not-nil-else-pop | |
| 1747 byte-goto-if-not-nil)))) | |
| 1748 (if (memq (car tmp2) tmp3) | |
| 1749 (progn (setcar lap0 (car tmp2)) | |
| 1750 (setcdr lap0 (cdr tmp2)) | |
| 1751 (byte-compile-log-lap " %s-else-pop [%s]\t-->\t%s" | |
| 1752 (car lap0) tmp2 lap0)) | |
| 1753 ;; Get rid of the -else-pop's and jump one step further. | |
| 1754 (or (eq 'TAG (car (nth 1 tmp))) | |
| 1755 (setcdr tmp (cons (byte-compile-make-tag) | |
| 1756 (cdr tmp)))) | |
| 1757 (byte-compile-log-lap " %s [%s]\t-->\t%s <skip>" | |
| 1758 (car lap0) tmp2 (nth 1 tmp3)) | |
| 1759 (setcar lap0 (nth 1 tmp3)) | |
| 1760 (setcdr lap0 (nth 1 tmp))) | |
| 1761 (setq keep-going t)) | |
| 1762 ;; | |
| 1763 ;; const goto-X ... X: goto-if-* --> whatever | |
| 1764 ;; const goto-X ... X: discard --> whatever | |
| 1765 ;; | |
| 1766 ((and (eq (car lap0) 'byte-constant) | |
| 1767 (eq (car lap1) 'byte-goto) | |
| 1768 (memq (car (car (setq tmp (cdr (memq (cdr lap1) lap))))) | |
| 1769 (eval-when-compile | |
| 1770 (cons 'byte-discard byte-conditional-ops))) | |
| 1771 (not (eq lap1 (car tmp)))) | |
| 1772 (setq tmp2 (car tmp)) | |
| 1773 (cond ((memq (car tmp2) | |
| 1774 (if (null (car (cdr lap0))) | |
| 1775 '(byte-goto-if-nil byte-goto-if-nil-else-pop) | |
| 1776 '(byte-goto-if-not-nil | |
| 1777 byte-goto-if-not-nil-else-pop))) | |
| 1778 (byte-compile-log-lap " %s goto [%s]\t-->\t%s %s" | |
| 1779 lap0 tmp2 lap0 tmp2) | |
| 1780 (setcar lap1 (car tmp2)) | |
| 1781 (setcdr lap1 (cdr tmp2)) | |
| 1782 ;; Let next step fix the (const,goto-if*) sequence. | |
| 1783 (setq rest (cons nil rest))) | |
| 1784 (t | |
| 1785 ;; Jump one step further | |
| 1786 (byte-compile-log-lap | |
| 1787 " %s goto [%s]\t-->\t<deleted> goto <skip>" | |
| 1788 lap0 tmp2) | |
| 1789 (or (eq 'TAG (car (nth 1 tmp))) | |
| 1790 (setcdr tmp (cons (byte-compile-make-tag) | |
| 1791 (cdr tmp)))) | |
| 1792 (setcdr lap1 (car (cdr tmp))) | |
| 1793 (setq lap (delq lap0 lap)))) | |
| 1794 (setq keep-going t)) | |
| 1795 ;; | |
| 1796 ;; X: varref-Y ... varset-Y goto-X --> | |
| 1797 ;; X: varref-Y Z: ... dup varset-Y goto-Z | |
| 1798 ;; (varset-X goto-BACK, BACK: varref-X --> copy the varref down.) | |
| 1799 ;; (This is so usual for while loops that it is worth handling). | |
| 1800 ;; | |
| 1801 ((and (eq (car lap1) 'byte-varset) | |
| 1802 (eq (car lap2) 'byte-goto) | |
| 1803 (not (memq (cdr lap2) rest)) ;Backwards jump | |
| 1804 (eq (car (car (setq tmp (cdr (memq (cdr lap2) lap))))) | |
| 1805 'byte-varref) | |
| 1806 (eq (cdr (car tmp)) (cdr lap1)) | |
| 1807 (not (memq (car (cdr lap1)) byte-boolean-vars))) | |
| 1808 ;;(byte-compile-log-lap " Pulled %s to end of loop" (car tmp)) | |
| 1809 (let ((newtag (byte-compile-make-tag))) | |
| 1810 (byte-compile-log-lap | |
| 1811 " %s: %s ... %s %s\t-->\t%s: %s %s: ... %s %s %s" | |
| 1812 (nth 1 (cdr lap2)) (car tmp) | |
| 1813 lap1 lap2 | |
| 1814 (nth 1 (cdr lap2)) (car tmp) | |
| 1815 (nth 1 newtag) 'byte-dup lap1 | |
| 1816 (cons 'byte-goto newtag) | |
| 1817 ) | |
| 1818 (setcdr rest (cons (cons 'byte-dup 0) (cdr rest))) | |
| 1819 (setcdr tmp (cons (setcdr lap2 newtag) (cdr tmp)))) | |
| 1820 (setq add-depth 1) | |
| 1821 (setq keep-going t)) | |
| 1822 ;; | |
| 1823 ;; goto-X Y: ... X: goto-if*-Y --> goto-if-not-*-X+1 Y: | |
| 1824 ;; (This can pull the loop test to the end of the loop) | |
| 1825 ;; | |
| 1826 ((and (eq (car lap0) 'byte-goto) | |
| 1827 (eq (car lap1) 'TAG) | |
| 1828 (eq lap1 | |
| 1829 (cdr (car (setq tmp (cdr (memq (cdr lap0) lap)))))) | |
| 1830 (memq (car (car tmp)) | |
| 1831 '(byte-goto byte-goto-if-nil byte-goto-if-not-nil | |
| 1832 byte-goto-if-nil-else-pop))) | |
| 1833 ;; (byte-compile-log-lap " %s %s, %s %s --> moved conditional" | |
| 1834 ;; lap0 lap1 (cdr lap0) (car tmp)) | |
| 1835 (let ((newtag (byte-compile-make-tag))) | |
| 1836 (byte-compile-log-lap | |
| 1837 "%s %s: ... %s: %s\t-->\t%s ... %s:" | |
| 1838 lap0 (nth 1 lap1) (nth 1 (cdr lap0)) (car tmp) | |
| 1839 (cons (cdr (assq (car (car tmp)) | |
| 1840 '((byte-goto-if-nil . byte-goto-if-not-nil) | |
| 1841 (byte-goto-if-not-nil . byte-goto-if-nil) | |
| 1842 (byte-goto-if-nil-else-pop . | |
| 1843 byte-goto-if-not-nil-else-pop) | |
| 1844 (byte-goto-if-not-nil-else-pop . | |
| 1845 byte-goto-if-nil-else-pop)))) | |
| 1846 newtag) | |
| 1847 | |
| 1848 (nth 1 newtag) | |
| 1849 ) | |
| 1850 (setcdr tmp (cons (setcdr lap0 newtag) (cdr tmp))) | |
| 1851 (if (eq (car (car tmp)) 'byte-goto-if-nil-else-pop) | |
| 1852 ;; We can handle this case but not the -if-not-nil case, | |
| 1853 ;; because we won't know which non-nil constant to push. | |
| 1854 (setcdr rest (cons (cons 'byte-constant | |
| 1855 (byte-compile-get-constant nil)) | |
| 1856 (cdr rest)))) | |
| 1857 (setcar lap0 (nth 1 (memq (car (car tmp)) | |
| 1858 '(byte-goto-if-nil-else-pop | |
| 1859 byte-goto-if-not-nil | |
| 1860 byte-goto-if-nil | |
| 1861 byte-goto-if-not-nil | |
| 1862 byte-goto byte-goto)))) | |
| 1863 ) | |
| 1864 (setq keep-going t)) | |
| 1865 ) | |
| 1866 (setq rest (cdr rest))) | |
| 1867 ) | |
| 1868 ;; Cleanup stage: | |
| 1869 ;; Rebuild byte-compile-constants / byte-compile-variables. | |
| 1870 ;; Simple optimizations that would inhibit other optimizations if they | |
| 1871 ;; were done in the optimizing loop, and optimizations which there is no | |
| 1872 ;; need to do more than once. | |
| 1873 (setq byte-compile-constants nil | |
| 1874 byte-compile-variables nil) | |
| 1875 (setq rest lap) | |
| 1876 (while rest | |
| 1877 (setq lap0 (car rest) | |
| 1878 lap1 (nth 1 rest)) | |
| 1879 (if (memq (car lap0) byte-constref-ops) | |
| 39777 | 1880 (if (or (eq (car lap0) 'byte-constant) |
| 1881 (eq (car lap0) 'byte-constant2)) | |
| 1882 (unless (memq (cdr lap0) byte-compile-constants) | |
| 757 | 1883 (setq byte-compile-constants (cons (cdr lap0) |
| 39777 | 1884 byte-compile-constants))) |
| 1885 (unless (memq (cdr lap0) byte-compile-variables) | |
| 1886 (setq byte-compile-variables (cons (cdr lap0) | |
| 1887 byte-compile-variables))))) | |
| 757 | 1888 (cond (;; |
| 1889 ;; const-C varset-X const-C --> const-C dup varset-X | |
| 1890 ;; const-C varbind-X const-C --> const-C dup varbind-X | |
| 1891 ;; | |
| 1892 (and (eq (car lap0) 'byte-constant) | |
| 1893 (eq (car (nth 2 rest)) 'byte-constant) | |
| 39777 | 1894 (eq (cdr lap0) (cdr (nth 2 rest))) |
| 757 | 1895 (memq (car lap1) '(byte-varbind byte-varset))) |
| 1896 (byte-compile-log-lap " %s %s %s\t-->\t%s dup %s" | |
| 1897 lap0 lap1 lap0 lap0 lap1) | |
| 1898 (setcar (cdr (cdr rest)) (cons (car lap1) (cdr lap1))) | |
| 1899 (setcar (cdr rest) (cons 'byte-dup 0)) | |
| 1900 (setq add-depth 1)) | |
| 1901 ;; | |
| 1902 ;; const-X [dup/const-X ...] --> const-X [dup ...] dup | |
| 1903 ;; varref-X [dup/varref-X ...] --> varref-X [dup ...] dup | |
| 1904 ;; | |
| 1905 ((memq (car lap0) '(byte-constant byte-varref)) | |
| 1906 (setq tmp rest | |
| 1907 tmp2 nil) | |
| 1908 (while (progn | |
| 1909 (while (eq 'byte-dup (car (car (setq tmp (cdr tmp)))))) | |
| 1910 (and (eq (cdr lap0) (cdr (car tmp))) | |
| 1911 (eq (car lap0) (car (car tmp))))) | |
| 1912 (setcar tmp (cons 'byte-dup 0)) | |
| 1913 (setq tmp2 t)) | |
| 1914 (if tmp2 | |
| 1915 (byte-compile-log-lap | |
|
12638
4adf53113ec9
(byte-optimize-lapcode): Fix format calls.
Richard M. Stallman <rms@gnu.org>
parents:
12550
diff
changeset
|
1916 " %s [dup/%s]...\t-->\t%s dup..." lap0 lap0 lap0))) |
| 757 | 1917 ;; |
| 1918 ;; unbind-N unbind-M --> unbind-(N+M) | |
| 1919 ;; | |
| 1920 ((and (eq 'byte-unbind (car lap0)) | |
| 1921 (eq 'byte-unbind (car lap1))) | |
| 1922 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1 | |
| 1923 (cons 'byte-unbind | |
| 1924 (+ (cdr lap0) (cdr lap1)))) | |
| 1925 (setq keep-going t) | |
| 1926 (setq lap (delq lap0 lap)) | |
| 1927 (setcdr lap1 (+ (cdr lap1) (cdr lap0)))) | |
| 1928 ) | |
| 1929 (setq rest (cdr rest))) | |
| 1930 (setq byte-compile-maxdepth (+ byte-compile-maxdepth add-depth))) | |
| 1931 lap) | |
| 1932 | |
|
25231
b587c4aeff78
Provide `byte-optimize', not `byte-opt'.
Karl Heuer <kwzh@gnu.org>
parents:
24734
diff
changeset
|
1933 (provide 'byte-opt) |
| 757 | 1934 |
| 1935 | |
| 1936 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when this file compiles | |
| 1937 ;; itself, compile some of its most used recursive functions (at load time). | |
| 1938 ;; | |
| 1939 (eval-when-compile | |
|
1818
7e3322619e46
compiled-function-p has been renamed to byte-code-function-p.
Jim Blandy <jimb@redhat.com>
parents:
957
diff
changeset
|
1940 (or (byte-code-function-p (symbol-function 'byte-optimize-form)) |
| 757 | 1941 (assq 'byte-code (symbol-function 'byte-optimize-form)) |
| 1942 (let ((byte-optimize nil) | |
| 1943 (byte-compile-warnings nil)) | |
|
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1944 (mapcar (lambda (x) |
|
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1945 (or noninteractive (message "compiling %s..." x)) |
|
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1946 (byte-compile x) |
|
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1947 (or noninteractive (message "compiling %s...done" x))) |
| 757 | 1948 '(byte-optimize-form |
| 1949 byte-optimize-body | |
| 1950 byte-optimize-predicate | |
| 1951 byte-optimize-binary-predicate | |
| 1952 ;; Inserted some more than necessary, to speed it up. | |
| 1953 byte-optimize-form-code-walker | |
| 1954 byte-optimize-lapcode)))) | |
| 1955 nil) | |
| 848 | 1956 |
| 1957 ;;; byte-opt.el ends here |
