annotate lisp/bytecomp/byte-optimize.el @ 22:8fc7fe29b841 r19-15b94

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