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