annotate lisp/bytecomp/byte-optimize.el @ 48:56c54cf7c5b6 r19-16b90

Import from CVS: tag r19-16b90
author cvs
date Mon, 13 Aug 2007 08:56:04 +0200
parents 8fc7fe29b841
children 131b0175ea99
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
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
652 ;; jwz: (byte-optimize-approx-equal 0.0 0.0) was returning nil
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
653 ;; in xemacs 19.15 because it used < instead of <=.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (defun byte-optimize-approx-equal (x y)
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
655 (<= (* (abs (- x y)) 100) (abs (+ x y))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 ;; Collect all the constants from FORM, after the STARTth arg,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 ;; and apply FUN to them to make one argument at the end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 ;; For functions that can handle floats, that optimization
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 ;; can be incorrect because reordering can cause an overflow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 ;; that would otherwise be avoided by encountering an arg that is a float.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 ;; We avoid this problem by (1) not moving float constants and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 ;; (2) not moving anything if it would cause an overflow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (defun byte-optimize-delay-constants-math (form start fun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 ;; Merge all FORM's constants from number START, call FUN on them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 ;; and put the result at the end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (let ((rest (nthcdr (1- start) form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (orig form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 ;; t means we must check for overflow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 (overflow (memq fun '(+ *))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 (while (cdr (setq rest (cdr rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 (if (integerp (car rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 (let (constants)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 (setq form (copy-sequence form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 rest (nthcdr (1- start) form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 (while (setq rest (cdr rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 (cond ((integerp (car rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 (setq constants (cons (car rest) constants))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 (setcar rest nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 ;; If necessary, check now for overflow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 ;; that might be caused by reordering.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 (if (and overflow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 ;; We have overflow if the result of doing the arithmetic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 ;; on floats is not even close to the result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 ;; of doing it on integers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (not (byte-optimize-approx-equal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (apply fun (mapcar 'float constants))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (float (apply fun constants)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (setq form orig)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (setq form (nconc (delq nil form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 (list (apply fun (nreverse constants)))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 (defun byte-optimize-plus (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 (setq form (byte-optimize-delay-constants-math form 1 '+))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 (if (memq 0 form) (setq form (delq 0 (copy-sequence form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 ;;(setq form (byte-optimize-associative-two-args-math form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 (cond ((null (cdr form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 (eval form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (error form)))
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
702
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
703 ;; `add1' and `sub1' are a marginally fewer instructions
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
704 ;; than `plus' and `minus', so use them when possible.
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
705 ((and (null (nthcdr 3 form))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
706 (eq (nth 2 form) 1))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
707 (list '1+ (nth 1 form))) ; (+ x 1) --> (1+ x)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
708 ((and (null (nthcdr 3 form))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
709 (eq (nth 1 form) 1))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
710 (list '1+ (nth 2 form))) ; (+ 1 x) --> (1+ x)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
711 ((and (null (nthcdr 3 form))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
712 (eq (nth 2 form) -1))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
713 (list '1- (nth 1 form))) ; (+ x -1) --> (1- x)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
714 ((and (null (nthcdr 3 form))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
715 (eq (nth 1 form) -1))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
716 (list '1- (nth 2 form))) ; (+ -1 x) --> (1- x)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
717
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 ;;; It is not safe to delete the function entirely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 ;;; (actually, it would be safe if we know the sole arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 ;;; is not a marker).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 ;; ((null (cdr (cdr form))) (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 (t form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 (defun byte-optimize-minus (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 ;; Put constants at the end, except the last constant.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 (setq form (byte-optimize-delay-constants-math form 2 '+))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 ;; Now only first and last element can be a number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 (let ((last (car (reverse (nthcdr 3 form)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 (cond ((eq 0 last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 ;; (- x y ... 0) --> (- x y ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (setq form (copy-sequence form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 (setcdr (cdr (cdr form)) (delq 0 (nthcdr 3 form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 ;; If form is (- CONST foo... CONST), merge first and last.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 ((and (numberp (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 (numberp last))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 (setq form (nconc (list '- (- (nth 1 form) last) (nth 2 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 (delq last (copy-sequence (nthcdr 3 form))))))))
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
738 (setq form
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 ;;; It is not safe to delete the function entirely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 ;;; (actually, it would be safe if we know the sole arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 ;;; is not a marker).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 ;;; (if (eq (nth 2 form) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 ;;; (nth 1 form) ; (- x 0) --> x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 (byte-optimize-predicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 (if (and (null (cdr (cdr (cdr form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 (eq (nth 1 form) 0)) ; (- 0 x) --> (- x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 (cons (car form) (cdr (cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 ;;; )
48
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
750 )
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
751
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
752 ;; `add1' and `sub1' are a marginally fewer instructions than `plus'
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
753 ;; and `minus', so use them when possible.
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
754 (cond ((and (null (nthcdr 3 form))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
755 (eq (nth 2 form) 1))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
756 (list '1- (nth 1 form))) ; (- x 1) --> (1- x)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
757 ((and (null (nthcdr 3 form))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
758 (eq (nth 2 form) -1))
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
759 (list '1+ (nth 1 form))) ; (- x -1) --> (1+ x)
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
760 (t
56c54cf7c5b6 Import from CVS: tag r19-16b90
cvs
parents: 22
diff changeset
761 form))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 (defun byte-optimize-multiply (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (setq form (byte-optimize-delay-constants-math form 1 '*))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 ;; If there is a constant in FORM, it is now the last element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (cond ((null (cdr form)) 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 ;;; It is not safe to delete the function entirely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 ;;; (actually, it would be safe if we know the sole arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 ;;; is not a marker or if it appears in other arithmetic).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 ;;; ((null (cdr (cdr form))) (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 ((let ((last (car (reverse form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (cond ((eq 0 last) (cons 'progn (cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 ((eq 1 last) (delq 1 (copy-sequence form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 ((eq -1 last) (list '- (delq -1 (copy-sequence form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 ((and (eq 2 last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 (memq t (mapcar 'symbolp (cdr form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 (prog1 (setq form (delq 2 (copy-sequence form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 (while (not (symbolp (car (setq form (cdr form))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 (setcar form (list '+ (car form) (car form)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 (form))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 (defsubst byte-compile-butlast (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 (nreverse (cdr (reverse form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 (defun byte-optimize-divide (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 (setq form (byte-optimize-delay-constants-math form 2 '*))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 (let ((last (car (reverse (cdr (cdr form))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 (if (numberp last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 (cond ((= (length form) 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 (if (and (numberp (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 (not (zerop last))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 (condition-case nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (/ (nth 1 form) last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (error nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 (setq form (list 'progn (/ (nth 1 form) last)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 ((= last 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 (setq form (byte-compile-butlast form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 ((numberp (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 (setq form (cons (car form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 (cons (/ (nth 1 form) last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 (byte-compile-butlast (cdr (cdr form)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 last nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 ;;; ((null (cdr (cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 ;;; (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 ((eq (nth 1 form) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 (append '(progn) (cdr (cdr form)) '(0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 ((eq last -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 (list '- (if (nthcdr 3 form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 (byte-compile-butlast form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 (nth 1 form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 (form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 (defun byte-optimize-logmumble (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 (setq form (byte-optimize-delay-constants-math form 1 (car form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 (byte-optimize-predicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 (cond ((memq 0 form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 (setq form (if (eq (car form) 'logand)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 (cons 'progn (cdr form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 (delq 0 (copy-sequence form)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 ((and (eq (car-safe form) 'logior)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 (memq -1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (cons 'progn (cdr form)))
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 (defun byte-optimize-binary-predicate (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 (if (byte-compile-constp (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 (if (byte-compile-constp (nth 2 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 (list 'quote (eval form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 (error form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 ;; This can enable some lapcode optimizations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 (list (car form) (nth 2 form) (nth 1 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 (defun byte-optimize-predicate (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 (let ((ok t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 (rest (cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 (while (and rest ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 (setq ok (byte-compile-constp (car rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 rest (cdr rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 (if ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 (list 'quote (eval form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 (error form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 (defun byte-optimize-identity (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (if (and (cdr form) (null (cdr (cdr form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 (nth 1 form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 (byte-compile-warn "identity called with %d arg%s, but requires 1"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 (length (cdr form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 (if (= 1 (length (cdr form))) "" "s"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 (put 'identity 'byte-optimizer 'byte-optimize-identity)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (put '+ 'byte-optimizer 'byte-optimize-plus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 (put '* 'byte-optimizer 'byte-optimize-multiply)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (put '- 'byte-optimizer 'byte-optimize-minus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 (put '/ 'byte-optimizer 'byte-optimize-divide)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 (put 'max 'byte-optimizer 'byte-optimize-associative-math)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 (put 'min 'byte-optimizer 'byte-optimize-associative-math)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 (put '= 'byte-optimizer 'byte-optimize-binary-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (put 'eq 'byte-optimizer 'byte-optimize-binary-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 (put 'eql 'byte-optimizer 'byte-optimize-binary-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 (put 'equal 'byte-optimizer 'byte-optimize-binary-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 (put 'string= 'byte-optimizer 'byte-optimize-binary-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (put 'string-equal 'byte-optimizer 'byte-optimize-binary-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (put '< 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 (put '> 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 (put '<= 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 (put '>= 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 (put '1+ 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 (put '1- 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (put 'not 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 (put 'null 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 (put 'memq 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (put 'consp 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 (put 'listp 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 (put 'symbolp 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 (put 'stringp 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 (put 'string< 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 (put 'string-lessp 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 (put 'logand 'byte-optimizer 'byte-optimize-logmumble)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 (put 'logior 'byte-optimizer 'byte-optimize-logmumble)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 (put 'logxor 'byte-optimizer 'byte-optimize-logmumble)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 (put 'lognot 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 (put 'car 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 (put 'cdr 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 (put 'car-safe 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 (put 'cdr-safe 'byte-optimizer 'byte-optimize-predicate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 ;; I'm not convinced that this is necessary. Doesn't the optimizer loop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 ;; take care of this? - Jamie
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 ;; 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
904 ;; so arithmetic optimizers recognize the numeric constant. - Hallvard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 (put 'quote 'byte-optimizer 'byte-optimize-quote)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 (defun byte-optimize-quote (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (if (or (consp (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (and (symbolp (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 ;; XEmacs addition:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (not (keywordp (nth 1 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 (not (memq (nth 1 form) '(nil t)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (nth 1 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 (defun byte-optimize-zerop (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 (cond ((numberp (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 (eval form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 (byte-compile-delete-errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 (list '= (nth 1 form) 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 (form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 (put 'zerop 'byte-optimizer 'byte-optimize-zerop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 (defun byte-optimize-and (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 ;; Simplify if less than 2 args.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 ;; 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
927 ;; forms away, and surround the `and' with (progn ... nil).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (cond ((null (cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 ((memq nil form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (list 'progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (byte-optimize-and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 (prog1 (setq form (copy-sequence form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 (while (nth 1 form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 (setq form (cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 (setcdr form nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 ((null (cdr (cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 ((byte-optimize-predicate form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 (defun byte-optimize-or (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 ;; Throw away nil's, and simplify if less than 2 args.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 ;; 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
944 ;; following forms.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 (if (memq nil form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 (setq form (delq nil (copy-sequence form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 (let ((rest form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (while (cdr (setq rest (cdr rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 (if (byte-compile-trueconstp (car rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 (setq form (copy-sequence form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 rest (setcdr (memq (car rest) form) nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 (if (cdr (cdr form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 (byte-optimize-predicate form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 (nth 1 form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 (defun byte-optimize-cond (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 ;; if any clauses have a literal nil as their test, throw them away.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 ;; if any clause has a literal non-nil constant as its test, throw
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 ;; away all following clauses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 (let (rest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 ;; This must be first, to reduce (cond (t ...) (nil)) to (progn t ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 (while (setq rest (assq nil (cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 (setq form (delq rest (copy-sequence form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 (if (memq nil (cdr form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 (setq form (delq nil (copy-sequence form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 (setq rest form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 (while (setq rest (cdr rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 (cond ((byte-compile-trueconstp (car-safe (car rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 (cond ((eq rest (cdr form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 (setq form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 (if (cdr (car rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (if (cdr (cdr (car rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 (cons 'progn (cdr (car rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 (nth 1 (car rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 (car (car rest)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 ((cdr rest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 (setq form (copy-sequence form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 (setcdr (memq (car rest) form) nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 (setq rest nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 ;; Turn (cond (( <x> )) ... ) into (or <x> (cond ... ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 (if (eq 'cond (car-safe form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 (let ((clauses (cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 (if (and (consp (car clauses))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 (null (cdr (car clauses))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 (list 'or (car (car clauses))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 (byte-optimize-cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 (cons (car form) (cdr (cdr form)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 (defun byte-optimize-if (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 ;; (if <true-constant> <then> <else...>) ==> <then>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 ;; (if <false-constant> <then> <else...>) ==> (progn <else...>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 ;; (if <test> nil <else...>) ==> (if (not <test>) (progn <else...>))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 ;; (if <test> <then> nil) ==> (if <test> <then>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 (let ((clause (nth 1 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 (cond ((byte-compile-trueconstp clause)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 (nth 2 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 ((null clause)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 (if (nthcdr 4 form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 (cons 'progn (nthcdr 3 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 (nth 3 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 ((nth 2 form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 (if (equal '(nil) (nthcdr 3 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 (list 'if clause (nth 2 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 ((or (nth 3 form) (nthcdr 4 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 (list 'if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 ;; Don't make a double negative;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 ;; instead, take away the one that is there.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 (if (and (consp clause) (memq (car clause) '(not null))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 (= (length clause) 2)) ; (not xxxx) or (not (xxxx))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 (nth 1 clause)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 (list 'not clause))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 (if (nthcdr 4 form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 (cons 'progn (nthcdr 3 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 (nth 3 form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 (list 'progn clause nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 (defun byte-optimize-while (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 (if (nth 1 form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 (put 'and 'byte-optimizer 'byte-optimize-and)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 (put 'or 'byte-optimizer 'byte-optimize-or)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 (put 'cond 'byte-optimizer 'byte-optimize-cond)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 (put 'if 'byte-optimizer 'byte-optimize-if)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 (put 'while 'byte-optimizer 'byte-optimize-while)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 ;; byte-compile-negation-optimizer lives in bytecomp.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 (put '/= 'byte-optimizer 'byte-compile-negation-optimizer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 (put 'atom 'byte-optimizer 'byte-compile-negation-optimizer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 (put 'nlistp 'byte-optimizer 'byte-compile-negation-optimizer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 (defun byte-optimize-funcall (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 ;; (funcall '(lambda ...) ...) ==> ((lambda ...) ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 ;; (funcall 'foo ...) ==> (foo ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 (let ((fn (nth 1 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 (if (memq (car-safe fn) '(quote function))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 (cons (nth 1 fn) (cdr (cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 (defun byte-optimize-apply (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 ;; If the last arg is a literal constant, turn this into a funcall.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 ;; The funcall optimizer can then transform (funcall 'foo ...) -> (foo ...).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 (let ((fn (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 (last (nth (1- (length form)) form))) ; I think this really is fastest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 (or (if (or (null last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 (eq (car-safe last) 'quote))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 (if (listp (nth 1 last))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 (let ((butlast (nreverse (cdr (reverse (cdr (cdr form)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 (nconc (list 'funcall fn) butlast
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 (mapcar '(lambda (x) (list 'quote x)) (nth 1 last))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 (byte-compile-warn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 "last arg to apply can't be a literal atom: %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 (prin1-to-string last))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 (put 'funcall 'byte-optimizer 'byte-optimize-funcall)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 (put 'apply 'byte-optimizer 'byte-optimize-apply)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 (put 'let 'byte-optimizer 'byte-optimize-letX)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 (put 'let* 'byte-optimizer 'byte-optimize-letX)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 (defun byte-optimize-letX (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 (cond ((null (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 ;; No bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 (cons 'progn (cdr (cdr form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 ((or (nth 2 form) (nthcdr 3 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 ;; The body is nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 ((eq (car form) 'let)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 (append '(progn) (mapcar 'car-safe (mapcar 'cdr-safe (nth 1 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 '(nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 (let ((binds (reverse (nth 1 form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 (list 'let* (reverse (cdr binds)) (nth 1 (car binds)) nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 (put 'nth 'byte-optimizer 'byte-optimize-nth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 (defun byte-optimize-nth (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 (if (and (= (safe-length form) 3) (memq (nth 1 form) '(0 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 (list 'car (if (zerop (nth 1 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 (nth 2 form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 (list 'cdr (nth 2 form))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 (byte-optimize-predicate form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 (put 'nthcdr 'byte-optimizer 'byte-optimize-nthcdr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 (defun byte-optimize-nthcdr (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 (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
1095 (byte-optimize-predicate form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 (let ((count (nth 1 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 (setq form (nth 2 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 (while (>= (setq count (1- count)) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 (setq form (list 'cdr form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 form)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 ;;; enumerating those functions which need not be called if the returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 ;;; value is not used. That is, something like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 ;;; (progn (list (something-with-side-effects) (yow))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 ;;; (foo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 ;;; may safely be turned into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 ;;; (progn (progn (something-with-side-effects) (yow))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 ;;; (foo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 ;;; Further optimizations will turn (progn (list 1 2 3) 'foo) into 'foo.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 ;;; I wonder if I missed any :-\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 (let ((side-effect-free-fns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 '(% * + - / /= 1+ 1- < <= = > >= abs acos append aref ash asin atan
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 assoc assq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 boundp buffer-file-name buffer-local-variables buffer-modified-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 buffer-substring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 capitalize car-less-than-car car cdr ceiling concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 ;; coordinates-in-window-p not in XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 copy-marker cos count-lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 default-boundp default-value documentation downcase
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 elt exp expt fboundp featurep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 file-directory-p file-exists-p file-locked-p file-name-absolute-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 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
1124 float floor format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 get get-buffer get-buffer-window getenv get-file-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 int-to-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 length log log10 logand logb logior lognot logxor lsh
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 marker-buffer max member memq min mod
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 next-window nth nthcdr number-to-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 parse-colon-path previous-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 radians-to-degrees rassq regexp-quote reverse round
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 sin sqrt string< string= string-equal string-lessp string-to-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 string-to-int string-to-number substring symbol-plist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 tan upcase user-variable-p vconcat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 ;; XEmacs change: window-edges -> window-pixel-edges
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 window-buffer window-dedicated-p window-pixel-edges window-height
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 window-hscroll window-minibuffer-p window-width
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 zerop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 (side-effect-and-error-free-fns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 '(arrayp atom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 bobp bolp buffer-end buffer-list buffer-size buffer-string bufferp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 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
1143 characterp commandp cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 consolep console-live-p consp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 current-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 ;; XEmacs: extent functions, frame-live-p, various other stuff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 devicep device-live-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 dot dot-marker eobp eolp eq eql equal eventp extentp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 extent-live-p floatp framep frame-live-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 get-largest-window get-lru-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 identity ignore integerp integer-or-marker-p interactive-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 invocation-directory invocation-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 ;; keymapp may autoload in XEmacs, so not on this list!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 list listp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 make-marker mark mark-marker markerp memory-limit minibuffer-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 ;; mouse-movement-p not in XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 natnump nlistp not null number-or-marker-p numberp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 one-window-p ;; overlayp not in XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 point point-marker point-min point-max processp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 range-table-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 selected-window sequencep stringp subrp symbolp syntax-table-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 user-full-name user-login-name user-original-login-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 user-real-login-name user-real-uid user-uid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 vector vectorp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 window-configuration-p window-live-p windowp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 (while side-effect-free-fns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 (put (car side-effect-free-fns) 'side-effect-free t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 (setq side-effect-free-fns (cdr side-effect-free-fns)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 (while side-effect-and-error-free-fns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 (put (car side-effect-and-error-free-fns) 'side-effect-free 'error-free)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 (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
1172 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 (defun byte-compile-splice-in-already-compiled-code (form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 ;; form is (byte-code "..." [...] n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 (if (not (memq byte-optimize '(t lap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 (byte-compile-normal-call form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 (byte-inline-lapcode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 (byte-decompile-bytecode-1 (nth 1 form) (nth 2 form) t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 (setq byte-compile-maxdepth (max (+ byte-compile-depth (nth 3 form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 byte-compile-maxdepth))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 (setq byte-compile-depth (1+ byte-compile-depth))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 (put 'byte-code 'byte-compile 'byte-compile-splice-in-already-compiled-code)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 (defconst byte-constref-ops
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 '(byte-constant byte-constant2 byte-varref byte-varset byte-varbind))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 ;;; This function extracts the bitfields from variable-length opcodes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 ;;; Originally defined in disass.el (which no longer uses it.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 (defun disassemble-offset ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 "Don't call this!"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 ;; fetch and return the offset for the current opcode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 ;; return NIL if this opcode has no offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 ;; OP, PTR and BYTES are used and set dynamically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 (defvar op)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (defvar ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 (defvar bytes)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 (cond ((< op byte-nth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 (let ((tem (logand op 7)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 (setq op (logand op 248))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 (cond ((eq tem 6)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 (setq ptr (1+ ptr)) ;offset in next byte
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 (aref bytes ptr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 ((eq tem 7)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 (setq ptr (1+ ptr)) ;offset in next 2 bytes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 (+ (aref bytes ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 (progn (setq ptr (1+ ptr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 (lsh (aref bytes ptr) 8))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 (t tem)))) ;offset was in opcode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 ((>= op byte-constant)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 (prog1 (- op byte-constant) ;offset in opcode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 (setq op byte-constant)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 ((and (>= op byte-constant2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 (<= op byte-goto-if-not-nil-else-pop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 (setq ptr (1+ ptr)) ;offset in next 2 bytes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 (+ (aref bytes ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 (progn (setq ptr (1+ ptr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 (lsh (aref bytes ptr) 8))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 ;; XEmacs: this code was here before. FSF's first comparison
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1224 ;; is (>= op byte-listN). It appears that the rel-goto stuff
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 ;; 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
1226 ;; either, so I'm going to assume that this is an improvement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 ;; on our part and leave it in. --ben
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 ((and (>= op byte-rel-goto)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 (<= op byte-insertN))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 (setq ptr (1+ ptr)) ;offset in next byte
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 (aref bytes ptr))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 ;;; This de-compiler is used for inline expansion of compiled functions,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 ;;; and by the disassembler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 ;;; This list contains numbers, which are pc values,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 ;;; before each instruction.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 (defun byte-decompile-bytecode (bytes constvec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 "Turns BYTECODE into lapcode, referring to CONSTVEC."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 (let ((byte-compile-constants nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 (byte-compile-variables nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 (byte-compile-tag-number 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 (byte-decompile-bytecode-1 bytes constvec)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 ;; As byte-decompile-bytecode, but updates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 ;; byte-compile-{constants, variables, tag-number}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 ;; If MAKE-SPLICEABLE is true, then `return' opcodes are replaced
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 ;; with `goto's destined for the end of the code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 ;; That is for use by the compiler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 ;; If MAKE-SPLICEABLE is nil, we are being called for the disassembler.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 ;; In that case, we put a pc value into the list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 ;; before each insn (or its label).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 (defun byte-decompile-bytecode-1 (bytes constvec &optional make-spliceable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 (let ((length (length bytes))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 (ptr 0) optr tags op offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 ;; tag unused
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 lap tmp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 endtag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 ;; (retcount 0) unused
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 (while (not (= ptr length))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 (or make-spliceable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 (setq lap (cons ptr lap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 (setq op (aref bytes ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 optr ptr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 offset (disassemble-offset)) ; this does dynamic-scope magic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 (setq op (aref byte-code-vector op))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 ;; XEmacs: the next line in FSF 19.30 reads
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 ;; (cond ((memq op byte-goto-ops)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 ;; see the comment above about byte-rel-goto in XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 (cond ((or (memq op byte-goto-ops)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 (cond ((memq op byte-rel-goto-ops)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 (setq op (aref byte-code-vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 (- (symbol-value op)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 (- byte-rel-goto byte-goto))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 (setq offset (+ ptr (- offset 127)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 ;; it's a pc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 (setq offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 (cdr (or (assq offset tags)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 (car (setq tags
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 (cons (cons offset
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 (byte-compile-make-tag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 tags)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 ((cond ((eq op 'byte-constant2) (setq op 'byte-constant) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 ((memq op byte-constref-ops)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 (setq tmp (aref constvec offset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 offset (if (eq op 'byte-constant)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 (byte-compile-get-constant tmp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 (or (assq tmp byte-compile-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 (car (setq byte-compile-variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 (cons (list tmp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 byte-compile-variables)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 ((and make-spliceable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 (eq op 'byte-return))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 (if (= ptr (1- length))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 (setq op nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 (setq offset (or endtag (setq endtag (byte-compile-make-tag)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 op 'byte-goto))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 ;; lap = ( [ (pc . (op . arg)) ]* )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 (setq lap (cons (cons optr (cons op (or offset 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 lap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 (setq ptr (1+ ptr)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 ;; take off the dummy nil op that we replaced a trailing "return" with.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 (let ((rest lap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 (while rest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 (cond ((numberp (car rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 ((setq tmp (assq (car (car rest)) tags))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 ;; this addr is jumped to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 (setcdr rest (cons (cons nil (cdr tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 (cdr rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 (setq tags (delq tmp tags))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 (setq rest (cdr rest))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 (setq rest (cdr rest))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 (if tags (error "optimizer error: missed tags %s" tags))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 (if (null (car (cdr (car lap))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 (setq lap (cdr lap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 (if endtag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 (setq lap (cons (cons nil endtag) lap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 ;; remove addrs, lap = ( [ (op . arg) | (TAG tagno) ]* )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 (mapcar (function (lambda (elt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 (if (numberp elt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 elt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 (cdr elt))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 (nreverse lap))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 ;;; peephole optimizer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 (defconst byte-tagref-ops (cons 'TAG byte-goto-ops))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 (defconst byte-conditional-ops
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 '(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
1335 byte-goto-if-not-nil-else-pop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 (defconst byte-after-unbind-ops
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 '(byte-constant byte-dup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 byte-symbolp byte-consp byte-stringp byte-listp byte-numberp byte-integerp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 byte-eq byte-equal byte-not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 byte-cons byte-list1 byte-list2 ; byte-list3 byte-list4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 byte-interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 ;; How about other side-effect-free-ops? Is it safe to move an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 ;; error invocation (such as from nth) out of an unwind-protect?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 "Byte-codes that can be moved past an unbind.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 (defconst byte-compile-side-effect-and-error-free-ops
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 '(byte-constant byte-dup byte-symbolp byte-consp byte-stringp byte-listp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 byte-integerp byte-numberp byte-eq byte-equal byte-not byte-car-safe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 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
1351 byte-point-min byte-following-char byte-preceding-char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 byte-current-column byte-eolp byte-eobp byte-bolp byte-bobp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 byte-current-buffer byte-interactive-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 (defconst byte-compile-side-effect-free-ops
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 (nconc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 '(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
1358 byte-symbol-value byte-get byte-concat2 byte-concat3 byte-sub1 byte-add1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 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
1360 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
1361 byte-buffer-substring byte-string= byte-string< byte-nthcdr byte-elt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 byte-member byte-assq byte-quo byte-rem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 byte-compile-side-effect-and-error-free-ops))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 ;;; This piece of shit is because of the way DEFVAR_BOOL() variables work.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 ;;; Consider the code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 ;;; (defun foo (flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 ;;; (let ((old-pop-ups pop-up-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 ;;; (pop-up-windows flag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 ;;; (cond ((not (eq pop-up-windows old-pop-ups))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 ;;; (setq old-pop-ups pop-up-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 ;;; ...))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 ;;; 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
1376 ;;; something else. But if we optimize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 ;;; varref flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 ;;; varbind pop-up-windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 ;;; varref pop-up-windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 ;;; not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 ;;; to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 ;;; varref flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 ;;; dup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 ;;; varbind pop-up-windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 ;;; not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 ;;; we break the program, because it will appear that pop-up-windows and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 ;;; 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
1390 ;;; the BOOL variables are, and not perform this optimization on them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 (defconst byte-boolean-vars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 '(abbrev-all-caps purify-flag find-file-compare-truenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 find-file-use-truenames find-file-visit-truename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 find-file-existing-other-name byte-metering-on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 zmacs-regions zmacs-region-active-p zmacs-region-stays
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 atomic-extent-goto-char-p suppress-early-error-handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 noninteractive ignore-kernel debug-on-quit debug-on-next-call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 modifier-keys-are-sticky x-allow-sendevents vms-stmlf-recfm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 disable-auto-save-when-buffer-shrinks indent-tabs-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 load-in-progress load-warn-when-source-newer load-warn-when-source-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 load-ignore-elc-files load-force-doc-strings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 fail-on-bucky-bit-character-escapes popup-menu-titles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 menubar-show-keybindings completion-ignore-case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 canna-empty-info canna-through-info canna-underline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 canna-inhibit-hankakukana x-handle-non-fully-specified-fonts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 print-escape-newlines print-readably print-gensym
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 delete-exited-processes truncate-partial-width-windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 visible-bell no-redraw-on-reenter cursor-in-echo-area
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 inhibit-warning-display parse-sexp-ignore-comments words-include-escapes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 scroll-on-clipped-lines pop-up-frames pop-up-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 "DEFVAR_BOOL variables. Giving these any non-nil value sets them to t.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 If this does not enumerate all DEFVAR_BOOL variables, the byte-optimizer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 may generate incorrect code.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 (defun byte-optimize-lapcode (lap &optional for-effect)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 "Simple peephole optimizer. LAP is both modified and returned."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 (let (lap0 ;; off0 unused
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 lap1 ;; off1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 lap2 ;; off2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 (keep-going 'first-time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 (add-depth 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 rest tmp tmp2 tmp3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 (side-effect-free (if byte-compile-delete-errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 byte-compile-side-effect-free-ops
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 byte-compile-side-effect-and-error-free-ops)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 (while keep-going
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 (or (eq keep-going 'first-time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 (byte-compile-log-lap " ---- next pass"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 (setq rest lap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 keep-going nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 (while rest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 (setq lap0 (car rest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 lap1 (nth 1 rest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 lap2 (nth 2 rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 ;; You may notice that sequences like "dup varset discard" are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 ;; optimized but sequences like "dup varset TAG1: discard" are not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 ;; You may be tempted to change this; resist that temptation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 (cond ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 ;; <side-effect-free> pop --> <deleted>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 ;; ...including:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 ;; const-X pop --> <deleted>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 ;; varref-X pop --> <deleted>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 ;; dup pop --> <deleted>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 ((and (eq 'byte-discard (car lap1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 (memq (car lap0) side-effect-free))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 (setq keep-going t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 (setq tmp (aref byte-stack+-info (symbol-value (car lap0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 (setq rest (cdr rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 (cond ((= tmp 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 (byte-compile-log-lap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 " %s discard\t-->\t<deleted>" lap0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 (setq lap (delq lap0 (delq lap1 lap))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 ((= tmp 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 (byte-compile-log-lap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 " %s discard\t-->\t<deleted> discard" lap0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 (setq lap (delq lap0 lap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 ((= tmp -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 (byte-compile-log-lap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 " %s discard\t-->\tdiscard discard" lap0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 (setcar lap0 'byte-discard)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 (setcdr lap0 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 ((error "Optimizer error: too much on the stack"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 ;; goto*-X X: --> X:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 ((and (memq (car lap0) byte-goto-ops)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 (eq (cdr lap0) lap1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 (cond ((eq (car lap0) 'byte-goto)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 (setq lap (delq lap0 lap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 (setq tmp "<deleted>"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 ((memq (car lap0) byte-goto-always-pop-ops)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 (setcar lap0 (setq tmp 'byte-discard))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 (setcdr lap0 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 ((error "Depth conflict at tag %d" (nth 2 lap0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 (and (memq byte-optimize-log '(t byte))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 (byte-compile-log " (goto %s) %s:\t-->\t%s %s:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 (nth 1 lap1) (nth 1 lap1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 tmp (nth 1 lap1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 (setq keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 ;; varset-X varref-X --> dup varset-X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 ;; varbind-X varref-X --> dup varbind-X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 ;; const/dup varset-X varref-X --> const/dup varset-X const/dup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 ;; const/dup varbind-X varref-X --> const/dup varbind-X const/dup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 ;; The latter two can enable other optimizations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 ((and (eq 'byte-varref (car lap2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 (eq (cdr lap1) (cdr lap2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 (memq (car lap1) '(byte-varset byte-varbind)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 (if (and (setq tmp (memq (car (cdr lap2)) byte-boolean-vars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 (not (eq (car lap0) 'byte-constant)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 (setq keep-going t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 (if (memq (car lap0) '(byte-constant byte-dup))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 (setq tmp (if (or (not tmp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 (memq (car (cdr lap0)) '(nil t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 (cdr lap0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 (byte-compile-get-constant t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 (byte-compile-log-lap " %s %s %s\t-->\t%s %s %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 lap0 lap1 lap2 lap0 lap1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 (cons (car lap0) tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 (setcar lap2 (car lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 (setcdr lap2 tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 (byte-compile-log-lap " %s %s\t-->\tdup %s" lap1 lap2 lap1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 (setcar lap2 (car lap1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 (setcar lap1 'byte-dup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 (setcdr lap1 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 ;; The stack depth gets locally increased, so we will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 ;; increase maxdepth in case depth = maxdepth here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 ;; This can cause the third argument to byte-code to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 ;; be larger than necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 (setq add-depth 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 ;; dup varset-X discard --> varset-X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 ;; dup varbind-X discard --> varbind-X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 ;; (the varbind variant can emerge from other optimizations)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 ((and (eq 'byte-dup (car lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 (eq 'byte-discard (car lap2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 (memq (car lap1) '(byte-varset byte-varbind)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 (byte-compile-log-lap " dup %s discard\t-->\t%s" lap1 lap1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 (setq keep-going t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 rest (cdr rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 (setq lap (delq lap0 (delq lap2 lap))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 ;; not goto-X-if-nil --> goto-X-if-non-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 ;; not goto-X-if-non-nil --> goto-X-if-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 ;; it is wrong to do the same thing for the -else-pop variants.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 ((and (eq 'byte-not (car lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 (or (eq 'byte-goto-if-nil (car lap1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 (eq 'byte-goto-if-not-nil (car lap1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 (byte-compile-log-lap " not %s\t-->\t%s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 lap1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 (if (eq (car lap1) 'byte-goto-if-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 'byte-goto-if-not-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 'byte-goto-if-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 (cdr lap1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 (setcar lap1 (if (eq (car lap1) 'byte-goto-if-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 'byte-goto-if-not-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 'byte-goto-if-nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 (setq lap (delq lap0 lap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 (setq keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 ;; goto-X-if-nil goto-Y X: --> goto-Y-if-non-nil X:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 ;; goto-X-if-non-nil goto-Y X: --> goto-Y-if-nil X:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 ;; it is wrong to do the same thing for the -else-pop variants.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 ((and (or (eq 'byte-goto-if-nil (car lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 (eq 'byte-goto-if-not-nil (car lap0))) ; gotoX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 (eq 'byte-goto (car lap1)) ; gotoY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 (eq (cdr lap0) lap2)) ; TAG X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 (let ((inverse (if (eq 'byte-goto-if-nil (car lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 'byte-goto-if-not-nil 'byte-goto-if-nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 (byte-compile-log-lap " %s %s %s:\t-->\t%s %s:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 lap0 lap1 lap2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 (cons inverse (cdr lap1)) lap2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 (setq lap (delq lap0 lap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 (setcar lap1 inverse)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 (setq keep-going t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 ;; const goto-if-* --> whatever
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 ((and (eq 'byte-constant (car lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 (memq (car lap1) byte-conditional-ops))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 (cond ((if (or (eq (car lap1) 'byte-goto-if-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 (eq (car lap1) 'byte-goto-if-nil-else-pop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 (car (cdr lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 (not (car (cdr lap0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 (byte-compile-log-lap " %s %s\t-->\t<deleted>"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 lap0 lap1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 (setq rest (cdr rest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 lap (delq lap0 (delq lap1 lap))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 (if (memq (car lap1) byte-goto-always-pop-ops)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 (byte-compile-log-lap " %s %s\t-->\t%s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 lap0 lap1 (cons 'byte-goto (cdr lap1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 (setq lap (delq lap0 lap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 (cons 'byte-goto (cdr lap1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 (setcar lap1 'byte-goto)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 (setq keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 ;; varref-X varref-X --> varref-X dup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 ;; varref-X [dup ...] varref-X --> varref-X [dup ...] dup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 ;; We don't optimize the const-X variations on this here,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 ;; because that would inhibit some goto optimizations; we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 ;; optimize the const-X case after all other optimizations.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 ((and (eq 'byte-varref (car lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 (setq tmp (cdr rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 (while (eq (car (car tmp)) 'byte-dup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 (setq tmp (cdr tmp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 (eq (cdr lap0) (cdr (car tmp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 (eq 'byte-varref (car (car tmp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 (if (memq byte-optimize-log '(t byte))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 (let ((str ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 (setq tmp2 (cdr rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 (while (not (eq tmp tmp2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 (setq tmp2 (cdr tmp2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 str (concat str " dup")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 (byte-compile-log-lap " %s%s %s\t-->\t%s%s dup"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 lap0 str lap0 lap0 str)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 (setq keep-going t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 (setcar (car tmp) 'byte-dup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 (setcdr (car tmp) 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 (setq rest tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 ;; TAG1: TAG2: --> TAG1: <deleted>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 ;; (and other references to TAG2 are replaced with TAG1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 ((and (eq (car lap0) 'TAG)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 (eq (car lap1) 'TAG))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 (and (memq byte-optimize-log '(t byte))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 (byte-compile-log " adjacent tags %d and %d merged"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 (nth 1 lap1) (nth 1 lap0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 (setq tmp3 lap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 (while (setq tmp2 (rassq lap0 tmp3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 (setcdr tmp2 lap1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 (setq tmp3 (cdr (memq tmp2 tmp3))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 (setq lap (delq lap0 lap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 ;; unused-TAG: --> <deleted>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 ((and (eq 'TAG (car lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 (not (rassq lap0 lap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 (and (memq byte-optimize-log '(t byte))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 (byte-compile-log " unused tag %d removed" (nth 1 lap0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 (setq lap (delq lap0 lap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 ;; goto ... --> goto <delete until TAG or end>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 ;; return ... --> return <delete until TAG or end>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 ((and (memq (car lap0) '(byte-goto byte-return))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 (not (memq (car lap1) '(TAG nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 (setq tmp rest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 (let ((i 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 (opt-p (memq byte-optimize-log '(t lap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 str deleted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 (while (and (setq tmp (cdr tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 (not (eq 'TAG (car (car tmp)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 (if opt-p (setq deleted (cons (car tmp) deleted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 str (concat str " %s")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 i (1+ i))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 (if opt-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 (let ((tagstr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 (if (eq 'TAG (car (car tmp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 (format "%d:" (car (cdr (car tmp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 (or (car tmp) ""))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 (if (< i 6)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 (apply 'byte-compile-log-lap-1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 (concat " %s" str
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 " %s\t-->\t%s <deleted> %s")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 lap0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 (nconc (nreverse deleted)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 (list tagstr lap0 tagstr)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 (byte-compile-log-lap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 " %s <%d unreachable op%s> %s\t-->\t%s <deleted> %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 lap0 i (if (= i 1) "" "s")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 tagstr lap0 tagstr))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 (rplacd rest tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 (setq keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 ;; <safe-op> unbind --> unbind <safe-op>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 ;; (this may enable other optimizations.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 ((and (eq 'byte-unbind (car lap1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 (memq (car lap0) byte-after-unbind-ops))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 (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
1682 (setcar rest lap1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 (setcar (cdr rest) lap0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 (setq keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 ;; varbind-X unbind-N --> discard unbind-(N-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 ;; save-excursion unbind-N --> unbind-(N-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 ;; save-restriction unbind-N --> unbind-(N-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 ((and (eq 'byte-unbind (car lap1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 (memq (car lap0) '(byte-varbind byte-save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 byte-save-restriction))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 (< 0 (cdr lap1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 (if (zerop (setcdr lap1 (1- (cdr lap1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 (delq lap1 rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 (if (eq (car lap0) 'byte-varbind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 (setcar rest (cons 'byte-discard 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 (setq lap (delq lap0 lap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 (byte-compile-log-lap " %s %s\t-->\t%s %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 lap0 (cons (car lap1) (1+ (cdr lap1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 (if (eq (car lap0) 'byte-varbind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 (car rest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 (car (cdr rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 (if (and (/= 0 (cdr lap1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 (eq (car lap0) 'byte-varbind))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 (car (cdr rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 (setq keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 ;; goto*-X ... X: goto-Y --> goto*-Y
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 ;; goto-X ... X: return --> return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 ((and (memq (car lap0) byte-goto-ops)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 (memq (car (setq tmp (nth 1 (memq (cdr lap0) lap))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 '(byte-goto byte-return)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 (cond ((and (not (eq tmp lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 (or (eq (car lap0) 'byte-goto)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 (eq (car tmp) 'byte-goto)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 (byte-compile-log-lap " %s [%s]\t-->\t%s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 (car lap0) tmp tmp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 (if (eq (car tmp) 'byte-return)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 (setcar lap0 'byte-return))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 (setcdr lap0 (cdr tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 (setq keep-going t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 ;; goto-*-else-pop X ... X: goto-if-* --> whatever
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 ;; goto-*-else-pop X ... X: discard --> whatever
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 ((and (memq (car lap0) '(byte-goto-if-nil-else-pop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 byte-goto-if-not-nil-else-pop))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 (memq (car (car (setq tmp (cdr (memq (cdr lap0) lap)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 (eval-when-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 (cons 'byte-discard byte-conditional-ops)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 (not (eq lap0 (car tmp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 (setq tmp2 (car tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 (setq tmp3 (assq (car lap0) '((byte-goto-if-nil-else-pop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 byte-goto-if-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-goto-if-not-nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 (if (memq (car tmp2) tmp3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 (progn (setcar lap0 (car tmp2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 (setcdr lap0 (cdr tmp2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 (byte-compile-log-lap " %s-else-pop [%s]\t-->\t%s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 (car lap0) tmp2 lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 ;; Get rid of the -else-pop's and jump one step further.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 (or (eq 'TAG (car (nth 1 tmp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 (setcdr tmp (cons (byte-compile-make-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 (cdr tmp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 (byte-compile-log-lap " %s [%s]\t-->\t%s <skip>"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 (car lap0) tmp2 (nth 1 tmp3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 (setcar lap0 (nth 1 tmp3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 (setcdr lap0 (nth 1 tmp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 (setq keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 ;; const goto-X ... X: goto-if-* --> whatever
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 ;; const goto-X ... X: discard --> whatever
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 ((and (eq (car lap0) 'byte-constant)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 (eq (car lap1) 'byte-goto)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 (memq (car (car (setq tmp (cdr (memq (cdr lap1) lap)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 (eval-when-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 (cons 'byte-discard byte-conditional-ops)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 (not (eq lap1 (car tmp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 (setq tmp2 (car tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 (cond ((memq (car tmp2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 (if (null (car (cdr lap0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 '(byte-goto-if-nil byte-goto-if-nil-else-pop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 '(byte-goto-if-not-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 byte-goto-if-not-nil-else-pop)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 (byte-compile-log-lap " %s goto [%s]\t-->\t%s %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 lap0 tmp2 lap0 tmp2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 (setcar lap1 (car tmp2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 (setcdr lap1 (cdr tmp2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 ;; Let next step fix the (const,goto-if*) sequence.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 (setq rest (cons nil rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 ;; Jump one step further
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 (byte-compile-log-lap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 " %s goto [%s]\t-->\t<deleted> goto <skip>"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 lap0 tmp2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 (or (eq 'TAG (car (nth 1 tmp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 (setcdr tmp (cons (byte-compile-make-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 (cdr tmp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 (setcdr lap1 (car (cdr tmp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 (setq lap (delq lap0 lap))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 (setq keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 ;; X: varref-Y ... varset-Y goto-X -->
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 ;; X: varref-Y Z: ... dup varset-Y goto-Z
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 ;; (varset-X goto-BACK, BACK: varref-X --> copy the varref down.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 ;; (This is so usual for while loops that it is worth handling).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 ((and (eq (car lap1) 'byte-varset)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 (eq (car lap2) 'byte-goto)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 (not (memq (cdr lap2) rest)) ;Backwards jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 (eq (car (car (setq tmp (cdr (memq (cdr lap2) lap)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 'byte-varref)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 (eq (cdr (car tmp)) (cdr lap1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 (not (memq (car (cdr lap1)) byte-boolean-vars)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 ;;(byte-compile-log-lap " Pulled %s to end of loop" (car tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 (let ((newtag (byte-compile-make-tag)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 (byte-compile-log-lap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 " %s: %s ... %s %s\t-->\t%s: %s %s: ... %s %s %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 (nth 1 (cdr lap2)) (car tmp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 lap1 lap2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 (nth 1 (cdr lap2)) (car tmp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 (nth 1 newtag) 'byte-dup lap1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 (cons 'byte-goto newtag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 (setcdr rest (cons (cons 'byte-dup 0) (cdr rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 (setcdr tmp (cons (setcdr lap2 newtag) (cdr tmp))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 (setq add-depth 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 (setq keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 ;; goto-X Y: ... X: goto-if*-Y --> goto-if-not-*-X+1 Y:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 ;; (This can pull the loop test to the end of the loop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 ((and (eq (car lap0) 'byte-goto)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 (eq (car lap1) 'TAG)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 (eq lap1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 (cdr (car (setq tmp (cdr (memq (cdr lap0) lap))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 (memq (car (car tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 '(byte-goto byte-goto-if-nil byte-goto-if-not-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 byte-goto-if-nil-else-pop)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 ;; (byte-compile-log-lap " %s %s, %s %s --> moved conditional"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 ;; lap0 lap1 (cdr lap0) (car tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 (let ((newtag (byte-compile-make-tag)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 (byte-compile-log-lap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 "%s %s: ... %s: %s\t-->\t%s ... %s:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 lap0 (nth 1 lap1) (nth 1 (cdr lap0)) (car tmp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 (cons (cdr (assq (car (car tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 '((byte-goto-if-nil . byte-goto-if-not-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 (byte-goto-if-not-nil . byte-goto-if-nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 (byte-goto-if-nil-else-pop .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 byte-goto-if-not-nil-else-pop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 (byte-goto-if-not-nil-else-pop .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 byte-goto-if-nil-else-pop))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 newtag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 (nth 1 newtag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 (setcdr tmp (cons (setcdr lap0 newtag) (cdr tmp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 (if (eq (car (car tmp)) 'byte-goto-if-nil-else-pop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 ;; We can handle this case but not the -if-not-nil case,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 ;; because we won't know which non-nil constant to push.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 (setcdr rest (cons (cons 'byte-constant
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 (byte-compile-get-constant nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 (cdr rest))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 (setcar lap0 (nth 1 (memq (car (car tmp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 '(byte-goto-if-nil-else-pop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 byte-goto-if-not-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 byte-goto-if-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 byte-goto-if-not-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 byte-goto byte-goto))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 (setq keep-going t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 (setq rest (cdr rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 ;; Cleanup stage:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 ;; Rebuild byte-compile-constants / byte-compile-variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 ;; Simple optimizations that would inhibit other optimizations if they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 ;; were done in the optimizing loop, and optimizations which there is no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 ;; need to do more than once.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 (setq byte-compile-constants nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 byte-compile-variables nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 (setq rest lap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 (while rest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 (setq lap0 (car rest)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 lap1 (nth 1 rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 (if (memq (car lap0) byte-constref-ops)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 (if (eq (cdr lap0) 'byte-constant)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 (or (memq (cdr lap0) byte-compile-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 (setq byte-compile-variables (cons (cdr lap0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 byte-compile-variables)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 (or (memq (cdr lap0) byte-compile-constants)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 (setq byte-compile-constants (cons (cdr lap0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 byte-compile-constants)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 (cond (;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 ;; const-C varset-X const-C --> const-C dup varset-X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 ;; const-C varbind-X const-C --> const-C dup varbind-X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 (and (eq (car lap0) 'byte-constant)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 (eq (car (nth 2 rest)) 'byte-constant)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 (eq (cdr lap0) (car (nth 2 rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 (memq (car lap1) '(byte-varbind byte-varset)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 (byte-compile-log-lap " %s %s %s\t-->\t%s dup %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 lap0 lap1 lap0 lap0 lap1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 (setcar (cdr (cdr rest)) (cons (car lap1) (cdr lap1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 (setcar (cdr rest) (cons 'byte-dup 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 (setq add-depth 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 ;; const-X [dup/const-X ...] --> const-X [dup ...] dup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 ;; varref-X [dup/varref-X ...] --> varref-X [dup ...] dup
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 ((memq (car lap0) '(byte-constant byte-varref))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 (setq tmp rest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 tmp2 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 (while (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 (while (eq 'byte-dup (car (car (setq tmp (cdr tmp))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 (and (eq (cdr lap0) (cdr (car tmp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 (eq (car lap0) (car (car tmp)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 (setcar tmp (cons 'byte-dup 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 (setq tmp2 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 (if tmp2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 (byte-compile-log-lap
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 " %s [dup/%s]...\t-->\t%s dup..." lap0 lap0 lap0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 ;; unbind-N unbind-M --> unbind-(N+M)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 ((and (eq 'byte-unbind (car lap0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 (eq 'byte-unbind (car lap1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 (byte-compile-log-lap " %s %s\t-->\t%s" lap0 lap1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 (cons 'byte-unbind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 (+ (cdr lap0) (cdr lap1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 (setq keep-going t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 (setq lap (delq lap0 lap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 (setcdr lap1 (+ (cdr lap1) (cdr lap0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 (setq rest (cdr rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 (setq byte-compile-maxdepth (+ byte-compile-maxdepth add-depth)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 lap)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 (provide 'byte-optimize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when this file compiles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 ;; itself, compile some of its most used recursive functions (at load time).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 (eval-when-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 (or (compiled-function-p (symbol-function 'byte-optimize-form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 (assq 'byte-code (symbol-function 'byte-optimize-form))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 (let ((byte-optimize nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 (byte-compile-warnings nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 (mapcar '(lambda (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 (or noninteractive (message "compiling %s..." x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 (byte-compile x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 (or noninteractive (message "compiling %s...done" x)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 '(byte-optimize-form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 byte-optimize-body
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 byte-optimize-predicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 byte-optimize-binary-predicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 ;; Inserted some more than necessary, to speed it up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 byte-optimize-form-code-walker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 byte-optimize-lapcode))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 ;;; byte-optimize.el ends here