Mercurial > emacs
annotate lisp/emacs-lisp/byte-opt.el @ 46657:04d87f195cd1
(byte-compile-cl-functions): New variable.
(byte-compile-cl-warn): Use that variable.
(byte-compile-find-cl-functions): New function.
(displaying-byte-compile-warnings):
Call byte-compile-find-cl-functions.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 24 Jul 2002 03:58:02 +0000 |
parents | 8788778fec51 |
children | b4a5fd1d144c |
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 | |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1146 ;;; Some of these functions have the side effect of allocating memory |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1147 ;;; and it would be incorrect to replace two calls with one. |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1148 ;;; But we don't try to do those kinds of optimizations, |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1149 ;;; so it is safe to list such functions here. |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1150 ;;; Some of these functions return values that depend on environment |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1151 ;;; state, so that constant folding them would be wrong, |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1152 ;;; but we don't do constant folding based on this list. |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1153 |
757 | 1154 ;;; I wonder if I missed any :-\) |
1155 (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
|
1156 '(% * + - / /= 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
|
1157 assoc assq |
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1158 boundp buffer-file-name buffer-local-variables buffer-modified-p |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1159 buffer-substring byte-code-function-p |
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1160 capitalize car-less-than-car car cdr ceiling char-after char-before |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1161 char-equal char-to-string char-width |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1162 compare-strings concat coordinates-in-window-p |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1163 copy-alist copy-sequence copy-marker cos count-lines |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1164 decode-time default-boundp default-value documentation downcase |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1165 elt exp expt encode-time error-message-string |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1166 fboundp fceiling featurep ffloor |
757 | 1167 file-directory-p file-exists-p file-locked-p file-name-absolute-p |
1168 file-newer-than-file-p file-readable-p file-symlink-p file-writable-p | |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1169 float float-time floor format format-time-string frame-visible-p |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1170 fround ftruncate |
26941
8584ef89a2bd
Don't put optimization info on `eql'.
Dave Love <fx@gnu.org>
parents:
25621
diff
changeset
|
1171 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
|
1172 hash-table-count |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1173 int-to-string intern-soft |
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1174 keymap-parent |
27823 | 1175 length local-variable-if-set-p local-variable-p log log10 logand |
1176 logb logior lognot logxor lsh | |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1177 make-list make-string make-symbol |
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1178 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
|
1179 next-window nth nthcdr number-to-string |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1180 parse-colon-path plist-get plist-member |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1181 prefix-numeric-value previous-window prin1-to-string propertize |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1182 radians-to-degrees rassq rassoc read-from-string regexp-quote |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1183 region-beginning region-end reverse round |
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1184 sin sqrt string string< string= string-equal string-lessp string-to-char |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1185 string-to-int string-to-number substring sxhash symbol-function |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1186 symbol-name symbol-plist symbol-value |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1187 tan truncate |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1188 unibyte-char-to-multibyte upcase user-full-name |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1189 user-login-name user-original-login-name user-variable-p |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1190 vconcat |
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1191 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
|
1192 window-hscroll window-minibuffer-p window-width |
757 | 1193 zerop)) |
1194 (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
|
1195 '(arrayp atom |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1196 bobp bolp bool-vector-p |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1197 buffer-end buffer-list buffer-size buffer-string bufferp |
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1198 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
|
1199 current-buffer current-global-map current-indentation |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1200 current-local-map current-minor-mode-maps current-time |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1201 current-time-string current-time-zone |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1202 eobp eolp eq equal eventp |
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1203 floatp following-char framep |
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1204 get-largest-window get-lru-window |
26941
8584ef89a2bd
Don't put optimization info on `eql'.
Dave Love <fx@gnu.org>
parents:
25621
diff
changeset
|
1205 hash-table-p |
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1206 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
|
1207 invocation-directory invocation-name |
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1208 keymapp |
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1209 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
|
1210 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
|
1211 mouse-movement-p |
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1212 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
|
1213 one-window-p overlayp |
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1214 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
|
1215 recent-keys recursion-depth |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1216 safe-length selected-frame selected-window sequencep |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1217 standard-case-table standard-syntax-table stringp subrp symbolp |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1218 syntax-table syntax-table-p |
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1219 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
|
1220 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
|
1221 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
|
1222 vector vectorp visible-frame-list |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1223 wholenump window-configuration-p window-live-p windowp))) |
757 | 1224 (while side-effect-free-fns |
1225 (put (car side-effect-free-fns) 'side-effect-free t) | |
1226 (setq side-effect-free-fns (cdr side-effect-free-fns))) | |
1227 (while side-effect-and-error-free-fns | |
1228 (put (car side-effect-and-error-free-fns) 'side-effect-free 'error-free) | |
1229 (setq side-effect-and-error-free-fns (cdr side-effect-and-error-free-fns))) | |
1230 nil) | |
1231 | |
1232 | |
1233 (defun byte-compile-splice-in-already-compiled-code (form) | |
1234 ;; form is (byte-code "..." [...] n) | |
1235 (if (not (memq byte-optimize '(t lap))) | |
1236 (byte-compile-normal-call form) | |
1237 (byte-inline-lapcode | |
1238 (byte-decompile-bytecode-1 (nth 1 form) (nth 2 form) t)) | |
1239 (setq byte-compile-maxdepth (max (+ byte-compile-depth (nth 3 form)) | |
1240 byte-compile-maxdepth)) | |
1241 (setq byte-compile-depth (1+ byte-compile-depth)))) | |
1242 | |
1243 (put 'byte-code 'byte-compile 'byte-compile-splice-in-already-compiled-code) | |
1244 | |
1245 | |
1246 (defconst byte-constref-ops | |
1247 '(byte-constant byte-constant2 byte-varref byte-varset byte-varbind)) | |
1248 | |
1249 ;;; This function extracts the bitfields from variable-length opcodes. | |
1250 ;;; Originally defined in disass.el (which no longer uses it.) | |
1251 | |
1252 (defun disassemble-offset () | |
1253 "Don't call this!" | |
1254 ;; fetch and return the offset for the current opcode. | |
42206 | 1255 ;; return nil if this opcode has no offset |
757 | 1256 ;; OP, PTR and BYTES are used and set dynamically |
1257 (defvar op) | |
1258 (defvar ptr) | |
1259 (defvar bytes) | |
1260 (cond ((< op byte-nth) | |
1261 (let ((tem (logand op 7))) | |
1262 (setq op (logand op 248)) | |
1263 (cond ((eq tem 6) | |
1264 (setq ptr (1+ ptr)) ;offset in next byte | |
1265 (aref bytes ptr)) | |
1266 ((eq tem 7) | |
1267 (setq ptr (1+ ptr)) ;offset in next 2 bytes | |
1268 (+ (aref bytes ptr) | |
1269 (progn (setq ptr (1+ ptr)) | |
1270 (lsh (aref bytes ptr) 8)))) | |
1271 (t tem)))) ;offset was in opcode | |
1272 ((>= op byte-constant) | |
1273 (prog1 (- op byte-constant) ;offset in opcode | |
1274 (setq op byte-constant))) | |
1275 ((and (>= op byte-constant2) | |
1276 (<= op byte-goto-if-not-nil-else-pop)) | |
1277 (setq ptr (1+ ptr)) ;offset in next 2 bytes | |
1278 (+ (aref bytes ptr) | |
1279 (progn (setq ptr (1+ ptr)) | |
1280 (lsh (aref bytes ptr) 8)))) | |
848 | 1281 ((and (>= op byte-listN) |
757 | 1282 (<= op byte-insertN)) |
1283 (setq ptr (1+ ptr)) ;offset in next byte | |
1284 (aref bytes ptr)))) | |
1285 | |
1286 | |
1287 ;;; This de-compiler is used for inline expansion of compiled functions, | |
1288 ;;; and by the disassembler. | |
1289 ;;; | |
8292
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1290 ;;; This list contains numbers, which are pc values, |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1291 ;;; before each instruction. |
757 | 1292 (defun byte-decompile-bytecode (bytes constvec) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3138
diff
changeset
|
1293 "Turns BYTECODE into lapcode, referring to CONSTVEC." |
757 | 1294 (let ((byte-compile-constants nil) |
1295 (byte-compile-variables nil) | |
1296 (byte-compile-tag-number 0)) | |
1297 (byte-decompile-bytecode-1 bytes constvec))) | |
1298 | |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1299 ;; As byte-decompile-bytecode, but updates |
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1300 ;; 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
|
1301 ;; 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
|
1302 ;; 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
|
1303 ;; 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
|
1304 ;; 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
|
1305 ;; 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
|
1306 ;; 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
|
1307 (defun byte-decompile-bytecode-1 (bytes constvec &optional make-spliceable) |
757 | 1308 (let ((length (length bytes)) |
1309 (ptr 0) optr tag tags op offset | |
1310 lap tmp | |
1311 endtag | |
1312 (retcount 0)) | |
1313 (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
|
1314 (or make-spliceable |
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1315 (setq lap (cons ptr lap))) |
757 | 1316 (setq op (aref bytes ptr) |
1317 optr ptr | |
1318 offset (disassemble-offset)) ; this does dynamic-scope magic | |
1319 (setq op (aref byte-code-vector op)) | |
848 | 1320 (cond ((memq op byte-goto-ops) |
757 | 1321 ;; it's a pc |
1322 (setq offset | |
1323 (cdr (or (assq offset tags) | |
1324 (car (setq tags | |
1325 (cons (cons offset | |
1326 (byte-compile-make-tag)) | |
1327 tags))))))) | |
1328 ((cond ((eq op 'byte-constant2) (setq op 'byte-constant) t) | |
1329 ((memq op byte-constref-ops))) | |
22074
b52cdd6c996e
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
21590
diff
changeset
|
1330 (setq tmp (if (>= offset (length constvec)) |
b52cdd6c996e
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
21590
diff
changeset
|
1331 (list 'out-of-range offset) |
b52cdd6c996e
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
21590
diff
changeset
|
1332 (aref constvec offset)) |
757 | 1333 offset (if (eq op 'byte-constant) |
1334 (byte-compile-get-constant tmp) | |
1335 (or (assq tmp byte-compile-variables) | |
1336 (car (setq byte-compile-variables | |
1337 (cons (list tmp) | |
1338 byte-compile-variables))))))) | |
8294
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1339 ((and make-spliceable |
757 | 1340 (eq op 'byte-return)) |
1341 (if (= ptr (1- length)) | |
1342 (setq op nil) | |
1343 (setq offset (or endtag (setq endtag (byte-compile-make-tag))) | |
1344 op 'byte-goto)))) | |
1345 ;; lap = ( [ (pc . (op . arg)) ]* ) | |
1346 (setq lap (cons (cons optr (cons op (or offset 0))) | |
1347 lap)) | |
1348 (setq ptr (1+ ptr))) | |
1349 ;; take off the dummy nil op that we replaced a trailing "return" with. | |
1350 (let ((rest lap)) | |
1351 (while rest | |
8292
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1352 (cond ((numberp (car rest))) |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1353 ((setq tmp (assq (car (car rest)) tags)) |
757 | 1354 ;; this addr is jumped to |
1355 (setcdr rest (cons (cons nil (cdr tmp)) | |
1356 (cdr rest))) | |
1357 (setq tags (delq tmp tags)) | |
1358 (setq rest (cdr rest)))) | |
1359 (setq rest (cdr rest)))) | |
1360 (if tags (error "optimizer error: missed tags %s" tags)) | |
1361 (if (null (car (cdr (car lap)))) | |
1362 (setq lap (cdr lap))) | |
1363 (if endtag | |
1364 (setq lap (cons (cons nil endtag) lap))) | |
1365 ;; remove addrs, lap = ( [ (op . arg) | (TAG tagno) ]* ) | |
8292
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1366 (mapcar (function (lambda (elt) |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1367 (if (numberp elt) |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1368 elt |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1369 (cdr elt)))) |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1370 (nreverse lap)))) |
757 | 1371 |
1372 | |
1373 ;;; peephole optimizer | |
1374 | |
1375 (defconst byte-tagref-ops (cons 'TAG byte-goto-ops)) | |
1376 | |
1377 (defconst byte-conditional-ops | |
1378 '(byte-goto-if-nil byte-goto-if-not-nil byte-goto-if-nil-else-pop | |
1379 byte-goto-if-not-nil-else-pop)) | |
1380 | |
1381 (defconst byte-after-unbind-ops | |
1382 '(byte-constant byte-dup | |
1383 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
|
1384 byte-eq byte-not |
757 | 1385 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
|
1386 byte-interactive-p) |
3cca823100db
(byte-after-unbind-ops): Fix paren error wrt doc string.
Richard M. Stallman <rms@gnu.org>
parents:
8294
diff
changeset
|
1387 ;; 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
|
1388 ;; 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
|
1389 ;; 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
|
1390 ;; 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
|
1391 ;; 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
|
1392 "Byte-codes that can be moved past an unbind.") |
757 | 1393 |
1394 (defconst byte-compile-side-effect-and-error-free-ops | |
1395 '(byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp | |
1396 byte-integerp byte-numberp byte-eq byte-equal byte-not byte-car-safe | |
1397 byte-cdr-safe byte-cons byte-list1 byte-list2 byte-point byte-point-max | |
1398 byte-point-min byte-following-char byte-preceding-char | |
1399 byte-current-column byte-eolp byte-eobp byte-bolp byte-bobp | |
1400 byte-current-buffer byte-interactive-p)) | |
1401 | |
1402 (defconst byte-compile-side-effect-free-ops | |
1403 (nconc | |
1404 '(byte-varref byte-nth byte-memq byte-car byte-cdr byte-length byte-aref | |
1405 byte-symbol-value byte-get byte-concat2 byte-concat3 byte-sub1 byte-add1 | |
1406 byte-eqlsign byte-gtr byte-lss byte-leq byte-geq byte-diff byte-negate | |
1407 byte-plus byte-max byte-min byte-mult byte-char-after byte-char-syntax | |
1408 byte-buffer-substring byte-string= byte-string< byte-nthcdr byte-elt | |
1409 byte-member byte-assq byte-quo byte-rem) | |
1410 byte-compile-side-effect-and-error-free-ops)) | |
1411 | |
14641 | 1412 ;;; This crock is because of the way DEFVAR_BOOL variables work. |
757 | 1413 ;;; Consider the code |
1414 ;;; | |
1415 ;;; (defun foo (flag) | |
1416 ;;; (let ((old-pop-ups pop-up-windows) | |
1417 ;;; (pop-up-windows flag)) | |
1418 ;;; (cond ((not (eq pop-up-windows old-pop-ups)) | |
1419 ;;; (setq old-pop-ups pop-up-windows) | |
1420 ;;; ...)))) | |
1421 ;;; | |
1422 ;;; Uncompiled, old-pop-ups will always be set to nil or t, even if FLAG is | |
1423 ;;; something else. But if we optimize | |
1424 ;;; | |
1425 ;;; varref flag | |
1426 ;;; varbind pop-up-windows | |
1427 ;;; varref pop-up-windows | |
1428 ;;; not | |
1429 ;;; to | |
1430 ;;; varref flag | |
1431 ;;; dup | |
1432 ;;; varbind pop-up-windows | |
1433 ;;; not | |
1434 ;;; | |
1435 ;;; we break the program, because it will appear that pop-up-windows and | |
1436 ;;; old-pop-ups are not EQ when really they are. So we have to know what | |
1437 ;;; 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
|
1438 |
5eb4b90c57b0
(byte-boolean-vars): Removed. (Now primitive.)
Dave Love <fx@gnu.org>
parents:
25471
diff
changeset
|
1439 ;;; 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
|
1440 ;;; automatically by DEFVAR_BOOL. |
757 | 1441 |
1442 (defun byte-optimize-lapcode (lap &optional for-effect) | |
1443 "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
|
1444 (let (lap0 |
038a08ffb9f8
(byte-optimize-lapcode): Don't bind
Dave Love <fx@gnu.org>
parents:
29580
diff
changeset
|
1445 lap1 |
038a08ffb9f8
(byte-optimize-lapcode): Don't bind
Dave Love <fx@gnu.org>
parents:
29580
diff
changeset
|
1446 lap2 |
757 | 1447 (keep-going 'first-time) |
1448 (add-depth 0) | |
1449 rest tmp tmp2 tmp3 | |
1450 (side-effect-free (if byte-compile-delete-errors | |
1451 byte-compile-side-effect-free-ops | |
1452 byte-compile-side-effect-and-error-free-ops))) | |
1453 (while keep-going | |
1454 (or (eq keep-going 'first-time) | |
1455 (byte-compile-log-lap " ---- next pass")) | |
1456 (setq rest lap | |
1457 keep-going nil) | |
1458 (while rest | |
1459 (setq lap0 (car rest) | |
1460 lap1 (nth 1 rest) | |
1461 lap2 (nth 2 rest)) | |
1462 | |
1463 ;; You may notice that sequences like "dup varset discard" are | |
1464 ;; optimized but sequences like "dup varset TAG1: discard" are not. | |
1465 ;; You may be tempted to change this; resist that temptation. | |
1466 (cond ;; | |
1467 ;; <side-effect-free> pop --> <deleted> | |
1468 ;; ...including: | |
1469 ;; const-X pop --> <deleted> | |
1470 ;; varref-X pop --> <deleted> | |
1471 ;; dup pop --> <deleted> | |
1472 ;; | |
1473 ((and (eq 'byte-discard (car lap1)) | |
1474 (memq (car lap0) side-effect-free)) | |
1475 (setq keep-going t) | |
1476 (setq tmp (aref byte-stack+-info (symbol-value (car lap0)))) | |
1477 (setq rest (cdr rest)) | |
1478 (cond ((= tmp 1) | |
1479 (byte-compile-log-lap | |
1480 " %s discard\t-->\t<deleted>" lap0) | |
1481 (setq lap (delq lap0 (delq lap1 lap)))) | |
1482 ((= tmp 0) | |
1483 (byte-compile-log-lap | |
1484 " %s discard\t-->\t<deleted> discard" lap0) | |
1485 (setq lap (delq lap0 lap))) | |
1486 ((= tmp -1) | |
1487 (byte-compile-log-lap | |
1488 " %s discard\t-->\tdiscard discard" lap0) | |
1489 (setcar lap0 'byte-discard) | |
1490 (setcdr lap0 0)) | |
1491 ((error "Optimizer error: too much on the stack")))) | |
1492 ;; | |
1493 ;; goto*-X X: --> X: | |
1494 ;; | |
1495 ((and (memq (car lap0) byte-goto-ops) | |
1496 (eq (cdr lap0) lap1)) | |
1497 (cond ((eq (car lap0) 'byte-goto) | |
1498 (setq lap (delq lap0 lap)) | |
1499 (setq tmp "<deleted>")) | |
1500 ((memq (car lap0) byte-goto-always-pop-ops) | |
1501 (setcar lap0 (setq tmp 'byte-discard)) | |
1502 (setcdr lap0 0)) | |
1503 ((error "Depth conflict at tag %d" (nth 2 lap0)))) | |
1504 (and (memq byte-optimize-log '(t byte)) | |
1505 (byte-compile-log " (goto %s) %s:\t-->\t%s %s:" | |
1506 (nth 1 lap1) (nth 1 lap1) | |
1507 tmp (nth 1 lap1))) | |
1508 (setq keep-going t)) | |
1509 ;; | |
1510 ;; varset-X varref-X --> dup varset-X | |
1511 ;; varbind-X varref-X --> dup varbind-X | |
1512 ;; const/dup varset-X varref-X --> const/dup varset-X const/dup | |
1513 ;; const/dup varbind-X varref-X --> const/dup varbind-X const/dup | |
1514 ;; The latter two can enable other optimizations. | |
1515 ;; | |
1516 ((and (eq 'byte-varref (car lap2)) | |
1517 (eq (cdr lap1) (cdr lap2)) | |
1518 (memq (car lap1) '(byte-varset byte-varbind))) | |
1519 (if (and (setq tmp (memq (car (cdr lap2)) byte-boolean-vars)) | |
1520 (not (eq (car lap0) 'byte-constant))) | |
1521 nil | |
1522 (setq keep-going t) | |
1523 (if (memq (car lap0) '(byte-constant byte-dup)) | |
1524 (progn | |
1525 (setq tmp (if (or (not tmp) | |
27823 | 1526 (byte-compile-const-symbol-p |
1527 (car (cdr lap0)))) | |
757 | 1528 (cdr lap0) |
1529 (byte-compile-get-constant t))) | |
1530 (byte-compile-log-lap " %s %s %s\t-->\t%s %s %s" | |
1531 lap0 lap1 lap2 lap0 lap1 | |
1532 (cons (car lap0) tmp)) | |
1533 (setcar lap2 (car lap0)) | |
1534 (setcdr lap2 tmp)) | |
1535 (byte-compile-log-lap " %s %s\t-->\tdup %s" lap1 lap2 lap1) | |
1536 (setcar lap2 (car lap1)) | |
1537 (setcar lap1 'byte-dup) | |
1538 (setcdr lap1 0) | |
1539 ;; The stack depth gets locally increased, so we will | |
1540 ;; increase maxdepth in case depth = maxdepth here. | |
1541 ;; This can cause the third argument to byte-code to | |
1542 ;; be larger than necessary. | |
1543 (setq add-depth 1)))) | |
1544 ;; | |
1545 ;; dup varset-X discard --> varset-X | |
1546 ;; dup varbind-X discard --> varbind-X | |
1547 ;; (the varbind variant can emerge from other optimizations) | |
1548 ;; | |
1549 ((and (eq 'byte-dup (car lap0)) | |
1550 (eq 'byte-discard (car lap2)) | |
1551 (memq (car lap1) '(byte-varset byte-varbind))) | |
1552 (byte-compile-log-lap " dup %s discard\t-->\t%s" lap1 lap1) | |
1553 (setq keep-going t | |
1554 rest (cdr rest)) | |
1555 (setq lap (delq lap0 (delq lap2 lap)))) | |
1556 ;; | |
1557 ;; not goto-X-if-nil --> goto-X-if-non-nil | |
1558 ;; not goto-X-if-non-nil --> goto-X-if-nil | |
1559 ;; | |
1560 ;; it is wrong to do the same thing for the -else-pop variants. | |
1561 ;; | |
1562 ((and (eq 'byte-not (car lap0)) | |
1563 (or (eq 'byte-goto-if-nil (car lap1)) | |
1564 (eq 'byte-goto-if-not-nil (car lap1)))) | |
1565 (byte-compile-log-lap " not %s\t-->\t%s" | |
1566 lap1 | |
1567 (cons | |
1568 (if (eq (car lap1) 'byte-goto-if-nil) | |
1569 'byte-goto-if-not-nil | |
1570 'byte-goto-if-nil) | |
1571 (cdr lap1))) | |
1572 (setcar lap1 (if (eq (car lap1) 'byte-goto-if-nil) | |
1573 'byte-goto-if-not-nil | |
1574 'byte-goto-if-nil)) | |
1575 (setq lap (delq lap0 lap)) | |
1576 (setq keep-going t)) | |
1577 ;; | |
1578 ;; goto-X-if-nil goto-Y X: --> goto-Y-if-non-nil X: | |
1579 ;; goto-X-if-non-nil goto-Y X: --> goto-Y-if-nil X: | |
1580 ;; | |
1581 ;; it is wrong to do the same thing for the -else-pop variants. | |
1582 ;; | |
1583 ((and (or (eq 'byte-goto-if-nil (car lap0)) | |
1584 (eq 'byte-goto-if-not-nil (car lap0))) ; gotoX | |
1585 (eq 'byte-goto (car lap1)) ; gotoY | |
1586 (eq (cdr lap0) lap2)) ; TAG X | |
1587 (let ((inverse (if (eq 'byte-goto-if-nil (car lap0)) | |
1588 'byte-goto-if-not-nil 'byte-goto-if-nil))) | |
1589 (byte-compile-log-lap " %s %s %s:\t-->\t%s %s:" | |
1590 lap0 lap1 lap2 | |
1591 (cons inverse (cdr lap1)) lap2) | |
1592 (setq lap (delq lap0 lap)) | |
1593 (setcar lap1 inverse) | |
1594 (setq keep-going t))) | |
1595 ;; | |
1596 ;; const goto-if-* --> whatever | |
1597 ;; | |
1598 ((and (eq 'byte-constant (car lap0)) | |
1599 (memq (car lap1) byte-conditional-ops)) | |
1600 (cond ((if (or (eq (car lap1) 'byte-goto-if-nil) | |
1601 (eq (car lap1) 'byte-goto-if-nil-else-pop)) | |
1602 (car (cdr lap0)) | |
1603 (not (car (cdr lap0)))) | |
1604 (byte-compile-log-lap " %s %s\t-->\t<deleted>" | |
1605 lap0 lap1) | |
1606 (setq rest (cdr rest) | |
1607 lap (delq lap0 (delq lap1 lap)))) | |
1608 (t | |
1609 (if (memq (car lap1) byte-goto-always-pop-ops) | |
1610 (progn | |
1611 (byte-compile-log-lap " %s %s\t-->\t%s" | |
1612 lap0 lap1 (cons 'byte-goto (cdr lap1))) | |
1613 (setq lap (delq lap0 lap))) | |
1614 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1 | |
1615 (cons 'byte-goto (cdr lap1)))) | |
1616 (setcar lap1 'byte-goto))) | |
1617 (setq keep-going t)) | |
1618 ;; | |
1619 ;; varref-X varref-X --> varref-X dup | |
1620 ;; varref-X [dup ...] varref-X --> varref-X [dup ...] dup | |
1621 ;; We don't optimize the const-X variations on this here, | |
1622 ;; because that would inhibit some goto optimizations; we | |
1623 ;; optimize the const-X case after all other optimizations. | |
1624 ;; | |
1625 ((and (eq 'byte-varref (car lap0)) | |
1626 (progn | |
1627 (setq tmp (cdr rest)) | |
1628 (while (eq (car (car tmp)) 'byte-dup) | |
1629 (setq tmp (cdr tmp))) | |
1630 t) | |
1631 (eq (cdr lap0) (cdr (car tmp))) | |
1632 (eq 'byte-varref (car (car tmp)))) | |
1633 (if (memq byte-optimize-log '(t byte)) | |
1634 (let ((str "")) | |
1635 (setq tmp2 (cdr rest)) | |
1636 (while (not (eq tmp tmp2)) | |
1637 (setq tmp2 (cdr tmp2) | |
1638 str (concat str " dup"))) | |
1639 (byte-compile-log-lap " %s%s %s\t-->\t%s%s dup" | |
1640 lap0 str lap0 lap0 str))) | |
1641 (setq keep-going t) | |
1642 (setcar (car tmp) 'byte-dup) | |
1643 (setcdr (car tmp) 0) | |
1644 (setq rest tmp)) | |
1645 ;; | |
1646 ;; TAG1: TAG2: --> TAG1: <deleted> | |
1647 ;; (and other references to TAG2 are replaced with TAG1) | |
1648 ;; | |
1649 ((and (eq (car lap0) 'TAG) | |
1650 (eq (car lap1) 'TAG)) | |
1651 (and (memq byte-optimize-log '(t byte)) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3138
diff
changeset
|
1652 (byte-compile-log " adjacent tags %d and %d merged" |
757 | 1653 (nth 1 lap1) (nth 1 lap0))) |
1654 (setq tmp3 lap) | |
1655 (while (setq tmp2 (rassq lap0 tmp3)) | |
1656 (setcdr tmp2 lap1) | |
1657 (setq tmp3 (cdr (memq tmp2 tmp3)))) | |
1658 (setq lap (delq lap0 lap) | |
1659 keep-going t)) | |
1660 ;; | |
1661 ;; unused-TAG: --> <deleted> | |
1662 ;; | |
1663 ((and (eq 'TAG (car lap0)) | |
1664 (not (rassq lap0 lap))) | |
1665 (and (memq byte-optimize-log '(t byte)) | |
1666 (byte-compile-log " unused tag %d removed" (nth 1 lap0))) | |
1667 (setq lap (delq lap0 lap) | |
1668 keep-going t)) | |
1669 ;; | |
1670 ;; goto ... --> goto <delete until TAG or end> | |
1671 ;; return ... --> return <delete until TAG or end> | |
1672 ;; | |
1673 ((and (memq (car lap0) '(byte-goto byte-return)) | |
1674 (not (memq (car lap1) '(TAG nil)))) | |
1675 (setq tmp rest) | |
1676 (let ((i 0) | |
1677 (opt-p (memq byte-optimize-log '(t lap))) | |
1678 str deleted) | |
1679 (while (and (setq tmp (cdr tmp)) | |
1680 (not (eq 'TAG (car (car tmp))))) | |
1681 (if opt-p (setq deleted (cons (car tmp) deleted) | |
1682 str (concat str " %s") | |
1683 i (1+ i)))) | |
1684 (if opt-p | |
1685 (let ((tagstr | |
1686 (if (eq 'TAG (car (car tmp))) | |
12638
4adf53113ec9
(byte-optimize-lapcode): Fix format calls.
Richard M. Stallman <rms@gnu.org>
parents:
12550
diff
changeset
|
1687 (format "%d:" (car (cdr (car tmp)))) |
757 | 1688 (or (car tmp) "")))) |
1689 (if (< i 6) | |
1690 (apply 'byte-compile-log-lap-1 | |
1691 (concat " %s" str | |
1692 " %s\t-->\t%s <deleted> %s") | |
1693 lap0 | |
1694 (nconc (nreverse deleted) | |
1695 (list tagstr lap0 tagstr))) | |
1696 (byte-compile-log-lap | |
1697 " %s <%d unreachable op%s> %s\t-->\t%s <deleted> %s" | |
1698 lap0 i (if (= i 1) "" "s") | |
1699 tagstr lap0 tagstr)))) | |
1700 (rplacd rest tmp)) | |
1701 (setq keep-going t)) | |
1702 ;; | |
1703 ;; <safe-op> unbind --> unbind <safe-op> | |
1704 ;; (this may enable other optimizations.) | |
1705 ;; | |
1706 ((and (eq 'byte-unbind (car lap1)) | |
1707 (memq (car lap0) byte-after-unbind-ops)) | |
1708 (byte-compile-log-lap " %s %s\t-->\t%s %s" lap0 lap1 lap1 lap0) | |
1709 (setcar rest lap1) | |
1710 (setcar (cdr rest) lap0) | |
1711 (setq keep-going t)) | |
1712 ;; | |
1713 ;; varbind-X unbind-N --> discard unbind-(N-1) | |
1714 ;; save-excursion unbind-N --> unbind-(N-1) | |
1715 ;; save-restriction unbind-N --> unbind-(N-1) | |
1716 ;; | |
1717 ((and (eq 'byte-unbind (car lap1)) | |
1718 (memq (car lap0) '(byte-varbind byte-save-excursion | |
1719 byte-save-restriction)) | |
1720 (< 0 (cdr lap1))) | |
1721 (if (zerop (setcdr lap1 (1- (cdr lap1)))) | |
1722 (delq lap1 rest)) | |
1723 (if (eq (car lap0) 'byte-varbind) | |
1724 (setcar rest (cons 'byte-discard 0)) | |
1725 (setq lap (delq lap0 lap))) | |
1726 (byte-compile-log-lap " %s %s\t-->\t%s %s" | |
1727 lap0 (cons (car lap1) (1+ (cdr lap1))) | |
1728 (if (eq (car lap0) 'byte-varbind) | |
1729 (car rest) | |
1730 (car (cdr rest))) | |
1731 (if (and (/= 0 (cdr lap1)) | |
1732 (eq (car lap0) 'byte-varbind)) | |
1733 (car (cdr rest)) | |
1734 "")) | |
1735 (setq keep-going t)) | |
1736 ;; | |
1737 ;; goto*-X ... X: goto-Y --> goto*-Y | |
1738 ;; goto-X ... X: return --> return | |
1739 ;; | |
1740 ((and (memq (car lap0) byte-goto-ops) | |
1741 (memq (car (setq tmp (nth 1 (memq (cdr lap0) lap)))) | |
1742 '(byte-goto byte-return))) | |
1743 (cond ((and (not (eq tmp lap0)) | |
1744 (or (eq (car lap0) 'byte-goto) | |
1745 (eq (car tmp) 'byte-goto))) | |
1746 (byte-compile-log-lap " %s [%s]\t-->\t%s" | |
1747 (car lap0) tmp tmp) | |
1748 (if (eq (car tmp) 'byte-return) | |
1749 (setcar lap0 'byte-return)) | |
1750 (setcdr lap0 (cdr tmp)) | |
1751 (setq keep-going t)))) | |
1752 ;; | |
1753 ;; goto-*-else-pop X ... X: goto-if-* --> whatever | |
1754 ;; goto-*-else-pop X ... X: discard --> whatever | |
1755 ;; | |
1756 ((and (memq (car lap0) '(byte-goto-if-nil-else-pop | |
1757 byte-goto-if-not-nil-else-pop)) | |
1758 (memq (car (car (setq tmp (cdr (memq (cdr lap0) lap))))) | |
1759 (eval-when-compile | |
1760 (cons 'byte-discard byte-conditional-ops))) | |
1761 (not (eq lap0 (car tmp)))) | |
1762 (setq tmp2 (car tmp)) | |
1763 (setq tmp3 (assq (car lap0) '((byte-goto-if-nil-else-pop | |
1764 byte-goto-if-nil) | |
1765 (byte-goto-if-not-nil-else-pop | |
1766 byte-goto-if-not-nil)))) | |
1767 (if (memq (car tmp2) tmp3) | |
1768 (progn (setcar lap0 (car tmp2)) | |
1769 (setcdr lap0 (cdr tmp2)) | |
1770 (byte-compile-log-lap " %s-else-pop [%s]\t-->\t%s" | |
1771 (car lap0) tmp2 lap0)) | |
1772 ;; Get rid of the -else-pop's and jump one step further. | |
1773 (or (eq 'TAG (car (nth 1 tmp))) | |
1774 (setcdr tmp (cons (byte-compile-make-tag) | |
1775 (cdr tmp)))) | |
1776 (byte-compile-log-lap " %s [%s]\t-->\t%s <skip>" | |
1777 (car lap0) tmp2 (nth 1 tmp3)) | |
1778 (setcar lap0 (nth 1 tmp3)) | |
1779 (setcdr lap0 (nth 1 tmp))) | |
1780 (setq keep-going t)) | |
1781 ;; | |
1782 ;; const goto-X ... X: goto-if-* --> whatever | |
1783 ;; const goto-X ... X: discard --> whatever | |
1784 ;; | |
1785 ((and (eq (car lap0) 'byte-constant) | |
1786 (eq (car lap1) 'byte-goto) | |
1787 (memq (car (car (setq tmp (cdr (memq (cdr lap1) lap))))) | |
1788 (eval-when-compile | |
1789 (cons 'byte-discard byte-conditional-ops))) | |
1790 (not (eq lap1 (car tmp)))) | |
1791 (setq tmp2 (car tmp)) | |
1792 (cond ((memq (car tmp2) | |
1793 (if (null (car (cdr lap0))) | |
1794 '(byte-goto-if-nil byte-goto-if-nil-else-pop) | |
1795 '(byte-goto-if-not-nil | |
1796 byte-goto-if-not-nil-else-pop))) | |
1797 (byte-compile-log-lap " %s goto [%s]\t-->\t%s %s" | |
1798 lap0 tmp2 lap0 tmp2) | |
1799 (setcar lap1 (car tmp2)) | |
1800 (setcdr lap1 (cdr tmp2)) | |
1801 ;; Let next step fix the (const,goto-if*) sequence. | |
1802 (setq rest (cons nil rest))) | |
1803 (t | |
1804 ;; Jump one step further | |
1805 (byte-compile-log-lap | |
1806 " %s goto [%s]\t-->\t<deleted> goto <skip>" | |
1807 lap0 tmp2) | |
1808 (or (eq 'TAG (car (nth 1 tmp))) | |
1809 (setcdr tmp (cons (byte-compile-make-tag) | |
1810 (cdr tmp)))) | |
1811 (setcdr lap1 (car (cdr tmp))) | |
1812 (setq lap (delq lap0 lap)))) | |
1813 (setq keep-going t)) | |
1814 ;; | |
1815 ;; X: varref-Y ... varset-Y goto-X --> | |
1816 ;; X: varref-Y Z: ... dup varset-Y goto-Z | |
1817 ;; (varset-X goto-BACK, BACK: varref-X --> copy the varref down.) | |
1818 ;; (This is so usual for while loops that it is worth handling). | |
1819 ;; | |
1820 ((and (eq (car lap1) 'byte-varset) | |
1821 (eq (car lap2) 'byte-goto) | |
1822 (not (memq (cdr lap2) rest)) ;Backwards jump | |
1823 (eq (car (car (setq tmp (cdr (memq (cdr lap2) lap))))) | |
1824 'byte-varref) | |
1825 (eq (cdr (car tmp)) (cdr lap1)) | |
1826 (not (memq (car (cdr lap1)) byte-boolean-vars))) | |
1827 ;;(byte-compile-log-lap " Pulled %s to end of loop" (car tmp)) | |
1828 (let ((newtag (byte-compile-make-tag))) | |
1829 (byte-compile-log-lap | |
1830 " %s: %s ... %s %s\t-->\t%s: %s %s: ... %s %s %s" | |
1831 (nth 1 (cdr lap2)) (car tmp) | |
1832 lap1 lap2 | |
1833 (nth 1 (cdr lap2)) (car tmp) | |
1834 (nth 1 newtag) 'byte-dup lap1 | |
1835 (cons 'byte-goto newtag) | |
1836 ) | |
1837 (setcdr rest (cons (cons 'byte-dup 0) (cdr rest))) | |
1838 (setcdr tmp (cons (setcdr lap2 newtag) (cdr tmp)))) | |
1839 (setq add-depth 1) | |
1840 (setq keep-going t)) | |
1841 ;; | |
1842 ;; goto-X Y: ... X: goto-if*-Y --> goto-if-not-*-X+1 Y: | |
1843 ;; (This can pull the loop test to the end of the loop) | |
1844 ;; | |
1845 ((and (eq (car lap0) 'byte-goto) | |
1846 (eq (car lap1) 'TAG) | |
1847 (eq lap1 | |
1848 (cdr (car (setq tmp (cdr (memq (cdr lap0) lap)))))) | |
1849 (memq (car (car tmp)) | |
1850 '(byte-goto byte-goto-if-nil byte-goto-if-not-nil | |
1851 byte-goto-if-nil-else-pop))) | |
1852 ;; (byte-compile-log-lap " %s %s, %s %s --> moved conditional" | |
1853 ;; lap0 lap1 (cdr lap0) (car tmp)) | |
1854 (let ((newtag (byte-compile-make-tag))) | |
1855 (byte-compile-log-lap | |
1856 "%s %s: ... %s: %s\t-->\t%s ... %s:" | |
1857 lap0 (nth 1 lap1) (nth 1 (cdr lap0)) (car tmp) | |
1858 (cons (cdr (assq (car (car tmp)) | |
1859 '((byte-goto-if-nil . byte-goto-if-not-nil) | |
1860 (byte-goto-if-not-nil . byte-goto-if-nil) | |
1861 (byte-goto-if-nil-else-pop . | |
1862 byte-goto-if-not-nil-else-pop) | |
1863 (byte-goto-if-not-nil-else-pop . | |
1864 byte-goto-if-nil-else-pop)))) | |
1865 newtag) | |
1866 | |
1867 (nth 1 newtag) | |
1868 ) | |
1869 (setcdr tmp (cons (setcdr lap0 newtag) (cdr tmp))) | |
1870 (if (eq (car (car tmp)) 'byte-goto-if-nil-else-pop) | |
1871 ;; We can handle this case but not the -if-not-nil case, | |
1872 ;; because we won't know which non-nil constant to push. | |
1873 (setcdr rest (cons (cons 'byte-constant | |
1874 (byte-compile-get-constant nil)) | |
1875 (cdr rest)))) | |
1876 (setcar lap0 (nth 1 (memq (car (car tmp)) | |
1877 '(byte-goto-if-nil-else-pop | |
1878 byte-goto-if-not-nil | |
1879 byte-goto-if-nil | |
1880 byte-goto-if-not-nil | |
1881 byte-goto byte-goto)))) | |
1882 ) | |
1883 (setq keep-going t)) | |
1884 ) | |
1885 (setq rest (cdr rest))) | |
1886 ) | |
1887 ;; Cleanup stage: | |
1888 ;; Rebuild byte-compile-constants / byte-compile-variables. | |
1889 ;; Simple optimizations that would inhibit other optimizations if they | |
1890 ;; were done in the optimizing loop, and optimizations which there is no | |
1891 ;; need to do more than once. | |
1892 (setq byte-compile-constants nil | |
1893 byte-compile-variables nil) | |
1894 (setq rest lap) | |
1895 (while rest | |
1896 (setq lap0 (car rest) | |
1897 lap1 (nth 1 rest)) | |
1898 (if (memq (car lap0) byte-constref-ops) | |
39777 | 1899 (if (or (eq (car lap0) 'byte-constant) |
1900 (eq (car lap0) 'byte-constant2)) | |
1901 (unless (memq (cdr lap0) byte-compile-constants) | |
757 | 1902 (setq byte-compile-constants (cons (cdr lap0) |
39777 | 1903 byte-compile-constants))) |
1904 (unless (memq (cdr lap0) byte-compile-variables) | |
1905 (setq byte-compile-variables (cons (cdr lap0) | |
1906 byte-compile-variables))))) | |
757 | 1907 (cond (;; |
1908 ;; const-C varset-X const-C --> const-C dup varset-X | |
1909 ;; const-C varbind-X const-C --> const-C dup varbind-X | |
1910 ;; | |
1911 (and (eq (car lap0) 'byte-constant) | |
1912 (eq (car (nth 2 rest)) 'byte-constant) | |
39777 | 1913 (eq (cdr lap0) (cdr (nth 2 rest))) |
757 | 1914 (memq (car lap1) '(byte-varbind byte-varset))) |
1915 (byte-compile-log-lap " %s %s %s\t-->\t%s dup %s" | |
1916 lap0 lap1 lap0 lap0 lap1) | |
1917 (setcar (cdr (cdr rest)) (cons (car lap1) (cdr lap1))) | |
1918 (setcar (cdr rest) (cons 'byte-dup 0)) | |
1919 (setq add-depth 1)) | |
1920 ;; | |
1921 ;; const-X [dup/const-X ...] --> const-X [dup ...] dup | |
1922 ;; varref-X [dup/varref-X ...] --> varref-X [dup ...] dup | |
1923 ;; | |
1924 ((memq (car lap0) '(byte-constant byte-varref)) | |
1925 (setq tmp rest | |
1926 tmp2 nil) | |
1927 (while (progn | |
1928 (while (eq 'byte-dup (car (car (setq tmp (cdr tmp)))))) | |
1929 (and (eq (cdr lap0) (cdr (car tmp))) | |
1930 (eq (car lap0) (car (car tmp))))) | |
1931 (setcar tmp (cons 'byte-dup 0)) | |
1932 (setq tmp2 t)) | |
1933 (if tmp2 | |
1934 (byte-compile-log-lap | |
12638
4adf53113ec9
(byte-optimize-lapcode): Fix format calls.
Richard M. Stallman <rms@gnu.org>
parents:
12550
diff
changeset
|
1935 " %s [dup/%s]...\t-->\t%s dup..." lap0 lap0 lap0))) |
757 | 1936 ;; |
1937 ;; unbind-N unbind-M --> unbind-(N+M) | |
1938 ;; | |
1939 ((and (eq 'byte-unbind (car lap0)) | |
1940 (eq 'byte-unbind (car lap1))) | |
1941 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1 | |
1942 (cons 'byte-unbind | |
1943 (+ (cdr lap0) (cdr lap1)))) | |
1944 (setq keep-going t) | |
1945 (setq lap (delq lap0 lap)) | |
1946 (setcdr lap1 (+ (cdr lap1) (cdr lap0)))) | |
1947 ) | |
1948 (setq rest (cdr rest))) | |
1949 (setq byte-compile-maxdepth (+ byte-compile-maxdepth add-depth))) | |
1950 lap) | |
1951 | |
25231
b587c4aeff78
Provide `byte-optimize', not `byte-opt'.
Karl Heuer <kwzh@gnu.org>
parents:
24734
diff
changeset
|
1952 (provide 'byte-opt) |
757 | 1953 |
1954 | |
1955 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when this file compiles | |
1956 ;; itself, compile some of its most used recursive functions (at load time). | |
1957 ;; | |
1958 (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
|
1959 (or (byte-code-function-p (symbol-function 'byte-optimize-form)) |
757 | 1960 (assq 'byte-code (symbol-function 'byte-optimize-form)) |
1961 (let ((byte-optimize nil) | |
1962 (byte-compile-warnings nil)) | |
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1963 (mapcar (lambda (x) |
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1964 (or noninteractive (message "compiling %s..." x)) |
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1965 (byte-compile x) |
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1966 (or noninteractive (message "compiling %s...done" x))) |
757 | 1967 '(byte-optimize-form |
1968 byte-optimize-body | |
1969 byte-optimize-predicate | |
1970 byte-optimize-binary-predicate | |
1971 ;; Inserted some more than necessary, to speed it up. | |
1972 byte-optimize-form-code-walker | |
1973 byte-optimize-lapcode)))) | |
1974 nil) | |
848 | 1975 |
1976 ;;; byte-opt.el ends here |