Mercurial > emacs
annotate lisp/emacs-lisp/byte-opt.el @ 110028:2547676f6961
smiley-regexp-alist: Don't delete the semicolon before the blinking smiley by Miles Bader <miles@gnu.org>; Disallow ;;) from being treated as a blink smiley by Simon Josefsson <simon@josefsson.org>.
2009-03-24 Miles Bader <miles@gnu.org>
* smiley.el (smiley-regexp-alist): Don't delete the semicolon before
the blinking smiley.
2009-03-24 Simon Josefsson <simon@josefsson.org>
* smiley.el (smiley-regexp-alist): Disallow ;;) from being treated as a
blink smiley.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Mon, 30 Aug 2010 06:28:53 +0000 |
parents | 280c8ae2476d |
children | 6a7fb61524be |
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 |
104914
1a8afcc5fb20
(degrees-to-radians): Mark as free from side effects.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
3 ;; Copyright (C) 1991, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006, |
106815 | 4 ;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
848 | 5 |
6 ;; Author: Jamie Zawinski <jwz@lucid.com> | |
7 ;; Hallvard Furuseth <hbf@ulrik.uio.no> | |
27823 | 8 ;; Maintainer: FSF |
848 | 9 ;; Keywords: internal |
110015
280c8ae2476d
Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
10 ;; Package: emacs |
757 | 11 |
12 ;; This file is part of GNU Emacs. | |
13 | |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93209
diff
changeset
|
14 ;; GNU Emacs is free software: you can redistribute it and/or modify |
757 | 15 ;; it under the terms of the GNU General Public License as published by |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93209
diff
changeset
|
16 ;; the Free Software Foundation, either version 3 of the License, or |
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93209
diff
changeset
|
17 ;; (at your option) any later version. |
757 | 18 |
19 ;; GNU Emacs is distributed in the hope that it will be useful, | |
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93209
diff
changeset
|
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
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 ;; | |
82790
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
33 ;; Or, to put it another way, the Emacs byte compiler is a VW Bug. This code |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
34 ;; makes it be a VW Bug with fuel injection and a turbocharger... You're |
14169 | 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 ...)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
65 ;; It would be nice if we could optimize this to |
14169 | 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 ;; | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
71 ;; Maybe there should be a control-structure that says "turn on |
14169 | 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. | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
75 ;; But, this won't win much because of (you guessed it) dynamic |
14169 | 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" | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
110 ;; byte-op between the final "call" and "return." Adding a |
14169 | 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 ;; | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
132 ;; Idea: the form (lexical-scope) in a file means that the file may be |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
133 ;; compiled lexically. This proclamation is file-local. Then, within |
14169 | 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 ;; | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
143 ;; A major disadvantage of this scheme is that the interpreter and compiler |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
144 ;; would have different semantics for files compiled with (dynamic-scope). |
14169 | 145 ;; Since this would be a file-local optimization, there would be no way to |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
146 ;; modify the interpreter to obey this (unless the loader was hacked |
14169 | 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 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
151 ;; ;; Associative math should recognize subcalls to identical function: |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
152 ;; (disassemble (lambda (x) (+ (+ (foo) 1) (+ (bar) 2)))) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
153 ;; ;; This should generate the same as (1+ x) and (1- x) |
63625
9be013ed306d
(byte-optimize-pure-func): Fix spellings.
Juanma Barranquero <lekktu@gmail.com>
parents:
58490
diff
changeset
|
154 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
155 ;; (disassemble (lambda (x) (cons (+ x 1) (- x 1)))) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
156 ;; ;; An awful lot of functions always return a non-nil value. If they're |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
157 ;; ;; error free also they may act as true-constants. |
63625
9be013ed306d
(byte-optimize-pure-func): Fix spellings.
Juanma Barranquero <lekktu@gmail.com>
parents:
58490
diff
changeset
|
158 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
159 ;; (disassemble (lambda (x) (and (point) (foo)))) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
160 ;; ;; When |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
161 ;; ;; - all but one arguments to a function are constant |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
162 ;; ;; - the non-constant argument is an if-expression (cond-expression?) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
163 ;; ;; then the outer function can be distributed. If the guarding |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
164 ;; ;; condition is side-effect-free [assignment-free] then the other |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
165 ;; ;; arguments may be any expressions. Since, however, the code size |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
166 ;; ;; can increase this way they should be "simple". Compare: |
63625
9be013ed306d
(byte-optimize-pure-func): Fix spellings.
Juanma Barranquero <lekktu@gmail.com>
parents:
58490
diff
changeset
|
167 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
168 ;; (disassemble (lambda (x) (eq (if (point) 'a 'b) 'c))) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
169 ;; (disassemble (lambda (x) (if (point) (eq 'a 'c) (eq 'b 'c)))) |
63625
9be013ed306d
(byte-optimize-pure-func): Fix spellings.
Juanma Barranquero <lekktu@gmail.com>
parents:
58490
diff
changeset
|
170 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
171 ;; ;; (car (cons A B)) -> (prog1 A B) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
172 ;; (disassemble (lambda (x) (car (cons (foo) 42)))) |
63625
9be013ed306d
(byte-optimize-pure-func): Fix spellings.
Juanma Barranquero <lekktu@gmail.com>
parents:
58490
diff
changeset
|
173 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
174 ;; ;; (cdr (cons A B)) -> (progn A B) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
175 ;; (disassemble (lambda (x) (cdr (cons 42 (foo))))) |
63625
9be013ed306d
(byte-optimize-pure-func): Fix spellings.
Juanma Barranquero <lekktu@gmail.com>
parents:
58490
diff
changeset
|
176 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
177 ;; ;; (car (list A B ...)) -> (prog1 A B ...) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
178 ;; (disassemble (lambda (x) (car (list (foo) 42 (bar))))) |
63625
9be013ed306d
(byte-optimize-pure-func): Fix spellings.
Juanma Barranquero <lekktu@gmail.com>
parents:
58490
diff
changeset
|
179 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
180 ;; ;; (cdr (list A B ...)) -> (progn A (list B ...)) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
181 ;; (disassemble (lambda (x) (cdr (list 42 (foo) (bar))))) |
12550
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) |
86056
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
187 (eval-when-compile (require 'cl)) |
23822
34fa38b26638
Require bytecomp for byte-goto-ops.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
23177
diff
changeset
|
188 |
757 | 189 (defun byte-compile-log-lap-1 (format &rest args) |
190 (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
|
191 (error "The old version of the disassembler is loaded. Reload new-bytecomp as well")) |
757 | 192 (byte-compile-log-1 |
193 (apply 'format format | |
194 (let (c a) | |
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
195 (mapcar (lambda (arg) |
757 | 196 (if (not (consp arg)) |
197 (if (and (symbolp arg) | |
198 (string-match "^byte-" (symbol-name arg))) | |
199 (intern (substring (symbol-name arg) 5)) | |
200 arg) | |
201 (if (integerp (setq c (car arg))) | |
202 (error "non-symbolic byte-op %s" c)) | |
203 (if (eq c 'TAG) | |
204 (setq c arg) | |
205 (setq a (cond ((memq c byte-goto-ops) | |
206 (car (cdr (cdr arg)))) | |
207 ((memq c byte-constref-ops) | |
208 (car (cdr arg))) | |
209 (t (cdr arg)))) | |
210 (setq c (symbol-name c)) | |
211 (if (string-match "^byte-." c) | |
212 (setq c (intern (substring c 5))))) | |
213 (if (eq c 'constant) (setq c 'const)) | |
214 (if (and (eq (cdr arg) 0) | |
215 (not (memq c '(unbind call const)))) | |
216 c | |
217 (format "(%s %s)" c a)))) | |
218 args))))) | |
219 | |
220 (defmacro byte-compile-log-lap (format-string &rest args) | |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
221 `(and (memq byte-optimize-log '(t byte)) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
222 (byte-compile-log-lap-1 ,format-string ,@args))) |
757 | 223 |
224 | |
225 ;;; byte-compile optimizers to support inlining | |
226 | |
227 (put 'inline 'byte-optimizer 'byte-optimize-inline-handler) | |
228 | |
229 (defun byte-optimize-inline-handler (form) | |
230 "byte-optimize-handler for the `inline' special-form." | |
231 (cons 'progn | |
232 (mapcar | |
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
233 (lambda (sexp) |
58210
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
234 (let ((f (car-safe sexp))) |
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
235 (if (and (symbolp f) |
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
236 (or (cdr (assq f byte-compile-function-environment)) |
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
237 (not (or (not (fboundp f)) |
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
238 (cdr (assq f byte-compile-macro-environment)) |
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
239 (and (consp (setq f (symbol-function f))) |
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
240 (eq (car f) 'macro)) |
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
241 (subrp f))))) |
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
242 (byte-compile-inline-expand sexp) |
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
243 sexp))) |
757 | 244 (cdr form)))) |
245 | |
246 | |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
247 ;; Splice the given lap code into the current instruction stream. |
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
248 ;; 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
|
249 ;; 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
|
250 ;; after this is spliced in. The provided list is destroyed. |
757 | 251 (defun byte-inline-lapcode (lap) |
252 (setq byte-compile-output (nconc (nreverse lap) byte-compile-output))) | |
253 | |
254 (defun byte-compile-inline-expand (form) | |
255 (let* ((name (car form)) | |
256 (fn (or (cdr (assq name byte-compile-function-environment)) | |
257 (and (fboundp name) (symbol-function name))))) | |
258 (if (null fn) | |
259 (progn | |
39770 | 260 (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
|
261 name) |
757 | 262 form) |
263 ;; else | |
28440
45337208670b
(byte-compile-inline-expand): Look
Gerd Moellmann <gerd@gnu.org>
parents:
28423
diff
changeset
|
264 (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
|
265 (load (nth 1 fn)) |
28440
45337208670b
(byte-compile-inline-expand): Look
Gerd Moellmann <gerd@gnu.org>
parents:
28423
diff
changeset
|
266 (setq fn (or (and (fboundp name) (symbol-function name)) |
45337208670b
(byte-compile-inline-expand): Look
Gerd Moellmann <gerd@gnu.org>
parents:
28423
diff
changeset
|
267 (cdr (assq name byte-compile-function-environment))))) |
757 | 268 (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
|
269 (error "File `%s' didn't define `%s'" (nth 1 fn) name)) |
58165
cc9f1e89279b
(byte-compile-inline-expand): Understand the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57423
diff
changeset
|
270 (if (and (symbolp fn) (not (eq fn t))) |
757 | 271 (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
|
272 (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
|
273 (let (string) |
11203
31b8e30c1afb
(byte-compile-inline-expand): Fetch actual bytecode
Karl Heuer <kwzh@gnu.org>
parents:
8466
diff
changeset
|
274 (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
|
275 (setq string (aref fn 1)) |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
276 ;; Isn't it an error for `string' not to be unibyte?? --stef |
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 (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
|
278 (setq string (string-as-unibyte string))) |
79453 | 279 ;; `byte-compile-splice-in-already-compiled-code' |
280 ;; takes care of inlining the body. | |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
281 (cons `(lambda ,(aref fn 0) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
282 (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
|
283 (cdr form))) |
23177 | 284 (if (eq (car-safe fn) 'lambda) |
285 (cons fn (cdr form)) | |
286 ;; Give up on inlining. | |
287 form)))))) | |
757 | 288 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
289 ;; ((lambda ...) ...) |
757 | 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) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
342 |
33458
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))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
347 |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
348 (let ((newform |
757 | 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))) |
92426
646c75baf82e
(byte-optimize-form-code-walker):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91327
diff
changeset
|
385 (byte-optimize-form-code-walker |
646c75baf82e
(byte-optimize-form-code-walker):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91327
diff
changeset
|
386 (byte-compile-unfold-lambda form) |
646c75baf82e
(byte-optimize-form-code-walker):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91327
diff
changeset
|
387 for-effect)) |
757 | 388 ((memq fn '(let let*)) |
389 ;; recursively enter the optimizer for the bindings and body | |
390 ;; of a let or let*. This for depth-firstness: forms that | |
391 ;; are more deeply nested are optimized first. | |
392 (cons fn | |
393 (cons | |
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
394 (mapcar (lambda (binding) |
757 | 395 (if (symbolp binding) |
396 binding | |
397 (if (cdr (cdr binding)) | |
39770 | 398 (byte-compile-warn "malformed let binding: `%s'" |
757 | 399 (prin1-to-string binding))) |
400 (list (car binding) | |
401 (byte-optimize-form (nth 1 binding) nil)))) | |
402 (nth 1 form)) | |
403 (byte-optimize-body (cdr (cdr form)) for-effect)))) | |
404 ((eq fn 'cond) | |
405 (cons fn | |
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
406 (mapcar (lambda (clause) |
757 | 407 (if (consp clause) |
408 (cons | |
409 (byte-optimize-form (car clause) nil) | |
410 (byte-optimize-body (cdr clause) for-effect)) | |
39770 | 411 (byte-compile-warn "malformed cond form: `%s'" |
757 | 412 (prin1-to-string clause)) |
413 clause)) | |
414 (cdr form)))) | |
415 ((eq fn 'progn) | |
416 ;; as an extra added bonus, this simplifies (progn <x>) --> <x> | |
417 (if (cdr (cdr form)) | |
418 (progn | |
419 (setq tmp (byte-optimize-body (cdr form) for-effect)) | |
420 (if (cdr tmp) (cons 'progn tmp) (car tmp))) | |
421 (byte-optimize-form (nth 1 form) for-effect))) | |
422 ((eq fn 'prog1) | |
423 (if (cdr (cdr form)) | |
424 (cons 'prog1 | |
425 (cons (byte-optimize-form (nth 1 form) for-effect) | |
426 (byte-optimize-body (cdr (cdr form)) t))) | |
427 (byte-optimize-form (nth 1 form) for-effect))) | |
428 ((eq fn 'prog2) | |
429 (cons 'prog2 | |
430 (cons (byte-optimize-form (nth 1 form) t) | |
431 (cons (byte-optimize-form (nth 2 form) for-effect) | |
432 (byte-optimize-body (cdr (cdr (cdr form))) t))))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
433 |
16276
f98b8c0b6414
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
14641
diff
changeset
|
434 ((memq fn '(save-excursion save-restriction save-current-buffer)) |
757 | 435 ;; those subrs which have an implicit progn; it's not quite good |
436 ;; enough to treat these like normal function calls. | |
437 ;; This can turn (save-excursion ...) into (save-excursion) which | |
438 ;; will be optimized away in the lap-optimize pass. | |
439 (cons fn (byte-optimize-body (cdr form) for-effect))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
440 |
757 | 441 ((eq fn 'with-output-to-temp-buffer) |
442 ;; this is just like the above, except for the first argument. | |
443 (cons fn | |
444 (cons | |
445 (byte-optimize-form (nth 1 form) nil) | |
446 (byte-optimize-body (cdr (cdr form)) for-effect)))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
447 |
757 | 448 ((eq fn 'if) |
36999 | 449 (when (< (length form) 3) |
39770 | 450 (byte-compile-warn "too few arguments for `if'")) |
757 | 451 (cons fn |
452 (cons (byte-optimize-form (nth 1 form) nil) | |
453 (cons | |
454 (byte-optimize-form (nth 2 form) for-effect) | |
455 (byte-optimize-body (nthcdr 3 form) for-effect))))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
456 |
757 | 457 ((memq fn '(and or)) ; remember, and/or are control structures. |
458 ;; 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
|
459 ;; In the future it could conceivably be a problem that the |
757 | 460 ;; subexpressions of these forms are optimized in the reverse |
461 ;; order, but it's ok for now. | |
462 (if for-effect | |
463 (let ((backwards (reverse (cdr form)))) | |
464 (while (and backwards | |
465 (null (setcar backwards | |
466 (byte-optimize-form (car backwards) | |
467 for-effect)))) | |
468 (setq backwards (cdr backwards))) | |
469 (if (and (cdr form) (null backwards)) | |
470 (byte-compile-log | |
471 " all subforms of %s called for effect; deleted" form)) | |
472 (and backwards | |
48834
ffa5e816fcad
(byte-optimize-form-code-walker):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48823
diff
changeset
|
473 (cons fn (nreverse (mapcar 'byte-optimize-form backwards))))) |
757 | 474 (cons fn (mapcar 'byte-optimize-form (cdr form))))) |
475 | |
476 ((eq fn 'interactive) | |
39770 | 477 (byte-compile-warn "misplaced interactive spec: `%s'" |
757 | 478 (prin1-to-string form)) |
479 nil) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
480 |
757 | 481 ((memq fn '(defun defmacro function |
482 condition-case save-window-excursion)) | |
483 ;; These forms are compiled as constants or by breaking out | |
484 ;; all the subexpressions and compiling them separately. | |
485 form) | |
486 | |
487 ((eq fn 'unwind-protect) | |
488 ;; the "protected" part of an unwind-protect is compiled (and thus | |
489 ;; optimized) as a top-level form, so don't do it here. But the | |
490 ;; non-protected part has the same for-effect status as the | |
491 ;; unwind-protect itself. (The protected part is always for effect, | |
492 ;; but that isn't handled properly yet.) | |
493 (cons fn | |
494 (cons (byte-optimize-form (nth 1 form) for-effect) | |
495 (cdr (cdr form))))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
496 |
757 | 497 ((eq fn 'catch) |
498 ;; the body of a catch is compiled (and thus optimized) as a | |
499 ;; top-level form, so don't do it here. The tag is never | |
500 ;; for-effect. The body should have the same for-effect status | |
501 ;; as the catch form itself, but that isn't handled properly yet. | |
502 (cons fn | |
503 (cons (byte-optimize-form (nth 1 form) nil) | |
504 (cdr (cdr form))))) | |
505 | |
47868
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
506 ((eq fn 'ignore) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
507 ;; Don't treat the args to `ignore' as being |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
508 ;; computed for effect. We want to avoid the warnings |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
509 ;; that might occur if they were treated that way. |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
510 ;; However, don't actually bother calling `ignore'. |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
511 `(prog1 nil . ,(mapcar 'byte-optimize-form (cdr form)))) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
512 |
757 | 513 ;; If optimization is on, this is the only place that macros are |
514 ;; expanded. If optimization is off, then macroexpansion happens | |
515 ;; in byte-compile-form. Otherwise, the macros are already expanded | |
516 ;; by the time that is reached. | |
517 ((not (eq form | |
518 (setq form (macroexpand form | |
519 byte-compile-macro-environment)))) | |
520 (byte-optimize-form form for-effect)) | |
20749
e87544dbfacb
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
20414
diff
changeset
|
521 |
e87544dbfacb
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
20414
diff
changeset
|
522 ;; Support compiler macros as in cl.el. |
e87544dbfacb
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
20414
diff
changeset
|
523 ((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
|
524 (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
|
525 (get (car-safe form) 'cl-compiler-macro) |
20749
e87544dbfacb
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
20414
diff
changeset
|
526 (not (eq form |
58490
2176686c8a19
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
58210
diff
changeset
|
527 (with-no-warnings |
2176686c8a19
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
58210
diff
changeset
|
528 (setq form (compiler-macroexpand form)))))) |
20749
e87544dbfacb
(byte-optimize-form-code-walker):
Richard M. Stallman <rms@gnu.org>
parents:
20414
diff
changeset
|
529 (byte-optimize-form form for-effect)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
530 |
757 | 531 ((not (symbolp fn)) |
42267
76d12dafa83d
(byte-optimize-form-code-walker): Remove mocklisp case.
Pavel Janík <Pavel@Janik.cz>
parents:
42206
diff
changeset
|
532 (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
|
533 (prin1-to-string fn)) |
757 | 534 form) |
535 | |
536 ((and for-effect (setq tmp (get fn 'side-effect-free)) | |
537 (or byte-compile-delete-errors | |
538 (eq tmp 'error-free) | |
47868
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
539 ;; Detect the expansion of (pop foo). |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
540 ;; There is no need to compile the call to `car' there. |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
541 (and (eq fn 'car) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
542 (eq (car-safe (cadr form)) 'prog1) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
543 (let ((var (cadr (cadr form))) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
544 (last (nth 2 (cadr form)))) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
545 (and (symbolp var) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
546 (null (nthcdr 3 (cadr form))) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
547 (eq (car-safe last) 'setq) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
548 (eq (cadr last) var) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
549 (eq (car-safe (nth 2 last)) 'cdr) |
10e55e51ecdc
(byte-optimize-form-code-walker): Treat `ignore' specially--prevent
Richard M. Stallman <rms@gnu.org>
parents:
47317
diff
changeset
|
550 (eq (cadr (nth 2 last)) var)))) |
757 | 551 (progn |
76957
d1d2c4bdd413
(byte-optimize-form-code-walker): Print entire form.
Chong Yidong <cyd@stupidchicken.com>
parents:
75346
diff
changeset
|
552 (byte-compile-warn "value returned from %s is unused" |
d1d2c4bdd413
(byte-optimize-form-code-walker): Print entire form.
Chong Yidong <cyd@stupidchicken.com>
parents:
75346
diff
changeset
|
553 (prin1-to-string form)) |
757 | 554 nil))) |
555 (byte-compile-log " %s called for effect; deleted" fn) | |
556 ;; appending a nil here might not be necessary, but it can't hurt. | |
557 (byte-optimize-form | |
558 (cons 'progn (append (cdr form) '(nil))) t)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
559 |
757 | 560 (t |
561 ;; Otherwise, no args can be considered to be for-effect, | |
562 ;; even if the called function is for-effect, because we | |
563 ;; don't know anything about that function. | |
77125
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
564 (let ((args (mapcar #'byte-optimize-form (cdr form)))) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
565 (if (and (get fn 'pure) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
566 (byte-optimize-all-constp args)) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
567 (list 'quote (apply fn (mapcar #'eval args))) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
568 (cons fn args))))))) |
757 | 569 |
77125
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
570 (defun byte-optimize-all-constp (list) |
78474
88c9f4e4160e
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78217
diff
changeset
|
571 "Non-nil if all elements of LIST satisfy `byte-compile-constp'." |
77125
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
572 (let ((constant t)) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
573 (while (and list constant) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
574 (unless (byte-compile-constp (car list)) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
575 (setq constant nil)) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
576 (setq list (cdr list))) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
577 constant)) |
757 | 578 |
579 (defun byte-optimize-form (form &optional for-effect) | |
580 "The source-level pass of the optimizer." | |
581 ;; | |
582 ;; First, optimize all sub-forms of this one. | |
583 (setq form (byte-optimize-form-code-walker form for-effect)) | |
584 ;; | |
585 ;; after optimizing all subforms, optimize this form until it doesn't | |
586 ;; optimize any further. This means that some forms will be passed through | |
587 ;; the optimizer many times, but that's necessary to make the for-effect | |
588 ;; processing do as much as possible. | |
589 ;; | |
590 (let (opt new) | |
591 (if (and (consp form) | |
592 (symbolp (car form)) | |
593 (or (and for-effect | |
594 ;; we don't have any of these yet, but we might. | |
595 (setq opt (get (car form) 'byte-for-effect-optimizer))) | |
596 (setq opt (get (car form) 'byte-optimizer))) | |
597 (not (eq form (setq new (funcall opt form))))) | |
598 (progn | |
599 ;; (if (equal form new) (error "bogus optimizer -- %s" opt)) | |
600 (byte-compile-log " %s\t==>\t%s" form new) | |
601 (setq new (byte-optimize-form new for-effect)) | |
602 new) | |
603 form))) | |
604 | |
605 | |
606 (defun byte-optimize-body (forms all-for-effect) | |
607 ;; optimize the cdr of a progn or implicit progn; all forms is a list of | |
608 ;; forms, all but the last of which are optimized with the assumption that | |
609 ;; they are being called for effect. the last is for-effect as well if | |
610 ;; all-for-effect is true. returns a new list of forms. | |
611 (let ((rest forms) | |
612 (result nil) | |
613 fe new) | |
614 (while rest | |
615 (setq fe (or all-for-effect (cdr rest))) | |
616 (setq new (and (car rest) (byte-optimize-form (car rest) fe))) | |
617 (if (or new (not fe)) | |
618 (setq result (cons new result))) | |
619 (setq rest (cdr rest))) | |
620 (nreverse result))) | |
621 | |
622 | |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
623 ;; some source-level optimizers |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
624 ;; |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
625 ;; when writing optimizers, be VERY careful that the optimizer returns |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
626 ;; something not EQ to its argument if and ONLY if it has made a change. |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
627 ;; This implies that you cannot simply destructively modify the list; |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
628 ;; you must return something not EQ to it if you make an optimization. |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
629 ;; |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
630 ;; It is now safe to optimize code such that it introduces new bindings. |
757 | 631 |
86056
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
632 (defsubst byte-compile-trueconstp (form) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
633 "Return non-nil if FORM always evaluates to a non-nil value." |
92450
235b5ef31f41
(byte-compile-trueconstp, byte-compile-nilconstp): No recursion in defsubst.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92426
diff
changeset
|
634 (while (eq (car-safe form) 'progn) |
235b5ef31f41
(byte-compile-trueconstp, byte-compile-nilconstp): No recursion in defsubst.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92426
diff
changeset
|
635 (setq form (car (last (cdr form))))) |
86056
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
636 (cond ((consp form) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
637 (case (car form) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
638 (quote (cadr form)) |
92450
235b5ef31f41
(byte-compile-trueconstp, byte-compile-nilconstp): No recursion in defsubst.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92426
diff
changeset
|
639 ;; Can't use recursion in a defsubst. |
235b5ef31f41
(byte-compile-trueconstp, byte-compile-nilconstp): No recursion in defsubst.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92426
diff
changeset
|
640 ;; (progn (byte-compile-trueconstp (car (last (cdr form))))) |
235b5ef31f41
(byte-compile-trueconstp, byte-compile-nilconstp): No recursion in defsubst.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92426
diff
changeset
|
641 )) |
86056
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
642 ((not (symbolp form))) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
643 ((eq form t)) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
644 ((keywordp form)))) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
645 |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
646 (defsubst byte-compile-nilconstp (form) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
647 "Return non-nil if FORM always evaluates to a nil value." |
92450
235b5ef31f41
(byte-compile-trueconstp, byte-compile-nilconstp): No recursion in defsubst.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92426
diff
changeset
|
648 (while (eq (car-safe form) 'progn) |
235b5ef31f41
(byte-compile-trueconstp, byte-compile-nilconstp): No recursion in defsubst.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92426
diff
changeset
|
649 (setq form (car (last (cdr form))))) |
86056
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
650 (cond ((consp form) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
651 (case (car form) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
652 (quote (null (cadr form))) |
92450
235b5ef31f41
(byte-compile-trueconstp, byte-compile-nilconstp): No recursion in defsubst.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92426
diff
changeset
|
653 ;; Can't use recursion in a defsubst. |
235b5ef31f41
(byte-compile-trueconstp, byte-compile-nilconstp): No recursion in defsubst.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92426
diff
changeset
|
654 ;; (progn (byte-compile-nilconstp (car (last (cdr form))))) |
235b5ef31f41
(byte-compile-trueconstp, byte-compile-nilconstp): No recursion in defsubst.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92426
diff
changeset
|
655 )) |
86056
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
656 ((not (symbolp form)) nil) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
657 ((null form)))) |
757 | 658 |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
659 ;; If the function is being called with constant numeric args, |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
660 ;; evaluate as much as possible at compile-time. This optimizer |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
661 ;; assumes that the function is associative, like + or *. |
757 | 662 (defun byte-optimize-associative-math (form) |
663 (let ((args nil) | |
664 (constants nil) | |
665 (rest (cdr form))) | |
666 (while rest | |
667 (if (numberp (car rest)) | |
668 (setq constants (cons (car rest) constants)) | |
669 (setq args (cons (car rest) args))) | |
670 (setq rest (cdr rest))) | |
671 (if (cdr constants) | |
672 (if args | |
673 (list (car form) | |
674 (apply (car form) constants) | |
675 (if (cdr args) | |
676 (cons (car form) (nreverse args)) | |
677 (car args))) | |
678 (apply (car form) constants)) | |
679 form))) | |
680 | |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
681 ;; 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
|
682 ;; 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
|
683 ;; assumes that the function satisfies |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
684 ;; (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
|
685 ;; like - and /. |
757 | 686 (defun byte-optimize-nonassociative-math (form) |
687 (if (or (not (numberp (car (cdr form)))) | |
688 (not (numberp (car (cdr (cdr form)))))) | |
689 form | |
690 (let ((constant (car (cdr form))) | |
691 (rest (cdr (cdr form)))) | |
692 (while (numberp (car rest)) | |
693 (setq constant (funcall (car form) constant (car rest)) | |
694 rest (cdr rest))) | |
695 (if rest | |
696 (cons (car form) (cons constant rest)) | |
697 constant)))) | |
698 | |
699 ;;(defun byte-optimize-associative-two-args-math (form) | |
700 ;; (setq form (byte-optimize-associative-math form)) | |
701 ;; (if (consp form) | |
702 ;; (byte-optimize-two-args-left form) | |
703 ;; form)) | |
704 | |
705 ;;(defun byte-optimize-nonassociative-two-args-math (form) | |
706 ;; (setq form (byte-optimize-nonassociative-math form)) | |
707 ;; (if (consp form) | |
708 ;; (byte-optimize-two-args-right form) | |
709 ;; form)) | |
710 | |
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
711 (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
|
712 (<= (* (abs (- x y)) 100) (abs (+ x y)))) |
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
713 |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
714 ;; 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
|
715 ;; 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
|
716 ;; For functions that can handle floats, that optimization |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
717 ;; 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
|
718 ;; 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
|
719 ;; 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
|
720 ;; (2) not moving anything if it would cause an overflow. |
757 | 721 (defun byte-optimize-delay-constants-math (form start fun) |
722 ;; Merge all FORM's constants from number START, call FUN on them | |
723 ;; and put the result at the end. | |
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
724 (let ((rest (nthcdr (1- start) form)) |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
725 (orig form) |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
726 ;; t means we must check for overflow. |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
727 (overflow (memq fun '(+ *)))) |
757 | 728 (while (cdr (setq rest (cdr rest))) |
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
729 (if (integerp (car rest)) |
757 | 730 (let (constants) |
731 (setq form (copy-sequence form) | |
732 rest (nthcdr (1- start) form)) | |
733 (while (setq rest (cdr rest)) | |
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
734 (cond ((integerp (car rest)) |
757 | 735 (setq constants (cons (car rest) constants)) |
736 (setcar rest nil)))) | |
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
737 ;; If necessary, check now for overflow |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
738 ;; that might be caused by reordering. |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
739 (if (and overflow |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
740 ;; 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
|
741 ;; 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
|
742 ;; of doing it on integers. |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
743 (not (byte-optimize-approx-equal |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
744 (apply fun (mapcar 'float constants)) |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
745 (float (apply fun constants))))) |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
746 (setq form orig) |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
747 (setq form (nconc (delq nil form) |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
748 (list (apply fun (nreverse constants))))))))) |
757 | 749 form)) |
750 | |
99772
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
751 (defsubst byte-compile-butlast (form) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
752 (nreverse (cdr (reverse form)))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
753 |
757 | 754 (defun byte-optimize-plus (form) |
99772
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
755 ;; Don't call `byte-optimize-delay-constants-math' (bug#1334). |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
756 ;;(setq form (byte-optimize-delay-constants-math form 1 '+)) |
757 | 757 (if (memq 0 form) (setq form (delq 0 (copy-sequence form)))) |
99772
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
758 ;; For (+ constants...), byte-optimize-predicate does the work. |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
759 (when (memq nil (mapcar 'numberp (cdr form))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
760 (cond |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
761 ;; (+ x 1) --> (1+ x) and (+ x -1) --> (1- x). |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
762 ((and (= (length form) 3) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
763 (or (memq (nth 1 form) '(1 -1)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
764 (memq (nth 2 form) '(1 -1)))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
765 (let (integer other) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
766 (if (memq (nth 1 form) '(1 -1)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
767 (setq integer (nth 1 form) other (nth 2 form)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
768 (setq integer (nth 2 form) other (nth 1 form))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
769 (setq form |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
770 (list (if (eq integer 1) '1+ '1-) other)))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
771 ;; Here, we could also do |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
772 ;; (+ x y ... 1) --> (1+ (+ x y ...)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
773 ;; (+ x y ... -1) --> (1- (+ x y ...)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
774 ;; The resulting bytecode is smaller, but is it faster? -- cyd |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
775 )) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
776 (byte-optimize-predicate form)) |
757 | 777 |
778 (defun byte-optimize-minus (form) | |
99772
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
779 ;; Don't call `byte-optimize-delay-constants-math' (bug#1334). |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
780 ;;(setq form (byte-optimize-delay-constants-math form 2 '+)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
781 ;; Remove zeros. |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
782 (when (and (nthcdr 3 form) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
783 (memq 0 (cddr form))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
784 (setq form (nconc (list (car form) (cadr form)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
785 (delq 0 (copy-sequence (cddr form))))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
786 ;; After the above, we must turn (- x) back into (- x 0) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
787 (or (cddr form) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
788 (setq form (nconc form (list 0))))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
789 ;; For (- constants..), byte-optimize-predicate does the work. |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
790 (when (memq nil (mapcar 'numberp (cdr form))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
791 (cond |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
792 ;; (- x 1) --> (1- x) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
793 ((equal (nthcdr 2 form) '(1)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
794 (setq form (list '1- (nth 1 form)))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
795 ;; (- x -1) --> (1+ x) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
796 ((equal (nthcdr 2 form) '(-1)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
797 (setq form (list '1+ (nth 1 form)))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
798 ;; (- 0 x) --> (- x) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
799 ((and (eq (nth 1 form) 0) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
800 (= (length form) 3)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
801 (setq form (list '- (nth 2 form)))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
802 ;; Here, we could also do |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
803 ;; (- x y ... 1) --> (1- (- x y ...)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
804 ;; (- x y ... -1) --> (1+ (- x y ...)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
805 ;; The resulting bytecode is smaller, but is it faster? -- cyd |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
806 )) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
807 (byte-optimize-predicate form)) |
757 | 808 |
809 (defun byte-optimize-multiply (form) | |
810 (setq form (byte-optimize-delay-constants-math form 1 '*)) | |
99772
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
811 ;; For (* constants..), byte-optimize-predicate does the work. |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
812 (when (memq nil (mapcar 'numberp (cdr form))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
813 ;; After `byte-optimize-predicate', if there is a INTEGER constant |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
814 ;; in FORM, it is in the last element. |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
815 (let ((last (car (reverse (cdr form))))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
816 (cond |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
817 ;; Would handling (* ... 0) here cause floating point errors? |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
818 ;; See bug#1334. |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
819 ((eq 1 last) (setq form (byte-compile-butlast form))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
820 ((eq -1 last) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
821 (setq form (list '- (if (nthcdr 3 form) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
822 (byte-compile-butlast form) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
823 (nth 1 form)))))))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
824 (byte-optimize-predicate form)) |
757 | 825 |
826 (defun byte-optimize-divide (form) | |
827 (setq form (byte-optimize-delay-constants-math form 2 '*)) | |
99772
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
828 ;; After `byte-optimize-predicate', if there is a INTEGER constant |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
829 ;; in FORM, it is in the last element. |
757 | 830 (let ((last (car (reverse (cdr (cdr form)))))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
831 (cond |
99772
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
832 ;; Runtime error (leave it intact). |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
833 ((or (null last) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
834 (eq last 0) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
835 (memql 0.0 (cddr form)))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
836 ;; No constants in expression |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
837 ((not (numberp last))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
838 ;; For (* constants..), byte-optimize-predicate does the work. |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
839 ((null (memq nil (mapcar 'numberp (cdr form))))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
840 ;; (/ x y.. 1) --> (/ x y..) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
841 ((and (eq last 1) (nthcdr 3 form)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
842 (setq form (byte-compile-butlast form))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
843 ;; (/ x -1), (/ x .. -1) --> (- x), (- (/ x ..)) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
844 ((eq last -1) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
845 (setq form (list '- (if (nthcdr 3 form) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
846 (byte-compile-butlast form) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
847 (nth 1 form))))))) |
57a488466504
(byte-compile-butlast): Move up in file.
Chong Yidong <cyd@stupidchicken.com>
parents:
94655
diff
changeset
|
848 (byte-optimize-predicate form)) |
757 | 849 |
850 (defun byte-optimize-logmumble (form) | |
851 (setq form (byte-optimize-delay-constants-math form 1 (car form))) | |
852 (byte-optimize-predicate | |
853 (cond ((memq 0 form) | |
854 (setq form (if (eq (car form) 'logand) | |
855 (cons 'progn (cdr form)) | |
856 (delq 0 (copy-sequence form))))) | |
857 ((and (eq (car-safe form) 'logior) | |
858 (memq -1 form)) | |
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
859 (cons 'progn (cdr form))) |
757 | 860 (form)))) |
861 | |
862 | |
863 (defun byte-optimize-binary-predicate (form) | |
864 (if (byte-compile-constp (nth 1 form)) | |
865 (if (byte-compile-constp (nth 2 form)) | |
866 (condition-case () | |
867 (list 'quote (eval form)) | |
868 (error form)) | |
869 ;; This can enable some lapcode optimizations. | |
870 (list (car form) (nth 2 form) (nth 1 form))) | |
871 form)) | |
872 | |
873 (defun byte-optimize-predicate (form) | |
874 (let ((ok t) | |
875 (rest (cdr form))) | |
876 (while (and rest ok) | |
877 (setq ok (byte-compile-constp (car rest)) | |
878 rest (cdr rest))) | |
879 (if ok | |
880 (condition-case () | |
881 (list 'quote (eval form)) | |
882 (error form)) | |
883 form))) | |
884 | |
885 (defun byte-optimize-identity (form) | |
886 (if (and (cdr form) (null (cdr (cdr form)))) | |
887 (nth 1 form) | |
39770 | 888 (byte-compile-warn "identity called with %d arg%s, but requires 1" |
757 | 889 (length (cdr form)) |
890 (if (= 1 (length (cdr form))) "" "s")) | |
891 form)) | |
892 | |
893 (put 'identity 'byte-optimizer 'byte-optimize-identity) | |
894 | |
895 (put '+ 'byte-optimizer 'byte-optimize-plus) | |
896 (put '* 'byte-optimizer 'byte-optimize-multiply) | |
897 (put '- 'byte-optimizer 'byte-optimize-minus) | |
898 (put '/ 'byte-optimizer 'byte-optimize-divide) | |
899 (put 'max 'byte-optimizer 'byte-optimize-associative-math) | |
900 (put 'min 'byte-optimizer 'byte-optimize-associative-math) | |
901 | |
902 (put '= 'byte-optimizer 'byte-optimize-binary-predicate) | |
903 (put 'eq 'byte-optimizer 'byte-optimize-binary-predicate) | |
904 (put 'equal 'byte-optimizer 'byte-optimize-binary-predicate) | |
905 (put 'string= 'byte-optimizer 'byte-optimize-binary-predicate) | |
906 (put 'string-equal 'byte-optimizer 'byte-optimize-binary-predicate) | |
907 | |
908 (put '< 'byte-optimizer 'byte-optimize-predicate) | |
909 (put '> 'byte-optimizer 'byte-optimize-predicate) | |
910 (put '<= 'byte-optimizer 'byte-optimize-predicate) | |
911 (put '>= 'byte-optimizer 'byte-optimize-predicate) | |
912 (put '1+ 'byte-optimizer 'byte-optimize-predicate) | |
913 (put '1- 'byte-optimizer 'byte-optimize-predicate) | |
914 (put 'not 'byte-optimizer 'byte-optimize-predicate) | |
915 (put 'null 'byte-optimizer 'byte-optimize-predicate) | |
916 (put 'memq 'byte-optimizer 'byte-optimize-predicate) | |
917 (put 'consp 'byte-optimizer 'byte-optimize-predicate) | |
918 (put 'listp 'byte-optimizer 'byte-optimize-predicate) | |
919 (put 'symbolp 'byte-optimizer 'byte-optimize-predicate) | |
920 (put 'stringp 'byte-optimizer 'byte-optimize-predicate) | |
921 (put 'string< 'byte-optimizer 'byte-optimize-predicate) | |
922 (put 'string-lessp 'byte-optimizer 'byte-optimize-predicate) | |
923 | |
924 (put 'logand 'byte-optimizer 'byte-optimize-logmumble) | |
925 (put 'logior 'byte-optimizer 'byte-optimize-logmumble) | |
926 (put 'logxor 'byte-optimizer 'byte-optimize-logmumble) | |
927 (put 'lognot 'byte-optimizer 'byte-optimize-predicate) | |
928 | |
929 (put 'car 'byte-optimizer 'byte-optimize-predicate) | |
930 (put 'cdr 'byte-optimizer 'byte-optimize-predicate) | |
931 (put 'car-safe 'byte-optimizer 'byte-optimize-predicate) | |
932 (put 'cdr-safe 'byte-optimizer 'byte-optimize-predicate) | |
933 | |
934 | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
935 ;; I'm not convinced that this is necessary. Doesn't the optimizer loop |
757 | 936 ;; take care of this? - Jamie |
937 ;; 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
|
938 ;; so arithmetic optimizers recognize the numeric constant. - Hallvard |
757 | 939 (put 'quote 'byte-optimizer 'byte-optimize-quote) |
940 (defun byte-optimize-quote (form) | |
941 (if (or (consp (nth 1 form)) | |
942 (and (symbolp (nth 1 form)) | |
27823 | 943 (not (byte-compile-const-symbol-p form)))) |
757 | 944 form |
945 (nth 1 form))) | |
946 | |
947 (defun byte-optimize-zerop (form) | |
948 (cond ((numberp (nth 1 form)) | |
949 (eval form)) | |
950 (byte-compile-delete-errors | |
951 (list '= (nth 1 form) 0)) | |
952 (form))) | |
953 | |
954 (put 'zerop 'byte-optimizer 'byte-optimize-zerop) | |
955 | |
956 (defun byte-optimize-and (form) | |
957 ;; Simplify if less than 2 args. | |
958 ;; if there is a literal nil in the args to `and', throw it and following | |
959 ;; forms away, and surround the `and' with (progn ... nil). | |
960 (cond ((null (cdr form))) | |
961 ((memq nil form) | |
962 (list 'progn | |
963 (byte-optimize-and | |
964 (prog1 (setq form (copy-sequence form)) | |
965 (while (nth 1 form) | |
966 (setq form (cdr form))) | |
967 (setcdr form nil))) | |
968 nil)) | |
969 ((null (cdr (cdr form))) | |
970 (nth 1 form)) | |
971 ((byte-optimize-predicate form)))) | |
972 | |
973 (defun byte-optimize-or (form) | |
974 ;; Throw away nil's, and simplify if less than 2 args. | |
975 ;; If there is a literal non-nil constant in the args to `or', throw away all | |
976 ;; following forms. | |
977 (if (memq nil form) | |
978 (setq form (delq nil (copy-sequence form)))) | |
979 (let ((rest form)) | |
980 (while (cdr (setq rest (cdr rest))) | |
981 (if (byte-compile-trueconstp (car rest)) | |
982 (setq form (copy-sequence form) | |
983 rest (setcdr (memq (car rest) form) nil)))) | |
984 (if (cdr (cdr form)) | |
985 (byte-optimize-predicate form) | |
986 (nth 1 form)))) | |
987 | |
988 (defun byte-optimize-cond (form) | |
989 ;; if any clauses have a literal nil as their test, throw them away. | |
990 ;; if any clause has a literal non-nil constant as its test, throw | |
991 ;; away all following clauses. | |
992 (let (rest) | |
993 ;; This must be first, to reduce (cond (t ...) (nil)) to (progn t ...) | |
994 (while (setq rest (assq nil (cdr form))) | |
995 (setq form (delq rest (copy-sequence form)))) | |
996 (if (memq nil (cdr form)) | |
997 (setq form (delq nil (copy-sequence form)))) | |
998 (setq rest form) | |
999 (while (setq rest (cdr rest)) | |
1000 (cond ((byte-compile-trueconstp (car-safe (car rest))) | |
86056
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1001 ;; This branch will always be taken: kill the subsequent ones. |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1002 (cond ((eq rest (cdr form)) ;First branch of `cond'. |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1003 (setq form `(progn ,@(car rest)))) |
757 | 1004 ((cdr rest) |
1005 (setq form (copy-sequence form)) | |
1006 (setcdr (memq (car rest) form) nil))) | |
86056
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1007 (setq rest nil)) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1008 ((and (consp (car rest)) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1009 (byte-compile-nilconstp (caar rest))) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1010 ;; This branch will never be taken: kill its body. |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1011 (setcdr (car rest) nil))))) |
757 | 1012 ;; |
1013 ;; Turn (cond (( <x> )) ... ) into (or <x> (cond ... )) | |
1014 (if (eq 'cond (car-safe form)) | |
1015 (let ((clauses (cdr form))) | |
1016 (if (and (consp (car clauses)) | |
1017 (null (cdr (car clauses)))) | |
1018 (list 'or (car (car clauses)) | |
1019 (byte-optimize-cond | |
1020 (cons (car form) (cdr (cdr form))))) | |
1021 form)) | |
1022 form)) | |
1023 | |
1024 (defun byte-optimize-if (form) | |
82790
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
1025 ;; (if (progn <insts> <test>) <rest>) ==> (progn <insts> (if <test> <rest>)) |
757 | 1026 ;; (if <true-constant> <then> <else...>) ==> <then> |
1027 ;; (if <false-constant> <then> <else...>) ==> (progn <else...>) | |
1028 ;; (if <test> nil <else...>) ==> (if (not <test>) (progn <else...>)) | |
1029 ;; (if <test> <then> nil) ==> (if <test> <then>) | |
1030 (let ((clause (nth 1 form))) | |
82822
4d04d9500eaf
(byte-optimize-if): Don't presume `clause' is a list.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82790
diff
changeset
|
1031 (cond ((and (eq (car-safe clause) 'progn) |
4d04d9500eaf
(byte-optimize-if): Don't presume `clause' is a list.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82790
diff
changeset
|
1032 ;; `clause' is a proper list. |
4d04d9500eaf
(byte-optimize-if): Don't presume `clause' is a list.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82790
diff
changeset
|
1033 (null (cdr (last clause)))) |
82790
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
1034 (if (null (cddr clause)) |
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
1035 ;; A trivial `progn'. |
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
1036 (byte-optimize-if `(if ,(cadr clause) ,@(nthcdr 2 form))) |
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
1037 (nconc (butlast clause) |
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
1038 (list |
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
1039 (byte-optimize-if |
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
1040 `(if ,(car (last clause)) ,@(nthcdr 2 form))))))) |
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
1041 ((byte-compile-trueconstp clause) |
86056
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1042 `(progn ,clause ,(nth 2 form))) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1043 ((byte-compile-nilconstp clause) |
e0931ee6cc83
* emacs-lisp/byte-opt.el (byte-compile-trueconstp): Handle more
Dan Nicolaescu <dann@ics.uci.edu>
parents:
86003
diff
changeset
|
1044 `(progn ,clause ,@(nthcdr 3 form))) |
757 | 1045 ((nth 2 form) |
1046 (if (equal '(nil) (nthcdr 3 form)) | |
1047 (list 'if clause (nth 2 form)) | |
1048 form)) | |
1049 ((or (nth 3 form) (nthcdr 4 form)) | |
12550
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1050 (list 'if |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1051 ;; Don't make a double negative; |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1052 ;; instead, take away the one that is there. |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1053 (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
|
1054 (= (length clause) 2)) ; (not xxxx) or (not (xxxx)) |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1055 (nth 1 clause) |
c33dd1c62d72
(byte-optimize-nth, byte-optimize-nthcdr):
Karl Heuer <kwzh@gnu.org>
parents:
11509
diff
changeset
|
1056 (list 'not clause)) |
757 | 1057 (if (nthcdr 4 form) |
1058 (cons 'progn (nthcdr 3 form)) | |
1059 (nth 3 form)))) | |
1060 (t | |
1061 (list 'progn clause nil))))) | |
1062 | |
1063 (defun byte-optimize-while (form) | |
36999 | 1064 (when (< (length form) 2) |
39770 | 1065 (byte-compile-warn "too few arguments for `while'")) |
757 | 1066 (if (nth 1 form) |
1067 form)) | |
1068 | |
1069 (put 'and 'byte-optimizer 'byte-optimize-and) | |
1070 (put 'or 'byte-optimizer 'byte-optimize-or) | |
1071 (put 'cond 'byte-optimizer 'byte-optimize-cond) | |
1072 (put 'if 'byte-optimizer 'byte-optimize-if) | |
1073 (put 'while 'byte-optimizer 'byte-optimize-while) | |
1074 | |
1075 ;; byte-compile-negation-optimizer lives in bytecomp.el | |
1076 (put '/= 'byte-optimizer 'byte-compile-negation-optimizer) | |
1077 (put 'atom 'byte-optimizer 'byte-compile-negation-optimizer) | |
1078 (put 'nlistp 'byte-optimizer 'byte-compile-negation-optimizer) | |
1079 | |
1080 | |
1081 (defun byte-optimize-funcall (form) | |
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1082 ;; (funcall (lambda ...) ...) ==> ((lambda ...) ...) |
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1083 ;; (funcall foo ...) ==> (foo ...) |
757 | 1084 (let ((fn (nth 1 form))) |
1085 (if (memq (car-safe fn) '(quote function)) | |
1086 (cons (nth 1 fn) (cdr (cdr form))) | |
1087 form))) | |
1088 | |
1089 (defun byte-optimize-apply (form) | |
1090 ;; If the last arg is a literal constant, turn this into a funcall. | |
1091 ;; The funcall optimizer can then transform (funcall 'foo ...) -> (foo ...). | |
1092 (let ((fn (nth 1 form)) | |
1093 (last (nth (1- (length form)) form))) ; I think this really is fastest | |
1094 (or (if (or (null last) | |
1095 (eq (car-safe last) 'quote)) | |
1096 (if (listp (nth 1 last)) | |
1097 (let ((butlast (nreverse (cdr (reverse (cdr (cdr form))))))) | |
957 | 1098 (nconc (list 'funcall fn) butlast |
29580
2f88e6f0d32b
(byte-compile-log-lap-1)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29053
diff
changeset
|
1099 (mapcar (lambda (x) (list 'quote x)) (nth 1 last)))) |
757 | 1100 (byte-compile-warn |
39770 | 1101 "last arg to apply can't be a literal atom: `%s'" |
757 | 1102 (prin1-to-string last)) |
1103 nil)) | |
1104 form))) | |
1105 | |
1106 (put 'funcall 'byte-optimizer 'byte-optimize-funcall) | |
1107 (put 'apply 'byte-optimizer 'byte-optimize-apply) | |
1108 | |
1109 | |
1110 (put 'let 'byte-optimizer 'byte-optimize-letX) | |
1111 (put 'let* 'byte-optimizer 'byte-optimize-letX) | |
1112 (defun byte-optimize-letX (form) | |
1113 (cond ((null (nth 1 form)) | |
1114 ;; No bindings | |
1115 (cons 'progn (cdr (cdr form)))) | |
1116 ((or (nth 2 form) (nthcdr 3 form)) | |
1117 form) | |
1118 ;; The body is nil | |
1119 ((eq (car form) 'let) | |
11509
853f52a85d11
(byte-optimize-letX): Use car-safe and cdr-safe.
Richard M. Stallman <rms@gnu.org>
parents:
11203
diff
changeset
|
1120 (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
|
1121 '(nil))) |
757 | 1122 (t |
1123 (let ((binds (reverse (nth 1 form)))) | |
1124 (list 'let* (reverse (cdr binds)) (nth 1 (car binds)) nil))))) | |
1125 | |
1126 | |
1127 (put 'nth 'byte-optimizer 'byte-optimize-nth) | |
1128 (defun byte-optimize-nth (form) | |
49041 | 1129 (if (= (safe-length form) 3) |
1130 (if (memq (nth 1 form) '(0 1)) | |
1131 (list 'car (if (zerop (nth 1 form)) | |
1132 (nth 2 form) | |
1133 (list 'cdr (nth 2 form)))) | |
1134 (byte-optimize-predicate form)) | |
1135 form)) | |
757 | 1136 |
1137 (put 'nthcdr 'byte-optimizer 'byte-optimize-nthcdr) | |
1138 (defun byte-optimize-nthcdr (form) | |
49041 | 1139 (if (= (safe-length form) 3) |
1140 (if (memq (nth 1 form) '(0 1 2)) | |
1141 (let ((count (nth 1 form))) | |
1142 (setq form (nth 2 form)) | |
1143 (while (>= (setq count (1- count)) 0) | |
1144 (setq form (list 'cdr form))) | |
1145 form) | |
1146 (byte-optimize-predicate form)) | |
1147 form)) | |
20210
622d0b6c6445
(byte-optimize-concat): New function.
Karl Heuer <kwzh@gnu.org>
parents:
17680
diff
changeset
|
1148 |
48823 | 1149 ;; Fixme: delete-char -> delete-region (byte-coded) |
1150 ;; optimize string-as-unibyte, string-as-multibyte, string-make-unibyte, | |
1151 ;; string-make-multibyte for constant args. | |
1152 | |
1153 (put 'featurep 'byte-optimizer 'byte-optimize-featurep) | |
1154 (defun byte-optimize-featurep (form) | |
78627
e8ce4af3f42d
(byte-optimize-featurep): Also handle `sxemacs'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78474
diff
changeset
|
1155 ;; Emacs-21's byte-code doesn't run under XEmacs or SXEmacs anyway, so we |
e8ce4af3f42d
(byte-optimize-featurep): Also handle `sxemacs'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78474
diff
changeset
|
1156 ;; can safely optimize away this test. |
85513
dfdbd485bfa6
(byte-optimize-featurep): Fix paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85183
diff
changeset
|
1157 (if (member (cdr-safe form) '(((quote xemacs)) ((quote sxemacs)))) |
48823 | 1158 nil |
86003
e33327200372
* emacs-lisp/byte-opt.el (byte-optimize-featurep): Optimize
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85513
diff
changeset
|
1159 (if (member (cdr-safe form) '(((quote emacs)))) |
e33327200372
* emacs-lisp/byte-opt.el (byte-optimize-featurep): Optimize
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85513
diff
changeset
|
1160 t |
e33327200372
* emacs-lisp/byte-opt.el (byte-optimize-featurep): Optimize
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85513
diff
changeset
|
1161 form))) |
50306
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1162 |
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1163 (put 'set 'byte-optimizer 'byte-optimize-set) |
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1164 (defun byte-optimize-set (form) |
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1165 (let ((var (car-safe (cdr-safe form)))) |
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1166 (cond |
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1167 ((and (eq (car-safe var) 'quote) (consp (cdr var))) |
50307
78b51ac98da0
(byte-optimize-set): Avoid CLism.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50306
diff
changeset
|
1168 `(setq ,(cadr var) ,@(cddr form))) |
50306
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1169 ((and (eq (car-safe var) 'make-local-variable) |
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1170 (eq (car-safe (setq var (car-safe (cdr var)))) 'quote) |
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1171 (consp (cdr var))) |
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1172 `(progn ,(cadr form) (setq ,(cadr var) ,@(cddr form)))) |
2f19a8ed285b
(byte-optimize-set): New. Turn `set' into `setq' when applicable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49598
diff
changeset
|
1173 (t form)))) |
757 | 1174 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1175 ;; enumerating those functions which need not be called if the returned |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1176 ;; value is not used. That is, something like |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1177 ;; (progn (list (something-with-side-effects) (yow)) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1178 ;; (foo)) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1179 ;; may safely be turned into |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1180 ;; (progn (progn (something-with-side-effects) (yow)) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1181 ;; (foo)) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1182 ;; Further optimizations will turn (progn (list 1 2 3) 'foo) into 'foo. |
757 | 1183 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1184 ;; Some of these functions have the side effect of allocating memory |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1185 ;; and it would be incorrect to replace two calls with one. |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1186 ;; But we don't try to do those kinds of optimizations, |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1187 ;; so it is safe to list such functions here. |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1188 ;; Some of these functions return values that depend on environment |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1189 ;; state, so that constant folding them would be wrong, |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1190 ;; but we don't do constant folding based on this list. |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1191 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1192 ;; However, at present the only optimization we normally do |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1193 ;; is delete calls that need not occur, and we only do that |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1194 ;; with the error-free functions. |
47317 | 1195 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1196 ;; I wonder if I missed any :-\) |
757 | 1197 (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
|
1198 '(% * + - / /= 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
|
1199 assoc assq |
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1200 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
|
1201 buffer-substring byte-code-function-p |
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1202 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
|
1203 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
|
1204 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
|
1205 copy-alist copy-sequence copy-marker cos count-lines |
93209
a9665f39ec60
(side-effect-free-fns): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
92450
diff
changeset
|
1206 decode-char |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1207 decode-time default-boundp default-value documentation downcase |
89483 | 1208 elt encode-char exp expt encode-time error-message-string |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1209 fboundp fceiling featurep ffloor |
757 | 1210 file-directory-p file-exists-p file-locked-p file-name-absolute-p |
1211 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
|
1212 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
|
1213 fround ftruncate |
26941
8584ef89a2bd
Don't put optimization info on `eql'.
Dave Love <fx@gnu.org>
parents:
25621
diff
changeset
|
1214 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
|
1215 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
|
1216 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
|
1217 keymap-parent |
27823 | 1218 length local-variable-if-set-p local-variable-p log log10 logand |
89342
8cf1af9a4468
(side-effect-free-fns): Add langinfo,
Dave Love <fx@gnu.org>
parents:
89205
diff
changeset
|
1219 logb logior lognot logxor lsh langinfo |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1220 make-list make-string make-symbol |
48467 | 1221 marker-buffer max member memq min mod multibyte-char-to-unibyte |
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1222 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
|
1223 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
|
1224 prefix-numeric-value previous-window prin1-to-string propertize |
104914
1a8afcc5fb20
(degrees-to-radians): Mark as free from side effects.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1225 degrees-to-radians |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1226 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
|
1227 region-beginning region-end reverse round |
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1228 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
|
1229 string-to-int string-to-number substring sxhash symbol-function |
48467 | 1230 symbol-name symbol-plist symbol-value string-make-unibyte |
1231 string-make-multibyte string-as-multibyte string-as-unibyte | |
89483 | 1232 string-to-multibyte |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1233 tan truncate |
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1234 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
|
1235 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
|
1236 vconcat |
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1237 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
|
1238 window-hscroll window-minibuffer-p window-width |
757 | 1239 zerop)) |
1240 (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
|
1241 '(arrayp atom |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
1242 bobp bolp bool-vector-p |
44271
8788778fec51
(side-effect-free-fns, side-effect-and-error-free-fns):
Richard M. Stallman <rms@gnu.org>
parents:
42267
diff
changeset
|
1243 buffer-end buffer-list buffer-size buffer-string bufferp |
88611 | 1244 car-safe case-table-p cdr-safe char-or-string-p characterp |
88804
c97005389b75
(side-effect-free-fns): Add decode-char,
Dave Love <fx@gnu.org>
parents:
88611
diff
changeset
|
1245 charsetp commandp cons consp |
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1246 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
|
1247 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
|
1248 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
|
1249 eobp eolp eq equal eventp |
29053
565418f2e425
Update side-effect free function lists.
Dave Love <fx@gnu.org>
parents:
28440
diff
changeset
|
1250 floatp following-char framep |
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1251 get-largest-window get-lru-window |
26941
8584ef89a2bd
Don't put optimization info on `eql'.
Dave Love <fx@gnu.org>
parents:
25621
diff
changeset
|
1252 hash-table-p |
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1253 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
|
1254 invocation-directory invocation-name |
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1255 keymapp |
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1256 line-beginning-position line-end-position list listp |
89483 | 1257 make-marker mark mark-marker markerp max-char |
1258 memory-limit minibuffer-window | |
5315
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1259 mouse-movement-p |
55a8d59088c1
Add side-effect-free props for many functions.
Richard M. Stallman <rms@gnu.org>
parents:
4755
diff
changeset
|
1260 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
|
1261 one-window-p overlayp |
88804
c97005389b75
(side-effect-free-fns): Add decode-char,
Dave Love <fx@gnu.org>
parents:
88611
diff
changeset
|
1262 point point-marker point-min point-max preceding-char primary-charset |
c97005389b75
(side-effect-free-fns): Add decode-char,
Dave Love <fx@gnu.org>
parents:
88611
diff
changeset
|
1263 processp |
25621
e263170c30d0
(byte-optimize-backward-char, byte-optimize-backward-word): New
Dave Love <fx@gnu.org>
parents:
25557
diff
changeset
|
1264 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
|
1265 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
|
1266 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
|
1267 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
|
1268 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
|
1269 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
|
1270 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
|
1271 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
|
1272 wholenump window-configuration-p window-live-p windowp))) |
757 | 1273 (while side-effect-free-fns |
1274 (put (car side-effect-free-fns) 'side-effect-free t) | |
1275 (setq side-effect-free-fns (cdr side-effect-free-fns))) | |
1276 (while side-effect-and-error-free-fns | |
1277 (put (car side-effect-and-error-free-fns) 'side-effect-free 'error-free) | |
1278 (setq side-effect-and-error-free-fns (cdr side-effect-and-error-free-fns))) | |
1279 nil) | |
1280 | |
77125
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1281 |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1282 ;; pure functions are side-effect free functions whose values depend |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1283 ;; only on their arguments. For these functions, calls with constant |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1284 ;; arguments can be evaluated at compile time. This may shift run time |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1285 ;; errors to compile time. |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1286 |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1287 (let ((pure-fns |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1288 '(concat symbol-name regexp-opt regexp-quote string-to-syntax))) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1289 (while pure-fns |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1290 (put (car pure-fns) 'pure t) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1291 (setq pure-fns (cdr pure-fns))) |
d09092672432
(byte-optimize-form-code-walker): Evaluate pure function calls if possible.
Chong Yidong <cyd@stupidchicken.com>
parents:
77118
diff
changeset
|
1292 nil) |
757 | 1293 |
1294 (defun byte-compile-splice-in-already-compiled-code (form) | |
1295 ;; form is (byte-code "..." [...] n) | |
1296 (if (not (memq byte-optimize '(t lap))) | |
1297 (byte-compile-normal-call form) | |
1298 (byte-inline-lapcode | |
1299 (byte-decompile-bytecode-1 (nth 1 form) (nth 2 form) t)) | |
1300 (setq byte-compile-maxdepth (max (+ byte-compile-depth (nth 3 form)) | |
1301 byte-compile-maxdepth)) | |
1302 (setq byte-compile-depth (1+ byte-compile-depth)))) | |
1303 | |
1304 (put 'byte-code 'byte-compile 'byte-compile-splice-in-already-compiled-code) | |
1305 | |
1306 | |
1307 (defconst byte-constref-ops | |
1308 '(byte-constant byte-constant2 byte-varref byte-varset byte-varbind)) | |
1309 | |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1310 ;; This function extracts the bitfields from variable-length opcodes. |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1311 ;; Originally defined in disass.el (which no longer uses it.) |
757 | 1312 |
1313 (defun disassemble-offset () | |
1314 "Don't call this!" | |
1315 ;; fetch and return the offset for the current opcode. | |
42206 | 1316 ;; return nil if this opcode has no offset |
757 | 1317 ;; OP, PTR and BYTES are used and set dynamically |
1318 (defvar op) | |
1319 (defvar ptr) | |
1320 (defvar bytes) | |
1321 (cond ((< op byte-nth) | |
1322 (let ((tem (logand op 7))) | |
1323 (setq op (logand op 248)) | |
1324 (cond ((eq tem 6) | |
1325 (setq ptr (1+ ptr)) ;offset in next byte | |
1326 (aref bytes ptr)) | |
1327 ((eq tem 7) | |
1328 (setq ptr (1+ ptr)) ;offset in next 2 bytes | |
1329 (+ (aref bytes ptr) | |
1330 (progn (setq ptr (1+ ptr)) | |
1331 (lsh (aref bytes ptr) 8)))) | |
1332 (t tem)))) ;offset was in opcode | |
1333 ((>= op byte-constant) | |
1334 (prog1 (- op byte-constant) ;offset in opcode | |
1335 (setq op byte-constant))) | |
1336 ((and (>= op byte-constant2) | |
1337 (<= op byte-goto-if-not-nil-else-pop)) | |
1338 (setq ptr (1+ ptr)) ;offset in next 2 bytes | |
1339 (+ (aref bytes ptr) | |
1340 (progn (setq ptr (1+ ptr)) | |
1341 (lsh (aref bytes ptr) 8)))) | |
848 | 1342 ((and (>= op byte-listN) |
757 | 1343 (<= op byte-insertN)) |
1344 (setq ptr (1+ ptr)) ;offset in next byte | |
1345 (aref bytes ptr)))) | |
1346 | |
1347 | |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1348 ;; This de-compiler is used for inline expansion of compiled functions, |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1349 ;; and by the disassembler. |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1350 ;; |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1351 ;; This list contains numbers, which are pc values, |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1352 ;; before each instruction. |
757 | 1353 (defun byte-decompile-bytecode (bytes constvec) |
82790
346e6c150fa0
(byte-optimize-if): Move `progn' out of the test
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82365
diff
changeset
|
1354 "Turn BYTECODE into lapcode, referring to CONSTVEC." |
757 | 1355 (let ((byte-compile-constants nil) |
1356 (byte-compile-variables nil) | |
1357 (byte-compile-tag-number 0)) | |
1358 (byte-decompile-bytecode-1 bytes constvec))) | |
1359 | |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1360 ;; As byte-decompile-bytecode, but updates |
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1361 ;; 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
|
1362 ;; 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
|
1363 ;; 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
|
1364 ;; 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
|
1365 ;; 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
|
1366 ;; 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
|
1367 ;; 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
|
1368 (defun byte-decompile-bytecode-1 (bytes constvec &optional make-spliceable) |
757 | 1369 (let ((length (length bytes)) |
58210
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
1370 (ptr 0) optr tags op offset |
757 | 1371 lap tmp |
58210
2d6fd1fbee2e
(byte-optimize-inline-handler): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58165
diff
changeset
|
1372 endtag) |
757 | 1373 (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
|
1374 (or make-spliceable |
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1375 (setq lap (cons ptr lap))) |
757 | 1376 (setq op (aref bytes ptr) |
1377 optr ptr | |
1378 offset (disassemble-offset)) ; this does dynamic-scope magic | |
1379 (setq op (aref byte-code-vector op)) | |
848 | 1380 (cond ((memq op byte-goto-ops) |
757 | 1381 ;; it's a pc |
1382 (setq offset | |
1383 (cdr (or (assq offset tags) | |
1384 (car (setq tags | |
1385 (cons (cons offset | |
1386 (byte-compile-make-tag)) | |
1387 tags))))))) | |
1388 ((cond ((eq op 'byte-constant2) (setq op 'byte-constant) t) | |
1389 ((memq op byte-constref-ops))) | |
22074
b52cdd6c996e
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
21590
diff
changeset
|
1390 (setq tmp (if (>= offset (length constvec)) |
b52cdd6c996e
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
21590
diff
changeset
|
1391 (list 'out-of-range offset) |
b52cdd6c996e
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
21590
diff
changeset
|
1392 (aref constvec offset)) |
757 | 1393 offset (if (eq op 'byte-constant) |
1394 (byte-compile-get-constant tmp) | |
1395 (or (assq tmp byte-compile-variables) | |
1396 (car (setq byte-compile-variables | |
1397 (cons (list tmp) | |
1398 byte-compile-variables))))))) | |
8294
cd3d2474ea10
(byte-decompile-bytecode-1): Don't add pc values
Richard M. Stallman <rms@gnu.org>
parents:
8292
diff
changeset
|
1399 ((and make-spliceable |
757 | 1400 (eq op 'byte-return)) |
1401 (if (= ptr (1- length)) | |
1402 (setq op nil) | |
1403 (setq offset (or endtag (setq endtag (byte-compile-make-tag))) | |
1404 op 'byte-goto)))) | |
1405 ;; lap = ( [ (pc . (op . arg)) ]* ) | |
1406 (setq lap (cons (cons optr (cons op (or offset 0))) | |
1407 lap)) | |
1408 (setq ptr (1+ ptr))) | |
1409 ;; take off the dummy nil op that we replaced a trailing "return" with. | |
1410 (let ((rest lap)) | |
1411 (while rest | |
8292
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1412 (cond ((numberp (car rest))) |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1413 ((setq tmp (assq (car (car rest)) tags)) |
757 | 1414 ;; this addr is jumped to |
1415 (setcdr rest (cons (cons nil (cdr tmp)) | |
1416 (cdr rest))) | |
1417 (setq tags (delq tmp tags)) | |
1418 (setq rest (cdr rest)))) | |
1419 (setq rest (cdr rest)))) | |
1420 (if tags (error "optimizer error: missed tags %s" tags)) | |
1421 (if (null (car (cdr (car lap)))) | |
1422 (setq lap (cdr lap))) | |
1423 (if endtag | |
1424 (setq lap (cons (cons nil endtag) lap))) | |
1425 ;; remove addrs, lap = ( [ (op . arg) | (TAG tagno) ]* ) | |
8292
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1426 (mapcar (function (lambda (elt) |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1427 (if (numberp elt) |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1428 elt |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1429 (cdr elt)))) |
6857db0f3c82
(byte-decompile-bytecode-1):
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1430 (nreverse lap)))) |
757 | 1431 |
1432 | |
1433 ;;; peephole optimizer | |
1434 | |
1435 (defconst byte-tagref-ops (cons 'TAG byte-goto-ops)) | |
1436 | |
1437 (defconst byte-conditional-ops | |
1438 '(byte-goto-if-nil byte-goto-if-not-nil byte-goto-if-nil-else-pop | |
1439 byte-goto-if-not-nil-else-pop)) | |
1440 | |
1441 (defconst byte-after-unbind-ops | |
1442 '(byte-constant byte-dup | |
1443 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
|
1444 byte-eq byte-not |
757 | 1445 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
|
1446 byte-interactive-p) |
3cca823100db
(byte-after-unbind-ops): Fix paren error wrt doc string.
Richard M. Stallman <rms@gnu.org>
parents:
8294
diff
changeset
|
1447 ;; 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
|
1448 ;; 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
|
1449 ;; 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
|
1450 ;; 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
|
1451 ;; 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
|
1452 "Byte-codes that can be moved past an unbind.") |
757 | 1453 |
1454 (defconst byte-compile-side-effect-and-error-free-ops | |
1455 '(byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp | |
1456 byte-integerp byte-numberp byte-eq byte-equal byte-not byte-car-safe | |
1457 byte-cdr-safe byte-cons byte-list1 byte-list2 byte-point byte-point-max | |
1458 byte-point-min byte-following-char byte-preceding-char | |
1459 byte-current-column byte-eolp byte-eobp byte-bolp byte-bobp | |
1460 byte-current-buffer byte-interactive-p)) | |
1461 | |
1462 (defconst byte-compile-side-effect-free-ops | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
1463 (nconc |
757 | 1464 '(byte-varref byte-nth byte-memq byte-car byte-cdr byte-length byte-aref |
1465 byte-symbol-value byte-get byte-concat2 byte-concat3 byte-sub1 byte-add1 | |
1466 byte-eqlsign byte-gtr byte-lss byte-leq byte-geq byte-diff byte-negate | |
1467 byte-plus byte-max byte-min byte-mult byte-char-after byte-char-syntax | |
1468 byte-buffer-substring byte-string= byte-string< byte-nthcdr byte-elt | |
1469 byte-member byte-assq byte-quo byte-rem) | |
1470 byte-compile-side-effect-and-error-free-ops)) | |
1471 | |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1472 ;; This crock is because of the way DEFVAR_BOOL variables work. |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1473 ;; Consider the code |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1474 ;; |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1475 ;; (defun foo (flag) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1476 ;; (let ((old-pop-ups pop-up-windows) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1477 ;; (pop-up-windows flag)) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1478 ;; (cond ((not (eq pop-up-windows old-pop-ups)) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1479 ;; (setq old-pop-ups pop-up-windows) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1480 ;; ...)))) |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1481 ;; |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1482 ;; Uncompiled, old-pop-ups will always be set to nil or t, even if FLAG is |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1483 ;; something else. But if we optimize |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1484 ;; |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1485 ;; varref flag |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1486 ;; varbind pop-up-windows |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1487 ;; varref pop-up-windows |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1488 ;; not |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1489 ;; to |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1490 ;; varref flag |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1491 ;; dup |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1492 ;; varbind pop-up-windows |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1493 ;; not |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1494 ;; |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1495 ;; we break the program, because it will appear that pop-up-windows and |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1496 ;; old-pop-ups are not EQ when really they are. So we have to know what |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1497 ;; 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
|
1498 |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1499 ;; The variable `byte-boolean-vars' is now primitive and updated |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1500 ;; automatically by DEFVAR_BOOL. |
757 | 1501 |
1502 (defun byte-optimize-lapcode (lap &optional for-effect) | |
54495
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1503 "Simple peephole optimizer. LAP is both modified and returned. |
fec123d89bd0
(byte-compile-log-lap, byte-compile-inline-expand): Use backquote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1504 If FOR-EFFECT is non-nil, the return value is assumed to be of no importance." |
32078
038a08ffb9f8
(byte-optimize-lapcode): Don't bind
Dave Love <fx@gnu.org>
parents:
29580
diff
changeset
|
1505 (let (lap0 |
038a08ffb9f8
(byte-optimize-lapcode): Don't bind
Dave Love <fx@gnu.org>
parents:
29580
diff
changeset
|
1506 lap1 |
038a08ffb9f8
(byte-optimize-lapcode): Don't bind
Dave Love <fx@gnu.org>
parents:
29580
diff
changeset
|
1507 lap2 |
757 | 1508 (keep-going 'first-time) |
1509 (add-depth 0) | |
1510 rest tmp tmp2 tmp3 | |
1511 (side-effect-free (if byte-compile-delete-errors | |
1512 byte-compile-side-effect-free-ops | |
1513 byte-compile-side-effect-and-error-free-ops))) | |
1514 (while keep-going | |
1515 (or (eq keep-going 'first-time) | |
1516 (byte-compile-log-lap " ---- next pass")) | |
1517 (setq rest lap | |
1518 keep-going nil) | |
1519 (while rest | |
1520 (setq lap0 (car rest) | |
1521 lap1 (nth 1 rest) | |
1522 lap2 (nth 2 rest)) | |
1523 | |
1524 ;; You may notice that sequences like "dup varset discard" are | |
1525 ;; optimized but sequences like "dup varset TAG1: discard" are not. | |
1526 ;; You may be tempted to change this; resist that temptation. | |
1527 (cond ;; | |
1528 ;; <side-effect-free> pop --> <deleted> | |
1529 ;; ...including: | |
1530 ;; const-X pop --> <deleted> | |
1531 ;; varref-X pop --> <deleted> | |
1532 ;; dup pop --> <deleted> | |
1533 ;; | |
1534 ((and (eq 'byte-discard (car lap1)) | |
1535 (memq (car lap0) side-effect-free)) | |
1536 (setq keep-going t) | |
1537 (setq tmp (aref byte-stack+-info (symbol-value (car lap0)))) | |
1538 (setq rest (cdr rest)) | |
1539 (cond ((= tmp 1) | |
1540 (byte-compile-log-lap | |
1541 " %s discard\t-->\t<deleted>" lap0) | |
1542 (setq lap (delq lap0 (delq lap1 lap)))) | |
1543 ((= tmp 0) | |
1544 (byte-compile-log-lap | |
1545 " %s discard\t-->\t<deleted> discard" lap0) | |
1546 (setq lap (delq lap0 lap))) | |
1547 ((= tmp -1) | |
1548 (byte-compile-log-lap | |
1549 " %s discard\t-->\tdiscard discard" lap0) | |
1550 (setcar lap0 'byte-discard) | |
1551 (setcdr lap0 0)) | |
1552 ((error "Optimizer error: too much on the stack")))) | |
1553 ;; | |
1554 ;; goto*-X X: --> X: | |
1555 ;; | |
1556 ((and (memq (car lap0) byte-goto-ops) | |
1557 (eq (cdr lap0) lap1)) | |
1558 (cond ((eq (car lap0) 'byte-goto) | |
1559 (setq lap (delq lap0 lap)) | |
1560 (setq tmp "<deleted>")) | |
1561 ((memq (car lap0) byte-goto-always-pop-ops) | |
1562 (setcar lap0 (setq tmp 'byte-discard)) | |
1563 (setcdr lap0 0)) | |
1564 ((error "Depth conflict at tag %d" (nth 2 lap0)))) | |
1565 (and (memq byte-optimize-log '(t byte)) | |
1566 (byte-compile-log " (goto %s) %s:\t-->\t%s %s:" | |
1567 (nth 1 lap1) (nth 1 lap1) | |
1568 tmp (nth 1 lap1))) | |
1569 (setq keep-going t)) | |
1570 ;; | |
1571 ;; varset-X varref-X --> dup varset-X | |
1572 ;; varbind-X varref-X --> dup varbind-X | |
1573 ;; const/dup varset-X varref-X --> const/dup varset-X const/dup | |
1574 ;; const/dup varbind-X varref-X --> const/dup varbind-X const/dup | |
1575 ;; The latter two can enable other optimizations. | |
1576 ;; | |
1577 ((and (eq 'byte-varref (car lap2)) | |
1578 (eq (cdr lap1) (cdr lap2)) | |
1579 (memq (car lap1) '(byte-varset byte-varbind))) | |
1580 (if (and (setq tmp (memq (car (cdr lap2)) byte-boolean-vars)) | |
1581 (not (eq (car lap0) 'byte-constant))) | |
1582 nil | |
1583 (setq keep-going t) | |
1584 (if (memq (car lap0) '(byte-constant byte-dup)) | |
1585 (progn | |
1586 (setq tmp (if (or (not tmp) | |
27823 | 1587 (byte-compile-const-symbol-p |
1588 (car (cdr lap0)))) | |
757 | 1589 (cdr lap0) |
1590 (byte-compile-get-constant t))) | |
1591 (byte-compile-log-lap " %s %s %s\t-->\t%s %s %s" | |
1592 lap0 lap1 lap2 lap0 lap1 | |
1593 (cons (car lap0) tmp)) | |
1594 (setcar lap2 (car lap0)) | |
1595 (setcdr lap2 tmp)) | |
1596 (byte-compile-log-lap " %s %s\t-->\tdup %s" lap1 lap2 lap1) | |
1597 (setcar lap2 (car lap1)) | |
1598 (setcar lap1 'byte-dup) | |
1599 (setcdr lap1 0) | |
1600 ;; The stack depth gets locally increased, so we will | |
1601 ;; increase maxdepth in case depth = maxdepth here. | |
1602 ;; This can cause the third argument to byte-code to | |
1603 ;; be larger than necessary. | |
1604 (setq add-depth 1)))) | |
1605 ;; | |
1606 ;; dup varset-X discard --> varset-X | |
1607 ;; dup varbind-X discard --> varbind-X | |
1608 ;; (the varbind variant can emerge from other optimizations) | |
1609 ;; | |
1610 ((and (eq 'byte-dup (car lap0)) | |
1611 (eq 'byte-discard (car lap2)) | |
1612 (memq (car lap1) '(byte-varset byte-varbind))) | |
1613 (byte-compile-log-lap " dup %s discard\t-->\t%s" lap1 lap1) | |
1614 (setq keep-going t | |
1615 rest (cdr rest)) | |
1616 (setq lap (delq lap0 (delq lap2 lap)))) | |
1617 ;; | |
1618 ;; not goto-X-if-nil --> goto-X-if-non-nil | |
1619 ;; not goto-X-if-non-nil --> goto-X-if-nil | |
1620 ;; | |
1621 ;; it is wrong to do the same thing for the -else-pop variants. | |
1622 ;; | |
1623 ((and (eq 'byte-not (car lap0)) | |
1624 (or (eq 'byte-goto-if-nil (car lap1)) | |
1625 (eq 'byte-goto-if-not-nil (car lap1)))) | |
1626 (byte-compile-log-lap " not %s\t-->\t%s" | |
1627 lap1 | |
1628 (cons | |
1629 (if (eq (car lap1) 'byte-goto-if-nil) | |
1630 'byte-goto-if-not-nil | |
1631 'byte-goto-if-nil) | |
1632 (cdr lap1))) | |
1633 (setcar lap1 (if (eq (car lap1) 'byte-goto-if-nil) | |
1634 'byte-goto-if-not-nil | |
1635 'byte-goto-if-nil)) | |
1636 (setq lap (delq lap0 lap)) | |
1637 (setq keep-going t)) | |
1638 ;; | |
1639 ;; goto-X-if-nil goto-Y X: --> goto-Y-if-non-nil X: | |
1640 ;; goto-X-if-non-nil goto-Y X: --> goto-Y-if-nil X: | |
1641 ;; | |
1642 ;; it is wrong to do the same thing for the -else-pop variants. | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
1643 ;; |
757 | 1644 ((and (or (eq 'byte-goto-if-nil (car lap0)) |
1645 (eq 'byte-goto-if-not-nil (car lap0))) ; gotoX | |
1646 (eq 'byte-goto (car lap1)) ; gotoY | |
1647 (eq (cdr lap0) lap2)) ; TAG X | |
1648 (let ((inverse (if (eq 'byte-goto-if-nil (car lap0)) | |
1649 'byte-goto-if-not-nil 'byte-goto-if-nil))) | |
1650 (byte-compile-log-lap " %s %s %s:\t-->\t%s %s:" | |
1651 lap0 lap1 lap2 | |
1652 (cons inverse (cdr lap1)) lap2) | |
1653 (setq lap (delq lap0 lap)) | |
1654 (setcar lap1 inverse) | |
1655 (setq keep-going t))) | |
1656 ;; | |
1657 ;; const goto-if-* --> whatever | |
1658 ;; | |
1659 ((and (eq 'byte-constant (car lap0)) | |
1660 (memq (car lap1) byte-conditional-ops)) | |
1661 (cond ((if (or (eq (car lap1) 'byte-goto-if-nil) | |
1662 (eq (car lap1) 'byte-goto-if-nil-else-pop)) | |
1663 (car (cdr lap0)) | |
1664 (not (car (cdr lap0)))) | |
1665 (byte-compile-log-lap " %s %s\t-->\t<deleted>" | |
1666 lap0 lap1) | |
1667 (setq rest (cdr rest) | |
1668 lap (delq lap0 (delq lap1 lap)))) | |
1669 (t | |
1670 (if (memq (car lap1) byte-goto-always-pop-ops) | |
1671 (progn | |
1672 (byte-compile-log-lap " %s %s\t-->\t%s" | |
1673 lap0 lap1 (cons 'byte-goto (cdr lap1))) | |
1674 (setq lap (delq lap0 lap))) | |
1675 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1 | |
1676 (cons 'byte-goto (cdr lap1)))) | |
1677 (setcar lap1 'byte-goto))) | |
1678 (setq keep-going t)) | |
1679 ;; | |
1680 ;; varref-X varref-X --> varref-X dup | |
1681 ;; varref-X [dup ...] varref-X --> varref-X [dup ...] dup | |
1682 ;; We don't optimize the const-X variations on this here, | |
1683 ;; because that would inhibit some goto optimizations; we | |
1684 ;; optimize the const-X case after all other optimizations. | |
1685 ;; | |
1686 ((and (eq 'byte-varref (car lap0)) | |
1687 (progn | |
1688 (setq tmp (cdr rest)) | |
1689 (while (eq (car (car tmp)) 'byte-dup) | |
1690 (setq tmp (cdr tmp))) | |
1691 t) | |
1692 (eq (cdr lap0) (cdr (car tmp))) | |
1693 (eq 'byte-varref (car (car tmp)))) | |
1694 (if (memq byte-optimize-log '(t byte)) | |
1695 (let ((str "")) | |
1696 (setq tmp2 (cdr rest)) | |
1697 (while (not (eq tmp tmp2)) | |
1698 (setq tmp2 (cdr tmp2) | |
1699 str (concat str " dup"))) | |
1700 (byte-compile-log-lap " %s%s %s\t-->\t%s%s dup" | |
1701 lap0 str lap0 lap0 str))) | |
1702 (setq keep-going t) | |
1703 (setcar (car tmp) 'byte-dup) | |
1704 (setcdr (car tmp) 0) | |
1705 (setq rest tmp)) | |
1706 ;; | |
1707 ;; TAG1: TAG2: --> TAG1: <deleted> | |
1708 ;; (and other references to TAG2 are replaced with TAG1) | |
1709 ;; | |
1710 ((and (eq (car lap0) 'TAG) | |
1711 (eq (car lap1) 'TAG)) | |
1712 (and (memq byte-optimize-log '(t byte)) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3138
diff
changeset
|
1713 (byte-compile-log " adjacent tags %d and %d merged" |
757 | 1714 (nth 1 lap1) (nth 1 lap0))) |
1715 (setq tmp3 lap) | |
1716 (while (setq tmp2 (rassq lap0 tmp3)) | |
1717 (setcdr tmp2 lap1) | |
1718 (setq tmp3 (cdr (memq tmp2 tmp3)))) | |
1719 (setq lap (delq lap0 lap) | |
1720 keep-going t)) | |
1721 ;; | |
1722 ;; unused-TAG: --> <deleted> | |
1723 ;; | |
1724 ((and (eq 'TAG (car lap0)) | |
1725 (not (rassq lap0 lap))) | |
1726 (and (memq byte-optimize-log '(t byte)) | |
1727 (byte-compile-log " unused tag %d removed" (nth 1 lap0))) | |
1728 (setq lap (delq lap0 lap) | |
1729 keep-going t)) | |
1730 ;; | |
1731 ;; goto ... --> goto <delete until TAG or end> | |
1732 ;; return ... --> return <delete until TAG or end> | |
1733 ;; | |
1734 ((and (memq (car lap0) '(byte-goto byte-return)) | |
1735 (not (memq (car lap1) '(TAG nil)))) | |
1736 (setq tmp rest) | |
1737 (let ((i 0) | |
1738 (opt-p (memq byte-optimize-log '(t lap))) | |
1739 str deleted) | |
1740 (while (and (setq tmp (cdr tmp)) | |
1741 (not (eq 'TAG (car (car tmp))))) | |
1742 (if opt-p (setq deleted (cons (car tmp) deleted) | |
1743 str (concat str " %s") | |
1744 i (1+ i)))) | |
1745 (if opt-p | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
1746 (let ((tagstr |
757 | 1747 (if (eq 'TAG (car (car tmp))) |
12638
4adf53113ec9
(byte-optimize-lapcode): Fix format calls.
Richard M. Stallman <rms@gnu.org>
parents:
12550
diff
changeset
|
1748 (format "%d:" (car (cdr (car tmp)))) |
757 | 1749 (or (car tmp) "")))) |
1750 (if (< i 6) | |
1751 (apply 'byte-compile-log-lap-1 | |
1752 (concat " %s" str | |
1753 " %s\t-->\t%s <deleted> %s") | |
1754 lap0 | |
1755 (nconc (nreverse deleted) | |
1756 (list tagstr lap0 tagstr))) | |
1757 (byte-compile-log-lap | |
1758 " %s <%d unreachable op%s> %s\t-->\t%s <deleted> %s" | |
1759 lap0 i (if (= i 1) "" "s") | |
1760 tagstr lap0 tagstr)))) | |
1761 (rplacd rest tmp)) | |
1762 (setq keep-going t)) | |
1763 ;; | |
1764 ;; <safe-op> unbind --> unbind <safe-op> | |
1765 ;; (this may enable other optimizations.) | |
1766 ;; | |
1767 ((and (eq 'byte-unbind (car lap1)) | |
1768 (memq (car lap0) byte-after-unbind-ops)) | |
1769 (byte-compile-log-lap " %s %s\t-->\t%s %s" lap0 lap1 lap1 lap0) | |
1770 (setcar rest lap1) | |
1771 (setcar (cdr rest) lap0) | |
1772 (setq keep-going t)) | |
1773 ;; | |
1774 ;; varbind-X unbind-N --> discard unbind-(N-1) | |
1775 ;; save-excursion unbind-N --> unbind-(N-1) | |
1776 ;; save-restriction unbind-N --> unbind-(N-1) | |
1777 ;; | |
1778 ((and (eq 'byte-unbind (car lap1)) | |
1779 (memq (car lap0) '(byte-varbind byte-save-excursion | |
1780 byte-save-restriction)) | |
1781 (< 0 (cdr lap1))) | |
1782 (if (zerop (setcdr lap1 (1- (cdr lap1)))) | |
1783 (delq lap1 rest)) | |
1784 (if (eq (car lap0) 'byte-varbind) | |
1785 (setcar rest (cons 'byte-discard 0)) | |
1786 (setq lap (delq lap0 lap))) | |
1787 (byte-compile-log-lap " %s %s\t-->\t%s %s" | |
1788 lap0 (cons (car lap1) (1+ (cdr lap1))) | |
1789 (if (eq (car lap0) 'byte-varbind) | |
1790 (car rest) | |
1791 (car (cdr rest))) | |
1792 (if (and (/= 0 (cdr lap1)) | |
1793 (eq (car lap0) 'byte-varbind)) | |
1794 (car (cdr rest)) | |
1795 "")) | |
1796 (setq keep-going t)) | |
1797 ;; | |
1798 ;; goto*-X ... X: goto-Y --> goto*-Y | |
1799 ;; goto-X ... X: return --> return | |
1800 ;; | |
1801 ((and (memq (car lap0) byte-goto-ops) | |
1802 (memq (car (setq tmp (nth 1 (memq (cdr lap0) lap)))) | |
1803 '(byte-goto byte-return))) | |
1804 (cond ((and (not (eq tmp lap0)) | |
1805 (or (eq (car lap0) 'byte-goto) | |
1806 (eq (car tmp) 'byte-goto))) | |
1807 (byte-compile-log-lap " %s [%s]\t-->\t%s" | |
1808 (car lap0) tmp tmp) | |
1809 (if (eq (car tmp) 'byte-return) | |
1810 (setcar lap0 'byte-return)) | |
1811 (setcdr lap0 (cdr tmp)) | |
1812 (setq keep-going t)))) | |
1813 ;; | |
1814 ;; goto-*-else-pop X ... X: goto-if-* --> whatever | |
1815 ;; goto-*-else-pop X ... X: discard --> whatever | |
1816 ;; | |
1817 ((and (memq (car lap0) '(byte-goto-if-nil-else-pop | |
1818 byte-goto-if-not-nil-else-pop)) | |
1819 (memq (car (car (setq tmp (cdr (memq (cdr lap0) lap))))) | |
1820 (eval-when-compile | |
1821 (cons 'byte-discard byte-conditional-ops))) | |
1822 (not (eq lap0 (car tmp)))) | |
1823 (setq tmp2 (car tmp)) | |
1824 (setq tmp3 (assq (car lap0) '((byte-goto-if-nil-else-pop | |
1825 byte-goto-if-nil) | |
1826 (byte-goto-if-not-nil-else-pop | |
1827 byte-goto-if-not-nil)))) | |
1828 (if (memq (car tmp2) tmp3) | |
1829 (progn (setcar lap0 (car tmp2)) | |
1830 (setcdr lap0 (cdr tmp2)) | |
1831 (byte-compile-log-lap " %s-else-pop [%s]\t-->\t%s" | |
1832 (car lap0) tmp2 lap0)) | |
1833 ;; Get rid of the -else-pop's and jump one step further. | |
1834 (or (eq 'TAG (car (nth 1 tmp))) | |
1835 (setcdr tmp (cons (byte-compile-make-tag) | |
1836 (cdr tmp)))) | |
1837 (byte-compile-log-lap " %s [%s]\t-->\t%s <skip>" | |
1838 (car lap0) tmp2 (nth 1 tmp3)) | |
1839 (setcar lap0 (nth 1 tmp3)) | |
1840 (setcdr lap0 (nth 1 tmp))) | |
1841 (setq keep-going t)) | |
1842 ;; | |
1843 ;; const goto-X ... X: goto-if-* --> whatever | |
1844 ;; const goto-X ... X: discard --> whatever | |
1845 ;; | |
1846 ((and (eq (car lap0) 'byte-constant) | |
1847 (eq (car lap1) 'byte-goto) | |
1848 (memq (car (car (setq tmp (cdr (memq (cdr lap1) lap))))) | |
1849 (eval-when-compile | |
1850 (cons 'byte-discard byte-conditional-ops))) | |
1851 (not (eq lap1 (car tmp)))) | |
1852 (setq tmp2 (car tmp)) | |
1853 (cond ((memq (car tmp2) | |
1854 (if (null (car (cdr lap0))) | |
1855 '(byte-goto-if-nil byte-goto-if-nil-else-pop) | |
1856 '(byte-goto-if-not-nil | |
1857 byte-goto-if-not-nil-else-pop))) | |
1858 (byte-compile-log-lap " %s goto [%s]\t-->\t%s %s" | |
1859 lap0 tmp2 lap0 tmp2) | |
1860 (setcar lap1 (car tmp2)) | |
1861 (setcdr lap1 (cdr tmp2)) | |
1862 ;; Let next step fix the (const,goto-if*) sequence. | |
1863 (setq rest (cons nil rest))) | |
1864 (t | |
1865 ;; Jump one step further | |
1866 (byte-compile-log-lap | |
1867 " %s goto [%s]\t-->\t<deleted> goto <skip>" | |
1868 lap0 tmp2) | |
1869 (or (eq 'TAG (car (nth 1 tmp))) | |
1870 (setcdr tmp (cons (byte-compile-make-tag) | |
1871 (cdr tmp)))) | |
1872 (setcdr lap1 (car (cdr tmp))) | |
1873 (setq lap (delq lap0 lap)))) | |
1874 (setq keep-going t)) | |
1875 ;; | |
1876 ;; X: varref-Y ... varset-Y goto-X --> | |
1877 ;; X: varref-Y Z: ... dup varset-Y goto-Z | |
1878 ;; (varset-X goto-BACK, BACK: varref-X --> copy the varref down.) | |
1879 ;; (This is so usual for while loops that it is worth handling). | |
1880 ;; | |
1881 ((and (eq (car lap1) 'byte-varset) | |
1882 (eq (car lap2) 'byte-goto) | |
1883 (not (memq (cdr lap2) rest)) ;Backwards jump | |
1884 (eq (car (car (setq tmp (cdr (memq (cdr lap2) lap))))) | |
1885 'byte-varref) | |
1886 (eq (cdr (car tmp)) (cdr lap1)) | |
1887 (not (memq (car (cdr lap1)) byte-boolean-vars))) | |
1888 ;;(byte-compile-log-lap " Pulled %s to end of loop" (car tmp)) | |
1889 (let ((newtag (byte-compile-make-tag))) | |
1890 (byte-compile-log-lap | |
1891 " %s: %s ... %s %s\t-->\t%s: %s %s: ... %s %s %s" | |
1892 (nth 1 (cdr lap2)) (car tmp) | |
1893 lap1 lap2 | |
1894 (nth 1 (cdr lap2)) (car tmp) | |
1895 (nth 1 newtag) 'byte-dup lap1 | |
1896 (cons 'byte-goto newtag) | |
1897 ) | |
1898 (setcdr rest (cons (cons 'byte-dup 0) (cdr rest))) | |
1899 (setcdr tmp (cons (setcdr lap2 newtag) (cdr tmp)))) | |
1900 (setq add-depth 1) | |
1901 (setq keep-going t)) | |
1902 ;; | |
1903 ;; goto-X Y: ... X: goto-if*-Y --> goto-if-not-*-X+1 Y: | |
1904 ;; (This can pull the loop test to the end of the loop) | |
1905 ;; | |
1906 ((and (eq (car lap0) 'byte-goto) | |
1907 (eq (car lap1) 'TAG) | |
1908 (eq lap1 | |
1909 (cdr (car (setq tmp (cdr (memq (cdr lap0) lap)))))) | |
1910 (memq (car (car tmp)) | |
1911 '(byte-goto byte-goto-if-nil byte-goto-if-not-nil | |
1912 byte-goto-if-nil-else-pop))) | |
1913 ;; (byte-compile-log-lap " %s %s, %s %s --> moved conditional" | |
1914 ;; lap0 lap1 (cdr lap0) (car tmp)) | |
1915 (let ((newtag (byte-compile-make-tag))) | |
1916 (byte-compile-log-lap | |
1917 "%s %s: ... %s: %s\t-->\t%s ... %s:" | |
1918 lap0 (nth 1 lap1) (nth 1 (cdr lap0)) (car tmp) | |
1919 (cons (cdr (assq (car (car tmp)) | |
1920 '((byte-goto-if-nil . byte-goto-if-not-nil) | |
1921 (byte-goto-if-not-nil . byte-goto-if-nil) | |
1922 (byte-goto-if-nil-else-pop . | |
1923 byte-goto-if-not-nil-else-pop) | |
1924 (byte-goto-if-not-nil-else-pop . | |
1925 byte-goto-if-nil-else-pop)))) | |
1926 newtag) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49041
diff
changeset
|
1927 |
757 | 1928 (nth 1 newtag) |
1929 ) | |
1930 (setcdr tmp (cons (setcdr lap0 newtag) (cdr tmp))) | |
1931 (if (eq (car (car tmp)) 'byte-goto-if-nil-else-pop) | |
1932 ;; We can handle this case but not the -if-not-nil case, | |
1933 ;; because we won't know which non-nil constant to push. | |
1934 (setcdr rest (cons (cons 'byte-constant | |
1935 (byte-compile-get-constant nil)) | |
1936 (cdr rest)))) | |
1937 (setcar lap0 (nth 1 (memq (car (car tmp)) | |
1938 '(byte-goto-if-nil-else-pop | |
1939 byte-goto-if-not-nil | |
1940 byte-goto-if-nil | |
1941 byte-goto-if-not-nil | |
1942 byte-goto byte-goto)))) | |
1943 ) | |
1944 (setq keep-going t)) | |
1945 ) | |
1946 (setq rest (cdr rest))) | |
1947 ) | |
1948 ;; Cleanup stage: | |
1949 ;; Rebuild byte-compile-constants / byte-compile-variables. | |
1950 ;; Simple optimizations that would inhibit other optimizations if they | |
1951 ;; were done in the optimizing loop, and optimizations which there is no | |
1952 ;; need to do more than once. | |
1953 (setq byte-compile-constants nil | |
1954 byte-compile-variables nil) | |
1955 (setq rest lap) | |
1956 (while rest | |
1957 (setq lap0 (car rest) | |
1958 lap1 (nth 1 rest)) | |
1959 (if (memq (car lap0) byte-constref-ops) | |
39777 | 1960 (if (or (eq (car lap0) 'byte-constant) |
1961 (eq (car lap0) 'byte-constant2)) | |
1962 (unless (memq (cdr lap0) byte-compile-constants) | |
757 | 1963 (setq byte-compile-constants (cons (cdr lap0) |
39777 | 1964 byte-compile-constants))) |
1965 (unless (memq (cdr lap0) byte-compile-variables) | |
1966 (setq byte-compile-variables (cons (cdr lap0) | |
1967 byte-compile-variables))))) | |
757 | 1968 (cond (;; |
1969 ;; const-C varset-X const-C --> const-C dup varset-X | |
1970 ;; const-C varbind-X const-C --> const-C dup varbind-X | |
1971 ;; | |
1972 (and (eq (car lap0) 'byte-constant) | |
1973 (eq (car (nth 2 rest)) 'byte-constant) | |
39777 | 1974 (eq (cdr lap0) (cdr (nth 2 rest))) |
757 | 1975 (memq (car lap1) '(byte-varbind byte-varset))) |
1976 (byte-compile-log-lap " %s %s %s\t-->\t%s dup %s" | |
1977 lap0 lap1 lap0 lap0 lap1) | |
1978 (setcar (cdr (cdr rest)) (cons (car lap1) (cdr lap1))) | |
1979 (setcar (cdr rest) (cons 'byte-dup 0)) | |
1980 (setq add-depth 1)) | |
1981 ;; | |
1982 ;; const-X [dup/const-X ...] --> const-X [dup ...] dup | |
1983 ;; varref-X [dup/varref-X ...] --> varref-X [dup ...] dup | |
1984 ;; | |
1985 ((memq (car lap0) '(byte-constant byte-varref)) | |
1986 (setq tmp rest | |
1987 tmp2 nil) | |
1988 (while (progn | |
1989 (while (eq 'byte-dup (car (car (setq tmp (cdr tmp)))))) | |
1990 (and (eq (cdr lap0) (cdr (car tmp))) | |
1991 (eq (car lap0) (car (car tmp))))) | |
1992 (setcar tmp (cons 'byte-dup 0)) | |
1993 (setq tmp2 t)) | |
1994 (if tmp2 | |
1995 (byte-compile-log-lap | |
12638
4adf53113ec9
(byte-optimize-lapcode): Fix format calls.
Richard M. Stallman <rms@gnu.org>
parents:
12550
diff
changeset
|
1996 " %s [dup/%s]...\t-->\t%s dup..." lap0 lap0 lap0))) |
757 | 1997 ;; |
1998 ;; unbind-N unbind-M --> unbind-(N+M) | |
1999 ;; | |
2000 ((and (eq 'byte-unbind (car lap0)) | |
2001 (eq 'byte-unbind (car lap1))) | |
2002 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1 | |
2003 (cons 'byte-unbind | |
2004 (+ (cdr lap0) (cdr lap1)))) | |
2005 (setq keep-going t) | |
2006 (setq lap (delq lap0 lap)) | |
2007 (setcdr lap1 (+ (cdr lap1) (cdr lap0)))) | |
2008 ) | |
2009 (setq rest (cdr rest))) | |
2010 (setq byte-compile-maxdepth (+ byte-compile-maxdepth add-depth))) | |
2011 lap) | |
2012 | |
25231
b587c4aeff78
Provide `byte-optimize', not `byte-opt'.
Karl Heuer <kwzh@gnu.org>
parents:
24734
diff
changeset
|
2013 (provide 'byte-opt) |
757 | 2014 |
2015 | |
2016 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when this file compiles | |
2017 ;; itself, compile some of its most used recursive functions (at load time). | |
2018 ;; | |
2019 (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
|
2020 (or (byte-code-function-p (symbol-function 'byte-optimize-form)) |
757 | 2021 (assq 'byte-code (symbol-function 'byte-optimize-form)) |
2022 (let ((byte-optimize nil) | |
2023 (byte-compile-warnings nil)) | |
85183
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2024 (mapc (lambda (x) |
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2025 (or noninteractive (message "compiling %s..." x)) |
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2026 (byte-compile x) |
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2027 (or noninteractive (message "compiling %s...done" x))) |
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2028 '(byte-optimize-form |
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2029 byte-optimize-body |
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2030 byte-optimize-predicate |
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2031 byte-optimize-binary-predicate |
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2032 ;; Inserted some more than necessary, to speed it up. |
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2033 byte-optimize-form-code-walker |
d18b96e2d51f
(top level): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
82907
diff
changeset
|
2034 byte-optimize-lapcode)))) |
757 | 2035 nil) |
848 | 2036 |
58165
cc9f1e89279b
(byte-compile-inline-expand): Understand the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57423
diff
changeset
|
2037 ;; arch-tag: 0f14076b-737e-4bef-aae6-908826ec1ff1 |
848 | 2038 ;;; byte-opt.el ends here |