Mercurial > emacs
annotate lisp/emacs-lisp/bytecomp.el @ 4290:885452da2a8f
(Fsleep_for): If arg is 0, return right away.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 26 Jul 1993 18:38:23 +0000 |
parents | 6be09b68817f |
children | 667b32d2c02c |
rev | line source |
---|---|
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
1 ;;; bytecomp.el --- compilation of Lisp code into byte code. |
757 | 2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
3 ;;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
4 |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
5 ;; Author: Jamie Zawinski <jwz@lucid.com> |
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
6 ;; Hallvard Furuseth <hbf@ulrik.uio.no> |
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
7 ;; Keywords: internal |
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
8 |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
9 ;; Subsequently modified by RMS. |
757 | 10 |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
11 ;;; This version incorporates changes up to version 2.10 of the |
958 | 12 ;;; Zawinski-Furuseth compiler. |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
13 (defconst byte-compile-version "FSF 2.10") |
757 | 14 |
15 ;; This file is part of GNU Emacs. | |
16 | |
17 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
18 ;; it under the terms of the GNU General Public License as published by | |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
19 ;; the Free Software Foundation; either version 2, or (at your option) |
757 | 20 ;; any later version. |
21 | |
22 ;; GNU Emacs is distributed in the hope that it will be useful, | |
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
25 ;; GNU General Public License for more details. | |
26 | |
27 ;; You should have received a copy of the GNU General Public License | |
28 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
29 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
30 | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2299
diff
changeset
|
31 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2299
diff
changeset
|
32 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2299
diff
changeset
|
33 ;; The Emacs Lisp byte compiler. This crunches lisp source into a sort |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2299
diff
changeset
|
34 ;; of p-code which takes up less space and can be interpreted faster. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2299
diff
changeset
|
35 ;; The user entry points are byte-compile-file and byte-recompile-directory. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2299
diff
changeset
|
36 |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
37 ;;; Code: |
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
38 |
757 | 39 ;;; ======================================================================== |
40 ;;; Entry points: | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
41 ;;; byte-recompile-directory, byte-compile-file, |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
42 ;;; batch-byte-compile, batch-byte-recompile-directory, |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
43 ;;; byte-compile, compile-defun, |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
44 ;;; display-call-tree |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
45 ;;; (byte-compile-buffer and byte-compile-and-load-file were turned off |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
46 ;;; because they are not terribly useful and get in the way of completion.) |
757 | 47 |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
48 ;;; This version of the byte compiler has the following improvements: |
757 | 49 ;;; + optimization of compiled code: |
50 ;;; - removal of unreachable code; | |
51 ;;; - removal of calls to side-effectless functions whose return-value | |
52 ;;; is unused; | |
53 ;;; - compile-time evaluation of safe constant forms, such as (consp nil) | |
54 ;;; and (ash 1 6); | |
55 ;;; - open-coding of literal lambdas; | |
56 ;;; - peephole optimization of emitted code; | |
57 ;;; - trivial functions are left uncompiled for speed. | |
58 ;;; + support for inline functions; | |
59 ;;; + compile-time evaluation of arbitrary expressions; | |
60 ;;; + compile-time warning messages for: | |
61 ;;; - functions being redefined with incompatible arglists; | |
62 ;;; - functions being redefined as macros, or vice-versa; | |
63 ;;; - functions or macros defined multiple times in the same file; | |
64 ;;; - functions being called with the incorrect number of arguments; | |
65 ;;; - functions being called which are not defined globally, in the | |
66 ;;; file, or as autoloads; | |
67 ;;; - assignment and reference of undeclared free variables; | |
68 ;;; - various syntax errors; | |
69 ;;; + correct compilation of nested defuns, defmacros, defvars and defsubsts; | |
70 ;;; + correct compilation of top-level uses of macros; | |
71 ;;; + the ability to generate a histogram of functions called. | |
72 | |
73 ;;; User customization variables: | |
74 ;;; | |
75 ;;; byte-compile-verbose Whether to report the function currently being | |
76 ;;; compiled in the minibuffer; | |
77 ;;; byte-optimize Whether to do optimizations; this may be | |
78 ;;; t, nil, 'source, or 'byte; | |
79 ;;; byte-optimize-log Whether to report (in excruciating detail) | |
80 ;;; exactly which optimizations have been made. | |
81 ;;; This may be t, nil, 'source, or 'byte; | |
82 ;;; byte-compile-error-on-warn Whether to stop compilation when a warning is | |
83 ;;; produced; | |
84 ;;; byte-compile-delete-errors Whether the optimizer may delete calls or | |
85 ;;; variable references that are side-effect-free | |
86 ;;; except that they may return an error. | |
87 ;;; byte-compile-generate-call-tree Whether to generate a histogram of | |
88 ;;; function calls. This can be useful for | |
89 ;;; finding unused functions, as well as simple | |
90 ;;; performance metering. | |
91 ;;; byte-compile-warnings List of warnings to issue, or t. May contain | |
92 ;;; 'free-vars (references to variables not in the | |
93 ;;; current lexical scope) | |
94 ;;; 'unresolved (calls to unknown functions) | |
95 ;;; 'callargs (lambda calls with args that don't | |
96 ;;; match the lambda's definition) | |
97 ;;; 'redefine (function cell redefined from | |
98 ;;; a macro to a lambda or vice versa, | |
99 ;;; or redefined to take other args) | |
100 ;;; This defaults to nil in -batch mode, which is | |
101 ;;; slightly faster. | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
102 ;;; byte-compile-compatibility Whether the compiler should |
757 | 103 ;;; generate .elc files which can be loaded into |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
104 ;;; generic emacs 18. |
3718
37a8a7489fc5
(byte-compile-file): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3653
diff
changeset
|
105 ;;; emacs-lisp-file-regexp Regexp for the extension of source-files; |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
106 ;;; see also the function byte-compile-dest-file. |
757 | 107 |
108 ;;; New Features: | |
109 ;;; | |
110 ;;; o The form `defsubst' is just like `defun', except that the function | |
111 ;;; generated will be open-coded in compiled code which uses it. This | |
112 ;;; means that no function call will be generated, it will simply be | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
113 ;;; spliced in. Lisp functions calls are very slow, so this can be a |
757 | 114 ;;; big win. |
115 ;;; | |
116 ;;; You can generally accomplish the same thing with `defmacro', but in | |
117 ;;; that case, the defined procedure can't be used as an argument to | |
118 ;;; mapcar, etc. | |
119 ;;; | |
120 ;;; o You can also open-code one particular call to a function without | |
121 ;;; open-coding all calls. Use the 'inline' form to do this, like so: | |
122 ;;; | |
123 ;;; (inline (foo 1 2 3)) ;; `foo' will be open-coded | |
124 ;;; or... | |
125 ;;; (inline ;; `foo' and `baz' will be | |
126 ;;; (foo 1 2 3 (bar 5)) ;; open-coded, but `bar' will not. | |
127 ;;; (baz 0)) | |
128 ;;; | |
129 ;;; o It is possible to open-code a function in the same file it is defined | |
130 ;;; in without having to load that file before compiling it. the | |
131 ;;; byte-compiler has been modified to remember function definitions in | |
132 ;;; the compilation environment in the same way that it remembers macro | |
133 ;;; definitions. | |
134 ;;; | |
135 ;;; o Forms like ((lambda ...) ...) are open-coded. | |
136 ;;; | |
137 ;;; o The form `eval-when-compile' is like progn, except that the body | |
138 ;;; is evaluated at compile-time. When it appears at top-level, this | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3455
diff
changeset
|
139 ;;; is analogous to the Common Lisp idiom (eval-when (compile) ...). |
757 | 140 ;;; When it does not appear at top-level, it is similar to the |
141 ;;; Common Lisp #. reader macro (but not in interpreted code.) | |
142 ;;; | |
143 ;;; o The form `eval-and-compile' is similar to eval-when-compile, but | |
144 ;;; the whole form is evalled both at compile-time and at run-time. | |
145 ;;; | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
146 ;;; o The command compile-defun is analogous to eval-defun. |
757 | 147 ;;; |
148 ;;; o If you run byte-compile-file on a filename which is visited in a | |
149 ;;; buffer, and that buffer is modified, you are asked whether you want | |
150 ;;; to save the buffer before compiling. | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
151 ;;; |
3718
37a8a7489fc5
(byte-compile-file): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3653
diff
changeset
|
152 ;;; o byte-compiled files now start with the string `;ELC'. |
37a8a7489fc5
(byte-compile-file): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3653
diff
changeset
|
153 ;;; Some versions of `file' can be customized to recognize that. |
757 | 154 |
1604
25173c1db5a6
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
1532
diff
changeset
|
155 (require 'backquote) |
25173c1db5a6
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
1532
diff
changeset
|
156 |
757 | 157 (or (fboundp 'defsubst) |
158 ;; This really ought to be loaded already! | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
159 (load-library "byte-run")) |
757 | 160 |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
161 ;;; The feature of compiling in a specific target Emacs version |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
162 ;;; has been turned off because compile time options are a bad idea. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
163 (defmacro byte-compile-single-version () nil) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
164 (defmacro byte-compile-version-cond (cond) cond) |
757 | 165 |
166 ;;; The crud you see scattered through this file of the form | |
167 ;;; (or (and (boundp 'epoch::version) epoch::version) | |
168 ;;; (string-lessp emacs-version "19")) | |
169 ;;; is because the Epoch folks couldn't be bothered to follow the | |
170 ;;; normal emacs version numbering convention. | |
171 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
172 ;; (if (byte-compile-version-cond |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
173 ;; (or (and (boundp 'epoch::version) epoch::version) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
174 ;; (string-lessp emacs-version "19"))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
175 ;; (progn |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
176 ;; ;; emacs-18 compatibility. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
177 ;; (defvar baud-rate (baud-rate)) ;Define baud-rate if it's undefined |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
178 ;; |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
179 ;; (if (byte-compile-single-version) |
1819
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
180 ;; (defmacro byte-code-function-p (x) "Emacs 18 doesn't have these." nil) |
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
181 ;; (defun byte-code-function-p (x) "Emacs 18 doesn't have these." nil)) |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
182 ;; |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
183 ;; (or (and (fboundp 'member) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
184 ;; ;; avoid using someone else's possibly bogus definition of this. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
185 ;; (subrp (symbol-function 'member))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
186 ;; (defun member (elt list) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
187 ;; "like memq, but uses equal instead of eq. In v19, this is a subr." |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
188 ;; (while (and list (not (equal elt (car list)))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
189 ;; (setq list (cdr list))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
190 ;; list)))) |
757 | 191 |
192 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
193 (defvar emacs-lisp-file-regexp (if (eq system-type 'vax-vms) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
194 "\\.EL\\(;[0-9]+\\)?$" |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
195 "\\.el$") |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
196 "*Regexp which matches Emacs Lisp source files. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
197 You may want to redefine `byte-compile-dest-file' if you change this.") |
757 | 198 |
199 (or (fboundp 'byte-compile-dest-file) | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
200 ;; The user may want to redefine this along with emacs-lisp-file-regexp, |
757 | 201 ;; so only define it if it is undefined. |
202 (defun byte-compile-dest-file (filename) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
203 "Convert an Emacs Lisp source file name to a compiled file name." |
757 | 204 (setq filename (file-name-sans-versions filename)) |
205 (cond ((eq system-type 'vax-vms) | |
206 (concat (substring filename 0 (string-match ";" filename)) "c")) | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
207 ((string-match emacs-lisp-file-regexp filename) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
208 (concat (substring filename 0 (match-beginning 0)) ".elc")) |
757 | 209 (t (concat filename "c"))))) |
210 | |
211 ;; This can be the 'byte-compile property of any symbol. | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
212 (autoload 'byte-compile-inline-expand "byte-opt") |
757 | 213 |
214 ;; This is the entrypoint to the lapcode optimizer pass1. | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
215 (autoload 'byte-optimize-form "byte-opt") |
757 | 216 ;; This is the entrypoint to the lapcode optimizer pass2. |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
217 (autoload 'byte-optimize-lapcode "byte-opt") |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
218 (autoload 'byte-compile-unfold-lambda "byte-opt") |
757 | 219 |
1819
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
220 ;; This is the entry point to the decompiler, which is used by the |
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
221 ;; disassembler. The disassembler just requires 'byte-compile, but |
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
222 ;; that doesn't define this function, so this seems to be a reasonable |
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
223 ;; thing to do. |
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
224 (autoload 'byte-decompile-bytecode "byte-opt") |
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
225 |
757 | 226 (defvar byte-compile-verbose |
227 (and (not noninteractive) (> baud-rate search-slow-speed)) | |
228 "*Non-nil means print messages describing progress of byte-compiler.") | |
229 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
230 (defvar byte-compile-compatibility nil |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
231 "*Non-nil means generate output that can run in Emacs 18.") |
757 | 232 |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
233 ;; (defvar byte-compile-generate-emacs19-bytecodes |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
234 ;; (not (or (and (boundp 'epoch::version) epoch::version) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
235 ;; (string-lessp emacs-version "19"))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
236 ;; "*If this is true, then the byte-compiler will generate bytecode which |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
237 ;; makes use of byte-ops which are present only in Emacs 19. Code generated |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
238 ;; this way can never be run in Emacs 18, and may even cause it to crash.") |
757 | 239 |
240 (defvar byte-optimize t | |
1129 | 241 "*Enables optimization in the byte compiler. |
242 nil means don't do any optimization. | |
243 t means do all optimizations. | |
244 `source' means do source-level optimizations only. | |
245 `byte' means do code-level optimizations only.") | |
757 | 246 |
247 (defvar byte-compile-delete-errors t | |
1129 | 248 "*If non-nil, the optimizer may delete forms that may signal an error. |
249 This includes variable references and calls to functions such as `car'.") | |
757 | 250 |
251 (defvar byte-optimize-log nil | |
252 "*If true, the byte-compiler will log its optimizations into *Compile-Log*. | |
253 If this is 'source, then only source-level optimizations will be logged. | |
254 If it is 'byte, then only byte-level optimizations will be logged.") | |
255 | |
256 (defvar byte-compile-error-on-warn nil | |
1129 | 257 "*If true, the byte-compiler reports warnings with `error'.") |
757 | 258 |
259 (defconst byte-compile-warning-types '(redefine callargs free-vars unresolved)) | |
958 | 260 (defvar byte-compile-warnings t |
757 | 261 "*List of warnings that the byte-compiler should issue (t for all). |
958 | 262 Elements of the list may be be: |
263 | |
264 free-vars references to variables not in the current lexical scope. | |
265 unresolved calls to unknown functions. | |
266 callargs lambda calls with args that don't match the definition. | |
267 redefine function cell redefined from a macro to a lambda or vice | |
268 versa, or redefined to take a different number of arguments. | |
269 | |
1129 | 270 See also the macro `byte-compiler-options'.") |
757 | 271 |
272 (defvar byte-compile-generate-call-tree nil | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
273 "*Non-nil means collect call-graph information when compiling. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
274 This records functions were called and from where. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
275 If the value is t, compilation displays the call graph when it finishes. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
276 If the value is neither t nor nil, compilation asks you whether to display |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
277 the graph. |
757 | 278 |
279 The call tree only lists functions called, not macros used. Those functions | |
280 which the byte-code interpreter knows about directly (eq, cons, etc.) are | |
281 not reported. | |
282 | |
283 The call tree also lists those functions which are not known to be called | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
284 \(that is, to which no calls have been compiled.) Functions which can be |
757 | 285 invoked interactively are excluded from this list.") |
286 | |
287 (defconst byte-compile-call-tree nil "Alist of functions and their call tree. | |
288 Each element looks like | |
289 | |
290 \(FUNCTION CALLERS CALLS\) | |
291 | |
292 where CALLERS is a list of functions that call FUNCTION, and CALLS | |
293 is a list of functions for which calls were generated while compiling | |
294 FUNCTION.") | |
295 | |
296 (defvar byte-compile-call-tree-sort 'name | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
297 "*If non-nil, sort the call tree. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
298 The values `name', `callers', `calls', `calls+callers' |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
299 specify different fields to sort on.") |
757 | 300 |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
301 ;; (defvar byte-compile-overwrite-file t |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
302 ;; "If nil, old .elc files are deleted before the new is saved, and .elc |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
303 ;; files will have the same modes as the corresponding .el file. Otherwise, |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
304 ;; existing .elc files will simply be overwritten, and the existing modes |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
305 ;; will not be changed. If this variable is nil, then an .elc file which |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
306 ;; is a symbolic link will be turned into a normal file, instead of the file |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
307 ;; which the link points to being overwritten.") |
757 | 308 |
309 (defvar byte-compile-constants nil | |
310 "list of all constants encountered during compilation of this form") | |
311 (defvar byte-compile-variables nil | |
312 "list of all variables encountered during compilation of this form") | |
313 (defvar byte-compile-bound-variables nil | |
314 "list of variables bound in the context of the current form; this list | |
315 lives partly on the stack.") | |
316 (defvar byte-compile-free-references) | |
317 (defvar byte-compile-free-assignments) | |
318 | |
1129 | 319 (defvar byte-compiler-error-flag) |
320 | |
757 | 321 (defconst byte-compile-initial-macro-environment |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
322 '( |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
323 ;; (byte-compiler-options . (lambda (&rest forms) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
324 ;; (apply 'byte-compiler-options-handler forms))) |
757 | 325 (eval-when-compile . (lambda (&rest body) |
326 (list 'quote (eval (byte-compile-top-level | |
327 (cons 'progn body)))))) | |
328 (eval-and-compile . (lambda (&rest body) | |
329 (eval (cons 'progn body)) | |
330 (cons 'progn body)))) | |
331 "The default macro-environment passed to macroexpand by the compiler. | |
332 Placing a macro here will cause a macro to have different semantics when | |
333 expanded by the compiler as when expanded by the interpreter.") | |
334 | |
335 (defvar byte-compile-macro-environment byte-compile-initial-macro-environment | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
336 "Alist of macros defined in the file being compiled. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
337 Each element looks like (MACRONAME . DEFINITION). It is |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
338 \(MACRONAME . nil) when a macro is redefined as a function.") |
757 | 339 |
340 (defvar byte-compile-function-environment nil | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
341 "Alist of functions defined in the file being compiled. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
342 This is so we can inline them when necessary. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
343 Each element looks like (FUNCTIONNAME . DEFINITION). It is |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
344 \(FUNCTIONNAME . nil) when a function is redefined as a macro.") |
757 | 345 |
346 (defvar byte-compile-unresolved-functions nil | |
347 "Alist of undefined functions to which calls have been compiled (used for | |
348 warnings when the function is later defined with incorrect args).") | |
349 | |
350 (defvar byte-compile-tag-number 0) | |
351 (defvar byte-compile-output nil | |
352 "Alist describing contents to put in byte code string. | |
353 Each element is (INDEX . VALUE)") | |
354 (defvar byte-compile-depth 0 "Current depth of execution stack.") | |
355 (defvar byte-compile-maxdepth 0 "Maximum depth of execution stack.") | |
356 | |
357 | |
358 ;;; The byte codes; this information is duplicated in bytecomp.c | |
359 | |
360 (defconst byte-code-vector nil | |
361 "An array containing byte-code names indexed by byte-code values.") | |
362 | |
363 (defconst byte-stack+-info nil | |
364 "An array with the stack adjustment for each byte-code.") | |
365 | |
366 (defmacro byte-defop (opcode stack-adjust opname &optional docstring) | |
367 ;; This is a speed-hack for building the byte-code-vector at compile-time. | |
368 ;; We fill in the vector at macroexpand-time, and then after the last call | |
369 ;; to byte-defop, we write the vector out as a constant instead of writing | |
370 ;; out a bunch of calls to aset. | |
371 ;; Actually, we don't fill in the vector itself, because that could make | |
372 ;; it problematic to compile big changes to this compiler; we store the | |
373 ;; values on its plist, and remove them later in -extrude. | |
374 (let ((v1 (or (get 'byte-code-vector 'tmp-compile-time-value) | |
375 (put 'byte-code-vector 'tmp-compile-time-value | |
376 (make-vector 256 nil)))) | |
377 (v2 (or (get 'byte-stack+-info 'tmp-compile-time-value) | |
378 (put 'byte-stack+-info 'tmp-compile-time-value | |
379 (make-vector 256 nil))))) | |
380 (aset v1 opcode opname) | |
381 (aset v2 opcode stack-adjust)) | |
382 (if docstring | |
383 (list 'defconst opname opcode (concat "Byte code opcode " docstring ".")) | |
384 (list 'defconst opname opcode))) | |
385 | |
386 (defmacro byte-extrude-byte-code-vectors () | |
387 (prog1 (list 'setq 'byte-code-vector | |
388 (get 'byte-code-vector 'tmp-compile-time-value) | |
389 'byte-stack+-info | |
390 (get 'byte-stack+-info 'tmp-compile-time-value)) | |
391 ;; emacs-18 has no REMPROP. | |
392 (put 'byte-code-vector 'tmp-compile-time-value nil) | |
393 (put 'byte-stack+-info 'tmp-compile-time-value nil))) | |
394 | |
395 | |
396 ;; unused: 0-7 | |
397 | |
398 ;; These opcodes are special in that they pack their argument into the | |
399 ;; opcode word. | |
400 ;; | |
401 (byte-defop 8 1 byte-varref "for variable reference") | |
402 (byte-defop 16 -1 byte-varset "for setting a variable") | |
403 (byte-defop 24 -1 byte-varbind "for binding a variable") | |
404 (byte-defop 32 0 byte-call "for calling a function") | |
405 (byte-defop 40 0 byte-unbind "for unbinding special bindings") | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3455
diff
changeset
|
406 ;; codes 8-47 are consumed by the preceding opcodes |
757 | 407 |
408 ;; unused: 48-55 | |
409 | |
410 (byte-defop 56 -1 byte-nth) | |
411 (byte-defop 57 0 byte-symbolp) | |
412 (byte-defop 58 0 byte-consp) | |
413 (byte-defop 59 0 byte-stringp) | |
414 (byte-defop 60 0 byte-listp) | |
415 (byte-defop 61 -1 byte-eq) | |
416 (byte-defop 62 -1 byte-memq) | |
417 (byte-defop 63 0 byte-not) | |
418 (byte-defop 64 0 byte-car) | |
419 (byte-defop 65 0 byte-cdr) | |
420 (byte-defop 66 -1 byte-cons) | |
421 (byte-defop 67 0 byte-list1) | |
422 (byte-defop 68 -1 byte-list2) | |
423 (byte-defop 69 -2 byte-list3) | |
424 (byte-defop 70 -3 byte-list4) | |
425 (byte-defop 71 0 byte-length) | |
426 (byte-defop 72 -1 byte-aref) | |
427 (byte-defop 73 -2 byte-aset) | |
428 (byte-defop 74 0 byte-symbol-value) | |
429 (byte-defop 75 0 byte-symbol-function) ; this was commented out | |
430 (byte-defop 76 -1 byte-set) | |
431 (byte-defop 77 -1 byte-fset) ; this was commented out | |
432 (byte-defop 78 -1 byte-get) | |
433 (byte-defop 79 -2 byte-substring) | |
434 (byte-defop 80 -1 byte-concat2) | |
435 (byte-defop 81 -2 byte-concat3) | |
436 (byte-defop 82 -3 byte-concat4) | |
437 (byte-defop 83 0 byte-sub1) | |
438 (byte-defop 84 0 byte-add1) | |
439 (byte-defop 85 -1 byte-eqlsign) | |
440 (byte-defop 86 -1 byte-gtr) | |
441 (byte-defop 87 -1 byte-lss) | |
442 (byte-defop 88 -1 byte-leq) | |
443 (byte-defop 89 -1 byte-geq) | |
444 (byte-defop 90 -1 byte-diff) | |
445 (byte-defop 91 0 byte-negate) | |
446 (byte-defop 92 -1 byte-plus) | |
447 (byte-defop 93 -1 byte-max) | |
448 (byte-defop 94 -1 byte-min) | |
449 (byte-defop 95 -1 byte-mult) ; v19 only | |
450 (byte-defop 96 1 byte-point) | |
451 (byte-defop 97 1 byte-mark-OBSOLETE) ; no longer generated as of v18 | |
452 (byte-defop 98 0 byte-goto-char) | |
453 (byte-defop 99 0 byte-insert) | |
454 (byte-defop 100 1 byte-point-max) | |
455 (byte-defop 101 1 byte-point-min) | |
456 (byte-defop 102 0 byte-char-after) | |
457 (byte-defop 103 1 byte-following-char) | |
458 (byte-defop 104 1 byte-preceding-char) | |
459 (byte-defop 105 1 byte-current-column) | |
460 (byte-defop 106 0 byte-indent-to) | |
461 (byte-defop 107 0 byte-scan-buffer-OBSOLETE) ; no longer generated as of v18 | |
462 (byte-defop 108 1 byte-eolp) | |
463 (byte-defop 109 1 byte-eobp) | |
464 (byte-defop 110 1 byte-bolp) | |
465 (byte-defop 111 1 byte-bobp) | |
466 (byte-defop 112 1 byte-current-buffer) | |
467 (byte-defop 113 0 byte-set-buffer) | |
468 (byte-defop 114 1 byte-read-char-OBSOLETE) | |
469 (byte-defop 115 0 byte-set-mark-OBSOLETE) | |
470 (byte-defop 116 1 byte-interactive-p) | |
471 | |
472 ;; These ops are new to v19 | |
473 (byte-defop 117 0 byte-forward-char) | |
474 (byte-defop 118 0 byte-forward-word) | |
475 (byte-defop 119 -1 byte-skip-chars-forward) | |
476 (byte-defop 120 -1 byte-skip-chars-backward) | |
477 (byte-defop 121 0 byte-forward-line) | |
478 (byte-defop 122 0 byte-char-syntax) | |
479 (byte-defop 123 -1 byte-buffer-substring) | |
480 (byte-defop 124 -1 byte-delete-region) | |
481 (byte-defop 125 -1 byte-narrow-to-region) | |
482 (byte-defop 126 1 byte-widen) | |
483 (byte-defop 127 0 byte-end-of-line) | |
484 | |
485 ;; unused: 128 | |
486 | |
487 ;; These store their argument in the next two bytes | |
488 (byte-defop 129 1 byte-constant2 | |
489 "for reference to a constant with vector index >= byte-constant-limit") | |
490 (byte-defop 130 0 byte-goto "for unconditional jump") | |
491 (byte-defop 131 -1 byte-goto-if-nil "to pop value and jump if it's nil") | |
492 (byte-defop 132 -1 byte-goto-if-not-nil "to pop value and jump if it's not nil") | |
493 (byte-defop 133 -1 byte-goto-if-nil-else-pop | |
494 "to examine top-of-stack, jump and don't pop it if it's nil, | |
495 otherwise pop it") | |
496 (byte-defop 134 -1 byte-goto-if-not-nil-else-pop | |
497 "to examine top-of-stack, jump and don't pop it if it's non nil, | |
498 otherwise pop it") | |
499 | |
500 (byte-defop 135 -1 byte-return "to pop a value and return it from `byte-code'") | |
501 (byte-defop 136 -1 byte-discard "to discard one value from stack") | |
502 (byte-defop 137 1 byte-dup "to duplicate the top of the stack") | |
503 | |
504 (byte-defop 138 0 byte-save-excursion | |
505 "to make a binding to record the buffer, point and mark") | |
506 (byte-defop 139 0 byte-save-window-excursion | |
507 "to make a binding to record entire window configuration") | |
508 (byte-defop 140 0 byte-save-restriction | |
509 "to make a binding to record the current buffer clipping restrictions") | |
510 (byte-defop 141 -1 byte-catch | |
511 "for catch. Takes, on stack, the tag and an expression for the body") | |
512 (byte-defop 142 -1 byte-unwind-protect | |
513 "for unwind-protect. Takes, on stack, an expression for the unwind-action") | |
514 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
515 ;; For condition-case. Takes, on stack, the variable to bind, |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
516 ;; an expression for the body, and a list of clauses. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
517 (byte-defop 143 -2 byte-condition-case) |
757 | 518 |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
519 ;; For entry to with-output-to-temp-buffer. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
520 ;; Takes, on stack, the buffer name. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
521 ;; Binds standard-output and does some other things. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
522 ;; Returns with temp buffer on the stack in place of buffer name. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
523 (byte-defop 144 0 byte-temp-output-buffer-setup) |
757 | 524 |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
525 ;; For exit from with-output-to-temp-buffer. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
526 ;; Expects the temp buffer on the stack underneath value to return. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
527 ;; Pops them both, then pushes the value back on. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
528 ;; Unbinds standard-output and makes the temp buffer visible. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
529 (byte-defop 145 -1 byte-temp-output-buffer-show) |
757 | 530 |
531 ;; these ops are new to v19 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
532 |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
533 ;; To unbind back to the beginning of this frame. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
534 ;; Not used yet, but wil be needed for tail-recursion elimination. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
535 (byte-defop 146 0 byte-unbind-all) |
757 | 536 |
537 ;; these ops are new to v19 | |
538 (byte-defop 147 -2 byte-set-marker) | |
539 (byte-defop 148 0 byte-match-beginning) | |
540 (byte-defop 149 0 byte-match-end) | |
541 (byte-defop 150 0 byte-upcase) | |
542 (byte-defop 151 0 byte-downcase) | |
543 (byte-defop 152 -1 byte-string=) | |
544 (byte-defop 153 -1 byte-string<) | |
545 (byte-defop 154 -1 byte-equal) | |
546 (byte-defop 155 -1 byte-nthcdr) | |
547 (byte-defop 156 -1 byte-elt) | |
548 (byte-defop 157 -1 byte-member) | |
549 (byte-defop 158 -1 byte-assq) | |
550 (byte-defop 159 0 byte-nreverse) | |
551 (byte-defop 160 -1 byte-setcar) | |
552 (byte-defop 161 -1 byte-setcdr) | |
553 (byte-defop 162 0 byte-car-safe) | |
554 (byte-defop 163 0 byte-cdr-safe) | |
555 (byte-defop 164 -1 byte-nconc) | |
556 (byte-defop 165 -1 byte-quo) | |
557 (byte-defop 166 -1 byte-rem) | |
558 (byte-defop 167 0 byte-numberp) | |
559 (byte-defop 168 0 byte-integerp) | |
560 | |
848 | 561 ;; unused: 169-174 |
757 | 562 (byte-defop 175 nil byte-listN) |
563 (byte-defop 176 nil byte-concatN) | |
564 (byte-defop 177 nil byte-insertN) | |
565 | |
566 ;; unused: 178-191 | |
567 | |
568 (byte-defop 192 1 byte-constant "for reference to a constant") | |
569 ;; codes 193-255 are consumed by byte-constant. | |
570 (defconst byte-constant-limit 64 | |
571 "Exclusive maximum index usable in the `byte-constant' opcode.") | |
572 | |
573 (defconst byte-goto-ops '(byte-goto byte-goto-if-nil byte-goto-if-not-nil | |
574 byte-goto-if-nil-else-pop | |
575 byte-goto-if-not-nil-else-pop) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
576 "List of byte-codes whose offset is a pc.") |
757 | 577 |
578 (defconst byte-goto-always-pop-ops '(byte-goto-if-nil byte-goto-if-not-nil)) | |
579 | |
580 (byte-extrude-byte-code-vectors) | |
581 | |
582 ;;; lapcode generator | |
583 ;;; | |
584 ;;; the byte-compiler now does source -> lapcode -> bytecode instead of | |
585 ;;; source -> bytecode, because it's a lot easier to make optimizations | |
586 ;;; on lapcode than on bytecode. | |
587 ;;; | |
588 ;;; Elements of the lapcode list are of the form (<instruction> . <parameter>) | |
589 ;;; where instruction is a symbol naming a byte-code instruction, | |
590 ;;; and parameter is an argument to that instruction, if any. | |
591 ;;; | |
592 ;;; The instruction can be the pseudo-op TAG, which means that this position | |
593 ;;; in the instruction stream is a target of a goto. (car PARAMETER) will be | |
594 ;;; the PC for this location, and the whole instruction "(TAG pc)" will be the | |
595 ;;; parameter for some goto op. | |
596 ;;; | |
597 ;;; If the operation is varbind, varref, varset or push-constant, then the | |
598 ;;; parameter is (variable/constant . index_in_constant_vector). | |
599 ;;; | |
600 ;;; First, the source code is macroexpanded and optimized in various ways. | |
601 ;;; Then the resultant code is compiled into lapcode. Another set of | |
602 ;;; optimizations are then run over the lapcode. Then the variables and | |
603 ;;; constants referenced by the lapcode are collected and placed in the | |
604 ;;; constants-vector. (This happens now so that variables referenced by dead | |
605 ;;; code don't consume space.) And finally, the lapcode is transformed into | |
606 ;;; compacted byte-code. | |
607 ;;; | |
608 ;;; A distinction is made between variables and constants because the variable- | |
609 ;;; referencing instructions are more sensitive to the variables being near the | |
610 ;;; front of the constants-vector than the constant-referencing instructions. | |
611 ;;; Also, this lets us notice references to free variables. | |
612 | |
613 (defun byte-compile-lapcode (lap) | |
614 "Turns lapcode into bytecode. The lapcode is destroyed." | |
615 ;; Lapcode modifications: changes the ID of a tag to be the tag's PC. | |
616 (let ((pc 0) ; Program counter | |
617 op off ; Operation & offset | |
618 (bytes '()) ; Put the output bytes here | |
619 (patchlist nil) ; List of tags and goto's to patch | |
620 rest rel tmp) | |
621 (while lap | |
622 (setq op (car (car lap)) | |
623 off (cdr (car lap))) | |
624 (cond ((not (symbolp op)) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
625 (error "Non-symbolic opcode `%s'" op)) |
757 | 626 ((eq op 'TAG) |
627 (setcar off pc) | |
628 (setq patchlist (cons off patchlist))) | |
629 ((memq op byte-goto-ops) | |
630 (setq pc (+ pc 3)) | |
631 (setq bytes (cons (cons pc (cdr off)) | |
632 (cons nil | |
633 (cons (symbol-value op) bytes)))) | |
634 (setq patchlist (cons bytes patchlist))) | |
635 (t | |
636 (setq bytes | |
637 (cond ((cond ((consp off) | |
638 ;; Variable or constant reference | |
639 (setq off (cdr off)) | |
640 (eq op 'byte-constant))) | |
641 (cond ((< off byte-constant-limit) | |
642 (setq pc (1+ pc)) | |
643 (cons (+ byte-constant off) bytes)) | |
644 (t | |
645 (setq pc (+ 3 pc)) | |
646 (cons (lsh off -8) | |
647 (cons (logand off 255) | |
648 (cons byte-constant2 bytes)))))) | |
649 ((<= byte-listN (symbol-value op)) | |
650 (setq pc (+ 2 pc)) | |
651 (cons off (cons (symbol-value op) bytes))) | |
652 ((< off 6) | |
653 (setq pc (1+ pc)) | |
654 (cons (+ (symbol-value op) off) bytes)) | |
655 ((< off 256) | |
656 (setq pc (+ 2 pc)) | |
657 (cons off (cons (+ (symbol-value op) 6) bytes))) | |
658 (t | |
659 (setq pc (+ 3 pc)) | |
660 (cons (lsh off -8) | |
661 (cons (logand off 255) | |
662 (cons (+ (symbol-value op) 7) | |
663 bytes)))))))) | |
664 (setq lap (cdr lap))) | |
665 ;;(if (not (= pc (length bytes))) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
666 ;; (error "Compiler error: pc mismatch - %s %s" pc (length bytes))) |
757 | 667 ;; Patch PC into jumps |
668 (let (bytes) | |
669 (while patchlist | |
670 (setq bytes (car patchlist)) | |
671 (cond ((atom (car bytes))) ; Tag | |
672 (t ; Absolute jump | |
673 (setq pc (car (cdr (car bytes)))) ; Pick PC from tag | |
674 (setcar (cdr bytes) (logand pc 255)) | |
675 (setcar bytes (lsh pc -8)))) | |
676 (setq patchlist (cdr patchlist)))) | |
677 (concat (nreverse bytes)))) | |
678 | |
679 | |
680 ;;; byte compiler messages | |
681 | |
682 (defconst byte-compile-current-form nil) | |
683 (defconst byte-compile-current-file nil) | |
684 | |
685 (defmacro byte-compile-log (format-string &rest args) | |
686 (list 'and | |
687 'byte-optimize | |
688 '(memq byte-optimize-log '(t source)) | |
689 (list 'let '((print-escape-newlines t) | |
690 (print-level 4) | |
691 (print-length 4)) | |
692 (list 'byte-compile-log-1 | |
693 (cons 'format | |
694 (cons format-string | |
695 (mapcar | |
696 '(lambda (x) | |
697 (if (symbolp x) (list 'prin1-to-string x) x)) | |
698 args))))))) | |
699 | |
700 (defconst byte-compile-last-warned-form nil) | |
701 | |
958 | 702 (defun byte-compile-log-1 (string &optional fill) |
757 | 703 (cond (noninteractive |
704 (if (or byte-compile-current-file | |
705 (and byte-compile-last-warned-form | |
706 (not (eq byte-compile-current-form | |
707 byte-compile-last-warned-form)))) | |
708 (message (format "While compiling %s%s:" | |
709 (or byte-compile-current-form "toplevel forms") | |
710 (if byte-compile-current-file | |
711 (if (stringp byte-compile-current-file) | |
712 (concat " in file " byte-compile-current-file) | |
713 (concat " in buffer " | |
714 (buffer-name byte-compile-current-file))) | |
715 "")))) | |
716 (message " %s" string)) | |
717 (t | |
718 (save-excursion | |
719 (set-buffer (get-buffer-create "*Compile-Log*")) | |
720 (goto-char (point-max)) | |
721 (cond ((or byte-compile-current-file | |
722 (and byte-compile-last-warned-form | |
723 (not (eq byte-compile-current-form | |
724 byte-compile-last-warned-form)))) | |
725 (if byte-compile-current-file | |
726 (insert "\n\^L\n" (current-time-string) "\n")) | |
727 (insert "While compiling " | |
728 (if byte-compile-current-form | |
729 (format "%s" byte-compile-current-form) | |
730 "toplevel forms")) | |
731 (if byte-compile-current-file | |
732 (if (stringp byte-compile-current-file) | |
733 (insert " in file " byte-compile-current-file) | |
734 (insert " in buffer " | |
735 (buffer-name byte-compile-current-file)))) | |
736 (insert ":\n"))) | |
958 | 737 (insert " " string "\n") |
738 (if (and fill (not (string-match "\n" string))) | |
739 (let ((fill-prefix " ") | |
740 (fill-column 78)) | |
741 (fill-paragraph nil))) | |
742 ))) | |
757 | 743 (setq byte-compile-current-file nil |
744 byte-compile-last-warned-form byte-compile-current-form)) | |
745 | |
746 (defun byte-compile-warn (format &rest args) | |
747 (setq format (apply 'format format args)) | |
748 (if byte-compile-error-on-warn | |
749 (error "%s" format) ; byte-compile-file catches and logs it | |
958 | 750 (byte-compile-log-1 (concat "** " format) t) |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
751 ;;; It is useless to flash warnings too fast to be read. |
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
752 ;;; Besides, they will all be shown at the end. |
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
753 ;;; (or noninteractive ; already written on stdout. |
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
754 ;;; (message "Warning: %s" format)) |
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
755 )) |
757 | 756 |
922 | 757 ;;; This function should be used to report errors that have halted |
758 ;;; compilation of the current file. | |
759 (defun byte-compile-report-error (error-info) | |
1129 | 760 (setq byte-compiler-error-flag t) |
958 | 761 (byte-compile-log-1 |
762 (concat "!! " | |
763 (format (if (cdr error-info) "%s (%s)" "%s") | |
764 (get (car error-info) 'error-message) | |
765 (prin1-to-string (cdr error-info)))))) | |
922 | 766 |
757 | 767 ;;; Used by make-obsolete. |
768 (defun byte-compile-obsolete (form) | |
769 (let ((new (get (car form) 'byte-obsolete-info))) | |
770 (byte-compile-warn "%s is an obsolete function; %s" (car form) | |
771 (if (stringp (car new)) | |
772 (car new) | |
773 (format "use %s instead." (car new)))) | |
774 (funcall (or (cdr new) 'byte-compile-normal-call) form))) | |
775 | |
776 ;; Compiler options | |
777 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
778 ;; (defvar byte-compiler-valid-options |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
779 ;; '((optimize byte-optimize (t nil source byte) val) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
780 ;; (file-format byte-compile-compatibility (emacs18 emacs19) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
781 ;; (eq val 'emacs18)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
782 ;; ;; (new-bytecodes byte-compile-generate-emacs19-bytecodes (t nil) val) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
783 ;; (delete-errors byte-compile-delete-errors (t nil) val) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
784 ;; (verbose byte-compile-verbose (t nil) val) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
785 ;; (warnings byte-compile-warnings ((callargs redefine free-vars unresolved)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
786 ;; val))) |
757 | 787 |
788 ;; Inhibit v18/v19 selectors if the version is hardcoded. | |
789 ;; #### This should print a warning if the user tries to change something | |
790 ;; than can't be changed because the running compiler doesn't support it. | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
791 ;; (cond |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
792 ;; ((byte-compile-single-version) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
793 ;; (setcar (cdr (cdr (assq 'new-bytecodes byte-compiler-valid-options))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
794 ;; (list (byte-compile-version-cond |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
795 ;; byte-compile-generate-emacs19-bytecodes))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
796 ;; (setcar (cdr (cdr (assq 'file-format byte-compiler-valid-options))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
797 ;; (if (byte-compile-version-cond byte-compile-compatibility) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
798 ;; '(emacs18) '(emacs19))))) |
757 | 799 |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
800 ;; (defun byte-compiler-options-handler (&rest args) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
801 ;; (let (key val desc choices) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
802 ;; (while args |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
803 ;; (if (or (atom (car args)) (nthcdr 2 (car args)) (null (cdr (car args)))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
804 ;; (error "Malformed byte-compiler option `%s'" (car args))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
805 ;; (setq key (car (car args)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
806 ;; val (car (cdr (car args))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
807 ;; desc (assq key byte-compiler-valid-options)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
808 ;; (or desc |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
809 ;; (error "Unknown byte-compiler option `%s'" key)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
810 ;; (setq choices (nth 2 desc)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
811 ;; (if (consp (car choices)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
812 ;; (let (this |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
813 ;; (handler 'cons) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
814 ;; (ret (and (memq (car val) '(+ -)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
815 ;; (copy-sequence (if (eq t (symbol-value (nth 1 desc))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
816 ;; choices |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
817 ;; (symbol-value (nth 1 desc))))))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
818 ;; (setq choices (car choices)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
819 ;; (while val |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
820 ;; (setq this (car val)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
821 ;; (cond ((memq this choices) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
822 ;; (setq ret (funcall handler this ret))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
823 ;; ((eq this '+) (setq handler 'cons)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
824 ;; ((eq this '-) (setq handler 'delq)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
825 ;; ((error "`%s' only accepts %s" key choices))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
826 ;; (setq val (cdr val))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
827 ;; (set (nth 1 desc) ret)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
828 ;; (or (memq val choices) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
829 ;; (error "`%s' must be one of `%s'" key choices)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
830 ;; (set (nth 1 desc) (eval (nth 3 desc)))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
831 ;; (setq args (cdr args))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
832 ;; nil)) |
757 | 833 |
834 ;;; sanity-checking arglists | |
835 | |
836 (defun byte-compile-fdefinition (name macro-p) | |
837 (let* ((list (if macro-p | |
838 byte-compile-macro-environment | |
839 byte-compile-function-environment)) | |
840 (env (cdr (assq name list)))) | |
841 (or env | |
842 (let ((fn name)) | |
843 (while (and (symbolp fn) | |
844 (fboundp fn) | |
845 (or (symbolp (symbol-function fn)) | |
846 (consp (symbol-function fn)) | |
847 (and (not macro-p) | |
1819
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
848 (byte-code-function-p (symbol-function fn))))) |
757 | 849 (setq fn (symbol-function fn))) |
1819
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
850 (if (and (not macro-p) (byte-code-function-p fn)) |
757 | 851 fn |
852 (and (consp fn) | |
853 (if (eq 'macro (car fn)) | |
854 (cdr fn) | |
855 (if macro-p | |
856 nil | |
857 (if (eq 'autoload (car fn)) | |
858 nil | |
859 fn))))))))) | |
860 | |
861 (defun byte-compile-arglist-signature (arglist) | |
862 (let ((args 0) | |
863 opts | |
864 restp) | |
865 (while arglist | |
866 (cond ((eq (car arglist) '&optional) | |
867 (or opts (setq opts 0))) | |
868 ((eq (car arglist) '&rest) | |
869 (if (cdr arglist) | |
870 (setq restp t | |
871 arglist nil))) | |
872 (t | |
873 (if opts | |
874 (setq opts (1+ opts)) | |
875 (setq args (1+ args))))) | |
876 (setq arglist (cdr arglist))) | |
877 (cons args (if restp nil (if opts (+ args opts) args))))) | |
878 | |
879 | |
880 (defun byte-compile-arglist-signatures-congruent-p (old new) | |
881 (not (or | |
882 (> (car new) (car old)) ; requires more args now | |
883 (and (null (cdr old)) ; tooks rest-args, doesn't any more | |
884 (cdr new)) | |
885 (and (cdr new) (cdr old) ; can't take as many args now | |
886 (< (cdr new) (cdr old))) | |
887 ))) | |
888 | |
889 (defun byte-compile-arglist-signature-string (signature) | |
890 (cond ((null (cdr signature)) | |
891 (format "%d+" (car signature))) | |
892 ((= (car signature) (cdr signature)) | |
893 (format "%d" (car signature))) | |
894 (t (format "%d-%d" (car signature) (cdr signature))))) | |
895 | |
896 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
897 ;; Warn if the form is calling a function with the wrong number of arguments. |
757 | 898 (defun byte-compile-callargs-warn (form) |
899 (let* ((def (or (byte-compile-fdefinition (car form) nil) | |
900 (byte-compile-fdefinition (car form) t))) | |
901 (sig (and def (byte-compile-arglist-signature | |
902 (if (eq 'lambda (car-safe def)) | |
903 (nth 1 def) | |
904 (aref def 0))))) | |
905 (ncall (length (cdr form)))) | |
906 (if sig | |
907 (if (or (< ncall (car sig)) | |
908 (and (cdr sig) (> ncall (cdr sig)))) | |
909 (byte-compile-warn | |
910 "%s called with %d argument%s, but %s %s" | |
911 (car form) ncall | |
912 (if (= 1 ncall) "" "s") | |
913 (if (< ncall (car sig)) | |
914 "requires" | |
915 "accepts only") | |
916 (byte-compile-arglist-signature-string sig))) | |
917 (or (fboundp (car form)) ; might be a subr or autoload. | |
918 (eq (car form) byte-compile-current-form) ; ## this doesn't work with recursion. | |
919 ;; It's a currently-undefined function. Remember number of args in call. | |
920 (let ((cons (assq (car form) byte-compile-unresolved-functions)) | |
921 (n (length (cdr form)))) | |
922 (if cons | |
923 (or (memq n (cdr cons)) | |
924 (setcdr cons (cons n (cdr cons)))) | |
925 (setq byte-compile-unresolved-functions | |
926 (cons (list (car form) n) | |
927 byte-compile-unresolved-functions)))))))) | |
928 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
929 ;; Warn if the function or macro is being redefined with a different |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
930 ;; number of arguments. |
757 | 931 (defun byte-compile-arglist-warn (form macrop) |
932 (let ((old (byte-compile-fdefinition (nth 1 form) macrop))) | |
933 (if old | |
934 (let ((sig1 (byte-compile-arglist-signature | |
935 (if (eq 'lambda (car-safe old)) | |
936 (nth 1 old) | |
937 (aref old 0)))) | |
938 (sig2 (byte-compile-arglist-signature (nth 2 form)))) | |
939 (or (byte-compile-arglist-signatures-congruent-p sig1 sig2) | |
940 (byte-compile-warn "%s %s used to take %s %s, now takes %s" | |
941 (if (eq (car form) 'defun) "function" "macro") | |
942 (nth 1 form) | |
943 (byte-compile-arglist-signature-string sig1) | |
944 (if (equal sig1 '(1 . 1)) "argument" "arguments") | |
945 (byte-compile-arglist-signature-string sig2)))) | |
946 ;; This is the first definition. See if previous calls are compatible. | |
947 (let ((calls (assq (nth 1 form) byte-compile-unresolved-functions)) | |
948 nums sig min max) | |
949 (if calls | |
950 (progn | |
951 (setq sig (byte-compile-arglist-signature (nth 2 form)) | |
952 nums (sort (copy-sequence (cdr calls)) (function <)) | |
953 min (car nums) | |
954 max (car (nreverse nums))) | |
955 (if (or (< min (car sig)) | |
956 (and (cdr sig) (> max (cdr sig)))) | |
957 (byte-compile-warn | |
958 "%s being defined to take %s%s, but was previously called with %s" | |
959 (nth 1 form) | |
960 (byte-compile-arglist-signature-string sig) | |
961 (if (equal sig '(1 . 1)) " arg" " args") | |
962 (byte-compile-arglist-signature-string (cons min max)))) | |
963 | |
964 (setq byte-compile-unresolved-functions | |
965 (delq calls byte-compile-unresolved-functions))))) | |
966 ))) | |
967 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
968 ;; If we have compiled any calls to functions which are not known to be |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
969 ;; defined, issue a warning enumerating them. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
970 ;; `unresolved' in the list `byte-compile-warnings' disables this. |
757 | 971 (defun byte-compile-warn-about-unresolved-functions () |
972 (if (memq 'unresolved byte-compile-warnings) | |
973 (let ((byte-compile-current-form "the end of the data")) | |
974 (if (cdr byte-compile-unresolved-functions) | |
975 (let* ((str "The following functions are not known to be defined: ") | |
976 (L (length str)) | |
977 (rest (reverse byte-compile-unresolved-functions)) | |
978 s) | |
979 (while rest | |
980 (setq s (symbol-name (car (car rest))) | |
981 L (+ L (length s) 2) | |
982 rest (cdr rest)) | |
983 (if (< L (1- fill-column)) | |
984 (setq str (concat str " " s (and rest ","))) | |
985 (setq str (concat str "\n " s (and rest ",")) | |
986 L (+ (length s) 4)))) | |
987 (byte-compile-warn "%s" str)) | |
988 (if byte-compile-unresolved-functions | |
989 (byte-compile-warn "the function %s is not known to be defined." | |
990 (car (car byte-compile-unresolved-functions))))))) | |
991 nil) | |
992 | |
993 | |
994 (defmacro byte-compile-constp (form) | |
995 ;; Returns non-nil if FORM is a constant. | |
996 (` (cond ((consp (, form)) (eq (car (, form)) 'quote)) | |
997 ((not (symbolp (, form)))) | |
998 ((memq (, form) '(nil t)))))) | |
999 | |
1000 (defmacro byte-compile-close-variables (&rest body) | |
1001 (cons 'let | |
1002 (cons '(;; | |
1003 ;; Close over these variables to encapsulate the | |
1004 ;; compilation state | |
1005 ;; | |
1006 (byte-compile-macro-environment | |
1007 ;; Copy it because the compiler may patch into the | |
1008 ;; macroenvironment. | |
1009 (copy-alist byte-compile-initial-macro-environment)) | |
1010 (byte-compile-function-environment nil) | |
1011 (byte-compile-bound-variables nil) | |
1012 (byte-compile-free-references nil) | |
1013 (byte-compile-free-assignments nil) | |
1014 ;; | |
1015 ;; Close over these variables so that `byte-compiler-options' | |
1016 ;; can change them on a per-file basis. | |
1017 ;; | |
1018 (byte-compile-verbose byte-compile-verbose) | |
1019 (byte-optimize byte-optimize) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1020 ;; (byte-compile-generate-emacs19-bytecodes |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1021 ;; byte-compile-generate-emacs19-bytecodes) |
757 | 1022 (byte-compile-warnings (if (eq byte-compile-warnings t) |
1023 byte-compile-warning-types | |
1024 byte-compile-warnings)) | |
1025 ) | |
1026 body))) | |
1027 | |
1028 (defvar byte-compile-warnings-point-max) | |
1029 (defmacro displaying-byte-compile-warnings (&rest body) | |
1030 (list 'let | |
1031 '((byte-compile-warnings-point-max | |
1032 (if (boundp 'byte-compile-warnings-point-max) | |
1033 byte-compile-warnings-point-max | |
1034 (save-excursion | |
1035 (set-buffer (get-buffer-create "*Compile-Log*")) | |
1036 (point-max))))) | |
922 | 1037 (list 'unwind-protect |
1038 (list 'condition-case 'error-info | |
1039 (cons 'progn body) | |
1040 '(error | |
1041 (byte-compile-report-error error-info))) | |
757 | 1042 '(save-excursion |
1043 ;; If there were compilation warnings, display them. | |
1044 (set-buffer "*Compile-Log*") | |
1045 (if (= byte-compile-warnings-point-max (point-max)) | |
1046 nil | |
1047 (select-window | |
1048 (prog1 (selected-window) | |
1049 (select-window (display-buffer (current-buffer))) | |
1050 (goto-char byte-compile-warnings-point-max) | |
1051 (recenter 1)))))))) | |
1052 | |
1053 | |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
1054 ;;;###autoload |
757 | 1055 (defun byte-recompile-directory (directory &optional arg) |
1056 "Recompile every `.el' file in DIRECTORY that needs recompilation. | |
1057 This is if a `.elc' file exists but is older than the `.el' file. | |
1058 | |
1059 If the `.elc' file does not exist, normally the `.el' file is *not* compiled. | |
1060 But a prefix argument (optional second arg) means ask user, | |
958 | 1061 for each such `.el' file, whether to compile it. Prefix argument 0 means |
1062 don't ask and compile the file anyway." | |
757 | 1063 (interactive "DByte recompile directory: \nP") |
2735
6489c9da34b9
(byte-recompile-directory): If ARG is non-nil, set it to its prefix
Roland McGrath <roland@gnu.org>
parents:
2626
diff
changeset
|
1064 (if arg |
6489c9da34b9
(byte-recompile-directory): If ARG is non-nil, set it to its prefix
Roland McGrath <roland@gnu.org>
parents:
2626
diff
changeset
|
1065 (setq arg (prefix-numeric-value arg))) |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1066 (if noninteractive |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1067 nil |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1068 (save-some-buffers) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1069 (set-buffer-modified-p (buffer-modified-p))) ;Update the mode line. |
958 | 1070 (let ((directories (list (expand-file-name directory))) |
1071 (file-count 0) | |
1072 (dir-count 0) | |
1073 last-dir) | |
1074 (displaying-byte-compile-warnings | |
1075 (while directories | |
1076 (setq directory (car directories)) | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1077 (or noninteractive (message "Checking %s..." directory)) |
958 | 1078 (let ((files (directory-files directory)) |
1079 source dest) | |
1080 (while files | |
1081 (setq source (expand-file-name (car files) directory)) | |
1082 (if (and (not (member (car files) '("." ".." "RCS" "CVS"))) | |
1083 (file-directory-p source)) | |
1084 (if (or (null arg) | |
2735
6489c9da34b9
(byte-recompile-directory): If ARG is non-nil, set it to its prefix
Roland McGrath <roland@gnu.org>
parents:
2626
diff
changeset
|
1085 (eq 0 arg) |
958 | 1086 (y-or-n-p (concat "Check " source "? "))) |
1087 (setq directories | |
1088 (nconc directories (list source)))) | |
1089 (if (and (string-match emacs-lisp-file-regexp source) | |
1090 (not (auto-save-file-name-p source)) | |
1091 (setq dest (byte-compile-dest-file source)) | |
1092 (if (file-exists-p dest) | |
1093 (file-newer-than-file-p source dest) | |
1094 (and arg | |
2735
6489c9da34b9
(byte-recompile-directory): If ARG is non-nil, set it to its prefix
Roland McGrath <roland@gnu.org>
parents:
2626
diff
changeset
|
1095 (or (eq 0 arg) |
958 | 1096 (y-or-n-p (concat "Compile " source "? ")))))) |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1097 (progn (if (and noninteractive (not byte-compile-verbose)) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1098 (message "Compiling %s..." source)) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1099 (byte-compile-file source) |
958 | 1100 (setq file-count (1+ file-count)) |
1101 (if (not (eq last-dir directory)) | |
1102 (setq last-dir directory | |
1103 dir-count (1+ dir-count))) | |
1104 ))) | |
1105 (setq files (cdr files)))) | |
1106 (setq directories (cdr directories)))) | |
1107 (message "Done (Total of %d file%s compiled%s)" | |
1108 file-count (if (= file-count 1) "" "s") | |
1109 (if (> dir-count 1) (format " in %d directories" dir-count) "")))) | |
757 | 1110 |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
1111 ;;;###autoload |
757 | 1112 (defun byte-compile-file (filename &optional load) |
1113 "Compile a file of Lisp code named FILENAME into a file of byte code. | |
1114 The output file's name is made by appending `c' to the end of FILENAME. | |
1115 With prefix arg (noninteractively: 2nd arg), load the file after compiling." | |
1116 ;; (interactive "fByte compile file: \nP") | |
1117 (interactive | |
1118 (let ((file buffer-file-name) | |
1119 (file-name nil) | |
1120 (file-dir nil)) | |
1121 (and file | |
1122 (eq (cdr (assq 'major-mode (buffer-local-variables))) | |
1123 'emacs-lisp-mode) | |
1124 (setq file-name (file-name-nondirectory file) | |
1125 file-dir (file-name-directory file))) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1126 (list (read-file-name (if current-prefix-arg |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1127 "Byte compile and load file: " |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1128 "Byte compile file: ") |
3718
37a8a7489fc5
(byte-compile-file): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3653
diff
changeset
|
1129 file-dir file-name nil) |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
1130 current-prefix-arg))) |
757 | 1131 ;; Expand now so we get the current buffer's defaults |
1132 (setq filename (expand-file-name filename)) | |
1133 | |
1134 ;; If we're compiling a file that's in a buffer and is modified, offer | |
1135 ;; to save it first. | |
1136 (or noninteractive | |
1137 (let ((b (get-file-buffer (expand-file-name filename)))) | |
1138 (if (and b (buffer-modified-p b) | |
1139 (y-or-n-p (format "save buffer %s first? " (buffer-name b)))) | |
1140 (save-excursion (set-buffer b) (save-buffer))))) | |
1141 | |
1142 (if byte-compile-verbose | |
1143 (message "Compiling %s..." filename)) | |
1144 (let ((byte-compile-current-file (file-name-nondirectory filename)) | |
1129 | 1145 target-file input-buffer output-buffer) |
757 | 1146 (save-excursion |
1129 | 1147 (setq input-buffer (get-buffer-create " *Compiler Input*")) |
1148 (set-buffer input-buffer) | |
757 | 1149 (erase-buffer) |
1150 (insert-file-contents filename) | |
1151 ;; Run hooks including the uncompression hook. | |
1152 ;; If they change the file name, then change it for the output also. | |
1153 (let ((buffer-file-name filename)) | |
1154 (set-auto-mode) | |
1129 | 1155 (setq filename buffer-file-name))) |
1156 (setq byte-compiler-error-flag nil) | |
1157 ;; It is important that input-buffer not be current at this call, | |
1158 ;; so that the value of point set in input-buffer | |
1159 ;; within byte-compile-from-buffer lingers in that buffer. | |
1160 (setq output-buffer (byte-compile-from-buffer input-buffer)) | |
2855
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1161 (if byte-compiler-error-flag |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1162 nil |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1163 (kill-buffer input-buffer) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1164 (save-excursion |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1165 (set-buffer output-buffer) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1166 (goto-char (point-max)) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1167 (insert "\n") ; aaah, unix. |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1168 (let ((vms-stmlf-recfm t)) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1169 (setq target-file (byte-compile-dest-file filename)) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1170 ;;; (or byte-compile-overwrite-file |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1171 ;;; (condition-case () |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1172 ;;; (delete-file target-file) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1173 ;;; (error nil))) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1174 (if (file-writable-p target-file) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1175 (let ((kanji-flag nil)) ; for nemacs, from Nakagawa Takayuki |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1176 (write-region 1 (point-max) target-file)) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1177 ;; This is just to give a better error message than |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1178 ;; write-region |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1179 (signal 'file-error |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1180 (list "Opening output file" |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1181 (if (file-exists-p target-file) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1182 "cannot overwrite file" |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1183 "directory not writable or nonexistent") |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1184 target-file))) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1185 ;;; (or byte-compile-overwrite-file |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1186 ;;; (condition-case () |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1187 ;;; (set-file-modes target-file (file-modes filename)) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1188 ;;; (error nil))) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1189 ) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1190 (kill-buffer (current-buffer))) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1191 (if (and byte-compile-generate-call-tree |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1192 (or (eq t byte-compile-generate-call-tree) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1193 (y-or-n-p (format "Report call tree for %s? " filename)))) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1194 (save-excursion |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1195 (display-call-tree filename))) |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1196 (if load |
b858b91dff34
(byte-compile-file): Don't write output if error.
Richard M. Stallman <rms@gnu.org>
parents:
2853
diff
changeset
|
1197 (load target-file)))) |
757 | 1198 t) |
1199 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1200 ;;(defun byte-compile-and-load-file (&optional filename) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1201 ;; "Compile a file of Lisp code named FILENAME into a file of byte code, |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1202 ;;and then load it. The output file's name is made by appending \"c\" to |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1203 ;;the end of FILENAME." |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1204 ;; (interactive) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1205 ;; (if filename ; I don't get it, (interactive-p) doesn't always work |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1206 ;; (byte-compile-file filename t) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1207 ;; (let ((current-prefix-arg '(4))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1208 ;; (call-interactively 'byte-compile-file)))) |
757 | 1209 |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1210 ;;(defun byte-compile-buffer (&optional buffer) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1211 ;; "Byte-compile and evaluate contents of BUFFER (default: the current buffer)." |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1212 ;; (interactive "bByte compile buffer: ") |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1213 ;; (setq buffer (if buffer (get-buffer buffer) (current-buffer))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1214 ;; (message "Compiling %s..." (buffer-name buffer)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1215 ;; (let* ((filename (or (buffer-file-name buffer) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1216 ;; (concat "#<buffer " (buffer-name buffer) ">"))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1217 ;; (byte-compile-current-file buffer)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1218 ;; (byte-compile-from-buffer buffer t)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1219 ;; (message "Compiling %s...done" (buffer-name buffer)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1220 ;; t) |
757 | 1221 |
1222 ;;; compiling a single function | |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
1223 ;;;###autoload |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1224 (defun compile-defun (&optional arg) |
757 | 1225 "Compile and evaluate the current top-level form. |
1226 Print the result in the minibuffer. | |
1227 With argument, insert value in current buffer after the form." | |
1228 (interactive "P") | |
1229 (save-excursion | |
1230 (end-of-defun) | |
1231 (beginning-of-defun) | |
1232 (let* ((byte-compile-current-file nil) | |
1233 (byte-compile-last-warned-form 'nothing) | |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
1234 (value (eval (displaying-byte-compile-warnings |
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
1235 (byte-compile-sexp (read (current-buffer))))))) |
757 | 1236 (cond (arg |
1237 (message "Compiling from buffer... done.") | |
1238 (prin1 value (current-buffer)) | |
1239 (insert "\n")) | |
1240 ((message "%s" (prin1-to-string value))))))) | |
1241 | |
1242 | |
1243 (defun byte-compile-from-buffer (inbuffer &optional eval) | |
1244 ;; buffer --> output-buffer, or buffer --> eval form, return nil | |
1245 (let (outbuffer) | |
1246 (let (;; Prevent truncation of flonums and lists as we read and print them | |
4129
6be09b68817f
* bytecomp.el (byte-compile-from-buffer): Bind float-output-format
Jim Blandy <jimb@redhat.com>
parents:
4050
diff
changeset
|
1247 (float-output-format "%.20e") |
757 | 1248 (case-fold-search nil) |
1249 (print-length nil) | |
1250 ;; Simulate entry to byte-compile-top-level | |
1251 (byte-compile-constants nil) | |
1252 (byte-compile-variables nil) | |
1253 (byte-compile-tag-number 0) | |
1254 (byte-compile-depth 0) | |
1255 (byte-compile-maxdepth 0) | |
1256 (byte-compile-output nil) | |
922 | 1257 ;; #### This is bound in b-c-close-variables. |
1258 ;; (byte-compile-warnings (if (eq byte-compile-warnings t) | |
1259 ;; byte-compile-warning-types | |
1260 ;; byte-compile-warnings)) | |
757 | 1261 ) |
1262 (byte-compile-close-variables | |
1263 (save-excursion | |
1264 (setq outbuffer | |
1265 (set-buffer (get-buffer-create " *Compiler Output*"))) | |
1266 (erase-buffer) | |
922 | 1267 ;; (emacs-lisp-mode) |
2216
8dfca05a5852
* bytecomp.el (byte-compile-from-buffer): Put buffer containing
Jim Blandy <jimb@redhat.com>
parents:
2104
diff
changeset
|
1268 (setq case-fold-search nil) |
8dfca05a5852
* bytecomp.el (byte-compile-from-buffer): Put buffer containing
Jim Blandy <jimb@redhat.com>
parents:
2104
diff
changeset
|
1269 |
2217 | 1270 ;; This is a kludge. Some operating systems (OS/2, DOS) need to |
2216
8dfca05a5852
* bytecomp.el (byte-compile-from-buffer): Put buffer containing
Jim Blandy <jimb@redhat.com>
parents:
2104
diff
changeset
|
1271 ;; write files containing binary information specially. |
8dfca05a5852
* bytecomp.el (byte-compile-from-buffer): Put buffer containing
Jim Blandy <jimb@redhat.com>
parents:
2104
diff
changeset
|
1272 ;; Under most circumstances, such files will be in binary |
8dfca05a5852
* bytecomp.el (byte-compile-from-buffer): Put buffer containing
Jim Blandy <jimb@redhat.com>
parents:
2104
diff
changeset
|
1273 ;; overwrite mode, so those OS's use that flag to guess how |
8dfca05a5852
* bytecomp.el (byte-compile-from-buffer): Put buffer containing
Jim Blandy <jimb@redhat.com>
parents:
2104
diff
changeset
|
1274 ;; they should write their data. Advise them that .elc files |
8dfca05a5852
* bytecomp.el (byte-compile-from-buffer): Put buffer containing
Jim Blandy <jimb@redhat.com>
parents:
2104
diff
changeset
|
1275 ;; need to be written carefully. |
8dfca05a5852
* bytecomp.el (byte-compile-from-buffer): Put buffer containing
Jim Blandy <jimb@redhat.com>
parents:
2104
diff
changeset
|
1276 (setq overwrite-mode 'overwrite-mode-binary)) |
757 | 1277 (displaying-byte-compile-warnings |
1278 (save-excursion | |
1279 (set-buffer inbuffer) | |
1280 (goto-char 1) | |
1281 (while (progn | |
1282 (while (progn (skip-chars-forward " \t\n\^l") | |
1283 (looking-at ";")) | |
1284 (forward-line 1)) | |
1285 (not (eobp))) | |
1286 (byte-compile-file-form (read inbuffer))) | |
1287 ;; Compile pending forms at end of file. | |
1288 (byte-compile-flush-pending) | |
1289 (and (not eval) (byte-compile-insert-header)) | |
1290 (byte-compile-warn-about-unresolved-functions) | |
922 | 1291 ;; always do this? When calling multiple files, it |
1292 ;; would be useful to delay this warning until all have | |
1293 ;; been compiled. | |
757 | 1294 (setq byte-compile-unresolved-functions nil))) |
1295 (save-excursion | |
1296 (set-buffer outbuffer) | |
1297 (goto-char (point-min))))) | |
1298 (if (not eval) | |
1299 outbuffer | |
1300 (while (condition-case nil | |
1301 (progn (setq form (read outbuffer)) | |
1302 t) | |
1303 (end-of-file nil)) | |
1304 (eval form)) | |
1305 (kill-buffer outbuffer) | |
1306 nil))) | |
1307 | |
1308 (defun byte-compile-insert-header () | |
1309 (save-excursion | |
1310 (set-buffer outbuffer) | |
1311 (goto-char 1) | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1312 ;; |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1313 ;; The magic number of .elc files is ";ELC", or 0x3B454C43. After that is |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1314 ;; the file-format version number (18 or 19) as a byte, followed by some |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1315 ;; nulls. The primary motivation for doing this is to get some binary |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1316 ;; characters up in the first line of the file so that `diff' will simply |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1317 ;; say "Binary files differ" instead of actually doing a diff of two .elc |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1318 ;; files. An extra benefit is that you can add this to /etc/magic: |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1319 ;; |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1320 ;; 0 string ;ELC GNU Emacs Lisp compiled file, |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1321 ;; >4 byte x version %d |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1322 ;; |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1323 (insert |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1324 ";ELC" |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1325 (if (byte-compile-version-cond byte-compile-compatibility) 18 19) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1326 "\000\000\000\n" |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1327 ) |
757 | 1328 (insert ";;; compiled by " (user-login-name) "@" (system-name) " on " |
1329 (current-time-string) "\n;;; from file " filename "\n") | |
1330 (insert ";;; emacs version " emacs-version ".\n") | |
1331 (insert ";;; bytecomp version " byte-compile-version "\n;;; " | |
1332 (cond | |
1333 ((eq byte-optimize 'source) "source-level optimization only") | |
1334 ((eq byte-optimize 'byte) "byte-level optimization only") | |
1335 (byte-optimize "optimization is on") | |
1336 (t "optimization is off")) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1337 (if (byte-compile-version-cond byte-compile-compatibility) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1338 "; compiled with Emacs 18 compatibility.\n" |
757 | 1339 ".\n")) |
3455
7542bfc0a920
(byte-compile-insert-header): Fix backwards test
Richard M. Stallman <rms@gnu.org>
parents:
2855
diff
changeset
|
1340 (if (not (byte-compile-version-cond byte-compile-compatibility)) |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1341 (insert ";;; this file uses opcodes which do not exist in Emacs 18.\n" |
757 | 1342 ;; Have to check if emacs-version is bound so that this works |
1343 ;; in files loaded early in loadup.el. | |
1344 "\n(if (and (boundp 'emacs-version)\n" | |
1345 "\t (or (and (boundp 'epoch::version) epoch::version)\n" | |
1346 "\t (string-lessp emacs-version \"19\")))\n" | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1347 " (error \"This file was compiled for Emacs 19\"))\n" |
757 | 1348 )) |
1349 )) | |
1350 | |
1351 | |
1352 (defun byte-compile-output-file-form (form) | |
1353 ;; writes the given form to the output buffer, being careful of docstrings | |
1354 ;; in defun, defmacro, defvar, defconst and autoload because make-docfile is | |
1355 ;; so amazingly stupid. | |
2566
4f201a4ab030
(define-function): Changed name back to defalisaases to get things in
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2544
diff
changeset
|
1356 ;; defalias calls are output directly by byte-compile-file-form-defmumble; |
4f201a4ab030
(define-function): Changed name back to defalisaases to get things in
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2544
diff
changeset
|
1357 ;; it does not pay to first build the defalias in defmumble and then parse |
4f201a4ab030
(define-function): Changed name back to defalisaases to get things in
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2544
diff
changeset
|
1358 ;; it here. |
757 | 1359 (if (and (memq (car-safe form) '(defun defmacro defvar defconst autoload)) |
1360 (stringp (nth 3 form))) | |
1361 (byte-compile-output-docform '("\n(" 3 ")") form) | |
1362 (let ((print-escape-newlines t) | |
958 | 1363 (print-readably t) ; print #[] for bytecode, 'x for (quote x) |
1364 (print-gensym nil)) ; this is too dangerous for now | |
757 | 1365 (princ "\n" outbuffer) |
1366 (prin1 form outbuffer) | |
1367 nil))) | |
1368 | |
1369 (defun byte-compile-output-docform (info form) | |
1370 ;; Print a form with a doc string. INFO is (prefix doc-index postfix). | |
1371 (set-buffer | |
1372 (prog1 (current-buffer) | |
1373 (set-buffer outbuffer) | |
1374 (insert (car info)) | |
1375 (let ((docl (nthcdr (nth 1 info) form)) | |
1376 (print-escape-newlines t) | |
958 | 1377 (print-readably t) ; print #[] for bytecode, 'x for (quote x) |
1378 (print-gensym nil)) ; this is too dangerous for now | |
757 | 1379 (prin1 (car form) outbuffer) |
1380 (while (setq form (cdr form)) | |
1381 (insert " ") | |
1382 (if (eq form docl) | |
1383 (let ((print-escape-newlines nil)) | |
1384 (goto-char (prog1 (1+ (point)) | |
1385 (prin1 (car form) outbuffer))) | |
1386 (insert "\\\n") | |
1387 (goto-char (point-max))) | |
1388 (prin1 (car form) outbuffer)))) | |
1389 (insert (nth 2 info)))) | |
1390 nil) | |
1391 | |
1392 (defun byte-compile-keep-pending (form &optional handler) | |
1393 (if (memq byte-optimize '(t source)) | |
1394 (setq form (byte-optimize-form form t))) | |
1395 (if handler | |
1396 (let ((for-effect t)) | |
1397 ;; To avoid consing up monstrously large forms at load time, we split | |
1398 ;; the output regularly. | |
3954
cac16b165691
(byte-compile-keep-pending): Handle fset like defalias.
Richard M. Stallman <rms@gnu.org>
parents:
3948
diff
changeset
|
1399 (and (memq (car-safe form) '(fset defalias)) |
cac16b165691
(byte-compile-keep-pending): Handle fset like defalias.
Richard M. Stallman <rms@gnu.org>
parents:
3948
diff
changeset
|
1400 (nthcdr 300 byte-compile-output) |
757 | 1401 (byte-compile-flush-pending)) |
1402 (funcall handler form) | |
1403 (if for-effect | |
1404 (byte-compile-discard))) | |
1405 (byte-compile-form form t)) | |
1406 nil) | |
1407 | |
1408 (defun byte-compile-flush-pending () | |
1409 (if byte-compile-output | |
1410 (let ((form (byte-compile-out-toplevel t 'file))) | |
1411 (cond ((eq (car-safe form) 'progn) | |
1412 (mapcar 'byte-compile-output-file-form (cdr form))) | |
1413 (form | |
1414 (byte-compile-output-file-form form))) | |
1415 (setq byte-compile-constants nil | |
1416 byte-compile-variables nil | |
1417 byte-compile-depth 0 | |
1418 byte-compile-maxdepth 0 | |
1419 byte-compile-output nil)))) | |
1420 | |
1421 (defun byte-compile-file-form (form) | |
1422 (let ((byte-compile-current-form nil) ; close over this for warnings. | |
1423 handler) | |
1424 (cond | |
1425 ((not (consp form)) | |
1426 (byte-compile-keep-pending form)) | |
1427 ((and (symbolp (car form)) | |
1428 (setq handler (get (car form) 'byte-hunk-handler))) | |
1429 (cond ((setq form (funcall handler form)) | |
1430 (byte-compile-flush-pending) | |
1431 (byte-compile-output-file-form form)))) | |
1432 ((eq form (setq form (macroexpand form byte-compile-macro-environment))) | |
1433 (byte-compile-keep-pending form)) | |
1434 (t | |
1435 (byte-compile-file-form form))))) | |
1436 | |
1437 ;; Functions and variables with doc strings must be output separately, | |
1438 ;; so make-docfile can recognise them. Most other things can be output | |
1439 ;; as byte-code. | |
1440 | |
1441 (put 'defsubst 'byte-hunk-handler 'byte-compile-file-form-defsubst) | |
1442 (defun byte-compile-file-form-defsubst (form) | |
1443 (cond ((assq (nth 1 form) byte-compile-unresolved-functions) | |
1444 (setq byte-compile-current-form (nth 1 form)) | |
1445 (byte-compile-warn "defsubst %s was used before it was defined" | |
1446 (nth 1 form)))) | |
1447 (byte-compile-file-form | |
1448 (macroexpand form byte-compile-macro-environment)) | |
1449 ;; Return nil so the form is not output twice. | |
1450 nil) | |
1451 | |
1452 (put 'autoload 'byte-hunk-handler 'byte-compile-file-form-autoload) | |
1453 (defun byte-compile-file-form-autoload (form) | |
1454 (and (let ((form form)) | |
1455 (while (if (setq form (cdr form)) (byte-compile-constp (car form)))) | |
1456 (null form)) ;Constants only | |
1457 (eval (nth 5 form)) ;Macro | |
1458 (eval form)) ;Define the autoload. | |
1459 (if (stringp (nth 3 form)) | |
1460 form | |
1461 ;; No doc string, so we can compile this as a normal form. | |
1462 (byte-compile-keep-pending form 'byte-compile-normal-call))) | |
1463 | |
1464 (put 'defvar 'byte-hunk-handler 'byte-compile-file-form-defvar) | |
1465 (put 'defconst 'byte-hunk-handler 'byte-compile-file-form-defvar) | |
1466 (defun byte-compile-file-form-defvar (form) | |
1467 (if (null (nth 3 form)) | |
1468 ;; Since there is no doc string, we can compile this as a normal form, | |
1469 ;; and not do a file-boundary. | |
1470 (byte-compile-keep-pending form) | |
1471 (if (memq 'free-vars byte-compile-warnings) | |
1472 (setq byte-compile-bound-variables | |
1473 (cons (nth 1 form) byte-compile-bound-variables))) | |
1474 (cond ((consp (nth 2 form)) | |
1475 (setq form (copy-sequence form)) | |
1476 (setcar (cdr (cdr form)) | |
1477 (byte-compile-top-level (nth 2 form) nil 'file)))) | |
1478 form)) | |
1479 | |
1480 (put 'require 'byte-hunk-handler 'byte-compile-file-form-eval-boundary) | |
1481 (defun byte-compile-file-form-eval-boundary (form) | |
1482 (eval form) | |
1483 (byte-compile-keep-pending form 'byte-compile-normal-call)) | |
1484 | |
1485 (put 'progn 'byte-hunk-handler 'byte-compile-file-form-progn) | |
1486 (put 'prog1 'byte-hunk-handler 'byte-compile-file-form-progn) | |
1487 (put 'prog2 'byte-hunk-handler 'byte-compile-file-form-progn) | |
1488 (defun byte-compile-file-form-progn (form) | |
1489 (mapcar 'byte-compile-file-form (cdr form)) | |
1490 ;; Return nil so the forms are not output twice. | |
1491 nil) | |
1492 | |
1493 ;; This handler is not necessary, but it makes the output from dont-compile | |
1494 ;; and similar macros cleaner. | |
1495 (put 'eval 'byte-hunk-handler 'byte-compile-file-form-eval) | |
1496 (defun byte-compile-file-form-eval (form) | |
1497 (if (eq (car-safe (nth 1 form)) 'quote) | |
1498 (nth 1 (nth 1 form)) | |
1499 (byte-compile-keep-pending form))) | |
1500 | |
1501 (put 'defun 'byte-hunk-handler 'byte-compile-file-form-defun) | |
1502 (defun byte-compile-file-form-defun (form) | |
1503 (byte-compile-file-form-defmumble form nil)) | |
1504 | |
1505 (put 'defmacro 'byte-hunk-handler 'byte-compile-file-form-defmacro) | |
1506 (defun byte-compile-file-form-defmacro (form) | |
1507 (byte-compile-file-form-defmumble form t)) | |
1508 | |
1509 (defun byte-compile-file-form-defmumble (form macrop) | |
1510 (let* ((name (car (cdr form))) | |
1511 (this-kind (if macrop 'byte-compile-macro-environment | |
1512 'byte-compile-function-environment)) | |
1513 (that-kind (if macrop 'byte-compile-function-environment | |
1514 'byte-compile-macro-environment)) | |
1515 (this-one (assq name (symbol-value this-kind))) | |
1516 (that-one (assq name (symbol-value that-kind))) | |
1517 (byte-compile-free-references nil) | |
1518 (byte-compile-free-assignments nil)) | |
1519 | |
1520 ;; When a function or macro is defined, add it to the call tree so that | |
1521 ;; we can tell when functions are not used. | |
1522 (if byte-compile-generate-call-tree | |
1523 (or (assq name byte-compile-call-tree) | |
1524 (setq byte-compile-call-tree | |
1525 (cons (list name nil nil) byte-compile-call-tree)))) | |
1526 | |
1527 (setq byte-compile-current-form name) ; for warnings | |
1528 (if (memq 'redefine byte-compile-warnings) | |
1529 (byte-compile-arglist-warn form macrop)) | |
1530 (if byte-compile-verbose | |
1531 (message "Compiling %s (%s)..." (or filename "") (nth 1 form))) | |
1532 (cond (that-one | |
1533 (if (and (memq 'redefine byte-compile-warnings) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1534 ;; don't warn when compiling the stubs in byte-run... |
757 | 1535 (not (assq (nth 1 form) |
1536 byte-compile-initial-macro-environment))) | |
1537 (byte-compile-warn | |
1538 "%s defined multiple times, as both function and macro" | |
1539 (nth 1 form))) | |
1540 (setcdr that-one nil)) | |
1541 (this-one | |
1542 (if (and (memq 'redefine byte-compile-warnings) | |
1543 ;; hack: don't warn when compiling the magic internal | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1544 ;; byte-compiler macros in byte-run.el... |
757 | 1545 (not (assq (nth 1 form) |
1546 byte-compile-initial-macro-environment))) | |
1547 (byte-compile-warn "%s %s defined multiple times in this file" | |
1548 (if macrop "macro" "function") | |
1549 (nth 1 form)))) | |
1550 ((and (fboundp name) | |
1551 (eq (car-safe (symbol-function name)) | |
1552 (if macrop 'lambda 'macro))) | |
1553 (if (memq 'redefine byte-compile-warnings) | |
1554 (byte-compile-warn "%s %s being redefined as a %s" | |
1555 (if macrop "function" "macro") | |
1556 (nth 1 form) | |
1557 (if macrop "macro" "function"))) | |
1558 ;; shadow existing definition | |
1559 (set this-kind | |
1560 (cons (cons name nil) (symbol-value this-kind)))) | |
1561 ) | |
1562 (let ((body (nthcdr 3 form))) | |
1563 (if (and (stringp (car body)) | |
1564 (symbolp (car-safe (cdr-safe body))) | |
1565 (car-safe (cdr-safe body)) | |
1566 (stringp (car-safe (cdr-safe (cdr-safe body))))) | |
1567 (byte-compile-warn "Probable `\"' without `\\' in doc string of %s" | |
1568 (nth 1 form)))) | |
1569 (let* ((new-one (byte-compile-lambda (cons 'lambda (nthcdr 2 form)))) | |
1570 (code (byte-compile-byte-code-maker new-one))) | |
1571 (if this-one | |
1572 (setcdr this-one new-one) | |
1573 (set this-kind | |
1574 (cons (cons name new-one) (symbol-value this-kind)))) | |
1575 (if (and (stringp (nth 3 form)) | |
1576 (eq 'quote (car-safe code)) | |
1577 (eq 'lambda (car-safe (nth 1 code)))) | |
1578 (cons (car form) | |
1579 (cons name (cdr (nth 1 code)))) | |
1580 (if (not (stringp (nth 3 form))) | |
1581 ;; No doc string to make-docfile; insert form in normal code. | |
1582 (byte-compile-keep-pending | |
3948
33d46b047130
(byte-compile-file-form-defmumble):
Richard M. Stallman <rms@gnu.org>
parents:
3755
diff
changeset
|
1583 (list (if (byte-compile-version-cond byte-compile-compatibility) |
3954
cac16b165691
(byte-compile-keep-pending): Handle fset like defalias.
Richard M. Stallman <rms@gnu.org>
parents:
3948
diff
changeset
|
1584 'fset 'defalias) |
3948
33d46b047130
(byte-compile-file-form-defmumble):
Richard M. Stallman <rms@gnu.org>
parents:
3755
diff
changeset
|
1585 (list 'quote name) |
757 | 1586 (cond ((not macrop) |
1587 code) | |
1588 ((eq 'make-byte-code (car-safe code)) | |
1589 (list 'cons ''macro code)) | |
1590 ((list 'quote (if macrop | |
1591 (cons 'macro new-one) | |
4050
0439eaf6f94a
(byte-compile-file-form-defmumble): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
4049
diff
changeset
|
1592 new-one)))))) |
757 | 1593 ;; Output the form by hand, that's much simpler than having |
2566
4f201a4ab030
(define-function): Changed name back to defalisaases to get things in
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2544
diff
changeset
|
1594 ;; b-c-output-file-form analyze the defalias. |
757 | 1595 (byte-compile-flush-pending) |
3948
33d46b047130
(byte-compile-file-form-defmumble):
Richard M. Stallman <rms@gnu.org>
parents:
3755
diff
changeset
|
1596 (princ (if (byte-compile-version-cond byte-compile-compatibility) |
3954
cac16b165691
(byte-compile-keep-pending): Handle fset like defalias.
Richard M. Stallman <rms@gnu.org>
parents:
3948
diff
changeset
|
1597 "\n(fset '" "\n(defalias '") |
3948
33d46b047130
(byte-compile-file-form-defmumble):
Richard M. Stallman <rms@gnu.org>
parents:
3755
diff
changeset
|
1598 outbuffer) |
757 | 1599 (prin1 name outbuffer) |
1600 (byte-compile-output-docform | |
1601 (cond ((atom code) | |
1602 (if macrop '(" '(macro . #[" 4 "])") '(" #[" 4 "]"))) | |
1603 ((eq (car code) 'quote) | |
1604 (setq code new-one) | |
1605 (if macrop '(" '(macro " 2 ")") '(" '(" 2 ")"))) | |
1606 ((if macrop '(" (cons 'macro (" 5 "))") '(" (" 5 ")")))) | |
1607 (append code nil)) | |
1608 (princ ")" outbuffer) | |
1609 nil))))) | |
1610 | |
1611 | |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
1612 ;;;###autoload |
757 | 1613 (defun byte-compile (form) |
1614 "If FORM is a symbol, byte-compile its function definition. | |
1615 If FORM is a lambda or a macro, byte-compile it as a function." | |
1616 (displaying-byte-compile-warnings | |
1617 (byte-compile-close-variables | |
1618 (let* ((fun (if (symbolp form) | |
1619 (and (fboundp form) (symbol-function form)) | |
1620 form)) | |
1621 (macro (eq (car-safe fun) 'macro))) | |
1622 (if macro | |
1623 (setq fun (cdr fun))) | |
1624 (cond ((eq (car-safe fun) 'lambda) | |
1625 (setq fun (if macro | |
1626 (cons 'macro (byte-compile-lambda fun)) | |
1627 (byte-compile-lambda fun))) | |
1628 (if (symbolp form) | |
2566
4f201a4ab030
(define-function): Changed name back to defalisaases to get things in
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2544
diff
changeset
|
1629 (defalias form fun) |
757 | 1630 fun))))))) |
1631 | |
1632 (defun byte-compile-sexp (sexp) | |
1633 "Compile and return SEXP." | |
1634 (displaying-byte-compile-warnings | |
1635 (byte-compile-close-variables | |
1636 (byte-compile-top-level sexp)))) | |
1637 | |
1638 ;; Given a function made by byte-compile-lambda, make a form which produces it. | |
1639 (defun byte-compile-byte-code-maker (fun) | |
1640 (cond | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1641 ((byte-compile-version-cond byte-compile-compatibility) |
757 | 1642 ;; Return (quote (lambda ...)). |
1643 (list 'quote (byte-compile-byte-code-unmake fun))) | |
1644 ;; ## atom is faster than compiled-func-p. | |
1645 ((atom fun) ; compiled function. | |
1646 ;; generate-emacs19-bytecodes must be on, otherwise byte-compile-lambda | |
1647 ;; would have produced a lambda. | |
1648 fun) | |
1649 ;; b-c-lambda didn't produce a compiled-function, so it's either a trivial | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
1650 ;; function, or this is Emacs 18, or generate-emacs19-bytecodes is off. |
757 | 1651 ((let (tmp) |
1652 (if (and (setq tmp (assq 'byte-code (cdr-safe (cdr fun)))) | |
1653 (null (cdr (memq tmp fun)))) | |
1654 ;; Generate a make-byte-code call. | |
1655 (let* ((interactive (assq 'interactive (cdr (cdr fun))))) | |
1656 (nconc (list 'make-byte-code | |
1657 (list 'quote (nth 1 fun)) ;arglist | |
1658 (nth 1 tmp) ;bytes | |
1659 (nth 2 tmp) ;consts | |
1660 (nth 3 tmp)) ;depth | |
1661 (cond ((stringp (nth 2 fun)) | |
1662 (list (nth 2 fun))) ;doc | |
1663 (interactive | |
1664 (list nil))) | |
1665 (cond (interactive | |
1666 (list (if (or (null (nth 1 interactive)) | |
1667 (stringp (nth 1 interactive))) | |
1668 (nth 1 interactive) | |
1669 ;; Interactive spec is a list or a variable | |
1670 ;; (if it is correct). | |
1671 (list 'quote (nth 1 interactive)))))))) | |
1672 ;; a non-compiled function (probably trivial) | |
1673 (list 'quote fun)))))) | |
1674 | |
1675 ;; Turn a function into an ordinary lambda. Needed for v18 files. | |
1676 (defun byte-compile-byte-code-unmake (function) | |
1677 (if (consp function) | |
1678 function;;It already is a lambda. | |
1679 (setq function (append function nil)) ; turn it into a list | |
1680 (nconc (list 'lambda (nth 0 function)) | |
1681 (and (nth 4 function) (list (nth 4 function))) | |
1682 (if (nthcdr 5 function) | |
1683 (list (cons 'interactive (if (nth 5 function) | |
1684 (nthcdr 5 function))))) | |
1685 (list (list 'byte-code | |
1686 (nth 1 function) (nth 2 function) | |
1687 (nth 3 function)))))) | |
1688 | |
1689 | |
1690 ;; Byte-compile a lambda-expression and return a valid function. | |
1691 ;; The value is usually a compiled function but may be the original | |
1692 ;; lambda-expression. | |
1693 (defun byte-compile-lambda (fun) | |
1694 (let* ((arglist (nth 1 fun)) | |
1695 (byte-compile-bound-variables | |
1696 (nconc (and (memq 'free-vars byte-compile-warnings) | |
1697 (delq '&rest (delq '&optional (copy-sequence arglist)))) | |
1698 byte-compile-bound-variables)) | |
1699 (body (cdr (cdr fun))) | |
1700 (doc (if (stringp (car body)) | |
1701 (prog1 (car body) | |
1702 (setq body (cdr body))))) | |
1703 (int (assq 'interactive body))) | |
1704 (cond (int | |
1705 ;; Skip (interactive) if it is in front (the most usual location). | |
1706 (if (eq int (car body)) | |
1707 (setq body (cdr body))) | |
1532 | 1708 (cond ((consp (cdr int)) |
757 | 1709 (if (cdr (cdr int)) |
1710 (byte-compile-warn "malformed interactive spec: %s" | |
1711 (prin1-to-string int))) | |
1532 | 1712 ;; If the interactive spec is a call to `list', |
1713 ;; don't compile it, because `call-interactively' | |
1714 ;; looks at the args of `list'. | |
1715 (or (eq (car-safe (nth 1 int)) 'list) | |
1716 (setq int (list 'interactive | |
1717 (byte-compile-top-level (nth 1 int)))))) | |
1718 ((cdr int) | |
1719 (byte-compile-warn "malformed interactive spec: %s" | |
1720 (prin1-to-string int)))))) | |
757 | 1721 (let ((compiled (byte-compile-top-level (cons 'progn body) nil 'lambda))) |
1722 (if (and (eq 'byte-code (car-safe compiled)) | |
1882
83fc53d66a31
(byte-compile-lambda): Test of byte-compile-compatibility was backwards.
Richard M. Stallman <rms@gnu.org>
parents:
1819
diff
changeset
|
1723 (not (byte-compile-version-cond |
83fc53d66a31
(byte-compile-lambda): Test of byte-compile-compatibility was backwards.
Richard M. Stallman <rms@gnu.org>
parents:
1819
diff
changeset
|
1724 byte-compile-compatibility))) |
757 | 1725 (apply 'make-byte-code |
1726 (append (list arglist) | |
1727 ;; byte-string, constants-vector, stack depth | |
1728 (cdr compiled) | |
1729 ;; optionally, the doc string. | |
1730 (if (or doc int) | |
1731 (list doc)) | |
1732 ;; optionally, the interactive spec. | |
1733 (if int | |
1734 (list (nth 1 int))))) | |
1735 (setq compiled | |
1736 (nconc (if int (list int)) | |
1737 (cond ((eq (car-safe compiled) 'progn) (cdr compiled)) | |
1738 (compiled (list compiled))))) | |
1739 (nconc (list 'lambda arglist) | |
1740 (if (or doc (stringp (car compiled))) | |
1741 (cons doc (cond (compiled) | |
1742 (body (list nil)))) | |
1743 compiled)))))) | |
1744 | |
1745 (defun byte-compile-constants-vector () | |
1746 ;; Builds the constants-vector from the current variables and constants. | |
1747 ;; This modifies the constants from (const . nil) to (const . offset). | |
1748 ;; To keep the byte-codes to look up the vector as short as possible: | |
1749 ;; First 6 elements are vars, as there are one-byte varref codes for those. | |
1750 ;; Next up to byte-constant-limit are constants, still with one-byte codes. | |
1751 ;; Next variables again, to get 2-byte codes for variable lookup. | |
1752 ;; The rest of the constants and variables need 3-byte byte-codes. | |
1753 (let* ((i -1) | |
1754 (rest (nreverse byte-compile-variables)) ; nreverse because the first | |
1755 (other (nreverse byte-compile-constants)) ; vars often are used most. | |
1756 ret tmp | |
1757 (limits '(5 ; Use the 1-byte varref codes, | |
1758 63 ; 1-constlim ; 1-byte byte-constant codes, | |
1759 255 ; 2-byte varref codes, | |
1760 65535)) ; 3-byte codes for the rest. | |
1761 limit) | |
1762 (while (or rest other) | |
1763 (setq limit (car limits)) | |
1764 (while (and rest (not (eq i limit))) | |
1765 (if (setq tmp (assq (car (car rest)) ret)) | |
1766 (setcdr (car rest) (cdr tmp)) | |
1767 (setcdr (car rest) (setq i (1+ i))) | |
1768 (setq ret (cons (car rest) ret))) | |
1769 (setq rest (cdr rest))) | |
1770 (setq limits (cdr limits) | |
1771 rest (prog1 other | |
1772 (setq other rest)))) | |
1773 (apply 'vector (nreverse (mapcar 'car ret))))) | |
1774 | |
1775 ;; Given an expression FORM, compile it and return an equivalent byte-code | |
1776 ;; expression (a call to the function byte-code). | |
1777 (defun byte-compile-top-level (form &optional for-effect output-type) | |
1778 ;; OUTPUT-TYPE advises about how form is expected to be used: | |
1779 ;; 'eval or nil -> a single form, | |
1780 ;; 'progn or t -> a list of forms, | |
1781 ;; 'lambda -> body of a lambda, | |
1782 ;; 'file -> used at file-level. | |
1783 (let ((byte-compile-constants nil) | |
1784 (byte-compile-variables nil) | |
1785 (byte-compile-tag-number 0) | |
1786 (byte-compile-depth 0) | |
1787 (byte-compile-maxdepth 0) | |
1788 (byte-compile-output nil)) | |
1789 (if (memq byte-optimize '(t source)) | |
1790 (setq form (byte-optimize-form form for-effect))) | |
1791 (while (and (eq (car-safe form) 'progn) (null (cdr (cdr form)))) | |
1792 (setq form (nth 1 form))) | |
1793 (if (and (eq 'byte-code (car-safe form)) | |
1794 (not (memq byte-optimize '(t byte))) | |
1795 (stringp (nth 1 form)) (vectorp (nth 2 form)) | |
1796 (natnump (nth 3 form))) | |
1797 form | |
1798 (byte-compile-form form for-effect) | |
1799 (byte-compile-out-toplevel for-effect output-type)))) | |
1800 | |
1801 (defun byte-compile-out-toplevel (&optional for-effect output-type) | |
1802 (if for-effect | |
1803 ;; The stack is empty. Push a value to be returned from (byte-code ..). | |
1804 (if (eq (car (car byte-compile-output)) 'byte-discard) | |
1805 (setq byte-compile-output (cdr byte-compile-output)) | |
1806 (byte-compile-push-constant | |
1807 ;; Push any constant - preferably one which already is used, and | |
1808 ;; a number or symbol - ie not some big sequence. The return value | |
1809 ;; isn't returned, but it would be a shame if some textually large | |
1810 ;; constant was not optimized away because we chose to return it. | |
1811 (and (not (assq nil byte-compile-constants)) ; Nil is often there. | |
1812 (let ((tmp (reverse byte-compile-constants))) | |
1813 (while (and tmp (not (or (symbolp (car (car tmp))) | |
1814 (numberp (car (car tmp)))))) | |
1815 (setq tmp (cdr tmp))) | |
1816 (car (car tmp))))))) | |
1817 (byte-compile-out 'byte-return 0) | |
1818 (setq byte-compile-output (nreverse byte-compile-output)) | |
1819 (if (memq byte-optimize '(t byte)) | |
1820 (setq byte-compile-output | |
1821 (byte-optimize-lapcode byte-compile-output for-effect))) | |
1822 | |
1823 ;; Decompile trivial functions: | |
1824 ;; only constants and variables, or a single funcall except in lambdas. | |
1825 ;; Except for Lisp_Compiled objects, forms like (foo "hi") | |
1826 ;; are still quicker than (byte-code "..." [foo "hi"] 2). | |
1827 ;; Note that even (quote foo) must be parsed just as any subr by the | |
1828 ;; interpreter, so quote should be compiled into byte-code in some contexts. | |
1829 ;; What to leave uncompiled: | |
1830 ;; lambda -> a single atom. | |
1831 ;; eval -> atom, quote or (function atom atom atom) | |
1832 ;; progn -> as <<same-as-eval>> or (progn <<same-as-eval>> atom) | |
1833 ;; file -> as progn, but takes both quotes and atoms, and longer forms. | |
1834 (let (rest | |
1835 (maycall (not (eq output-type 'lambda))) ; t if we may make a funcall. | |
1836 tmp body) | |
1837 (cond | |
1838 ;; #### This should be split out into byte-compile-nontrivial-function-p. | |
1839 ((or (nthcdr (if (eq output-type 'file) 50 8) byte-compile-output) | |
1840 (assq 'TAG byte-compile-output) ; Not necessary, but speeds up a bit. | |
1841 (not (setq tmp (assq 'byte-return byte-compile-output))) | |
1842 (progn | |
1843 (setq rest (nreverse | |
1844 (cdr (memq tmp (reverse byte-compile-output))))) | |
1845 (while (cond | |
1846 ((memq (car (car rest)) '(byte-varref byte-constant)) | |
1847 (setq tmp (car (cdr (car rest)))) | |
1848 (if (if (eq (car (car rest)) 'byte-constant) | |
1849 (or (consp tmp) | |
1850 (and (symbolp tmp) | |
1851 (not (memq tmp '(nil t)))))) | |
1852 (if maycall | |
1853 (setq body (cons (list 'quote tmp) body))) | |
1854 (setq body (cons tmp body)))) | |
1855 ((and maycall | |
1856 ;; Allow a funcall if at most one atom follows it. | |
1857 (null (nthcdr 3 rest)) | |
1858 (setq tmp (get (car (car rest)) 'byte-opcode-invert)) | |
1859 (or (null (cdr rest)) | |
1860 (and (memq output-type '(file progn t)) | |
1861 (cdr (cdr rest)) | |
1862 (eq (car (nth 1 rest)) 'byte-discard) | |
1863 (progn (setq rest (cdr rest)) t)))) | |
1864 (setq maycall nil) ; Only allow one real function call. | |
1865 (setq body (nreverse body)) | |
1866 (setq body (list | |
1867 (if (and (eq tmp 'funcall) | |
1868 (eq (car-safe (car body)) 'quote)) | |
1869 (cons (nth 1 (car body)) (cdr body)) | |
1870 (cons tmp body)))) | |
1871 (or (eq output-type 'file) | |
1872 (not (delq nil (mapcar 'consp (cdr (car body)))))))) | |
1873 (setq rest (cdr rest))) | |
1874 rest) | |
1875 (and (consp (car body)) (eq output-type 'lambda))) | |
1876 (let ((byte-compile-vector (byte-compile-constants-vector))) | |
1877 (list 'byte-code (byte-compile-lapcode byte-compile-output) | |
1878 byte-compile-vector byte-compile-maxdepth))) | |
1879 ;; it's a trivial function | |
1880 ((cdr body) (cons 'progn (nreverse body))) | |
1881 ((car body))))) | |
1882 | |
1883 ;; Given BODY, compile it and return a new body. | |
1884 (defun byte-compile-top-level-body (body &optional for-effect) | |
1885 (setq body (byte-compile-top-level (cons 'progn body) for-effect t)) | |
1886 (cond ((eq (car-safe body) 'progn) | |
1887 (cdr body)) | |
1888 (body | |
1889 (list body)))) | |
1890 | |
1891 ;; This is the recursive entry point for compiling each subform of an | |
1892 ;; expression. | |
1893 ;; If for-effect is non-nil, byte-compile-form will output a byte-discard | |
1894 ;; before terminating (ie no value will be left on the stack). | |
1895 ;; A byte-compile handler may, when for-effect is non-nil, choose output code | |
1896 ;; which does not leave a value on the stack, and then set for-effect to nil | |
1897 ;; (to prevent byte-compile-form from outputting the byte-discard). | |
1898 ;; If a handler wants to call another handler, it should do so via | |
1899 ;; byte-compile-form, or take extreme care to handle for-effect correctly. | |
1900 ;; (Use byte-compile-form-do-effect to reset the for-effect flag too.) | |
1901 ;; | |
1902 (defun byte-compile-form (form &optional for-effect) | |
1903 (setq form (macroexpand form byte-compile-macro-environment)) | |
1904 (cond ((not (consp form)) | |
1905 (cond ((or (not (symbolp form)) (memq form '(nil t))) | |
1906 (byte-compile-constant form)) | |
1907 ((and for-effect byte-compile-delete-errors) | |
1908 (setq for-effect nil)) | |
1909 (t (byte-compile-variable-ref 'byte-varref form)))) | |
1910 ((symbolp (car form)) | |
1911 (let* ((fn (car form)) | |
1912 (handler (get fn 'byte-compile))) | |
958 | 1913 (if (memq fn '(t nil)) |
1914 (byte-compile-warn "%s called as a function" fn)) | |
757 | 1915 (if (and handler |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1916 (or (not (byte-compile-version-cond |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1917 byte-compile-compatibility)) |
757 | 1918 (not (get (get fn 'byte-opcode) 'emacs19-opcode)))) |
1919 (funcall handler form) | |
1920 (if (memq 'callargs byte-compile-warnings) | |
1921 (byte-compile-callargs-warn form)) | |
1922 (byte-compile-normal-call form)))) | |
1819
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
1923 ((and (or (byte-code-function-p (car form)) |
757 | 1924 (eq (car-safe (car form)) 'lambda)) |
1925 ;; if the form comes out the same way it went in, that's | |
1926 ;; because it was malformed, and we couldn't unfold it. | |
1927 (not (eq form (setq form (byte-compile-unfold-lambda form))))) | |
1928 (byte-compile-form form for-effect) | |
1929 (setq for-effect nil)) | |
1930 ((byte-compile-normal-call form))) | |
1931 (if for-effect | |
1932 (byte-compile-discard))) | |
1933 | |
1934 (defun byte-compile-normal-call (form) | |
1935 (if byte-compile-generate-call-tree | |
1936 (byte-compile-annotate-call-tree form)) | |
1937 (byte-compile-push-constant (car form)) | |
1938 (mapcar 'byte-compile-form (cdr form)) ; wasteful, but faster. | |
1939 (byte-compile-out 'byte-call (length (cdr form)))) | |
1940 | |
1941 (defun byte-compile-variable-ref (base-op var) | |
1942 (if (or (not (symbolp var)) (memq var '(nil t))) | |
1943 (byte-compile-warn (if (eq base-op 'byte-varbind) | |
1944 "Attempt to let-bind %s %s" | |
1945 "Variable reference to %s %s") | |
1946 (if (symbolp var) "constant" "nonvariable") | |
1947 (prin1-to-string var)) | |
958 | 1948 (if (get var 'byte-obsolete-variable) |
1949 (let ((ob (get var 'byte-obsolete-variable))) | |
1950 (byte-compile-warn "%s is an obsolete variable; %s" var | |
1951 (if (stringp ob) | |
1952 ob | |
1953 (format "use %s instead." ob))))) | |
757 | 1954 (if (memq 'free-vars byte-compile-warnings) |
1955 (if (eq base-op 'byte-varbind) | |
1956 (setq byte-compile-bound-variables | |
1957 (cons var byte-compile-bound-variables)) | |
1958 (or (boundp var) | |
1959 (memq var byte-compile-bound-variables) | |
1960 (if (eq base-op 'byte-varset) | |
1961 (or (memq var byte-compile-free-assignments) | |
1962 (progn | |
1963 (byte-compile-warn "assignment to free variable %s" var) | |
1964 (setq byte-compile-free-assignments | |
1965 (cons var byte-compile-free-assignments)))) | |
1966 (or (memq var byte-compile-free-references) | |
1967 (progn | |
1968 (byte-compile-warn "reference to free variable %s" var) | |
1969 (setq byte-compile-free-references | |
1970 (cons var byte-compile-free-references))))))))) | |
1971 (let ((tmp (assq var byte-compile-variables))) | |
1972 (or tmp | |
1973 (setq tmp (list var) | |
1974 byte-compile-variables (cons tmp byte-compile-variables))) | |
1975 (byte-compile-out base-op tmp))) | |
1976 | |
1977 (defmacro byte-compile-get-constant (const) | |
1978 (` (or (if (stringp (, const)) | |
1979 (assoc (, const) byte-compile-constants) | |
1980 (assq (, const) byte-compile-constants)) | |
1981 (car (setq byte-compile-constants | |
1982 (cons (list (, const)) byte-compile-constants)))))) | |
1983 | |
1984 ;; Use this when the value of a form is a constant. This obeys for-effect. | |
1985 (defun byte-compile-constant (const) | |
1986 (if for-effect | |
1987 (setq for-effect nil) | |
1988 (byte-compile-out 'byte-constant (byte-compile-get-constant const)))) | |
1989 | |
1990 ;; Use this for a constant that is not the value of its containing form. | |
1991 ;; This ignores for-effect. | |
1992 (defun byte-compile-push-constant (const) | |
1993 (let ((for-effect nil)) | |
1994 (inline (byte-compile-constant const)))) | |
1995 | |
1996 | |
1997 ;; Compile those primitive ordinary functions | |
1998 ;; which have special byte codes just for speed. | |
1999 | |
2000 (defmacro byte-defop-compiler (function &optional compile-handler) | |
2001 ;; add a compiler-form for FUNCTION. | |
2002 ;; If function is a symbol, then the variable "byte-SYMBOL" must name | |
2003 ;; the opcode to be used. If function is a list, the first element | |
2004 ;; is the function and the second element is the bytecode-symbol. | |
2005 ;; COMPILE-HANDLER is the function to use to compile this byte-op, or | |
2006 ;; may be the abbreviations 0, 1, 2, 3, 0-1, or 1-2. | |
2007 ;; If it is nil, then the handler is "byte-compile-SYMBOL." | |
2008 (let (opcode) | |
2009 (if (symbolp function) | |
2010 (setq opcode (intern (concat "byte-" (symbol-name function)))) | |
2011 (setq opcode (car (cdr function)) | |
2012 function (car function))) | |
2013 (let ((fnform | |
2014 (list 'put (list 'quote function) ''byte-compile | |
2015 (list 'quote | |
2016 (or (cdr (assq compile-handler | |
2017 '((0 . byte-compile-no-args) | |
2018 (1 . byte-compile-one-arg) | |
2019 (2 . byte-compile-two-args) | |
2020 (3 . byte-compile-three-args) | |
2021 (0-1 . byte-compile-zero-or-one-arg) | |
2022 (1-2 . byte-compile-one-or-two-args) | |
2023 (2-3 . byte-compile-two-or-three-args) | |
2024 ))) | |
2025 compile-handler | |
2026 (intern (concat "byte-compile-" | |
2027 (symbol-name function)))))))) | |
2028 (if opcode | |
2029 (list 'progn fnform | |
2030 (list 'put (list 'quote function) | |
2031 ''byte-opcode (list 'quote opcode)) | |
2032 (list 'put (list 'quote opcode) | |
2033 ''byte-opcode-invert (list 'quote function))) | |
2034 fnform)))) | |
2035 | |
2036 (defmacro byte-defop-compiler19 (function &optional compile-handler) | |
2037 ;; Just like byte-defop-compiler, but defines an opcode that will only | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2038 ;; be used when byte-compile-compatibility is false. |
757 | 2039 (if (and (byte-compile-single-version) |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2040 byte-compile-compatibility) |
958 | 2041 ;; #### instead of doing nothing, this should do some remprops, |
2042 ;; #### to protect against the case where a single-version compiler | |
2043 ;; #### is loaded into a world that has contained a multi-version one. | |
757 | 2044 nil |
2045 (list 'progn | |
2046 (list 'put | |
2047 (list 'quote | |
2048 (or (car (cdr-safe function)) | |
2049 (intern (concat "byte-" | |
2050 (symbol-name (or (car-safe function) function)))))) | |
2051 ''emacs19-opcode t) | |
2052 (list 'byte-defop-compiler function compile-handler)))) | |
2053 | |
2054 (defmacro byte-defop-compiler-1 (function &optional compile-handler) | |
2055 (list 'byte-defop-compiler (list function nil) compile-handler)) | |
2056 | |
2057 | |
2058 (put 'byte-call 'byte-opcode-invert 'funcall) | |
2059 (put 'byte-list1 'byte-opcode-invert 'list) | |
2060 (put 'byte-list2 'byte-opcode-invert 'list) | |
2061 (put 'byte-list3 'byte-opcode-invert 'list) | |
2062 (put 'byte-list4 'byte-opcode-invert 'list) | |
2063 (put 'byte-listN 'byte-opcode-invert 'list) | |
2064 (put 'byte-concat2 'byte-opcode-invert 'concat) | |
2065 (put 'byte-concat3 'byte-opcode-invert 'concat) | |
2066 (put 'byte-concat4 'byte-opcode-invert 'concat) | |
2067 (put 'byte-concatN 'byte-opcode-invert 'concat) | |
2068 (put 'byte-insertN 'byte-opcode-invert 'insert) | |
2069 | |
2070 (byte-defop-compiler (dot byte-point) 0) | |
2071 (byte-defop-compiler (dot-max byte-point-max) 0) | |
2072 (byte-defop-compiler (dot-min byte-point-min) 0) | |
2073 (byte-defop-compiler point 0) | |
2074 ;;(byte-defop-compiler mark 0) ;; obsolete | |
2075 (byte-defop-compiler point-max 0) | |
2076 (byte-defop-compiler point-min 0) | |
2077 (byte-defop-compiler following-char 0) | |
2078 (byte-defop-compiler preceding-char 0) | |
2079 (byte-defop-compiler current-column 0) | |
2080 (byte-defop-compiler eolp 0) | |
2081 (byte-defop-compiler eobp 0) | |
2082 (byte-defop-compiler bolp 0) | |
2083 (byte-defop-compiler bobp 0) | |
2084 (byte-defop-compiler current-buffer 0) | |
2085 ;;(byte-defop-compiler read-char 0) ;; obsolete | |
2086 (byte-defop-compiler interactive-p 0) | |
2087 (byte-defop-compiler19 widen 0) | |
2088 (byte-defop-compiler19 end-of-line 0-1) | |
2089 (byte-defop-compiler19 forward-char 0-1) | |
2090 (byte-defop-compiler19 forward-line 0-1) | |
2091 (byte-defop-compiler symbolp 1) | |
2092 (byte-defop-compiler consp 1) | |
2093 (byte-defop-compiler stringp 1) | |
2094 (byte-defop-compiler listp 1) | |
2095 (byte-defop-compiler not 1) | |
2096 (byte-defop-compiler (null byte-not) 1) | |
2097 (byte-defop-compiler car 1) | |
2098 (byte-defop-compiler cdr 1) | |
2099 (byte-defop-compiler length 1) | |
2100 (byte-defop-compiler symbol-value 1) | |
2101 (byte-defop-compiler symbol-function 1) | |
2102 (byte-defop-compiler (1+ byte-add1) 1) | |
2103 (byte-defop-compiler (1- byte-sub1) 1) | |
2104 (byte-defop-compiler goto-char 1) | |
2105 (byte-defop-compiler char-after 1) | |
2106 (byte-defop-compiler set-buffer 1) | |
2107 ;;(byte-defop-compiler set-mark 1) ;; obsolete | |
2108 (byte-defop-compiler19 forward-word 1) | |
2109 (byte-defop-compiler19 char-syntax 1) | |
2110 (byte-defop-compiler19 nreverse 1) | |
2111 (byte-defop-compiler19 car-safe 1) | |
2112 (byte-defop-compiler19 cdr-safe 1) | |
2113 (byte-defop-compiler19 numberp 1) | |
2114 (byte-defop-compiler19 integerp 1) | |
2115 (byte-defop-compiler19 skip-chars-forward 1-2) | |
2116 (byte-defop-compiler19 skip-chars-backward 1-2) | |
2117 (byte-defop-compiler (eql byte-eq) 2) | |
2118 (byte-defop-compiler eq 2) | |
2119 (byte-defop-compiler memq 2) | |
2120 (byte-defop-compiler cons 2) | |
2121 (byte-defop-compiler aref 2) | |
2122 (byte-defop-compiler set 2) | |
2123 (byte-defop-compiler (= byte-eqlsign) 2) | |
2124 (byte-defop-compiler (< byte-lss) 2) | |
2125 (byte-defop-compiler (> byte-gtr) 2) | |
2126 (byte-defop-compiler (<= byte-leq) 2) | |
2127 (byte-defop-compiler (>= byte-geq) 2) | |
2128 (byte-defop-compiler get 2) | |
2129 (byte-defop-compiler nth 2) | |
2130 (byte-defop-compiler substring 2-3) | |
958 | 2131 (byte-defop-compiler19 (move-marker byte-set-marker) 2-3) |
757 | 2132 (byte-defop-compiler19 set-marker 2-3) |
2133 (byte-defop-compiler19 match-beginning 1) | |
2134 (byte-defop-compiler19 match-end 1) | |
2135 (byte-defop-compiler19 upcase 1) | |
2136 (byte-defop-compiler19 downcase 1) | |
2137 (byte-defop-compiler19 string= 2) | |
2138 (byte-defop-compiler19 string< 2) | |
958 | 2139 (byte-defop-compiler19 (string-equal byte-string=) 2) |
2140 (byte-defop-compiler19 (string-lessp byte-string<) 2) | |
757 | 2141 (byte-defop-compiler19 equal 2) |
2142 (byte-defop-compiler19 nthcdr 2) | |
2143 (byte-defop-compiler19 elt 2) | |
2144 (byte-defop-compiler19 member 2) | |
2145 (byte-defop-compiler19 assq 2) | |
958 | 2146 (byte-defop-compiler19 (rplaca byte-setcar) 2) |
2147 (byte-defop-compiler19 (rplacd byte-setcdr) 2) | |
757 | 2148 (byte-defop-compiler19 setcar 2) |
2149 (byte-defop-compiler19 setcdr 2) | |
2150 (byte-defop-compiler19 buffer-substring 2) | |
2151 (byte-defop-compiler19 delete-region 2) | |
2152 (byte-defop-compiler19 narrow-to-region 2) | |
958 | 2153 (byte-defop-compiler19 (mod byte-rem) 2) |
757 | 2154 (byte-defop-compiler19 (% byte-rem) 2) |
2155 (byte-defop-compiler aset 3) | |
2156 | |
2157 (byte-defop-compiler max byte-compile-associative) | |
2158 (byte-defop-compiler min byte-compile-associative) | |
2159 (byte-defop-compiler (+ byte-plus) byte-compile-associative) | |
2160 (byte-defop-compiler19 (* byte-mult) byte-compile-associative) | |
2161 | |
2162 ;;####(byte-defop-compiler19 move-to-column 1) | |
2163 (byte-defop-compiler-1 interactive byte-compile-noop) | |
2164 | |
2165 | |
2166 (defun byte-compile-subr-wrong-args (form n) | |
2167 (byte-compile-warn "%s called with %d arg%s, but requires %s" | |
2168 (car form) (length (cdr form)) | |
2169 (if (= 1 (length (cdr form))) "" "s") n) | |
2170 ;; get run-time wrong-number-of-args error. | |
2171 (byte-compile-normal-call form)) | |
2172 | |
2173 (defun byte-compile-no-args (form) | |
2174 (if (not (= (length form) 1)) | |
2175 (byte-compile-subr-wrong-args form "none") | |
2176 (byte-compile-out (get (car form) 'byte-opcode) 0))) | |
2177 | |
2178 (defun byte-compile-one-arg (form) | |
2179 (if (not (= (length form) 2)) | |
2180 (byte-compile-subr-wrong-args form 1) | |
2181 (byte-compile-form (car (cdr form))) ;; Push the argument | |
2182 (byte-compile-out (get (car form) 'byte-opcode) 0))) | |
2183 | |
2184 (defun byte-compile-two-args (form) | |
2185 (if (not (= (length form) 3)) | |
2186 (byte-compile-subr-wrong-args form 2) | |
2187 (byte-compile-form (car (cdr form))) ;; Push the arguments | |
2188 (byte-compile-form (nth 2 form)) | |
2189 (byte-compile-out (get (car form) 'byte-opcode) 0))) | |
2190 | |
2191 (defun byte-compile-three-args (form) | |
2192 (if (not (= (length form) 4)) | |
2193 (byte-compile-subr-wrong-args form 3) | |
2194 (byte-compile-form (car (cdr form))) ;; Push the arguments | |
2195 (byte-compile-form (nth 2 form)) | |
2196 (byte-compile-form (nth 3 form)) | |
2197 (byte-compile-out (get (car form) 'byte-opcode) 0))) | |
2198 | |
2199 (defun byte-compile-zero-or-one-arg (form) | |
2200 (let ((len (length form))) | |
2201 (cond ((= len 1) (byte-compile-one-arg (append form '(nil)))) | |
2202 ((= len 2) (byte-compile-one-arg form)) | |
2203 (t (byte-compile-subr-wrong-args form "0-1"))))) | |
2204 | |
2205 (defun byte-compile-one-or-two-args (form) | |
2206 (let ((len (length form))) | |
2207 (cond ((= len 2) (byte-compile-two-args (append form '(nil)))) | |
2208 ((= len 3) (byte-compile-two-args form)) | |
2209 (t (byte-compile-subr-wrong-args form "1-2"))))) | |
2210 | |
2211 (defun byte-compile-two-or-three-args (form) | |
2212 (let ((len (length form))) | |
2213 (cond ((= len 3) (byte-compile-three-args (append form '(nil)))) | |
2214 ((= len 4) (byte-compile-three-args form)) | |
2215 (t (byte-compile-subr-wrong-args form "2-3"))))) | |
2216 | |
2217 (defun byte-compile-noop (form) | |
2218 (byte-compile-constant nil)) | |
2219 | |
2220 (defun byte-compile-discard () | |
2221 (byte-compile-out 'byte-discard 0)) | |
2222 | |
2223 | |
2224 ;; Compile a function that accepts one or more args and is right-associative. | |
2225 (defun byte-compile-associative (form) | |
2226 (if (cdr form) | |
2227 (let ((opcode (get (car form) 'byte-opcode))) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3455
diff
changeset
|
2228 ;; To compile all the args first may enable some optimizations. |
757 | 2229 (mapcar 'byte-compile-form (setq form (cdr form))) |
2230 (while (setq form (cdr form)) | |
2231 (byte-compile-out opcode 0))) | |
2232 (byte-compile-constant (eval form)))) | |
2233 | |
2234 | |
2235 ;; more complicated compiler macros | |
2236 | |
2237 (byte-defop-compiler list) | |
2238 (byte-defop-compiler concat) | |
2239 (byte-defop-compiler fset) | |
2240 (byte-defop-compiler (indent-to-column byte-indent-to) byte-compile-indent-to) | |
2241 (byte-defop-compiler indent-to) | |
2242 (byte-defop-compiler insert) | |
2243 (byte-defop-compiler-1 function byte-compile-function-form) | |
2244 (byte-defop-compiler-1 - byte-compile-minus) | |
2245 (byte-defop-compiler19 (/ byte-quo) byte-compile-quo) | |
2246 (byte-defop-compiler19 nconc) | |
2247 (byte-defop-compiler-1 beginning-of-line) | |
2248 | |
2249 (defun byte-compile-list (form) | |
2250 (let ((count (length (cdr form)))) | |
2251 (cond ((= count 0) | |
2252 (byte-compile-constant nil)) | |
2253 ((< count 5) | |
2254 (mapcar 'byte-compile-form (cdr form)) | |
2255 (byte-compile-out | |
2256 (aref [byte-list1 byte-list2 byte-list3 byte-list4] (1- count)) 0)) | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2257 ((and (< count 256) (not (byte-compile-version-cond |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2258 byte-compile-compatibility))) |
757 | 2259 (mapcar 'byte-compile-form (cdr form)) |
2260 (byte-compile-out 'byte-listN count)) | |
2261 (t (byte-compile-normal-call form))))) | |
2262 | |
2263 (defun byte-compile-concat (form) | |
2264 (let ((count (length (cdr form)))) | |
2265 (cond ((and (< 1 count) (< count 5)) | |
2266 (mapcar 'byte-compile-form (cdr form)) | |
2267 (byte-compile-out | |
2268 (aref [byte-concat2 byte-concat3 byte-concat4] (- count 2)) | |
2269 0)) | |
2270 ;; Concat of one arg is not a no-op if arg is not a string. | |
2271 ((= count 0) | |
2272 (byte-compile-form "")) | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2273 ((and (< count 256) (not (byte-compile-version-cond |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2274 byte-compile-compatibility))) |
757 | 2275 (mapcar 'byte-compile-form (cdr form)) |
2276 (byte-compile-out 'byte-concatN count)) | |
2277 ((byte-compile-normal-call form))))) | |
2278 | |
2279 (defun byte-compile-minus (form) | |
2280 (if (null (setq form (cdr form))) | |
2281 (byte-compile-constant 0) | |
2282 (byte-compile-form (car form)) | |
2283 (if (cdr form) | |
2284 (while (setq form (cdr form)) | |
2285 (byte-compile-form (car form)) | |
2286 (byte-compile-out 'byte-diff 0)) | |
2287 (byte-compile-out 'byte-negate 0)))) | |
2288 | |
2289 (defun byte-compile-quo (form) | |
2290 (let ((len (length form))) | |
2291 (cond ((<= len 2) | |
2292 (byte-compile-subr-wrong-args form "2 or more")) | |
2293 (t | |
2294 (byte-compile-form (car (setq form (cdr form)))) | |
2295 (while (setq form (cdr form)) | |
2296 (byte-compile-form (car form)) | |
2297 (byte-compile-out 'byte-quo 0)))))) | |
2298 | |
2299 (defun byte-compile-nconc (form) | |
2300 (let ((len (length form))) | |
2301 (cond ((= len 1) | |
2302 (byte-compile-constant nil)) | |
2303 ((= len 2) | |
2304 ;; nconc of one arg is a noop, even if that arg isn't a list. | |
2305 (byte-compile-form (nth 1 form))) | |
2306 (t | |
2307 (byte-compile-form (car (setq form (cdr form)))) | |
2308 (while (setq form (cdr form)) | |
2309 (byte-compile-form (car form)) | |
2310 (byte-compile-out 'byte-nconc 0)))))) | |
2311 | |
2312 (defun byte-compile-fset (form) | |
2313 ;; warn about forms like (fset 'foo '(lambda () ...)) | |
2314 ;; (where the lambda expression is non-trivial...) | |
2315 (let ((fn (nth 2 form)) | |
2316 body) | |
2317 (if (and (eq (car-safe fn) 'quote) | |
2318 (eq (car-safe (setq fn (nth 1 fn))) 'lambda)) | |
2319 (progn | |
2320 (setq body (cdr (cdr fn))) | |
2321 (if (stringp (car body)) (setq body (cdr body))) | |
2322 (if (eq 'interactive (car-safe (car body))) (setq body (cdr body))) | |
2323 (if (and (consp (car body)) | |
2324 (not (eq 'byte-code (car (car body))))) | |
2325 (byte-compile-warn | |
2326 "A quoted lambda form is the second argument of fset. This is probably | |
2327 not what you want, as that lambda cannot be compiled. Consider using | |
2328 the syntax (function (lambda (...) ...)) instead."))))) | |
2329 (byte-compile-two-args form)) | |
2330 | |
2331 (defun byte-compile-funarg (form) | |
2332 ;; (mapcar '(lambda (x) ..) ..) ==> (mapcar (function (lambda (x) ..)) ..) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3455
diff
changeset
|
2333 ;; for cases where it's guaranteed that first arg will be used as a lambda. |
757 | 2334 (byte-compile-normal-call |
2335 (let ((fn (nth 1 form))) | |
2336 (if (and (eq (car-safe fn) 'quote) | |
2337 (eq (car-safe (nth 1 fn)) 'lambda)) | |
2338 (cons (car form) | |
2339 (cons (cons 'function (cdr fn)) | |
2340 (cdr (cdr form)))) | |
2341 form)))) | |
2342 | |
2343 ;; (function foo) must compile like 'foo, not like (symbol-function 'foo). | |
2344 ;; Otherwise it will be incompatible with the interpreter, | |
2345 ;; and (funcall (function foo)) will lose with autoloads. | |
2346 | |
2347 (defun byte-compile-function-form (form) | |
2348 (byte-compile-constant | |
2349 (cond ((symbolp (nth 1 form)) | |
2350 (nth 1 form)) | |
2351 ;; If we're not allowed to use #[] syntax, then output a form like | |
2352 ;; '(lambda (..) (byte-code ..)) instead of a call to make-byte-code. | |
2353 ;; In this situation, calling make-byte-code at run-time will usually | |
2354 ;; be less efficient than processing a call to byte-code. | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2355 ((byte-compile-version-cond byte-compile-compatibility) |
757 | 2356 (byte-compile-byte-code-unmake (byte-compile-lambda (nth 1 form)))) |
2357 ((byte-compile-lambda (nth 1 form)))))) | |
2358 | |
2359 (defun byte-compile-indent-to (form) | |
2360 (let ((len (length form))) | |
2361 (cond ((= len 2) | |
2362 (byte-compile-form (car (cdr form))) | |
2363 (byte-compile-out 'byte-indent-to 0)) | |
2364 ((= len 3) | |
2365 ;; no opcode for 2-arg case. | |
2366 (byte-compile-normal-call form)) | |
2367 (t | |
2368 (byte-compile-subr-wrong-args form "1-2"))))) | |
2369 | |
2370 (defun byte-compile-insert (form) | |
2371 (cond ((null (cdr form)) | |
2372 (byte-compile-constant nil)) | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2373 ((and (not (byte-compile-version-cond |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2374 byte-compile-compatibility)) |
757 | 2375 (<= (length form) 256)) |
2376 (mapcar 'byte-compile-form (cdr form)) | |
2377 (if (cdr (cdr form)) | |
2378 (byte-compile-out 'byte-insertN (length (cdr form))) | |
2379 (byte-compile-out 'byte-insert 0))) | |
2380 ((memq t (mapcar 'consp (cdr (cdr form)))) | |
2381 (byte-compile-normal-call form)) | |
2382 ;; We can split it; there is no function call after inserting 1st arg. | |
2383 (t | |
2384 (while (setq form (cdr form)) | |
2385 (byte-compile-form (car form)) | |
2386 (byte-compile-out 'byte-insert 0) | |
2387 (if (cdr form) | |
2388 (byte-compile-discard)))))) | |
2389 | |
2390 (defun byte-compile-beginning-of-line (form) | |
2391 (if (not (byte-compile-constp (nth 1 form))) | |
2392 (byte-compile-normal-call form) | |
2393 (byte-compile-form | |
2394 (list 'forward-line | |
2395 (if (integerp (setq form (or (eval (nth 1 form)) 1))) | |
2396 (1- form) | |
2397 (byte-compile-warn "Non-numeric arg to beginning-of-line: %s" | |
2398 form) | |
2399 (list '1- (list 'quote form)))) | |
2400 t) | |
2401 (byte-compile-constant nil))) | |
2402 | |
2403 | |
2404 (byte-defop-compiler-1 setq) | |
2405 (byte-defop-compiler-1 setq-default) | |
2406 (byte-defop-compiler-1 quote) | |
2407 (byte-defop-compiler-1 quote-form) | |
2408 | |
2409 (defun byte-compile-setq (form) | |
2410 (let ((args (cdr form))) | |
2411 (if args | |
2412 (while args | |
2413 (byte-compile-form (car (cdr args))) | |
2414 (or for-effect (cdr (cdr args)) | |
2415 (byte-compile-out 'byte-dup 0)) | |
2416 (byte-compile-variable-ref 'byte-varset (car args)) | |
2417 (setq args (cdr (cdr args)))) | |
2418 ;; (setq), with no arguments. | |
2419 (byte-compile-form nil for-effect)) | |
2420 (setq for-effect nil))) | |
2421 | |
2422 (defun byte-compile-setq-default (form) | |
4049
7908fc6e4fb9
(byte-compile-setq-default):
Richard M. Stallman <rms@gnu.org>
parents:
4013
diff
changeset
|
2423 (let ((args (cdr form)) |
7908fc6e4fb9
(byte-compile-setq-default):
Richard M. Stallman <rms@gnu.org>
parents:
4013
diff
changeset
|
2424 setters) |
7908fc6e4fb9
(byte-compile-setq-default):
Richard M. Stallman <rms@gnu.org>
parents:
4013
diff
changeset
|
2425 (while args |
7908fc6e4fb9
(byte-compile-setq-default):
Richard M. Stallman <rms@gnu.org>
parents:
4013
diff
changeset
|
2426 (setq setters |
7908fc6e4fb9
(byte-compile-setq-default):
Richard M. Stallman <rms@gnu.org>
parents:
4013
diff
changeset
|
2427 (cons (list 'set-default (list 'quote (car args)) (car (cdr args))) |
7908fc6e4fb9
(byte-compile-setq-default):
Richard M. Stallman <rms@gnu.org>
parents:
4013
diff
changeset
|
2428 setters)) |
7908fc6e4fb9
(byte-compile-setq-default):
Richard M. Stallman <rms@gnu.org>
parents:
4013
diff
changeset
|
2429 (setq args (cdr (cdr args)))) |
7908fc6e4fb9
(byte-compile-setq-default):
Richard M. Stallman <rms@gnu.org>
parents:
4013
diff
changeset
|
2430 (byte-compile-form (cons 'progn (nreverse setters))))) |
757 | 2431 |
2432 (defun byte-compile-quote (form) | |
2433 (byte-compile-constant (car (cdr form)))) | |
2434 | |
2435 (defun byte-compile-quote-form (form) | |
2436 (byte-compile-constant (byte-compile-top-level (nth 1 form)))) | |
2437 | |
2438 | |
2439 ;;; control structures | |
2440 | |
2441 (defun byte-compile-body (body &optional for-effect) | |
2442 (while (cdr body) | |
2443 (byte-compile-form (car body) t) | |
2444 (setq body (cdr body))) | |
2445 (byte-compile-form (car body) for-effect)) | |
2446 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2447 (defsubst byte-compile-body-do-effect (body) |
757 | 2448 (byte-compile-body body for-effect) |
2449 (setq for-effect nil)) | |
2450 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2451 (defsubst byte-compile-form-do-effect (form) |
757 | 2452 (byte-compile-form form for-effect) |
2453 (setq for-effect nil)) | |
2454 | |
2455 (byte-defop-compiler-1 inline byte-compile-progn) | |
2456 (byte-defop-compiler-1 progn) | |
2457 (byte-defop-compiler-1 prog1) | |
2458 (byte-defop-compiler-1 prog2) | |
2459 (byte-defop-compiler-1 if) | |
2460 (byte-defop-compiler-1 cond) | |
2461 (byte-defop-compiler-1 and) | |
2462 (byte-defop-compiler-1 or) | |
2463 (byte-defop-compiler-1 while) | |
2464 (byte-defop-compiler-1 funcall) | |
2465 (byte-defop-compiler-1 apply byte-compile-funarg) | |
2466 (byte-defop-compiler-1 mapcar byte-compile-funarg) | |
2467 (byte-defop-compiler-1 mapatoms byte-compile-funarg) | |
2468 (byte-defop-compiler-1 mapconcat byte-compile-funarg) | |
2469 (byte-defop-compiler-1 let) | |
2470 (byte-defop-compiler-1 let*) | |
2471 | |
2472 (defun byte-compile-progn (form) | |
2473 (byte-compile-body-do-effect (cdr form))) | |
2474 | |
2475 (defun byte-compile-prog1 (form) | |
2476 (byte-compile-form-do-effect (car (cdr form))) | |
2477 (byte-compile-body (cdr (cdr form)) t)) | |
2478 | |
2479 (defun byte-compile-prog2 (form) | |
2480 (byte-compile-form (nth 1 form) t) | |
2481 (byte-compile-form-do-effect (nth 2 form)) | |
2482 (byte-compile-body (cdr (cdr (cdr form))) t)) | |
2483 | |
2484 (defmacro byte-compile-goto-if (cond discard tag) | |
2485 (` (byte-compile-goto | |
2486 (if (, cond) | |
2487 (if (, discard) 'byte-goto-if-not-nil 'byte-goto-if-not-nil-else-pop) | |
2488 (if (, discard) 'byte-goto-if-nil 'byte-goto-if-nil-else-pop)) | |
2489 (, tag)))) | |
2490 | |
2491 (defun byte-compile-if (form) | |
2492 (byte-compile-form (car (cdr form))) | |
2493 (if (null (nthcdr 3 form)) | |
2494 ;; No else-forms | |
2495 (let ((donetag (byte-compile-make-tag))) | |
2496 (byte-compile-goto-if nil for-effect donetag) | |
2497 (byte-compile-form (nth 2 form) for-effect) | |
2498 (byte-compile-out-tag donetag)) | |
2499 (let ((donetag (byte-compile-make-tag)) (elsetag (byte-compile-make-tag))) | |
2500 (byte-compile-goto 'byte-goto-if-nil elsetag) | |
2501 (byte-compile-form (nth 2 form) for-effect) | |
2502 (byte-compile-goto 'byte-goto donetag) | |
2503 (byte-compile-out-tag elsetag) | |
2504 (byte-compile-body (cdr (cdr (cdr form))) for-effect) | |
2505 (byte-compile-out-tag donetag))) | |
2506 (setq for-effect nil)) | |
2507 | |
2508 (defun byte-compile-cond (clauses) | |
2509 (let ((donetag (byte-compile-make-tag)) | |
2510 nexttag clause) | |
2511 (while (setq clauses (cdr clauses)) | |
2512 (setq clause (car clauses)) | |
2513 (cond ((or (eq (car clause) t) | |
2514 (and (eq (car-safe (car clause)) 'quote) | |
2515 (car-safe (cdr-safe (car clause))))) | |
2516 ;; Unconditional clause | |
2517 (setq clause (cons t clause) | |
2518 clauses nil)) | |
2519 ((cdr clauses) | |
2520 (byte-compile-form (car clause)) | |
2521 (if (null (cdr clause)) | |
2522 ;; First clause is a singleton. | |
2523 (byte-compile-goto-if t for-effect donetag) | |
2524 (setq nexttag (byte-compile-make-tag)) | |
2525 (byte-compile-goto 'byte-goto-if-nil nexttag) | |
2526 (byte-compile-body (cdr clause) for-effect) | |
2527 (byte-compile-goto 'byte-goto donetag) | |
2528 (byte-compile-out-tag nexttag))))) | |
2529 ;; Last clause | |
2530 (and (cdr clause) (not (eq (car clause) t)) | |
2531 (progn (byte-compile-form (car clause)) | |
2532 (byte-compile-goto-if nil for-effect donetag) | |
2533 (setq clause (cdr clause)))) | |
2534 (byte-compile-body-do-effect clause) | |
2535 (byte-compile-out-tag donetag))) | |
2536 | |
2537 (defun byte-compile-and (form) | |
2538 (let ((failtag (byte-compile-make-tag)) | |
2539 (args (cdr form))) | |
2540 (if (null args) | |
2541 (byte-compile-form-do-effect t) | |
2542 (while (cdr args) | |
2543 (byte-compile-form (car args)) | |
2544 (byte-compile-goto-if nil for-effect failtag) | |
2545 (setq args (cdr args))) | |
2546 (byte-compile-form-do-effect (car args)) | |
2547 (byte-compile-out-tag failtag)))) | |
2548 | |
2549 (defun byte-compile-or (form) | |
2550 (let ((wintag (byte-compile-make-tag)) | |
2551 (args (cdr form))) | |
2552 (if (null args) | |
2553 (byte-compile-form-do-effect nil) | |
2554 (while (cdr args) | |
2555 (byte-compile-form (car args)) | |
2556 (byte-compile-goto-if t for-effect wintag) | |
2557 (setq args (cdr args))) | |
2558 (byte-compile-form-do-effect (car args)) | |
2559 (byte-compile-out-tag wintag)))) | |
2560 | |
2561 (defun byte-compile-while (form) | |
2562 (let ((endtag (byte-compile-make-tag)) | |
2563 (looptag (byte-compile-make-tag))) | |
2564 (byte-compile-out-tag looptag) | |
2565 (byte-compile-form (car (cdr form))) | |
2566 (byte-compile-goto-if nil for-effect endtag) | |
2567 (byte-compile-body (cdr (cdr form)) t) | |
2568 (byte-compile-goto 'byte-goto looptag) | |
2569 (byte-compile-out-tag endtag) | |
2570 (setq for-effect nil))) | |
2571 | |
2572 (defun byte-compile-funcall (form) | |
2573 (mapcar 'byte-compile-form (cdr form)) | |
2574 (byte-compile-out 'byte-call (length (cdr (cdr form))))) | |
2575 | |
2576 | |
2577 (defun byte-compile-let (form) | |
2578 ;; First compute the binding values in the old scope. | |
2579 (let ((varlist (car (cdr form)))) | |
2580 (while varlist | |
2581 (if (consp (car varlist)) | |
2582 (byte-compile-form (car (cdr (car varlist)))) | |
2583 (byte-compile-push-constant nil)) | |
2584 (setq varlist (cdr varlist)))) | |
2585 (let ((byte-compile-bound-variables byte-compile-bound-variables) ;new scope | |
2586 (varlist (reverse (car (cdr form))))) | |
2587 (while varlist | |
2588 (byte-compile-variable-ref 'byte-varbind (if (consp (car varlist)) | |
2589 (car (car varlist)) | |
2590 (car varlist))) | |
2591 (setq varlist (cdr varlist))) | |
2592 (byte-compile-body-do-effect (cdr (cdr form))) | |
2593 (byte-compile-out 'byte-unbind (length (car (cdr form)))))) | |
2594 | |
2595 (defun byte-compile-let* (form) | |
2596 (let ((byte-compile-bound-variables byte-compile-bound-variables) ;new scope | |
2597 (varlist (copy-sequence (car (cdr form))))) | |
2598 (while varlist | |
2599 (if (atom (car varlist)) | |
2600 (byte-compile-push-constant nil) | |
2601 (byte-compile-form (car (cdr (car varlist)))) | |
2602 (setcar varlist (car (car varlist)))) | |
2603 (byte-compile-variable-ref 'byte-varbind (car varlist)) | |
2604 (setq varlist (cdr varlist))) | |
2605 (byte-compile-body-do-effect (cdr (cdr form))) | |
2606 (byte-compile-out 'byte-unbind (length (car (cdr form)))))) | |
2607 | |
2608 | |
2609 (byte-defop-compiler-1 /= byte-compile-negated) | |
2610 (byte-defop-compiler-1 atom byte-compile-negated) | |
2611 (byte-defop-compiler-1 nlistp byte-compile-negated) | |
2612 | |
2613 (put '/= 'byte-compile-negated-op '=) | |
2614 (put 'atom 'byte-compile-negated-op 'consp) | |
2615 (put 'nlistp 'byte-compile-negated-op 'listp) | |
2616 | |
2617 (defun byte-compile-negated (form) | |
2618 (byte-compile-form-do-effect (byte-compile-negation-optimizer form))) | |
2619 | |
2620 ;; Even when optimization is off, /= is optimized to (not (= ...)). | |
2621 (defun byte-compile-negation-optimizer (form) | |
2622 ;; an optimizer for forms where <form1> is less efficient than (not <form2>) | |
2623 (list 'not | |
2624 (cons (or (get (car form) 'byte-compile-negated-op) | |
2625 (error | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2626 "Compiler error: `%s' has no `byte-compile-negated-op' property" |
757 | 2627 (car form))) |
2628 (cdr form)))) | |
2629 | |
2630 ;;; other tricky macro-like special-forms | |
2631 | |
2632 (byte-defop-compiler-1 catch) | |
2633 (byte-defop-compiler-1 unwind-protect) | |
2634 (byte-defop-compiler-1 condition-case) | |
2635 (byte-defop-compiler-1 save-excursion) | |
2636 (byte-defop-compiler-1 save-restriction) | |
2637 (byte-defop-compiler-1 save-window-excursion) | |
2638 (byte-defop-compiler-1 with-output-to-temp-buffer) | |
2798
e2f296263868
(byte-compile-track-mouse): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2735
diff
changeset
|
2639 (byte-defop-compiler-1 track-mouse) |
757 | 2640 |
2641 (defun byte-compile-catch (form) | |
2642 (byte-compile-form (car (cdr form))) | |
2643 (byte-compile-push-constant | |
2644 (byte-compile-top-level (cons 'progn (cdr (cdr form))) for-effect)) | |
2645 (byte-compile-out 'byte-catch 0)) | |
2646 | |
2647 (defun byte-compile-unwind-protect (form) | |
2648 (byte-compile-push-constant | |
2649 (byte-compile-top-level-body (cdr (cdr form)) t)) | |
2650 (byte-compile-out 'byte-unwind-protect 0) | |
2651 (byte-compile-form-do-effect (car (cdr form))) | |
2652 (byte-compile-out 'byte-unbind 1)) | |
2653 | |
2798
e2f296263868
(byte-compile-track-mouse): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2735
diff
changeset
|
2654 (defun byte-compile-track-mouse (form) |
e2f296263868
(byte-compile-track-mouse): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2735
diff
changeset
|
2655 (byte-compile-form |
e2f296263868
(byte-compile-track-mouse): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2735
diff
changeset
|
2656 (list |
e2f296263868
(byte-compile-track-mouse): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2735
diff
changeset
|
2657 'funcall |
e2f296263868
(byte-compile-track-mouse): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2735
diff
changeset
|
2658 (list 'quote |
e2f296263868
(byte-compile-track-mouse): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2735
diff
changeset
|
2659 (list 'lambda nil |
e2f296263868
(byte-compile-track-mouse): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2735
diff
changeset
|
2660 (list 'track-mouse |
e2f296263868
(byte-compile-track-mouse): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2735
diff
changeset
|
2661 (byte-compile-top-level (nth 1 form)))))))) |
e2f296263868
(byte-compile-track-mouse): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2735
diff
changeset
|
2662 |
757 | 2663 (defun byte-compile-condition-case (form) |
2664 (let* ((var (nth 1 form)) | |
2665 (byte-compile-bound-variables | |
2666 (if var (cons var byte-compile-bound-variables) | |
2667 byte-compile-bound-variables))) | |
2668 (or (symbolp var) | |
2669 (byte-compile-warn | |
2670 "%s is not a variable-name or nil (in condition-case)" var)) | |
2671 (byte-compile-push-constant var) | |
2672 (byte-compile-push-constant (byte-compile-top-level | |
2673 (nth 2 form) for-effect)) | |
2674 (let ((clauses (cdr (cdr (cdr form)))) | |
2675 compiled-clauses) | |
2676 (while clauses | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2677 (let* ((clause (car clauses)) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2678 (condition (car clause))) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2679 (cond ((not (symbolp condition)) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2680 (byte-compile-warn |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2681 "%s is not a symbol naming a condition (in condition-case)" |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2682 (prin1-to-string condition))) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2683 ((not (or (eq condition 't) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2684 (and (stringp (get condition 'error-message)) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2685 (consp (get condition 'error-conditions))))) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2686 (byte-compile-warn |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2687 "%s is not a known condition name (in condition-case)" |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2688 condition))) |
757 | 2689 (setq compiled-clauses |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
2690 (cons (cons condition |
757 | 2691 (byte-compile-top-level-body |
2692 (cdr clause) for-effect)) | |
2693 compiled-clauses))) | |
2694 (setq clauses (cdr clauses))) | |
2695 (byte-compile-push-constant (nreverse compiled-clauses))) | |
2696 (byte-compile-out 'byte-condition-case 0))) | |
2697 | |
2698 | |
2699 (defun byte-compile-save-excursion (form) | |
2700 (byte-compile-out 'byte-save-excursion 0) | |
2701 (byte-compile-body-do-effect (cdr form)) | |
2702 (byte-compile-out 'byte-unbind 1)) | |
2703 | |
2704 (defun byte-compile-save-restriction (form) | |
2705 (byte-compile-out 'byte-save-restriction 0) | |
2706 (byte-compile-body-do-effect (cdr form)) | |
2707 (byte-compile-out 'byte-unbind 1)) | |
2708 | |
2709 (defun byte-compile-save-window-excursion (form) | |
2710 (byte-compile-push-constant | |
2711 (byte-compile-top-level-body (cdr form) for-effect)) | |
2712 (byte-compile-out 'byte-save-window-excursion 0)) | |
2713 | |
2714 (defun byte-compile-with-output-to-temp-buffer (form) | |
2715 (byte-compile-form (car (cdr form))) | |
2716 (byte-compile-out 'byte-temp-output-buffer-setup 0) | |
2717 (byte-compile-body (cdr (cdr form))) | |
2718 (byte-compile-out 'byte-temp-output-buffer-show 0)) | |
2719 | |
2720 | |
2721 ;;; top-level forms elsewhere | |
2722 | |
2723 (byte-defop-compiler-1 defun) | |
2724 (byte-defop-compiler-1 defmacro) | |
2725 (byte-defop-compiler-1 defvar) | |
2726 (byte-defop-compiler-1 defconst byte-compile-defvar) | |
2727 (byte-defop-compiler-1 autoload) | |
2728 (byte-defop-compiler-1 lambda byte-compile-lambda-form) | |
2729 | |
2730 (defun byte-compile-defun (form) | |
2731 ;; This is not used for file-level defuns with doc strings. | |
2732 (byte-compile-two-args ; Use this to avoid byte-compile-fset's warning. | |
2733 (list 'fset (list 'quote (nth 1 form)) | |
2734 (byte-compile-byte-code-maker | |
2735 (byte-compile-lambda (cons 'lambda (cdr (cdr form))))))) | |
2736 (byte-compile-discard) | |
2737 (byte-compile-constant (nth 1 form))) | |
2738 | |
2739 (defun byte-compile-defmacro (form) | |
2740 ;; This is not used for file-level defmacros with doc strings. | |
2741 (byte-compile-body-do-effect | |
2742 (list (list 'fset (list 'quote (nth 1 form)) | |
2743 (let ((code (byte-compile-byte-code-maker | |
2744 (byte-compile-lambda | |
2745 (cons 'lambda (cdr (cdr form))))))) | |
2746 (if (eq (car-safe code) 'make-byte-code) | |
2747 (list 'cons ''macro code) | |
2748 (list 'quote (cons 'macro (eval code)))))) | |
2749 (list 'quote (nth 1 form))))) | |
2750 | |
2751 (defun byte-compile-defvar (form) | |
2752 ;; This is not used for file-level defvar/consts with doc strings. | |
2753 (let ((var (nth 1 form)) | |
2754 (value (nth 2 form)) | |
2755 (string (nth 3 form))) | |
2756 (if (memq 'free-vars byte-compile-warnings) | |
2757 (setq byte-compile-bound-variables | |
2758 (cons var byte-compile-bound-variables))) | |
2759 (byte-compile-body-do-effect | |
2760 (list (if (cdr (cdr form)) | |
2761 (if (eq (car form) 'defconst) | |
2762 (list 'setq var value) | |
2763 (list 'or (list 'boundp (list 'quote var)) | |
2764 (list 'setq var value)))) | |
2765 (if string | |
2766 (list 'put (list 'quote var) ''variable-documentation string)) | |
2767 (list 'quote var))))) | |
2768 | |
2769 (defun byte-compile-autoload (form) | |
2770 (and (byte-compile-constp (nth 1 form)) | |
2771 (byte-compile-constp (nth 5 form)) | |
2772 (eval (nth 5 form)) ; macro-p | |
2773 (not (fboundp (eval (nth 1 form)))) | |
2774 (byte-compile-warn | |
2775 "The compiler ignores `autoload' except at top level. You should | |
2776 probably put the autoload of the macro `%s' at top-level." | |
2777 (eval (nth 1 form)))) | |
2778 (byte-compile-normal-call form)) | |
2779 | |
2780 ;; Lambda's in valid places are handled as special cases by various code. | |
2781 ;; The ones that remain are errors. | |
2782 (defun byte-compile-lambda-form (form) | |
2783 (error "`lambda' used as function name is invalid")) | |
2784 | |
2785 | |
2786 ;;; tags | |
2787 | |
2788 ;; Note: Most operations will strip off the 'TAG, but it speeds up | |
2789 ;; optimization to have the 'TAG as a part of the tag. | |
2790 ;; Tags will be (TAG . (tag-number . stack-depth)). | |
2791 (defun byte-compile-make-tag () | |
2792 (list 'TAG (setq byte-compile-tag-number (1+ byte-compile-tag-number)))) | |
2793 | |
2794 | |
2795 (defun byte-compile-out-tag (tag) | |
2796 (setq byte-compile-output (cons tag byte-compile-output)) | |
2797 (if (cdr (cdr tag)) | |
2798 (progn | |
2799 ;; ## remove this someday | |
2800 (and byte-compile-depth | |
2801 (not (= (cdr (cdr tag)) byte-compile-depth)) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2802 (error "Compiler bug: depth conflict at tag %d" (car (cdr tag)))) |
757 | 2803 (setq byte-compile-depth (cdr (cdr tag)))) |
2804 (setcdr (cdr tag) byte-compile-depth))) | |
2805 | |
2806 (defun byte-compile-goto (opcode tag) | |
2807 (setq byte-compile-output (cons (cons opcode tag) byte-compile-output)) | |
2808 (setcdr (cdr tag) (if (memq opcode byte-goto-always-pop-ops) | |
2809 (1- byte-compile-depth) | |
2810 byte-compile-depth)) | |
2811 (setq byte-compile-depth (and (not (eq opcode 'byte-goto)) | |
2812 (1- byte-compile-depth)))) | |
2813 | |
2814 (defun byte-compile-out (opcode offset) | |
2815 (setq byte-compile-output (cons (cons opcode offset) byte-compile-output)) | |
2816 (cond ((eq opcode 'byte-call) | |
2817 (setq byte-compile-depth (- byte-compile-depth offset))) | |
2818 ((eq opcode 'byte-return) | |
2819 ;; This is actually an unnecessary case, because there should be | |
2820 ;; no more opcodes behind byte-return. | |
2821 (setq byte-compile-depth nil)) | |
2822 (t | |
2823 (setq byte-compile-depth (+ byte-compile-depth | |
2824 (or (aref byte-stack+-info | |
2825 (symbol-value opcode)) | |
2826 (- (1- offset)))) | |
2827 byte-compile-maxdepth (max byte-compile-depth | |
2828 byte-compile-maxdepth)))) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2829 ;;(if (< byte-compile-depth 0) (error "Compiler error: stack underflow")) |
757 | 2830 ) |
2831 | |
2832 | |
2833 ;;; call tree stuff | |
2834 | |
2835 (defun byte-compile-annotate-call-tree (form) | |
2836 (let (entry) | |
2837 ;; annotate the current call | |
2838 (if (setq entry (assq (car form) byte-compile-call-tree)) | |
2839 (or (memq byte-compile-current-form (nth 1 entry)) ;callers | |
2840 (setcar (cdr entry) | |
2841 (cons byte-compile-current-form (nth 1 entry)))) | |
2842 (setq byte-compile-call-tree | |
2843 (cons (list (car form) (list byte-compile-current-form) nil) | |
2844 byte-compile-call-tree))) | |
2845 ;; annotate the current function | |
2846 (if (setq entry (assq byte-compile-current-form byte-compile-call-tree)) | |
2847 (or (memq (car form) (nth 2 entry)) ;called | |
2848 (setcar (cdr (cdr entry)) | |
2849 (cons (car form) (nth 2 entry)))) | |
2850 (setq byte-compile-call-tree | |
2851 (cons (list byte-compile-current-form nil (list (car form))) | |
2852 byte-compile-call-tree))) | |
2853 )) | |
2854 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2855 ;; Renamed from byte-compile-report-call-tree |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2856 ;; to avoid interfering with completion of byte-compile-file. |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
2857 ;;;###autoload |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2858 (defun display-call-tree (&optional filename) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2859 "Display a call graph of a specified file. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2860 This lists which functions have been called, what functions called |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2861 them, and what functions they call. The list includes all functions |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2862 whose definitions have been compiled in this Emacs session, as well as |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2863 all functions called by those functions. |
757 | 2864 |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2865 The call graph does not include macros, inline functions, or |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2866 primitives that the byte-code interpreter knows about directly \(eq, |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2867 cons, etc.\). |
757 | 2868 |
2869 The call tree also lists those functions which are not known to be called | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2870 \(that is, to which no calls have been compiled\), and which cannot be |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2871 invoked interactively." |
757 | 2872 (interactive) |
2873 (message "Generating call tree...") | |
2874 (with-output-to-temp-buffer "*Call-Tree*" | |
2875 (set-buffer "*Call-Tree*") | |
2876 (erase-buffer) | |
2877 (message "Generating call tree (sorting on %s)..." | |
2878 byte-compile-call-tree-sort) | |
2879 (insert "Call tree for " | |
2880 (cond ((null byte-compile-current-file) (or filename "???")) | |
2881 ((stringp byte-compile-current-file) | |
2882 byte-compile-current-file) | |
2883 (t (buffer-name byte-compile-current-file))) | |
2884 " sorted on " | |
2885 (prin1-to-string byte-compile-call-tree-sort) | |
2886 ":\n\n") | |
2887 (if byte-compile-call-tree-sort | |
2888 (setq byte-compile-call-tree | |
2889 (sort byte-compile-call-tree | |
2890 (cond ((eq byte-compile-call-tree-sort 'callers) | |
2891 (function (lambda (x y) (< (length (nth 1 x)) | |
2892 (length (nth 1 y)))))) | |
2893 ((eq byte-compile-call-tree-sort 'calls) | |
2894 (function (lambda (x y) (< (length (nth 2 x)) | |
2895 (length (nth 2 y)))))) | |
2896 ((eq byte-compile-call-tree-sort 'calls+callers) | |
2897 (function (lambda (x y) (< (+ (length (nth 1 x)) | |
2898 (length (nth 2 x))) | |
2899 (+ (length (nth 1 y)) | |
2900 (length (nth 2 y))))))) | |
2901 ((eq byte-compile-call-tree-sort 'name) | |
2902 (function (lambda (x y) (string< (car x) | |
2903 (car y))))) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2904 (t (error "`byte-compile-call-tree-sort': `%s' - unknown sort mode" |
757 | 2905 byte-compile-call-tree-sort)))))) |
2906 (message "Generating call tree...") | |
2907 (let ((rest byte-compile-call-tree) | |
2908 (b (current-buffer)) | |
2909 f p | |
2910 callers calls) | |
2911 (while rest | |
2912 (prin1 (car (car rest)) b) | |
2913 (setq callers (nth 1 (car rest)) | |
2914 calls (nth 2 (car rest))) | |
2915 (insert "\t" | |
2916 (cond ((not (fboundp (setq f (car (car rest))))) | |
2917 (if (null f) | |
2918 " <top level>";; shouldn't insert nil then, actually -sk | |
2919 " <not defined>")) | |
2920 ((subrp (setq f (symbol-function f))) | |
2921 " <subr>") | |
2922 ((symbolp f) | |
2923 (format " ==> %s" f)) | |
1819
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
2924 ((byte-code-function-p f) |
757 | 2925 "<compiled function>") |
2926 ((not (consp f)) | |
2927 "<malformed function>") | |
2928 ((eq 'macro (car f)) | |
1819
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
2929 (if (or (byte-code-function-p (cdr f)) |
757 | 2930 (assq 'byte-code (cdr (cdr (cdr f))))) |
2931 " <compiled macro>" | |
2932 " <macro>")) | |
2933 ((assq 'byte-code (cdr (cdr f))) | |
2934 "<compiled lambda>") | |
2935 ((eq 'lambda (car f)) | |
2936 "<function>") | |
2937 (t "???")) | |
2938 (format " (%d callers + %d calls = %d)" | |
2939 ;; Does the optimizer eliminate common subexpressions?-sk | |
2940 (length callers) | |
2941 (length calls) | |
2942 (+ (length callers) (length calls))) | |
2943 "\n") | |
2944 (if callers | |
2945 (progn | |
2946 (insert " called by:\n") | |
2947 (setq p (point)) | |
2948 (insert " " (if (car callers) | |
2949 (mapconcat 'symbol-name callers ", ") | |
2950 "<top level>")) | |
2951 (let ((fill-prefix " ")) | |
2952 (fill-region-as-paragraph p (point))))) | |
2953 (if calls | |
2954 (progn | |
2955 (insert " calls:\n") | |
2956 (setq p (point)) | |
2957 (insert " " (mapconcat 'symbol-name calls ", ")) | |
2958 (let ((fill-prefix " ")) | |
2959 (fill-region-as-paragraph p (point))))) | |
2960 (insert "\n") | |
2961 (setq rest (cdr rest))) | |
2962 | |
2963 (message "Generating call tree...(finding uncalled functions...)") | |
2964 (setq rest byte-compile-call-tree) | |
2965 (let ((uncalled nil)) | |
2966 (while rest | |
2967 (or (nth 1 (car rest)) | |
2968 (null (setq f (car (car rest)))) | |
2969 (byte-compile-fdefinition f t) | |
2970 (commandp (byte-compile-fdefinition f nil)) | |
2971 (setq uncalled (cons f uncalled))) | |
2972 (setq rest (cdr rest))) | |
2973 (if uncalled | |
2974 (let ((fill-prefix " ")) | |
2975 (insert "Noninteractive functions not known to be called:\n ") | |
2976 (setq p (point)) | |
2977 (insert (mapconcat 'symbol-name (nreverse uncalled) ", ")) | |
2978 (fill-region-as-paragraph p (point))))) | |
2979 ) | |
2980 (message "Generating call tree...done.") | |
2981 )) | |
2982 | |
2983 | |
2984 ;;; by crl@newton.purdue.edu | |
2985 ;;; Only works noninteractively. | |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
2986 ;;;###autoload |
757 | 2987 (defun batch-byte-compile () |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2988 "Run `byte-compile-file' on the files remaining on the command line. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2989 Use this from the command line, with `-batch'; |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2990 it won't work in an interactive Emacs. |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2991 Each file is processed even if an error occurred previously. |
757 | 2992 For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" |
2993 ;; command-line-args-left is what is left of the command line (from startup.el) | |
2994 (defvar command-line-args-left) ;Avoid 'free variable' warning | |
2995 (if (not noninteractive) | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
2996 (error "`batch-byte-compile' is to be used only with -batch")) |
757 | 2997 (let ((error nil)) |
2998 (while command-line-args-left | |
2999 (if (file-directory-p (expand-file-name (car command-line-args-left))) | |
3000 (let ((files (directory-files (car command-line-args-left))) | |
3001 source dest) | |
3002 (while files | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3003 (if (and (string-match emacs-lisp-file-regexp (car files)) |
757 | 3004 (not (auto-save-file-name-p (car files))) |
3005 (setq source (expand-file-name (car files) | |
3006 (car command-line-args-left))) | |
3007 (setq dest (byte-compile-dest-file source)) | |
3008 (file-exists-p dest) | |
3009 (file-newer-than-file-p source dest)) | |
3010 (if (null (batch-byte-compile-file source)) | |
3011 (setq error t))) | |
3012 (setq files (cdr files)))) | |
3013 (if (null (batch-byte-compile-file (car command-line-args-left))) | |
3014 (setq error t))) | |
3015 (setq command-line-args-left (cdr command-line-args-left))) | |
3016 (message "Done") | |
3017 (kill-emacs (if error 1 0)))) | |
3018 | |
3019 (defun batch-byte-compile-file (file) | |
3020 (condition-case err | |
3021 (progn (byte-compile-file file) t) | |
3022 (error | |
3023 (message (if (cdr err) | |
3024 ">>Error occurred processing %s: %s (%s)" | |
3025 ">>Error occurred processing %s: %s") | |
3026 file | |
3027 (get (car err) 'error-message) | |
3028 (prin1-to-string (cdr err))) | |
3029 nil))) | |
3030 | |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3031 (defun batch-byte-recompile-directory () |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3032 "Runs `byte-recompile-directory' on the dirs remaining on the command line. |
3718
37a8a7489fc5
(byte-compile-file): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3653
diff
changeset
|
3033 Must be used only with `-batch', and kills Emacs on completion. |
37a8a7489fc5
(byte-compile-file): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
3653
diff
changeset
|
3034 For example, invoke `emacs -batch -f batch-byte-recompile-directory .'." |
3653
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3035 ;; command-line-args-left is what is left of the command line (startup.el) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3036 (defvar command-line-args-left) ;Avoid 'free variable' warning |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3037 (if (not noninteractive) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3038 (error "batch-byte-recompile-directory is to be used only with -batch")) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3039 (or command-line-args-left |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3040 (setq command-line-args-left '("."))) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3041 (while command-line-args-left |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3042 (byte-recompile-directory (car command-line-args-left)) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3043 (setq command-line-args-left (cdr command-line-args-left))) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3044 (kill-emacs 0)) |
974055b516d9
* bytecomp.el: Bring it up to version 2.10 of the
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3045 |
757 | 3046 |
3047 (make-obsolete 'mod '%) | |
3048 (make-obsolete 'dot 'point) | |
3049 (make-obsolete 'dot-max 'point-max) | |
3050 (make-obsolete 'dot-min 'point-min) | |
3051 (make-obsolete 'dot-marker 'point-marker) | |
3052 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3053 (make-obsolete 'buffer-flush-undo 'buffer-disable-undo) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3054 (make-obsolete 'baud-rate "use the baud-rate variable instead") |
1819
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
3055 (make-obsolete 'compiled-function-p 'byte-code-function-p) |
958 | 3056 (make-obsolete-variable 'auto-fill-hook 'auto-fill-function) |
3057 (make-obsolete-variable 'blink-paren-hook 'blink-paren-function) | |
3058 (make-obsolete-variable 'lisp-indent-hook 'lisp-indent-function) | |
3059 (make-obsolete-variable 'temp-buffer-show-hook | |
3060 'temp-buffer-show-function) | |
3061 (make-obsolete-variable 'inhibit-local-variables | |
3062 "use enable-local-variables (with the reversed sense.)") | |
1604
25173c1db5a6
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
1532
diff
changeset
|
3063 (make-obsolete-variable 'unread-command-char |
1819
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
3064 "use unread-command-events instead. That variable is a list of events to reread, so it now uses nil to mean `no event', instead of -1.") |
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
3065 (make-obsolete-variable 'unread-command-event |
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
3066 "use unread-command-events; this is now a list of events.") |
2626
7ff77992fca0
* bytecomp.el (meta-flag): Declare this an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
2566
diff
changeset
|
3067 (make-obsolete-variable 'suspend-hooks 'suspend-hook) |
2299
53abb56a18fa
* simple.el (comment-indent-function): New variable, intended to
Jim Blandy <jimb@redhat.com>
parents:
2217
diff
changeset
|
3068 (make-obsolete-variable 'comment-indent-hook 'comment-indent-function) |
2626
7ff77992fca0
* bytecomp.el (meta-flag): Declare this an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
2566
diff
changeset
|
3069 (make-obsolete-variable 'meta-flag "Use the set-input-mode function instead.") |
757 | 3070 |
3071 (provide 'byte-compile) | |
3072 | |
3073 | |
3074 ;;; report metering (see the hacks in bytecode.c) | |
3075 | |
784
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3076 (defun byte-compile-report-ops () |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3077 (defvar byte-code-meter) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3078 (with-output-to-temp-buffer "*Meter*" |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3079 (set-buffer "*Meter*") |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3080 (let ((i 0) n op off) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3081 (while (< i 256) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3082 (setq n (aref (aref byte-code-meter 0) i) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3083 off nil) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3084 (if t ;(not (zerop n)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3085 (progn |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3086 (setq op i) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3087 (setq off nil) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3088 (cond ((< op byte-nth) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3089 (setq off (logand op 7)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3090 (setq op (logand op 248))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3091 ((>= op byte-constant) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3092 (setq off (- op byte-constant) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3093 op byte-constant))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3094 (setq op (aref byte-code-vector op)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3095 (insert (format "%-4d" i)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3096 (insert (symbol-name op)) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3097 (if off (insert " [" (int-to-string off) "]")) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3098 (indent-to 40) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3099 (insert (int-to-string n) "\n"))) |
6d993c174c62
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
757
diff
changeset
|
3100 (setq i (1+ i)))))) |
757 | 3101 |
3102 ;; To avoid "lisp nesting exceeds max-lisp-eval-depth" when bytecomp compiles | |
3103 ;; itself, compile some of its most used recursive functions (at load time). | |
3104 ;; | |
3105 (eval-when-compile | |
1819
df06a60f3362
* disass.el (disassemble): Add autoload cookie for this.
Jim Blandy <jimb@redhat.com>
parents:
1604
diff
changeset
|
3106 (or (byte-code-function-p (symbol-function 'byte-compile-form)) |
757 | 3107 (assq 'byte-code (symbol-function 'byte-compile-form)) |
3108 (let ((byte-optimize nil) ; do it fast | |
3109 (byte-compile-warnings nil)) | |
3110 (mapcar '(lambda (x) | |
3111 (or noninteractive (message "compiling %s..." x)) | |
3112 (byte-compile x) | |
3113 (or noninteractive (message "compiling %s...done" x))) | |
3114 '(byte-compile-normal-call | |
3115 byte-compile-form | |
3116 byte-compile-body | |
3117 ;; Inserted some more than necessary, to speed it up. | |
3118 byte-compile-top-level | |
3119 byte-compile-out-toplevel | |
3120 byte-compile-constant | |
3121 byte-compile-variable-ref)))) | |
3122 nil) | |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
3123 |
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
784
diff
changeset
|
3124 ;;; bytecomp.el ends here |