annotate lisp/bytecomp/byte-optimize.el @ 2:ac2d302a0011 r19-15b2

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